virtualmachineinstances

package
v0.20240304.1112406 Latest Latest
Warning

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

Go to latest
Published: Mar 4, 2024 License: MPL-2.0 Imports: 12 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/systemcentervirtualmachinemanager/2023-10-07/virtualmachineinstances Documentation

The virtualmachineinstances SDK allows for interaction with the Azure Resource Manager Service systemcentervirtualmachinemanager (API Version 2023-10-07).

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-helpers/resourcemanager/commonids"
import "github.com/hashicorp/go-azure-sdk/resource-manager/systemcentervirtualmachinemanager/2023-10-07/virtualmachineinstances"

Client Initialization

client := virtualmachineinstances.NewVirtualMachineInstancesClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: VirtualMachineInstancesClient.CreateCheckpoint

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

payload := virtualmachineinstances.VirtualMachineCreateCheckpoint{
	// ...
}


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

Example Usage: VirtualMachineInstancesClient.CreateOrUpdate

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

payload := virtualmachineinstances.VirtualMachineInstance{
	// ...
}


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

Example Usage: VirtualMachineInstancesClient.Delete

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

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

Example Usage: VirtualMachineInstancesClient.DeleteCheckpoint

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

payload := virtualmachineinstances.VirtualMachineDeleteCheckpoint{
	// ...
}


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

Example Usage: VirtualMachineInstancesClient.Get

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

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: VirtualMachineInstancesClient.List

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

// 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
}

Example Usage: VirtualMachineInstancesClient.Restart

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

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

Example Usage: VirtualMachineInstancesClient.RestoreCheckpoint

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

payload := virtualmachineinstances.VirtualMachineRestoreCheckpoint{
	// ...
}


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

Example Usage: VirtualMachineInstancesClient.Start

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

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

Example Usage: VirtualMachineInstancesClient.Stop

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

payload := virtualmachineinstances.StopVirtualMachineOptions{
	// ...
}


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

Example Usage: VirtualMachineInstancesClient.Update

ctx := context.TODO()
id := commonids.NewScopeID("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/some-resource-group")

payload := virtualmachineinstances.VirtualMachineInstanceUpdate{
	// ...
}


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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForAllocationMethod

func PossibleValuesForAllocationMethod() []string

func PossibleValuesForCreateDiffDisk

func PossibleValuesForCreateDiffDisk() []string

func PossibleValuesForDeleteFromHost

func PossibleValuesForDeleteFromHost() []string

func PossibleValuesForDynamicMemoryEnabled

func PossibleValuesForDynamicMemoryEnabled() []string

func PossibleValuesForForce

func PossibleValuesForForce() []string

func PossibleValuesForIsHighlyAvailable

func PossibleValuesForIsHighlyAvailable() []string

func PossibleValuesForLimitCPUForMigration

func PossibleValuesForLimitCPUForMigration() []string

func PossibleValuesForOsType

func PossibleValuesForOsType() []string

func PossibleValuesForProvisioningState

func PossibleValuesForProvisioningState() []string

func PossibleValuesForSkipShutdown

func PossibleValuesForSkipShutdown() []string

Types

type AllocationMethod

type AllocationMethod string
const (
	AllocationMethodDynamic AllocationMethod = "Dynamic"
	AllocationMethodStatic  AllocationMethod = "Static"
)

func (*AllocationMethod) UnmarshalJSON

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

type AvailabilitySetListAvailabilitySetsInlined

type AvailabilitySetListAvailabilitySetsInlined struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

type Checkpoint

type Checkpoint struct {
	CheckpointID       *string `json:"checkpointID,omitempty"`
	Description        *string `json:"description,omitempty"`
	Name               *string `json:"name,omitempty"`
	ParentCheckpointID *string `json:"parentCheckpointID,omitempty"`
}

type CreateCheckpointOperationResponse

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

type CreateDiffDisk

type CreateDiffDisk string
const (
	CreateDiffDiskFalse CreateDiffDisk = "false"
	CreateDiffDiskTrue  CreateDiffDisk = "true"
)

func (*CreateDiffDisk) UnmarshalJSON

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

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *VirtualMachineInstance
}

