-
Notifications
You must be signed in to change notification settings - Fork 13
/
SnapshotPolicies_Create.go
55 lines (52 loc) · 1.83 KB
/
SnapshotPolicies_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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package armnetapp_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/netapp/armnetapp/v3"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/tree/main/specification/netapp/resource-manager/Microsoft.NetApp/stable/2022-05-01/examples/SnapshotPolicies_Create.json
func ExampleSnapshotPoliciesClient_Create() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
client, err := armnetapp.NewSnapshotPoliciesClient("D633CC2E-722B-4AE1-B636-BBD9E4C60ED9", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
res, err := client.Create(ctx, "myRG", "account1", "snapshotPolicyName", armnetapp.SnapshotPolicy{
Location: to.Ptr("eastus"),
Properties: &armnetapp.SnapshotPolicyProperties{
DailySchedule: &armnetapp.DailySchedule{
Hour: to.Ptr[int32](14),
Minute: to.Ptr[int32](30),
SnapshotsToKeep: to.Ptr[int32](4),
},
Enabled: to.Ptr(true),
HourlySchedule: &armnetapp.HourlySchedule{
Minute: to.Ptr[int32](50),
SnapshotsToKeep: to.Ptr[int32](2),
},
MonthlySchedule: &armnetapp.MonthlySchedule{
DaysOfMonth: to.Ptr("10,11,12"),
Hour: to.Ptr[int32](14),
Minute: to.Ptr[int32](15),
SnapshotsToKeep: to.Ptr[int32](5),
},
WeeklySchedule: &armnetapp.WeeklySchedule{
Day: to.Ptr("Wednesday"),
Hour: to.Ptr[int32](14),
Minute: to.Ptr[int32](45),
SnapshotsToKeep: to.Ptr[int32](3),
},
},
}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
// TODO: use response item
_ = res
}