Example #1
0
func (h *HttpRouterAddAliasRequest) HttpPath() string {
	return client.Inline("/frontend/:id/aliases", string(h.Frontend))
}
Example #2
0
func (h *HttpRouterGetRoutesRequest) HttpPath() string {
	return client.Inline("/frontend/:id/routes", string(h.Frontend))
}
Example #3
0
func (h *HttpRouterDeleteRouteRequest) HttpPath() string {
	return client.Inline("/frontend/:id/routes/:endpointId", string(h.Frontend), string(h.EndpointId))
}
Example #4
0
func (h *HttpRouterDeleteFrontendRequest) HttpPath() string {
	return client.Inline("/frontend/:id", string(h.Frontend))
}
Example #5
0
func (h *HttpGitArchiveContentRequest) HttpPath() string {
	return client.Inline("/repository/:id/archive/:ref", string(h.RepositoryId), string(h.Ref))
}
Example #6
0
func (h *HttpCreateRepositoryRequest) HttpPath() string {
	return client.Inline("/repository/:id", string(h.Id))
}