package
0.20240715.1103416
Repository: https://github.com/hashicorp/go-azure-sdk.git
Documentation: pkg.go.dev
# README
github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2023-11-01/backuppolicy
Documentation
The backuppolicy
SDK allows for interaction with the Azure Resource Manager Service netapp
(API Version 2023-11-01
).
This readme covers example usages, but further information on using this SDK can be found in the project root.
Import Path
import "github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2023-11-01/backuppolicy"
Client Initialization
client := backuppolicy.NewBackupPolicyClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer
Example Usage: BackupPolicyClient.BackupPoliciesCreate
ctx := context.TODO()
id := backuppolicy.NewBackupPolicyID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "backupPolicyValue")
payload := backuppolicy.BackupPolicy{
// ...
}
if err := client.BackupPoliciesCreateThenPoll(ctx, id, payload); err != nil {
// handle the error
}
Example Usage: BackupPolicyClient.BackupPoliciesDelete
ctx := context.TODO()
id := backuppolicy.NewBackupPolicyID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "backupPolicyValue")
if err := client.BackupPoliciesDeleteThenPoll(ctx, id); err != nil {
// handle the error
}
Example Usage: BackupPolicyClient.BackupPoliciesGet
ctx := context.TODO()
id := backuppolicy.NewBackupPolicyID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "backupPolicyValue")
read, err := client.BackupPoliciesGet(ctx, id)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: BackupPolicyClient.BackupPoliciesList
ctx := context.TODO()
id := backuppolicy.NewNetAppAccountID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue")
read, err := client.BackupPoliciesList(ctx, id)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: BackupPolicyClient.BackupPoliciesUpdate
ctx := context.TODO()
id := backuppolicy.NewBackupPolicyID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "backupPolicyValue")
payload := backuppolicy.BackupPolicyPatch{
// ...
}
if err := client.BackupPoliciesUpdateThenPoll(ctx, id, payload); err != nil {
// handle the error
}