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