volumesreplication

package
v0.20230725.1162434 Latest Latest
Warning

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

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

README

github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2021-10-01/volumesreplication Documentation

The volumesreplication SDK allows for interaction with the Azure Resource Manager Service netapp (API Version 2021-10-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/2021-10-01/volumesreplication"

Client Initialization

client := volumesreplication.NewVolumesReplicationClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: VolumesReplicationClient.VolumesAuthorizeReplication

ctx := context.TODO()
id := volumesreplication.NewVolumeID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "capacityPoolValue", "volumeValue")

payload := volumesreplication.AuthorizeRequest{
	// ...
}


if err := client.VolumesAuthorizeReplicationThenPoll(ctx, id, payload); err != nil {
	// handle the error
}

Example Usage: VolumesReplicationClient.VolumesBreakReplication

ctx := context.TODO()
id := volumesreplication.NewVolumeID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "capacityPoolValue", "volumeValue")

payload := volumesreplication.BreakReplicationRequest{
	// ...
}


if err := client.VolumesBreakReplicationThenPoll(ctx, id, payload); err != nil {
	// handle the error
}

Example Usage: VolumesReplicationClient.VolumesDeleteReplication

ctx := context.TODO()
id := volumesreplication.NewVolumeID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "capacityPoolValue", "volumeValue")

if err := client.VolumesDeleteReplicationThenPoll(ctx, id); err != nil {
	// handle the error
}

Example Usage: VolumesReplicationClient.VolumesReInitializeReplication

ctx := context.TODO()
id := volumesreplication.NewVolumeID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "capacityPoolValue", "volumeValue")

if err := client.VolumesReInitializeReplicationThenPoll(ctx, id); err != nil {
	// handle the error
}

Example Usage: VolumesReplicationClient.VolumesReplicationStatus

ctx := context.TODO()
id := volumesreplication.NewVolumeID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "capacityPoolValue", "volumeValue")

