README ¶
github.com/hashicorp/go-azure-sdk/resource-manager/sql/2021-11-01/geobackuppolicies
Documentation
The geobackuppolicies
SDK allows for interaction with the Azure Resource Manager Service sql
(API Version 2021-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/sql/2021-11-01/geobackuppolicies"
Client Initialization
client := geobackuppolicies.NewGeoBackupPoliciesClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer
Example Usage: GeoBackupPoliciesClient.CreateOrUpdate
ctx := context.TODO()
id := geobackuppolicies.NewSqlDatabaseID("12345678-1234-9876-4563-123456789012", "example-resource-group", "serverValue", "databaseValue")
payload := geobackuppolicies.GeoBackupPolicy{
// ...
}
read, err := client.CreateOrUpdate(ctx, id, payload)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: GeoBackupPoliciesClient.Get
ctx := context.TODO()
id := geobackuppolicies.NewSqlDatabaseID("12345678-1234-9876-4563-123456789012", "example-resource-group", "serverValue", "databaseValue")
read, err := client.Get(ctx, id)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
Example Usage: GeoBackupPoliciesClient.List
ctx := context.TODO()
id := geobackuppolicies.NewSqlDatabaseID("12345678-1234-9876-4563-123456789012", "example-resource-group", "serverValue", "databaseValue")
// alternatively `client.List(ctx, id)` can be used to do batched pagination
items, err := client.ListComplete(ctx, id)
if err != nil {
// handle the error
}
for _, item := range items {
// do something
}
Documentation ¶
Index ¶
- func PossibleValuesForGeoBackupPolicyState() []string
- type CreateOrUpdateOperationResponse
- type GeoBackupPoliciesClient
- func (c GeoBackupPoliciesClient) CreateOrUpdate(ctx context.Context, id commonids.SqlDatabaseId, input GeoBackupPolicy) (result CreateOrUpdateOperationResponse, err error)
- func (c GeoBackupPoliciesClient) Get(ctx context.Context, id commonids.SqlDatabaseId) (result GetOperationResponse, err error)
- func (c GeoBackupPoliciesClient) List(ctx context.Context, id commonids.SqlDatabaseId) (result ListOperationResponse, err error)
- func (c GeoBackupPoliciesClient) ListComplete(ctx context.Context, id commonids.SqlDatabaseId) (ListCompleteResult, error)
- func (c GeoBackupPoliciesClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.SqlDatabaseId, ...) (result ListCompleteResult, err error)
- type GeoBackupPolicy
- type GeoBackupPolicyOperationPredicate
- type GeoBackupPolicyProperties
- type GeoBackupPolicyState
- type GetOperationResponse
- type ListCompleteResult
- type ListOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForGeoBackupPolicyState ¶
func PossibleValuesForGeoBackupPolicyState() []string
Types ¶
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *GeoBackupPolicy }
type GeoBackupPoliciesClient ¶
type GeoBackupPoliciesClient struct {
Client *resourcemanager.Client
}
func NewGeoBackupPoliciesClientWithBaseURI ¶
func NewGeoBackupPoliciesClientWithBaseURI(sdkApi sdkEnv.Api) (*GeoBackupPoliciesClient, error)
func (GeoBackupPoliciesClient) CreateOrUpdate ¶
func (c GeoBackupPoliciesClient) CreateOrUpdate(ctx context.Context, id commonids.SqlDatabaseId, input GeoBackupPolicy) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (GeoBackupPoliciesClient) Get ¶
func (c GeoBackupPoliciesClient) Get(ctx context.Context, id commonids.SqlDatabaseId) (result GetOperationResponse, err error)
Get ...
func (GeoBackupPoliciesClient) List ¶
func (c GeoBackupPoliciesClient) List(ctx context.Context, id commonids.SqlDatabaseId) (result ListOperationResponse, err error)
List ...
func (GeoBackupPoliciesClient) ListComplete ¶
func (c GeoBackupPoliciesClient) ListComplete(ctx context.Context, id commonids.SqlDatabaseId) (ListCompleteResult, error)
ListComplete retrieves all the results into a single object
func (GeoBackupPoliciesClient) ListCompleteMatchingPredicate ¶
func (c GeoBackupPoliciesClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.SqlDatabaseId, predicate GeoBackupPolicyOperationPredicate) (result ListCompleteResult, err error)
ListCompleteMatchingPredicate retrieves all the results and then applies the predicate
type GeoBackupPolicy ¶
type GeoBackupPolicyOperationPredicate ¶
type GeoBackupPolicyOperationPredicate struct { Id *string Kind *string Location *string Name *string Type *string }
func (GeoBackupPolicyOperationPredicate) Matches ¶
func (p GeoBackupPolicyOperationPredicate) Matches(input GeoBackupPolicy) bool
type GeoBackupPolicyProperties ¶
type GeoBackupPolicyProperties struct { State GeoBackupPolicyState `json:"state"` StorageType *string `json:"storageType,omitempty"` }
type GeoBackupPolicyState ¶
type GeoBackupPolicyState string
const ( GeoBackupPolicyStateDisabled GeoBackupPolicyState = "Disabled" GeoBackupPolicyStateEnabled GeoBackupPolicyState = "Enabled" )
func (*GeoBackupPolicyState) UnmarshalJSON ¶
func (s *GeoBackupPolicyState) UnmarshalJSON(bytes []byte) error
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *GeoBackupPolicy }
type ListCompleteResult ¶
type ListCompleteResult struct { LatestHttpResponse *http.Response Items []GeoBackupPolicy }
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]GeoBackupPolicy }
Click to show internal directories.
Click to hide internal directories.