managed_maintenance_window_status
Creates, updates, deletes, gets or lists a managed_maintenance_window_status
resource.
Overview
Name | managed_maintenance_window_status |
Type | Resource |
Id | azure.service_fabric_managed_clusters.managed_maintenance_window_status |
Fields
Name | Datatype | Description |
---|---|---|
canApplyUpdates | boolean | If updates can be applied. |
isRegionReady | boolean | Indicates if the region is ready to configure maintenance windows. |
isWindowActive | boolean | If maintenance window is active. |
isWindowEnabled | boolean | If maintenance window is enabled on this cluster. |
lastWindowEndTimeUTC | string | Last window end time in UTC. |
lastWindowStartTimeUTC | string | Last window start time in UTC. |
lastWindowStatusUpdateAtUTC | string | Last window update time in UTC. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clusterName, resourceGroupName, subscriptionId | Action 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 }}';