github.com/huaweicloud/golangsdk@v0.0.0-20210831081626-d823fe11ceba/openstack/compute/v2/extensions/networks/urls.go (about)

     1  package networks
     2  
     3  import "github.com/huaweicloud/golangsdk"
     4  
     5  const resourcePath = "os-networks"
     6  
     7  func resourceURL(c *golangsdk.ServiceClient) string {
     8  	return c.ServiceURL(resourcePath)
     9  }
    10  
    11  func listURL(c *golangsdk.ServiceClient) string {
    12  	return resourceURL(c)
    13  }
    14  
    15  func getURL(c *golangsdk.ServiceClient, id string) string {
    16  	return c.ServiceURL(resourcePath, id)
    17  }