cluster_configurations
Creates, updates, deletes, gets or lists a cluster_configurations resource.
Overview
| Name | cluster_configurations |
| Type | Resource |
| Id | azure.service_fabric_dataplane.cluster_configurations |
Fields
The following fields are returned by SELECT queries:
- get_cluster_configuration
| Name | Datatype | Description |
|---|---|---|
ClusterConfiguration | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_cluster_configuration | select | ConfigurationApiVersion, endpoint | timeout | Get the Service Fabric standalone cluster configuration. The cluster configuration contains properties of the cluster that include different node types on the cluster, security configurations, fault, and upgrade domain topologies, etc. |
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 |
|---|---|---|
ConfigurationApiVersion | string | The API version of the Standalone cluster json configuration. |
endpoint | string | The service endpoint host (no scheme). (default: ) |
timeout | integer (int64) | The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds. |
SELECT examples
- get_cluster_configuration
Get the Service Fabric standalone cluster configuration. The cluster configuration contains properties of the cluster that include different node types on the cluster, security configurations, fault, and upgrade domain topologies, etc.
SELECT
ClusterConfiguration
FROM azure.service_fabric_dataplane.cluster_configurations
WHERE ConfigurationApiVersion = '{{ ConfigurationApiVersion }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;