restorabledroppedmanageddatabases

package
v0.20230823.1052657 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 23, 2023 License: MPL-2.0 Imports: 11 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/sql/2022-11-01-preview/restorabledroppedmanageddatabases Documentation

The restorabledroppedmanageddatabases SDK allows for interaction with the Azure Resource Manager Service sql (API Version 2022-11-01-preview).

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/2022-11-01-preview/restorabledroppedmanageddatabases"

Client Initialization

client := restorabledroppedmanageddatabases.NewRestorableDroppedManagedDatabasesClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: RestorableDroppedManagedDatabasesClient.Get

ctx := context.TODO()
id := restorabledroppedmanageddatabases.NewManagedInstanceRestorableDroppedDatabaseID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue", "restorableDroppedDatabaseIdValue")

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: RestorableDroppedManagedDatabasesClient.ListByInstance

ctx := context.TODO()
id := restorabledroppedmanageddatabases.NewManagedInstanceID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue")

// alternatively `client.ListByInstance(ctx, id)` can be used to do batched pagination
items, err := client.ListByInstanceComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ValidateManagedInstanceID

func ValidateManagedInstanceID(input interface{}, key string) (warnings []string, errors []error)

ValidateManagedInstanceID checks that 'input' can be parsed as a Managed Instance ID

func ValidateManagedInstanceRestorableDroppedDatabaseID

func ValidateManagedInstanceRestorableDroppedDatabaseID(input interface{}, key string) (warnings []string, errors []error)

ValidateManagedInstanceRestorableDroppedDatabaseID checks that 'input' can be parsed as a Managed Instance Restorable Dropped Database ID

Types

type GetOperationResponse

type GetOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *RestorableDroppedManagedDatabase
}

type ListByInstanceCompleteResult

type ListByInstanceCompleteResult struct {
	Items []RestorableDroppedManagedDatabase
}

type ListByInstanceOperationResponse

type ListByInstanceOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]RestorableDroppedManagedDatabase
}

type ManagedInstanceId

type ManagedInstanceId struct {
	SubscriptionId      string
	ResourceGroupName   string
	ManagedInstanceName string
}

ManagedInstanceId is a struct representing the Resource ID for a Managed Instance

func NewManagedInstanceID

func NewManagedInstanceID(subscriptionId string, resourceGroupName string, managedInstanceName string) ManagedInstanceId

NewManagedInstanceID returns a new ManagedInstanceId struct

func ParseManagedInstanceID

func ParseManagedInstanceID(input string) (*ManagedInstanceId, error)

ParseManagedInstanceID parses 'input' into a ManagedInstanceId

func ParseManagedInstanceIDInsensitively

func ParseManagedInstanceIDInsensitively(input string) (*ManagedInstanceId, error)

ParseManagedInstanceIDInsensitively parses 'input' case-insensitively into a ManagedInstanceId note: this method should only be used for API response data and not user input

func (ManagedInstanceId) ID

func (id ManagedInstanceId) ID() string

ID returns the formatted Managed Instance ID

func (ManagedInstanceId) Segments

