-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathclient_example_test.go
More file actions
49 lines (46 loc) · 2.05 KB
/
Copy pathclient_example_test.go
File metadata and controls
49 lines (46 loc) · 2.05 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
// 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_test
import (
"context"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicegroups/armservicegroups"
"log"
)
// Generated from example definition: 2026-08-01/ServiceGroup_Get.json
func ExampleClient_Get() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armservicegroups.NewClientFactory(cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
res, err := clientFactory.NewClient().Get(ctx, "20000000-0001-0000-0000-000000000000", nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res = armservicegroups.ClientGetResponse{
// ServiceGroup: armservicegroups.ServiceGroup{
// Name: to.Ptr("20000000-0001-0000-0000-000000000000"),
// Type: to.Ptr("Microsoft.Management/serviceGroups"),
// ID: to.Ptr("/providers/Microsoft.Management/serviceGroups/20000000-0001-0000-0000-000000000000"),
// Properties: &armservicegroups.ServiceGroupProperties{
// Attributes: &armservicegroups.ServiceGroupAttributes{
// Criticality: to.Ptr[int32](2),
// },
// DisplayName: to.Ptr("ServiceGroup 1 Tenant 2"),
// Parent: &armservicegroups.ParentServiceGroupProperties{
// ResourceID: to.Ptr("/providers/Microsoft.Management/serviceGroups/RootGroup"),
// },
// ProvisioningState: to.Ptr(armservicegroups.ProvisioningStateSucceeded),
// },
// },
// }
}