-
Notifications
You must be signed in to change notification settings - Fork 13
/
PrivateEndpointConnectionUpdate.go
43 lines (39 loc) · 1.41 KB
/
PrivateEndpointConnectionUpdate.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
37
38
39
40
41
42
43
package armhybridcompute_test
import (
"context"
"log"
"time"
"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/hybridcompute/armhybridcompute"
)
// x-ms-original-file: specification/hybridcompute/resource-manager/Microsoft.HybridCompute/preview/2021-06-10-preview/examples/PrivateEndpointConnectionUpdate.json
func ExamplePrivateEndpointConnectionsClient_BeginCreateOrUpdate() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
client := armhybridcompute.NewPrivateEndpointConnectionsClient("<subscription-id>", cred, nil)
poller, err := client.BeginCreateOrUpdate(ctx,
"<resource-group-name>",
"<scope-name>",
"<private-endpoint-connection-name>",
armhybridcompute.PrivateEndpointConnection{
Properties: &armhybridcompute.PrivateEndpointConnectionProperties{
PrivateLinkServiceConnectionState: &armhybridcompute.PrivateLinkServiceConnectionStateProperty{
Description: to.StringPtr("<description>"),
Status: to.StringPtr("<status>"),
},
},
},
nil)
if err != nil {
log.Fatal(err)
}
res, err := poller.PollUntilDone(ctx, 30*time.Second)
if err != nil {
log.Fatal(err)
}
log.Printf("Response result: %#v\n", res.PrivateEndpointConnectionsClientCreateOrUpdateResult)
}