type DeleteCheckpointOperationResponse

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

type DeleteFromHost

type DeleteFromHost string
const (
	DeleteFromHostFalse DeleteFromHost = "false"
	DeleteFromHostTrue  DeleteFromHost = "true"
)

func (*DeleteFromHost) UnmarshalJSON

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

type DeleteOperationOptions

type DeleteOperationOptions struct {
	DeleteFromHost *DeleteFromHost
	Force          *Force
}

func DefaultDeleteOperationOptions

func DefaultDeleteOperationOptions() DeleteOperationOptions

func (DeleteOperationOptions) ToHeaders

func (o DeleteOperationOptions) ToHeaders() *client.Headers

func (DeleteOperationOptions) ToOData

func (o DeleteOperationOptions) ToOData() *odata.Query

func (DeleteOperationOptions) ToQuery

type DeleteOperationResponse

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

type DynamicMemoryEnabled

type DynamicMemoryEnabled string
const (
	DynamicMemoryEnabledFalse DynamicMemoryEnabled = "false"
	DynamicMemoryEnabledTrue  DynamicMemoryEnabled = "true"
)

func (*DynamicMemoryEnabled) UnmarshalJSON

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

type ExtendedLocation

type ExtendedLocation struct {
	Name *string `json:"name,omitempty"`
	Type *string `json:"type,omitempty"`
}

type Force

type Force string
const (
	ForceFalse Force = "false"
	ForceTrue  Force = "true"
)

func (*Force) UnmarshalJSON

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

type GetOperationResponse

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

type HardwareProfile

type HardwareProfile struct {
	CpuCount             *int64                `json:"cpuCount,omitempty"`
	DynamicMemoryEnabled *DynamicMemoryEnabled `json:"dynamicMemoryEnabled,omitempty"`
	DynamicMemoryMaxMB   *int64                `json:"dynamicMemoryMaxMB,omitempty"`
	DynamicMemoryMinMB   *int64                `json:"dynamicMemoryMinMB,omitempty"`
	IsHighlyAvailable    *IsHighlyAvailable    `json:"isHighlyAvailable,omitempty"`
	LimitCPUForMigration *LimitCPUForMigration `json:"limitCpuForMigration,omitempty"`
	MemoryMB             *int64                `json:"memoryMB,omitempty"`
}

type HardwareProfileUpdate

type HardwareProfileUpdate struct {
	CpuCount             *int64                `json:"cpuCount,omitempty"`
	DynamicMemoryEnabled *DynamicMemoryEnabled `json:"dynamicMemoryEnabled,omitempty"`
	DynamicMemoryMaxMB   *int64                `json:"dynamicMemoryMaxMB,omitempty"`
	DynamicMemoryMinMB   *int64                `json:"dynamicMemoryMinMB,omitempty"`
	LimitCPUForMigration *LimitCPUForMigration `json:"limitCpuForMigration,omitempty"`
	MemoryMB             *int64                `json:"memoryMB,omitempty"`
}

type InfrastructureProfile

type InfrastructureProfile struct {
	BiosGuid                 *string       `json:"biosGuid,omitempty"`
	CheckpointType           *string       `json:"checkpointType,omitempty"`
	Checkpoints              *[]Checkpoint `json:"checkpoints,omitempty"`
	CloudId                  *string       `json:"cloudId,omitempty"`
	Generation               *int64        `json:"generation,omitempty"`
	InventoryItemId          *string       `json:"inventoryItemId,omitempty"`
	LastRestoredVMCheckpoint *Checkpoint   `json:"lastRestoredVMCheckpoint,omitempty"`
	TemplateId               *string       `json:"templateId,omitempty"`
	Uuid                     *string       `json:"uuid,omitempty"`
	VMmServerId              *string       `json:"vmmServerId,omitempty"`
	VirtualMachineName       *string       `json:"vmName,omitempty"`
}

type InfrastructureProfileUpdate

type InfrastructureProfileUpdate struct {
	CheckpointType *string `json:"checkpointType,omitempty"`
}

type IsHighlyAvailable

