managed_cluster_versions
Creates, updates, deletes, gets or lists a managed_cluster_versions
resource.
Overview
Name | managed_cluster_versions |
Type | Resource |
Id | azure.service_fabric_managed_clusters.managed_cluster_versions |
Fields
- vw_managed_cluster_versions
- managed_cluster_versions
Name | Datatype | Description |
---|---|---|
id | text | The identification of the result |
name | text | The name of the result |
clusterVersion | text | field from the properties object |
cluster_code_version | text | field from the properties object |
environment | text | field from the properties object |
location | text | field from the properties object |
os_type | text | field from the properties object |
subscriptionId | text | field from the properties object |
support_expiry_utc | text | field from the properties object |
type | text | The result resource type |
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 managed 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.
- vw_managed_cluster_versions
- managed_cluster_versions
SELECT
id,
name,
clusterVersion,
cluster_code_version,
environment,
location,
os_type,
subscriptionId,
support_expiry_utc,
type
FROM azure.service_fabric_managed_clusters.vw_managed_cluster_versions
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.service_fabric_managed_clusters.managed_cluster_versions
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';