cluster_versions
Creates, updates, deletes, gets or lists a cluster_versions
resource.
Overview
Name | cluster_versions |
Type | Resource |
Id | azure.service_fabric.cluster_versions |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The identification of the result |
name | string | The name of the result |
properties | object | The detail of the Service Fabric runtime version result |
type | string | The result resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clusterVersion, location, subscriptionId | Gets information about an available Service Fabric cluster code version. |
get_by_environment | SELECT | clusterVersion, environment, location, subscriptionId | Gets information about an available Service Fabric cluster code version by environment. |
list | SELECT | location, subscriptionId | Gets all available code versions for Service Fabric cluster resources by location. |
list_by_environment | SELECT | environment, location, subscriptionId | Gets all available code versions for Service Fabric cluster resources by environment. |
SELECT
examples
Gets all available code versions for Service Fabric cluster resources by location.
SELECT
id,
name,
properties,
type
FROM azure.service_fabric.cluster_versions
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';