type IsHighlyAvailable string
const (
	IsHighlyAvailableFalse IsHighlyAvailable = "false"
	IsHighlyAvailableTrue  IsHighlyAvailable = "true"
)

func (*IsHighlyAvailable) UnmarshalJSON

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

type LimitCPUForMigration

type LimitCPUForMigration string
const (
	LimitCPUForMigrationFalse LimitCPUForMigration = "false"
	LimitCPUForMigrationTrue  LimitCPUForMigration = "true"
)

func (*LimitCPUForMigration) UnmarshalJSON

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

type ListCompleteResult

type ListCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []VirtualMachineInstance
}

type ListOperationResponse

type ListOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]VirtualMachineInstance
}

type NetworkInterface

type NetworkInterface struct {
	DisplayName      *string           `json:"displayName,omitempty"`
	IPv4AddressType  *AllocationMethod `json:"ipv4AddressType,omitempty"`
	IPv4Addresses    *[]string         `json:"ipv4Addresses,omitempty"`
	IPv6AddressType  *AllocationMethod `json:"ipv6AddressType,omitempty"`
	IPv6Addresses    *[]string         `json:"ipv6Addresses,omitempty"`
	MacAddress       *string           `json:"macAddress,omitempty"`
	MacAddressType   *AllocationMethod `json:"macAddressType,omitempty"`
	Name             *string           `json:"name,omitempty"`
	NetworkName      *string           `json:"networkName,omitempty"`
	NicId            *string           `json:"nicId,omitempty"`
	VirtualNetworkId *string           `json:"virtualNetworkId,omitempty"`
}

type NetworkInterfaceUpdate

type NetworkInterfaceUpdate struct {
	IPv4AddressType  *AllocationMethod `json:"ipv4AddressType,omitempty"`
	IPv6AddressType  *AllocationMethod `json:"ipv6AddressType,omitempty"`
	MacAddress       *string           `json:"macAddress,omitempty"`
	MacAddressType   *AllocationMethod `json:"macAddressType,omitempty"`
	Name             *string           `json:"name,omitempty"`
	NicId            *string           `json:"nicId,omitempty"`
	VirtualNetworkId *string           `json:"virtualNetworkId,omitempty"`
}

type NetworkProfile

type NetworkProfile struct {
	NetworkInterfaces *[]NetworkInterface `json:"networkInterfaces,omitempty"`
}

type NetworkProfileUpdate

type NetworkProfileUpdate struct {
	NetworkInterfaces *[]NetworkInterfaceUpdate `json:"networkInterfaces,omitempty"`
}

type OsProfileForVMInstance

type OsProfileForVMInstance struct {
	AdminPassword *string `json:"adminPassword,omitempty"`
	ComputerName  *string `json:"computerName,omitempty"`
	OsSku         *string `json:"osSku,omitempty"`
	OsType        *OsType `json:"osType,omitempty"`
	OsVersion     *string `json:"osVersion,omitempty"`
}

type OsType

type OsType string
const (
	OsTypeLinux   OsType = "Linux"
	OsTypeOther   OsType = "Other"
	OsTypeWindows OsType = "Windows"
)

func (*OsType) UnmarshalJSON

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

type ProvisioningState

type ProvisioningState string
const (
	ProvisioningStateAccepted     ProvisioningState = "Accepted"
	ProvisioningStateCanceled     ProvisioningState = "Canceled"
	ProvisioningStateCreated      ProvisioningState = "Created"
	ProvisioningStateDeleting     ProvisioningState = "Deleting"
	ProvisioningStateFailed       ProvisioningState = "Failed"
	ProvisioningStateProvisioning ProvisioningState = "Provisioning"
	ProvisioningStateSucceeded    ProvisioningState = "Succeeded"
	ProvisioningStateUpdating     ProvisioningState = "Updating"
)

func (*ProvisioningState) UnmarshalJSON

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

type RestartOperationResponse

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

type RestoreCheckpointOperationResponse

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

type SkipShutdown

type SkipShutdown string
const (
	SkipShutdownFalse SkipShutdown = "false"
	SkipShutdownTrue  SkipShutdown = "true"
)

