github.com/gophercloud/gophercloud@v1.11.0/openstack/workflow/v2/crontriggers/urls.go (about)

     1  package crontriggers
     2  
     3  import "github.com/gophercloud/gophercloud"
     4  
     5  func createURL(client *gophercloud.ServiceClient) string {
     6  	return client.ServiceURL("cron_triggers")
     7  }
     8  
     9  func deleteURL(client *gophercloud.ServiceClient, id string) string {
    10  	return client.ServiceURL("cron_triggers", id)
    11  }
    12  
    13  func getURL(client *gophercloud.ServiceClient, id string) string {
    14  	return client.ServiceURL("cron_triggers", id)
    15  }
    16  
    17  func listURL(client *gophercloud.ServiceClient) string {
    18  	return client.ServiceURL("cron_triggers")
    19  }