github.com/gophercloud/gophercloud@v1.11.0/openstack/baremetal/v1/ports/urls.go (about)

     1  package ports
     2  
     3  import "github.com/gophercloud/gophercloud"
     4  
     5  func createURL(client *gophercloud.ServiceClient) string {
     6  	return client.ServiceURL("ports")
     7  }
     8  
     9  func listURL(client *gophercloud.ServiceClient) string {
    10  	return createURL(client)
    11  }
    12  
    13  func listDetailURL(client *gophercloud.ServiceClient) string {
    14  	return client.ServiceURL("ports", "detail")
    15  }
    16  
    17  func resourceURL(client *gophercloud.ServiceClient, id string) string {
    18  	return client.ServiceURL("ports", id)
    19  }
    20  
    21  func deleteURL(client *gophercloud.ServiceClient, id string) string {
    22  	return resourceURL(client, id)
    23  }
    24  
    25  func getURL(client *gophercloud.ServiceClient, id string) string {
    26  	return resourceURL(client, id)
    27  }
    28  
    29  func updateURL(client *gophercloud.ServiceClient, id string) string {
    30  	return resourceURL(client, id)
    31  }