github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/openstack/ims/v1/imagecopy/urls.go (about)

     1  package imagecopy
     2  
     3  import "github.com/chnsz/golangsdk"
     4  
     5  func withinRegionCopyURL(c *golangsdk.ServiceClient, imageId string) string {
     6  	return c.ServiceURL("cloudimages", imageId, "copy")
     7  }
     8  
     9  func crossRegionCopyURL(c *golangsdk.ServiceClient, imageId string) string {
    10  	return c.ServiceURL("cloudimages", imageId, "cross_region_copy")
    11  }