Skip to main content

unified_resilience_items

Creates, updates, deletes, gets or lists an unified_resilience_items resource.

Overview

Nameunified_resilience_items
TypeResource
Idazure.resilience_management.unified_resilience_items

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.
goalsobjectComputed and copied data of resilience goals. Required.
lastModifiedTimestring (date-time)Last modified time of the unified resilience item. Required.
provisioningStatestringProvisioning state. Known values are: "Succeeded", "Failed", "Canceled", "Provisioning", "Updating", "Deleting", and "Accepted". (Succeeded, Failed, Canceled, Provisioning, Updating, Deleting, Accepted)
recommendationsobjectComputed and copied data of Azure recommendations. Required.
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
getselectservice_group_name, unified_resilience_item_nameGet a UnifiedResilienceItem.
listselectservice_group_name$skipToken, $topList UnifiedResilienceItem resources by tenant.

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
service_group_namestringThe name of the service group. Required.
unified_resilience_item_namestringThe name of the unified resilience item. Required.
$skipTokenstringSkip over when retrieving results. Default value is None.
$topintegerNumber of elements to return when retrieving results. Default value is None.

SELECT examples

Get a UnifiedResilienceItem.

SELECT
id,
name,
goals,
lastModifiedTime,
provisioningState,
recommendations,
systemData,
type
FROM azure.resilience_management.unified_resilience_items
WHERE service_group_name = '{{ service_group_name }}' -- required
AND unified_resilience_item_name = '{{ unified_resilience_item_name }}' -- required
;