unified_resilience_items
Creates, updates, deletes, gets or lists an unified_resilience_items resource.
Overview
| Name | unified_resilience_items |
| Type | Resource |
| Id | azure.resilience_management.unified_resilience_items |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
goals | object | Computed and copied data of resilience goals. Required. |
lastModifiedTime | string (date-time) | Last modified time of the unified resilience item. Required. |
provisioningState | string | Provisioning state. Known values are: "Succeeded", "Failed", "Canceled", "Provisioning", "Updating", "Deleting", and "Accepted". (Succeeded, Failed, Canceled, Provisioning, Updating, Deleting, Accepted) |
recommendations | object | Computed and copied data of Azure recommendations. Required. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
goals | object | Computed and copied data of resilience goals. Required. |
lastModifiedTime | string (date-time) | Last modified time of the unified resilience item. Required. |
provisioningState | string | Provisioning state. Known values are: "Succeeded", "Failed", "Canceled", "Provisioning", "Updating", "Deleting", and "Accepted". (Succeeded, Failed, Canceled, Provisioning, Updating, Deleting, Accepted) |
recommendations | object | Computed and copied data of Azure recommendations. Required. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | service_group_name, unified_resilience_item_name | Get a UnifiedResilienceItem. | |
list | select | service_group_name | $skipToken, $top | List 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.
| Name | Datatype | Description |
|---|---|---|
service_group_name | string | The name of the service group. Required. |
unified_resilience_item_name | string | The name of the unified resilience item. Required. |
$skipToken | string | Skip over when retrieving results. Default value is None. |
$top | integer | Number of elements to return when retrieving results. Default value is None. |
SELECT examples
- get
- list
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
;
List UnifiedResilienceItem resources by tenant.
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 $skipToken = '{{ $skipToken }}'
AND $top = '{{ $top }}'
;