12345678910111213141516171819202122232425262728293031323334353637383940 |
- package roles
- import "devel.mephi.ru/iacherepanov/openstack-gophercloud"
- const (
- rolePath = "roles"
- )
- func listURL(client *gophercloud.ServiceClient) string {
- return client.ServiceURL(rolePath)
- }
- func getURL(client *gophercloud.ServiceClient, roleID string) string {
- return client.ServiceURL(rolePath, roleID)
- }
- func createURL(client *gophercloud.ServiceClient) string {
- return client.ServiceURL(rolePath)
- }
- func updateURL(client *gophercloud.ServiceClient, roleID string) string {
- return client.ServiceURL(rolePath, roleID)
- }
- func deleteURL(client *gophercloud.ServiceClient, roleID string) string {
- return client.ServiceURL(rolePath, roleID)
- }
- func listAssignmentsURL(client *gophercloud.ServiceClient) string {
- return client.ServiceURL("role_assignments")
- }
- func listAssignmentsOnResourceURL(client *gophercloud.ServiceClient, targetType, targetID, actorType, actorID string) string {
- return client.ServiceURL(targetType, targetID, actorType, actorID, rolePath)
- }
- func assignURL(client *gophercloud.ServiceClient, targetType, targetID, actorType, actorID, roleID string) string {
- return client.ServiceURL(targetType, targetID, actorType, actorID, rolePath, roleID)
- }
|