Skip to main content

managed_maintenance_window_status

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

Overview

Namemanaged_maintenance_window_status
TypeResource
Idazure.service_fabric_managed_clusters.managed_maintenance_window_status

Fields

NameDatatypeDescription
canApplyUpdatesbooleanIf updates can be applied.
isRegionReadybooleanIndicates if the region is ready to configure maintenance windows.
isWindowActivebooleanIf maintenance window is active.
isWindowEnabledbooleanIf maintenance window is enabled on this cluster.
lastWindowEndTimeUTCstringLast window end time in UTC.
lastWindowStartTimeUTCstringLast window start time in UTC.
lastWindowStatusUpdateAtUTCstringLast window update time in UTC.

Methods

NameAccessible byRequired ParamsDescription
getSELECTclusterName, resourceGroupName, subscriptionIdAction to get Maintenance Window Status of the Service Fabric Managed Clusters.

SELECT examples

Action to get Maintenance Window Status of the Service Fabric Managed Clusters.

SELECT
canApplyUpdates,
isRegionReady,
isWindowActive,
isWindowEnabled,
lastWindowEndTimeUTC,
lastWindowStartTimeUTC,
lastWindowStatusUpdateAtUTC
FROM azure.service_fabric_managed_clusters.managed_maintenance_window_status
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';