github.com/huaweicloud/golangsdk@v0.0.0-20210831081626-d823fe11ceba/openstack/networking/v2/extensions/hw_snatrules/urls.go (about) 1 package hw_snatrules 2 3 import "github.com/huaweicloud/golangsdk" 4 5 const resourcePath = "snat_rules" 6 7 func rootURL(c *golangsdk.ServiceClient) string { 8 return c.ServiceURL(resourcePath) 9 } 10 11 func resourceURL(c *golangsdk.ServiceClient, id string) string { 12 return c.ServiceURL(resourcePath, id) 13 } 14 15 func resourceURLDelete(c *golangsdk.ServiceClient, id, natGatewayID string) string { 16 return c.ServiceURL("nat_gateways", natGatewayID, resourcePath, id) 17 }