func (*SkipShutdown) UnmarshalJSON

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

type StartOperationResponse

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

type StopOperationResponse

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

type StopVirtualMachineOptions

type StopVirtualMachineOptions struct {
	SkipShutdown *SkipShutdown `json:"skipShutdown,omitempty"`
}

type StorageProfile

type StorageProfile struct {
	Disks *[]VirtualDisk `json:"disks,omitempty"`
}

type StorageProfileUpdate

type StorageProfileUpdate struct {
	Disks *[]VirtualDiskUpdate `json:"disks,omitempty"`
}

type StorageQoSPolicyDetails

type StorageQoSPolicyDetails struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

type UpdateOperationResponse

type UpdateOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *VirtualMachineInstance
}

type VirtualDisk

type VirtualDisk struct {
	Bus              *int64                   `json:"bus,omitempty"`
	BusType          *string                  `json:"busType,omitempty"`
	CreateDiffDisk   *CreateDiffDisk          `json:"createDiffDisk,omitempty"`
	DiskId           *string                  `json:"diskId,omitempty"`
	DiskSizeGB       *int64                   `json:"diskSizeGB,omitempty"`
	DisplayName      *string                  `json:"displayName,omitempty"`
	Lun              *int64                   `json:"lun,omitempty"`
	MaxDiskSizeGB    *int64                   `json:"maxDiskSizeGB,omitempty"`
	Name             *string                  `json:"name,omitempty"`
	StorageQoSPolicy *StorageQoSPolicyDetails `json:"storageQoSPolicy,omitempty"`
	TemplateDiskId   *string                  `json:"templateDiskId,omitempty"`
	VhdFormatType    *string                  `json:"vhdFormatType,omitempty"`
	VhdType          *string                  `json:"vhdType,omitempty"`
	VolumeType       *string                  `json:"volumeType,omitempty"`
}

type VirtualDiskUpdate

type VirtualDiskUpdate struct {
	Bus              *int64                   `json:"bus,omitempty"`
	BusType          *string                  `json:"busType,omitempty"`
	DiskId           *string                  `json:"diskId,omitempty"`
	DiskSizeGB       *int64                   `json:"diskSizeGB,omitempty"`
	Lun              *int64                   `json:"lun,omitempty"`
	Name             *string                  `json:"name,omitempty"`
	StorageQoSPolicy *StorageQoSPolicyDetails `json:"storageQoSPolicy,omitempty"`
	VhdType          *string                  `json:"vhdType,omitempty"`
}

type VirtualMachineCreateCheckpoint

type VirtualMachineCreateCheckpoint struct {
	Description *string `json:"description,omitempty"`
	Name        *string `json:"name,omitempty"`
}

type VirtualMachineDeleteCheckpoint

type VirtualMachineDeleteCheckpoint struct {
	Id *string `json:"id,omitempty"`
}

type VirtualMachineInstance

type VirtualMachineInstance struct {
	ExtendedLocation ExtendedLocation                 `json:"extendedLocation"`
	Id               *string                          `json:"id,omitempty"`
	Name             *string                          `json:"name,omitempty"`
	Properties       VirtualMachineInstanceProperties `json:"properties"`
	SystemData       *systemdata.SystemData           `json:"systemData,omitempty"`
	Type             *string                          `json:"type,omitempty"`
}

type VirtualMachineInstanceOperationPredicate

type VirtualMachineInstanceOperationPredicate struct {
	Id   *string
	Name *string
	Type *string
}

func (VirtualMachineInstanceOperationPredicate) Matches

type VirtualMachineInstanceProperties

type VirtualMachineInstanceProperties struct {
	AvailabilitySets      *[]AvailabilitySetListAvailabilitySetsInlined `json:"availabilitySets,omitempty"`
	HardwareProfile       *HardwareProfile                              `json:"hardwareProfile,omitempty"`
	InfrastructureProfile *InfrastructureProfile                        `json:"infrastructureProfile,omitempty"`
	NetworkProfile        *NetworkProfile                               `json:"networkProfile,omitempty"`
	OsProfile             *OsProfileForVMInstance                       `json:"osProfile,omitempty"`
	PowerState            *string                                       `json:"powerState,omitempty"`
	ProvisioningState     *ProvisioningState                            `json:"provisioningState,omitempty"`
	StorageProfile        *StorageProfile                               `json:"storageProfile,omitempty"`
}

