managed_clusters_upgrade_profiles
Creates, updates, deletes, gets or lists a managed_clusters_upgrade_profiles
resource.
Overview
Name | managed_clusters_upgrade_profiles |
Type | Resource |
Id | azure.aks.managed_clusters_upgrade_profiles |
Fields
- vw_managed_clusters_upgrade_profiles
- managed_clusters_upgrade_profiles
Name | Datatype | Description |
---|---|---|
id | text | The ID of the upgrade profile. |
name | text | The name of the upgrade profile. |
agent_pool_profiles | text | field from the properties object |
control_plane_profile | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The type of the upgrade profile. |
Name | Datatype | Description |
---|---|---|
id | string | The ID of the upgrade profile. |
name | string | The name of the upgrade profile. |
properties | object | Control plane and agent pool upgrade profiles. |
type | string | The type of the upgrade profile. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, resourceName, subscriptionId |
SELECT
examples
- vw_managed_clusters_upgrade_profiles
- managed_clusters_upgrade_profiles
SELECT
id,
name,
agent_pool_profiles,
control_plane_profile,
resourceGroupName,
resourceName,
subscriptionId,
type
FROM azure.aks.vw_managed_clusters_upgrade_profiles
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.aks.managed_clusters_upgrade_profiles
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';