Skip to main content

cluster_configurations

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

Overview

Namecluster_configurations
TypeResource
Idazure.service_fabric_dataplane.cluster_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ClusterConfigurationstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_cluster_configurationselectConfigurationApiVersion, endpointtimeoutGet 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.

NameDatatypeDescription
ConfigurationApiVersionstringThe API version of the Standalone cluster json configuration.
endpointstringThe service endpoint host (no scheme). (default: )
timeoutinteger (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 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 }}'
;