28 lines
586 B
Go
28 lines
586 B
Go
package services
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/grafana/grafana/pkg/tsdb/cloudwatch/models/resources"
|
|
)
|
|
|
|
func valuesToListMetricRespone[T any](values []T) []resources.ResourceResponse[T] {
|
|
response := make([]resources.ResourceResponse[T], 0, len(values))
|
|
for _, value := range values {
|
|
response = append(response, resources.ResourceResponse[T]{Value: value})
|
|
}
|
|
|
|
return response
|
|
}
|
|
|
|
func getAccountId(arn string) string {
|
|
// format: arn:partition:service:region:account-id:resource-id
|
|
parts := strings.Split(arn, ":")
|
|
|
|
if len(parts) >= 4 {
|
|
return parts[4]
|
|
}
|
|
|
|
return ""
|
|
}
|