github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/openstack/meeting/v1/conferences/urls.go (about) 1 package conferences 2 3 import "github.com/chnsz/golangsdk" 4 5 const rootPath = "mmc/management" 6 7 func rootURL(client *golangsdk.ServiceClient) string { 8 return client.ServiceURL(rootPath, "conferences") 9 } 10 11 func cycleURL(client *golangsdk.ServiceClient) string { 12 return client.ServiceURL(rootPath, "cycleconferences") 13 } 14 15 func subCycleURL(client *golangsdk.ServiceClient) string { 16 return client.ServiceURL(rootPath, "conferences", "cyclesubconf") 17 } 18 19 func showURL(client *golangsdk.ServiceClient) string { 20 return client.ServiceURL(rootPath, "conferences", "confDetail") 21 } 22 23 func onlineURL(client *golangsdk.ServiceClient) string { 24 return client.ServiceURL(rootPath, "conferences", "online", "confDetail") 25 } 26 27 func historyURL(client *golangsdk.ServiceClient) string { 28 return client.ServiceURL(rootPath, "conferences", "history", "confDetail") 29 } 30 31 func historiesURL(client *golangsdk.ServiceClient) string { 32 return client.ServiceURL(rootPath, "conferences", "history") 33 } 34 35 func controlURL(client *golangsdk.ServiceClient) string { 36 return client.ServiceURL(rootPath, "conference", "duration") 37 }