updates_parents
Creates, updates, deletes, gets or lists a updates_parents
resource.
Overview
Name | updates_parents |
Type | Resource |
Id | azure.maintenance.updates_parents |
Fields
Name | Datatype | Description |
---|---|---|
impactDurationInSec | integer | Duration of impact in seconds |
impactType | string | The impact type |
maintenanceScope | string | The impact area |
notBefore | string | Time when Azure will start force updates if not self-updated by customer before this time |
properties | object | Properties for update |
status | string | The status |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | providerName, resourceGroupName, resourceName, resourceParentName, resourceParentType, resourceType, subscriptionId | Get updates to resources. |
SELECT
examples
Get updates to resources.
SELECT
impactDurationInSec,
impactType,
maintenanceScope,
notBefore,
properties,
status
FROM azure.maintenance.updates_parents
WHERE providerName = '{{ providerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND resourceParentName = '{{ resourceParentName }}'
AND resourceParentType = '{{ resourceParentType }}'
AND resourceType = '{{ resourceType }}'
AND subscriptionId = '{{ subscriptionId }}';