func (id ManagedInstanceId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Managed Instance ID

func (ManagedInstanceId) String

func (id ManagedInstanceId) String() string

String returns a human-readable description of this Managed Instance ID

type ManagedInstanceRestorableDroppedDatabaseId

type ManagedInstanceRestorableDroppedDatabaseId struct {
	SubscriptionId              string
	ResourceGroupName           string
	ManagedInstanceName         string
	RestorableDroppedDatabaseId string
}

ManagedInstanceRestorableDroppedDatabaseId is a struct representing the Resource ID for a Managed Instance Restorable Dropped Database

func NewManagedInstanceRestorableDroppedDatabaseID

func NewManagedInstanceRestorableDroppedDatabaseID(subscriptionId string, resourceGroupName string, managedInstanceName string, restorableDroppedDatabaseId string) ManagedInstanceRestorableDroppedDatabaseId

NewManagedInstanceRestorableDroppedDatabaseID returns a new ManagedInstanceRestorableDroppedDatabaseId struct

func ParseManagedInstanceRestorableDroppedDatabaseID

func ParseManagedInstanceRestorableDroppedDatabaseID(input string) (*ManagedInstanceRestorableDroppedDatabaseId, error)

ParseManagedInstanceRestorableDroppedDatabaseID parses 'input' into a ManagedInstanceRestorableDroppedDatabaseId

func ParseManagedInstanceRestorableDroppedDatabaseIDInsensitively

func ParseManagedInstanceRestorableDroppedDatabaseIDInsensitively(input string) (*ManagedInstanceRestorableDroppedDatabaseId, error)

ParseManagedInstanceRestorableDroppedDatabaseIDInsensitively parses 'input' case-insensitively into a ManagedInstanceRestorableDroppedDatabaseId note: this method should only be used for API response data and not user input

func (ManagedInstanceRestorableDroppedDatabaseId) ID

ID returns the formatted Managed Instance Restorable Dropped Database ID

func (ManagedInstanceRestorableDroppedDatabaseId) Segments

Segments returns a slice of Resource ID Segments which comprise this Managed Instance Restorable Dropped Database ID

func (ManagedInstanceRestorableDroppedDatabaseId) String

String returns a human-readable description of this Managed Instance Restorable Dropped Database ID

type RestorableDroppedManagedDatabase

type RestorableDroppedManagedDatabase struct {
	Id         *string                                     `json:"id,omitempty"`
	Location   string                                      `json:"location"`
	Name       *string                                     `json:"name,omitempty"`
	Properties *RestorableDroppedManagedDatabaseProperties `json:"properties,omitempty"`
	Tags       *map[string]string                          `json:"tags,omitempty"`
	Type       *string                                     `json:"type,omitempty"`
}

type RestorableDroppedManagedDatabaseOperationPredicate

type RestorableDroppedManagedDatabaseOperationPredicate struct {
	Id       *string
	Location *string
	Name     *string
	Type     *string
}

func (RestorableDroppedManagedDatabaseOperationPredicate) Matches

type RestorableDroppedManagedDatabaseProperties

type RestorableDroppedManagedDatabaseProperties struct {
	CreationDate        *string `json:"creationDate,omitempty"`
	DatabaseName        *string `json:"databaseName,omitempty"`
	DeletionDate        *string `json:"deletionDate,omitempty"`
	EarliestRestoreDate *string `json:"earliestRestoreDate,omitempty"`
}

func (*RestorableDroppedManagedDatabaseProperties) GetCreationDateAsTime

func (o *RestorableDroppedManagedDatabaseProperties) GetCreationDateAsTime() (*time.Time, error)

func (*RestorableDroppedManagedDatabaseProperties) GetDeletionDateAsTime

func (o *RestorableDroppedManagedDatabaseProperties) GetDeletionDateAsTime() (*time.Time, error)

func (*RestorableDroppedManagedDatabaseProperties) GetEarliestRestoreDateAsTime

func (o *RestorableDroppedManagedDatabaseProperties) GetEarliestRestoreDateAsTime() (*time.Time, error)

func (*RestorableDroppedManagedDatabaseProperties) SetCreationDateAsTime

func (o *RestorableDroppedManagedDatabaseProperties) SetCreationDateAsTime(input time.Time)

func (*RestorableDroppedManagedDatabaseProperties) SetDeletionDateAsTime

func (o *RestorableDroppedManagedDatabaseProperties) SetDeletionDateAsTime(input time.Time)

func (*RestorableDroppedManagedDatabaseProperties) SetEarliestRestoreDateAsTime

func (o *RestorableDroppedManagedDatabaseProperties) SetEarliestRestoreDateAsTime(input time.Time)

type RestorableDroppedManagedDatabasesClient

type RestorableDroppedManagedDatabasesClient struct {
	Client *resourcemanager.Client
}

func NewRestorableDroppedManagedDatabasesClientWithBaseURI

func NewRestorableDroppedManagedDatabasesClientWithBaseURI(sdkApi sdkEnv.Api) (*RestorableDroppedManagedDatabasesClient, error)

func (RestorableDroppedManagedDatabasesClient) Get

Get ...

func (RestorableDroppedManagedDatabasesClient) ListByInstance

ListByInstance ...

func (RestorableDroppedManagedDatabasesClient) ListByInstanceComplete

ListByInstanceComplete retrieves all the results into a single object

func (RestorableDroppedManagedDatabasesClient) ListByInstanceCompleteMatchingPredicate

ListByInstanceCompleteMatchingPredicate retrieves all the results and then applies the predicate

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL