Skip to main content

updates_parents

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

Overview

Nameupdates_parents
TypeResource
Idazure.maintenance.updates_parents

Fields

NameDatatypeDescription
impactDurationInSecintegerDuration of impact in seconds
impactTypestringThe impact type
maintenanceScopestringThe impact area
notBeforestringTime when Azure will start force updates if not self-updated by customer before this time
propertiesobjectProperties for update
statusstringThe status

Methods

NameAccessible byRequired ParamsDescription
listSELECTproviderName, resourceGroupName, resourceName, resourceParentName, resourceParentType, resourceType, subscriptionIdGet 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 }}';