File: urls.go

package info (click to toggle)
golang-github-gophercloud-utils 0.0~git20231010.80377ec-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 816 kB
  • sloc: sh: 20; makefile: 7
file content (29 lines) | stat: -rw-r--r-- 844 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package measures

import "github.com/gophercloud/gophercloud"

const (
	resourcePath                    = "metric"
	batchCreateMetricsPath          = "batch/metrics"
	batchCreateResourcesMetricsPath = "batch/resources/metrics"
)

func resourceURL(c *gophercloud.ServiceClient, metricID string) string {
	return c.ServiceURL(resourcePath, metricID, "measures")
}

func listURL(c *gophercloud.ServiceClient, metricID string) string {
	return resourceURL(c, metricID)
}

func createURL(c *gophercloud.ServiceClient, metricID string) string {
	return resourceURL(c, metricID)
}

func batchCreateMetricsURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL(batchCreateMetricsPath, "measures")
}

func batchCreateResourcesMetricsURL(c *gophercloud.ServiceClient) string {
	return c.ServiceURL(batchCreateResourcesMetricsPath, "measures")
}