type VirtualMachineInstanceUpdate

type VirtualMachineInstanceUpdate struct {
	Properties *VirtualMachineInstanceUpdateProperties `json:"properties,omitempty"`
}

type VirtualMachineInstanceUpdateProperties

type VirtualMachineInstanceUpdateProperties struct {
	AvailabilitySets      *[]AvailabilitySetListAvailabilitySetsInlined `json:"availabilitySets,omitempty"`
	HardwareProfile       *HardwareProfileUpdate                        `json:"hardwareProfile,omitempty"`
	InfrastructureProfile *InfrastructureProfileUpdate                  `json:"infrastructureProfile,omitempty"`
	NetworkProfile        *NetworkProfileUpdate                         `json:"networkProfile,omitempty"`
	StorageProfile        *StorageProfileUpdate                         `json:"storageProfile,omitempty"`
}

type VirtualMachineInstancesClient

type VirtualMachineInstancesClient struct {
	Client *resourcemanager.Client
}

func NewVirtualMachineInstancesClientWithBaseURI

func NewVirtualMachineInstancesClientWithBaseURI(sdkApi sdkEnv.Api) (*VirtualMachineInstancesClient, error)

func (VirtualMachineInstancesClient) CreateCheckpoint

CreateCheckpoint ...

func (VirtualMachineInstancesClient) CreateCheckpointThenPoll

CreateCheckpointThenPoll performs CreateCheckpoint then polls until it's completed

func (VirtualMachineInstancesClient) CreateOrUpdate

CreateOrUpdate ...

func (VirtualMachineInstancesClient) CreateOrUpdateThenPoll

CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed

func (VirtualMachineInstancesClient) Delete

Delete ...

func (VirtualMachineInstancesClient) DeleteCheckpoint

DeleteCheckpoint ...

func (VirtualMachineInstancesClient) DeleteCheckpointThenPoll

DeleteCheckpointThenPoll performs DeleteCheckpoint then polls until it's completed

func (VirtualMachineInstancesClient) DeleteThenPoll

DeleteThenPoll performs Delete then polls until it's completed

func (VirtualMachineInstancesClient) Get

Get ...

func (VirtualMachineInstancesClient) List

List ...

func (VirtualMachineInstancesClient) ListComplete

ListComplete retrieves all the results into a single object

func (VirtualMachineInstancesClient) ListCompleteMatchingPredicate

func (c VirtualMachineInstancesClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.ScopeId, predicate VirtualMachineInstanceOperationPredicate) (result ListCompleteResult, err error)

ListCompleteMatchingPredicate retrieves all the results and then applies the predicate

func (VirtualMachineInstancesClient) Restart

Restart ...

func (VirtualMachineInstancesClient) RestartThenPoll

RestartThenPoll performs Restart then polls until it's completed

func (VirtualMachineInstancesClient) RestoreCheckpoint

RestoreCheckpoint ...

func (VirtualMachineInstancesClient) RestoreCheckpointThenPoll

RestoreCheckpointThenPoll performs RestoreCheckpoint then polls until it's completed

func (VirtualMachineInstancesClient) Start

Start ...

func (VirtualMachineInstancesClient) StartThenPoll

StartThenPoll performs Start then polls until it's completed

func (VirtualMachineInstancesClient) Stop

Stop ...

func (VirtualMachineInstancesClient) StopThenPoll

StopThenPoll performs Stop then polls until it's completed

func (VirtualMachineInstancesClient) Update

Update ...

func (VirtualMachineInstancesClient) UpdateThenPoll

UpdateThenPoll performs Update then polls until it's completed

type VirtualMachineRestoreCheckpoint

type VirtualMachineRestoreCheckpoint struct {
	Id *string `json:"id,omitempty"`
}

Jump to

Keyboard shortcuts

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