-
Notifications
You must be signed in to change notification settings - Fork 13
/
DPSCheckNameAvailability.go
36 lines (33 loc) · 1.19 KB
/
DPSCheckNameAvailability.go
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
package armdeviceprovisioningservices_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/deviceprovisioningservices/armdeviceprovisioningservices"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/tree/main/specification/deviceprovisioningservices/resource-manager/Microsoft.Devices/stable/2021-10-15/examples/DPSCheckNameAvailability.json
func ExampleIotDpsResourceClient_CheckProvisioningServiceNameAvailability() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
return
}
ctx := context.Background()
client, err := armdeviceprovisioningservices.NewIotDpsResourceClient("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
return
}
res, err := client.CheckProvisioningServiceNameAvailability(ctx,
armdeviceprovisioningservices.OperationInputs{
Name: to.Ptr("<name>"),
},
nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
return
}
// TODO: use response item
_ = res
}