예제 #1
0
파일: urls.go 프로젝트: ktbartholomew/rack
func listURL(client *gophercloud.ServiceClient) string {
	return client.ServiceURL("flavors")
}
예제 #2
0
func copyURL(c *gophercloud.ServiceClient, container, object string) string {
	return c.ServiceURL(container, object)
}
예제 #3
0
func deleteURL(c *gophercloud.ServiceClient, id string) string {
	return c.ServiceURL("volumes", id)
}
예제 #4
0
// CreateURL generates the URL used to create new Tokens.
func CreateURL(client *gophercloud.ServiceClient) string {
	return client.ServiceURL("tokens")
}
예제 #5
0
파일: urls.go 프로젝트: ktbartholomew/rack
func baseURL(c *gophercloud.ServiceClient, instanceID string) string {
	return c.ServiceURL("instances", instanceID, "users")
}
예제 #6
0
func resourceURL(c *gophercloud.ServiceClient, serverId string) string {
	return c.ServiceURL("servers", serverId, resourcePath)
}
예제 #7
0
파일: urls.go 프로젝트: ktbartholomew/rack
func baseURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL("datastores")
}
예제 #8
0
파일: urls.go 프로젝트: ktbartholomew/rack
func backupsURL(c *gophercloud.ServiceClient, id string) string {
	return c.ServiceURL("instances", id, "backups")
}
예제 #9
0
파일: urls.go 프로젝트: ktbartholomew/rack
func baseURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL("instances")
}
예제 #10
0
파일: urls.go 프로젝트: ktbartholomew/rack
func resourceURL(c *gophercloud.ServiceClient, id string) string {
	return c.ServiceURL("instances", id)
}
예제 #11
0
파일: urls.go 프로젝트: ktbartholomew/rack
func configURL(c *gophercloud.ServiceClient, id string) string {
	return c.ServiceURL("instances", id, "configuration")
}
예제 #12
0
func abandonURL(c *gophercloud.ServiceClient, name, id string) string {
	return c.ServiceURL("stacks", name, id, "abandon")
}
예제 #13
0
func previewURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL("stacks", "preview")
}
예제 #14
0
func getURL(c *gophercloud.ServiceClient, name, id string) string {
	return c.ServiceURL("stacks", name, id)
}
예제 #15
0
func resourceURL(c *gophercloud.ServiceClient, id string) string {
	return c.ServiceURL("subnets", id)
}
예제 #16
0
func listURL(client *gophercloud.ServiceClient) string {
	return client.ServiceURL("tenants")
}
예제 #17
0
func rootURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL("subnets")
}
예제 #18
0
func resourceURL(c *gophercloud.ServiceClient, id string) string {
	return c.ServiceURL(rootPath, id)
}
예제 #19
0
파일: urls.go 프로젝트: ktbartholomew/rack
func versionURL(c *gophercloud.ServiceClient, dsID, versionID string) string {
	return c.ServiceURL("datastores", dsID, "versions", versionID)
}
예제 #20
0
func rootURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL(rootPath)
}
예제 #21
0
파일: urls.go 프로젝트: ktbartholomew/rack
func resourceURL(c *gophercloud.ServiceClient, dsID string) string {
	return c.ServiceURL("datastores", dsID)
}
예제 #22
0
func listResourceEventsURL(c *gophercloud.ServiceClient, stackName, stackID, resourceName string) string {
	return c.ServiceURL("stacks", stackName, stackID, "resources", resourceName, "events")
}
예제 #23
0
파일: urls.go 프로젝트: ktbartholomew/rack
func dbURL(c *gophercloud.ServiceClient, instanceID, userName, dbName string) string {
	return c.ServiceURL("instances", instanceID, "users", userName, "databases", dbName)
}
예제 #24
0
func getURL(c *gophercloud.ServiceClient, stackName, stackID, resourceName, eventID string) string {
	return c.ServiceURL("stacks", stackName, stackID, "resources", resourceName, "events", eventID)
}
예제 #25
0
파일: urls.go 프로젝트: ktbartholomew/rack
func userURL(c *gophercloud.ServiceClient, instanceID, userName string) string {
	return c.ServiceURL("instances", instanceID, "users", userName)
}
예제 #26
0
func findURL(c *gophercloud.ServiceClient, stackName string) string {
	return c.ServiceURL("stacks", stackName, "events")
}
예제 #27
0
func listURL(c *gophercloud.ServiceClient, container string) string {
	return c.ServiceURL(container)
}
예제 #28
0
func listURL(c *gophercloud.ServiceClient, stackName, stackID string) string {
	return c.ServiceURL("stacks", stackName, stackID, "events")
}
예제 #29
0
func createURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL("volumes")
}
예제 #30
0
파일: urls.go 프로젝트: ktbartholomew/rack
func getURL(client *gophercloud.ServiceClient, id string) string {
	return client.ServiceURL("flavors", id)
}