-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathclient.go
More file actions
90 lines (83 loc) · 3.34 KB
/
Copy pathclient.go
File metadata and controls
90 lines (83 loc) · 3.34 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// Code generated by Microsoft (R) Go Code Generator. DO NOT EDIT.
package armservicegroups
import (
"context"
"errors"
"github.com/Azure/azure-sdk-for-go/sdk/azcore"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/arm"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime"
"net/http"
"net/url"
"strings"
)
// Client contains the methods for the service.
// Don't use this type directly, use NewClient() instead.
//
// Generated from API version 2026-08-01
type Client struct {
internal *arm.Client
}
// NewClient creates a new instance of Client with the specified values.
// - credential - used to authorize requests. Usually a credential from azidentity.
// - options - Contains optional client configuration. Pass nil to accept the default values.
func NewClient(credential azcore.TokenCredential, options *arm.ClientOptions) (*Client, error) {
cl, err := arm.NewClient(moduleName, moduleVersion, credential, options)
if err != nil {
return nil, err
}
client := &Client{
internal: cl,
}
return client, nil
}
// Get - Get the details of the serviceGroup
// If the operation fails it returns an *azcore.ResponseError type.
// - serviceGroupName - ServiceGroup Name.
// - options - ClientGetOptions contains the optional parameters for the Client.Get method.
func (client *Client) Get(ctx context.Context, serviceGroupName string, options *ClientGetOptions) (ClientGetResponse, error) {
var err error
const operationName = "Client.Get"
ctx = context.WithValue(ctx, runtime.CtxAPINameKey{}, operationName)
ctx, endSpan := runtime.StartSpan(ctx, operationName, client.internal.Tracer(), nil)
defer func() { endSpan(err) }()
req, err := client.getCreateRequest(ctx, serviceGroupName, options)
if err != nil {
return ClientGetResponse{}, err
}
httpResp, err := client.internal.Pipeline().Do(req)
if err != nil {
return ClientGetResponse{}, err
}
return client.getHandleResponse(httpResp, http.StatusOK)
}
// getCreateRequest creates the Get request.
func (client *Client) getCreateRequest(ctx context.Context, serviceGroupName string, _ *ClientGetOptions) (*policy.Request, error) {
urlPath := "/providers/Microsoft.Management/serviceGroups/{serviceGroupName}"
if serviceGroupName == "" {
return nil, errors.New("parameter serviceGroupName cannot be empty")
}
urlPath = strings.ReplaceAll(urlPath, "{serviceGroupName}", url.PathEscape(serviceGroupName))
req, err := runtime.NewRequest(ctx, http.MethodGet, runtime.JoinPaths(client.internal.Endpoint(), urlPath))
if err != nil {
return nil, err
}
reqQP := req.Raw().URL.Query()
reqQP.Set("api-version", version20260801)
req.Raw().URL.RawQuery = strings.ReplaceAll(reqQP.Encode(), "+", "%20")
req.Raw().Header["Accept"] = []string{"application/json"}
return req, nil
}
// getHandleResponse handles the Get response.
func (client *Client) getHandleResponse(resp *http.Response, successCodes ...int) (ClientGetResponse, error) {
result := ClientGetResponse{}
if !runtime.HasStatusCode(resp, successCodes...) {
return result, runtime.NewResponseError(resp)
}
if err := runtime.UnmarshalAsJSON(resp, &result.ServiceGroup); err != nil {
return ClientGetResponse{}, err
}
return result, nil
}