-
Notifications
You must be signed in to change notification settings - Fork 13
/
ServerSecurityAlertsCreateMin.go
54 lines (51 loc) · 2.57 KB
/
ServerSecurityAlertsCreateMin.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
44
45
46
47
48
49
50
51
52
53
54
package armpostgresql_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/postgresql/armpostgresql"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/c767823fdfd9d5e96bad245e3ea4d14d94a716bb/specification/postgresql/resource-manager/Microsoft.DBforPostgreSQL/stable/2017-12-01/examples/ServerSecurityAlertsCreateMin.json
func ExampleServerSecurityAlertPoliciesClient_BeginCreateOrUpdate_updateAServersThreatDetectionPolicyWithMinimalParameters() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armpostgresql.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewServerSecurityAlertPoliciesClient().BeginCreateOrUpdate(ctx, "securityalert-4799", "securityalert-6440", armpostgresql.SecurityAlertPolicyNameDefault, armpostgresql.ServerSecurityAlertPolicy{
Properties: &armpostgresql.SecurityAlertPolicyProperties{
EmailAccountAdmins: to.Ptr(true),
State: to.Ptr(armpostgresql.ServerSecurityAlertPolicyStateDisabled),
},
}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %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.ServerSecurityAlertPolicy = armpostgresql.ServerSecurityAlertPolicy{
// Name: to.Ptr("Default"),
// Type: to.Ptr("Microsoft.DBforPostgreSQL/servers/securityAlertPolicies"),
// ID: to.Ptr("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/securityalert-4799/providers/Microsoft.DBforPostgreSQL/servers/securityalert-6440/securityAlertPolicies/default"),
// Properties: &armpostgresql.SecurityAlertPolicyProperties{
// DisabledAlerts: []*string{
// to.Ptr("")},
// EmailAccountAdmins: to.Ptr(true),
// EmailAddresses: []*string{
// to.Ptr("")},
// RetentionDays: to.Ptr[int32](0),
// State: to.Ptr(armpostgresql.ServerSecurityAlertPolicyStateEnabled),
// StorageEndpoint: to.Ptr(""),
// },
// }
}