read, err := client.VolumesReplicationStatus(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: VolumesReplicationClient.VolumesResyncReplication

ctx := context.TODO()
id := volumesreplication.NewVolumeID("12345678-1234-9876-4563-123456789012", "example-resource-group", "netAppAccountValue", "capacityPoolValue", "volumeValue")

if err := client.VolumesResyncReplicationThenPoll(ctx, id); err != nil {
	// handle the error
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForMirrorState

func PossibleValuesForMirrorState() []string

func PossibleValuesForRelationshipStatus

func PossibleValuesForRelationshipStatus() []string

func ValidateVolumeID

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

ValidateVolumeID checks that 'input' can be parsed as a Volume ID

Types

type AuthorizeRequest

type AuthorizeRequest struct {
	RemoteVolumeResourceId *string `json:"remoteVolumeResourceId,omitempty"`
}

type BreakReplicationRequest

type BreakReplicationRequest struct {
	ForceBreakReplication *bool `json:"forceBreakReplication,omitempty"`
}

type MirrorState

type MirrorState string
const (
	MirrorStateBroken        MirrorState = "Broken"
	MirrorStateMirrored      MirrorState = "Mirrored"
	MirrorStateUninitialized MirrorState = "Uninitialized"
)

func (*MirrorState) UnmarshalJSON added in v0.20230712.1163130

func (s *MirrorState) UnmarshalJSON(bytes []byte) error

type RelationshipStatus

type RelationshipStatus string
const (
	RelationshipStatusIdle         RelationshipStatus = "Idle"
	RelationshipStatusTransferring RelationshipStatus = "Transferring"
)

func (*RelationshipStatus) UnmarshalJSON added in v0.20230712.1163130

func (s *RelationshipStatus) UnmarshalJSON(bytes []byte) error

type ReplicationStatus

type ReplicationStatus struct {
	ErrorMessage       *string             `json:"errorMessage,omitempty"`
	Healthy            *bool               `json:"healthy,omitempty"`
	MirrorState        *MirrorState        `json:"mirrorState,omitempty"`
	RelationshipStatus *RelationshipStatus `json:"relationshipStatus,omitempty"`
	TotalProgress      *string             `json:"totalProgress,omitempty"`
}

type VolumeId

type VolumeId struct {
	SubscriptionId    string
	ResourceGroupName string
	NetAppAccountName string
	CapacityPoolName  string
	VolumeName        string
}

VolumeId is a struct representing the Resource ID for a Volume

func NewVolumeID

func NewVolumeID(subscriptionId string, resourceGroupName string, netAppAccountName string, capacityPoolName string, volumeName string) VolumeId

NewVolumeID returns a new VolumeId struct

func ParseVolumeID

func ParseVolumeID(input string) (*VolumeId, error)

ParseVolumeID parses 'input' into a VolumeId

func ParseVolumeIDInsensitively

func ParseVolumeIDInsensitively(input string) (*VolumeId, error)

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

func (VolumeId) ID

func (id VolumeId) ID() string

ID returns the formatted Volume ID

func (VolumeId) Segments

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

Segments returns a slice of Resource ID Segments which comprise this Volume ID

func (VolumeId) String

func (id VolumeId) String() string

String returns a human-readable description of this Volume ID

type VolumesAuthorizeReplicationOperationResponse

type VolumesAuthorizeReplicationOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type VolumesBreakReplicationOperationResponse

type VolumesBreakReplicationOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type VolumesDeleteReplicationOperationResponse

type VolumesDeleteReplicationOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type VolumesReInitializeReplicationOperationResponse

type VolumesReInitializeReplicationOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type VolumesReplicationClient

type VolumesReplicationClient struct {
	Client *resourcemanager.Client
}

func NewVolumesReplicationClientWithBaseURI

func NewVolumesReplicationClientWithBaseURI(api environments.Api) (*VolumesReplicationClient, error)

func (VolumesReplicationClient) VolumesAuthorizeReplication

func (c VolumesReplicationClient) VolumesAuthorizeReplication(ctx context.Context, id VolumeId, input AuthorizeRequest) (result VolumesAuthorizeReplicationOperationResponse, err error)

VolumesAuthorizeReplication ...

func (VolumesReplicationClient) VolumesAuthorizeReplicationThenPoll

func (c VolumesReplicationClient) VolumesAuthorizeReplicationThenPoll(ctx context.Context, id VolumeId, input AuthorizeRequest) error

VolumesAuthorizeReplicationThenPoll performs VolumesAuthorizeReplication then polls until it's completed

func (VolumesReplicationClient) VolumesBreakReplication

VolumesBreakReplication ...

func (VolumesReplicationClient) VolumesBreakReplicationThenPoll

func (c VolumesReplicationClient) VolumesBreakReplicationThenPoll(ctx context.Context, id VolumeId, input BreakReplicationRequest) error

VolumesBreakReplicationThenPoll performs VolumesBreakReplication then polls until it's completed

func (VolumesReplicationClient) VolumesDeleteReplication

func (c VolumesReplicationClient) VolumesDeleteReplication(ctx context.Context, id VolumeId) (result VolumesDeleteReplicationOperationResponse, err error)

VolumesDeleteReplication ...

func (VolumesReplicationClient) VolumesDeleteReplicationThenPoll

func (c VolumesReplicationClient) VolumesDeleteReplicationThenPoll(ctx context.Context, id VolumeId) error

VolumesDeleteReplicationThenPoll performs VolumesDeleteReplication then polls until it's completed

func (VolumesReplicationClient) VolumesReInitializeReplication

func (c VolumesReplicationClient) VolumesReInitializeReplication(ctx context.Context, id VolumeId) (result VolumesReInitializeReplicationOperationResponse, err error)

VolumesReInitializeReplication ...

func (VolumesReplicationClient) VolumesReInitializeReplicationThenPoll

func (c VolumesReplicationClient) VolumesReInitializeReplicationThenPoll(ctx context.Context, id VolumeId) error

VolumesReInitializeReplicationThenPoll performs VolumesReInitializeReplication then polls until it's completed

func (VolumesReplicationClient) VolumesReplicationStatus

func (c VolumesReplicationClient) VolumesReplicationStatus(ctx context.Context, id VolumeId) (result VolumesReplicationStatusOperationResponse, err error)

VolumesReplicationStatus ...

func (VolumesReplicationClient) VolumesResyncReplication

func (c VolumesReplicationClient) VolumesResyncReplication(ctx context.Context, id VolumeId) (result VolumesResyncReplicationOperationResponse, err error)

VolumesResyncReplication ...

func (VolumesReplicationClient) VolumesResyncReplicationThenPoll

func (c VolumesReplicationClient) VolumesResyncReplicationThenPoll(ctx context.Context, id VolumeId) error

VolumesResyncReplicationThenPoll performs VolumesResyncReplication then polls until it's completed

type VolumesReplicationStatusOperationResponse

type VolumesReplicationStatusOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *ReplicationStatus
}

type VolumesResyncReplicationOperationResponse

type VolumesResyncReplicationOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

Jump to

Keyboard shortcuts

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