github.com/gophercloud/gophercloud@v1.11.0/openstack/baremetalintrospection/v1/introspection/urls.go (about)

     1  package introspection
     2  
     3  import "github.com/gophercloud/gophercloud"
     4  
     5  func listIntrospectionsURL(client *gophercloud.ServiceClient) string {
     6  	return client.ServiceURL("introspection")
     7  }
     8  
     9  func introspectionURL(client *gophercloud.ServiceClient, nodeID string) string {
    10  	return client.ServiceURL("introspection", nodeID)
    11  }
    12  
    13  func abortIntrospectionURL(client *gophercloud.ServiceClient, nodeID string) string {
    14  	return client.ServiceURL("introspection", nodeID, "abort")
    15  }
    16  
    17  func introspectionDataURL(client *gophercloud.ServiceClient, nodeID string) string {
    18  	return client.ServiceURL("introspection", nodeID, "data")
    19  }
    20  
    21  func introspectionUnprocessedDataURL(client *gophercloud.ServiceClient, nodeID string) string {
    22  	return client.ServiceURL("introspection", nodeID, "data", "unprocessed")
    23  }