standby_virtual_machine_pool_runtime_views
Creates, updates, deletes, gets or lists a standby_virtual_machine_pool_runtime_views
resource.
Overview
Name | standby_virtual_machine_pool_runtime_views |
Type | Resource |
Id | azure.standby_pools.standby_virtual_machine_pool_runtime_views |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_standby_pool
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
properties | object | The resource-specific properties for this resource. |
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
properties | object | The resource-specific properties for this resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , standbyVirtualMachinePoolName , runtimeView | Get a StandbyVirtualMachinePoolRuntimeViewResource | |
list_by_standby_pool | select | subscriptionId , resourceGroupName , standbyVirtualMachinePoolName | List 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
runtimeView | string | The 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. |
standbyVirtualMachinePoolName | string | Name of the standby virtual machine pool |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list_by_standby_pool
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
;
List StandbyVirtualMachinePoolRuntimeViewResource resources by StandbyVirtualMachinePoolResource
SELECT
properties
FROM azure.standby_pools.standby_virtual_machine_pool_runtime_views
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND standbyVirtualMachinePoolName = '{{ standbyVirtualMachinePoolName }}' -- required
;