Skip to main content

standby_virtual_machine_pool_runtime_views

Creates, updates, deletes, gets or lists a standby_virtual_machine_pool_runtime_views resource.

Overview

Namestandby_virtual_machine_pool_runtime_views
TypeResource
Idazure.standby_pools.standby_virtual_machine_pool_runtime_views

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, standbyVirtualMachinePoolName, runtimeViewGet a StandbyVirtualMachinePoolRuntimeViewResource
list_by_standby_poolselectsubscriptionId, resourceGroupName, standbyVirtualMachinePoolNameList StandbyVirtualMachinePoolRuntimeViewResource resources by StandbyVirtualMachinePoolResource

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
runtimeViewstringThe unique identifier for the runtime view. The input string should be the word 'latest', which will get the latest runtime view of the pool, otherwise the request will fail with NotFound exception.
standbyVirtualMachinePoolNamestringName of the standby virtual machine pool
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get a StandbyVirtualMachinePoolRuntimeViewResource

SELECT
properties
FROM azure.standby_pools.standby_virtual_machine_pool_runtime_views
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND standbyVirtualMachinePoolName = '{{ standbyVirtualMachinePoolName }}' -- required
AND runtimeView = '{{ runtimeView }}' -- required
;