-
Notifications
You must be signed in to change notification settings - Fork 13
/
ReplicationAlertSettings_Create.go
37 lines (34 loc) · 1.27 KB
/
ReplicationAlertSettings_Create.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
package armrecoveryservicessiterecovery_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/recoveryservices/armrecoveryservicessiterecovery"
)
// x-ms-original-file: specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2021-10-01/examples/ReplicationAlertSettings_Create.json
func ExampleReplicationAlertSettingsClient_Create() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
client := armrecoveryservicessiterecovery.NewReplicationAlertSettingsClient("<resource-name>",
"<resource-group-name>",
"<subscription-id>", cred, nil)
res, err := client.Create(ctx,
"<alert-setting-name>",
armrecoveryservicessiterecovery.ConfigureAlertRequest{
Properties: &armrecoveryservicessiterecovery.ConfigureAlertRequestProperties{
CustomEmailAddresses: []*string{
to.StringPtr("ronehr@microsoft.com")},
Locale: to.StringPtr("<locale>"),
SendToOwners: to.StringPtr("<send-to-owners>"),
},
},
nil)
if err != nil {
log.Fatal(err)
}
log.Printf("Alert.ID: %s\n", *res.ID)
}