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_pool.standby_container_group_pool_runtime_views

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
instanceCountSummaryarrayA list containing the counts of container groups in each possible state, as known by the StandbyPool resource provider. Required.
predictionobjectDisplays prediction information of the standby pool.
provisioningStatestringDisplays the provisioning state of the standby pool. Known values are: "Succeeded", "Failed", "Canceled", and "Deleting". (Succeeded, Failed, Canceled, Deleting)
statusobjectDisplay status of the standby pool.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, standby_container_group_pool_name, runtime_view, subscription_idGet a StandbyContainerGroupPoolRuntimeViewResource.
list_by_standby_poolselectresource_group_name, standby_container_group_pool_name, subscription_idList 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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
runtime_viewstringThe 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. Required.
standby_container_group_pool_namestringName of the standby container group pool. Required.
subscription_idstring

SELECT examples

Get a StandbyContainerGroupPoolRuntimeViewResource.

SELECT
id,
name,
instanceCountSummary,
prediction,
provisioningState,
status,
systemData,
type
FROM azure.standby_pool.standby_container_group_pool_runtime_views
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND standby_container_group_pool_name = '{{ standby_container_group_pool_name }}' -- required
AND runtime_view = '{{ runtime_view }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;