Skip to main content

standby_container_group_pool_runtime_views

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

Overview

Namestandby_container_group_pool_runtime_views
TypeResource
Idazure.standby_pools.standby_container_group_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, standbyContainerGroupPoolName, runtimeViewGet a StandbyContainerGroupPoolRuntimeViewResource
list_by_standby_poolselectsubscriptionId, resourceGroupName, standbyContainerGroupPoolNameList StandbyContainerGroupPoolRuntimeViewResource resources by StandbyContainerGroupPoolResource

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.
standbyContainerGroupPoolNamestringName of the standby container group pool
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get a StandbyContainerGroupPoolRuntimeViewResource

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