-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathclient.go
More file actions
28 lines (22 loc) · 1.03 KB
/
client.go
File metadata and controls
28 lines (22 loc) · 1.03 KB
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
package v2023_03_01
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
import (
"fmt"
"github.com/hashicorp/go-azure-sdk/resource-manager/alertsmanagement/2023-03-01/prometheusrulegroupresources"
"github.com/hashicorp/go-azure-sdk/sdk/client/resourcemanager"
sdkEnv "github.com/hashicorp/go-azure-sdk/sdk/environments"
)
type Client struct {
PrometheusRuleGroupResources *prometheusrulegroupresources.PrometheusRuleGroupResourcesClient
}
func NewClientWithBaseURI(sdkApi sdkEnv.Api, configureFunc func(c *resourcemanager.Client)) (*Client, error) {
prometheusRuleGroupResourcesClient, err := prometheusrulegroupresources.NewPrometheusRuleGroupResourcesClientWithBaseURI(sdkApi)
if err != nil {
return nil, fmt.Errorf("building PrometheusRuleGroupResources client: %+v", err)
}
configureFunc(prometheusRuleGroupResourcesClient.Client)
return &Client{
PrometheusRuleGroupResources: prometheusRuleGroupResourcesClient,
}, nil
}