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
The following fields are returned by SELECT queries:
- get
| 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 (date-time) | Last window end time in UTC. |
lastWindowStartTimeUTC | string (date-time) | Last window start time in UTC. |
lastWindowStatusUpdateAtUTC | string (date-time) | Last window update time in UTC. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, cluster_name, subscription_id | Action to get Maintenance Window Status of the Service Fabric Managed Clusters. |
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 |
|---|---|---|
cluster_name | string | The name of the cluster resource. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
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 resource_group_name = '{{ resource_group_name }}' -- required
AND cluster_name = '{{ cluster_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;