managed_az_resiliency_status
Creates, updates, deletes, gets or lists a managed_az_resiliency_status
resource.
Overview
Name | managed_az_resiliency_status |
Type | Resource |
Id | azure.service_fabric_managed_clusters.managed_az_resiliency_status |
Fields
The following fields are returned by SELECT
queries:
- get
The operation completed successfully.
Name | Datatype | Description |
---|---|---|
baseResourceStatus | array | List of Managed VM Sizes for Service Fabric Managed Clusters. |
isClusterZoneResilient | boolean | URL to get the next set of Managed VM Sizes if there are any. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , clusterName , subscriptionId | api-version | Action to get Az Resiliency Status of all the Base resources constituting 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 |
---|---|---|
clusterName | string | The name of the cluster resource. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | The customer subscription identifier. |
api-version | string | The version of the Service Fabric resource provider API. This is a required parameter and it's value must be "2024-06-01-preview" for this specification. |
SELECT
examples
- get
Action to get Az Resiliency Status of all the Base resources constituting Service Fabric Managed Clusters.
SELECT
baseResourceStatus,
isClusterZoneResilient
FROM azure.service_fabric_managed_clusters.managed_az_resiliency_status
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
;