31 строка
1.2 KiB
Go
31 строка
1.2 KiB
Go
package armm365securityandcompliance_test
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
|
|
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
|
|
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/m365securityandcompliance/armm365securityandcompliance"
|
|
)
|
|
|
|
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/d55b8005f05b040b852c15e74a0f3e36494a15e1/specification/m365securityandcompliance/resource-manager/Microsoft.M365SecurityAndCompliance/preview/2021-03-25-preview/examples/EdmUploadServiceDeletePrivateEndpointConnection.json
|
|
func ExamplePrivateEndpointConnectionsForEDMClient_BeginDelete() {
|
|
cred, err := azidentity.NewDefaultAzureCredential(nil)
|
|
if err != nil {
|
|
log.Fatalf("failed to obtain a credential: %v", err)
|
|
}
|
|
ctx := context.Background()
|
|
clientFactory, err := armm365securityandcompliance.NewClientFactory("<subscription-id>", cred, nil)
|
|
if err != nil {
|
|
log.Fatalf("failed to create client: %v", err)
|
|
}
|
|
poller, err := clientFactory.NewPrivateEndpointConnectionsForEDMClient().BeginDelete(ctx, "rgname", "service1", "myConnection", nil)
|
|
if err != nil {
|
|
log.Fatalf("failed to finish the request: %v", err)
|
|
}
|
|
_, err = poller.PollUntilDone(ctx, nil)
|
|
if err != nil {
|
|
log.Fatalf("failed to pull the result: %v", err)
|
|
}
|
|
}
|