agent_pools_upgrade_profiles
Creates, updates, deletes, gets or lists a agent_pools_upgrade_profiles
resource.
Overview
Name | agent_pools_upgrade_profiles |
Type | Resource |
Id | azure.aks.agent_pools_upgrade_profiles |
Fields
- vw_agent_pools_upgrade_profiles
- agent_pools_upgrade_profiles
Name | Datatype | Description |
---|---|---|
id | text | The ID of the agent pool upgrade profile. |
name | text | The name of the agent pool upgrade profile. |
agentPoolName | text | field from the properties object |
kubernetes_version | text | field from the properties object |
latest_node_image_version | text | field from the properties object |
os_type | 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 agent pool upgrade profile. |
upgrades | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The ID of the agent pool upgrade profile. |
name | string | The name of the agent pool upgrade profile. |
properties | object | The list of available upgrade versions. |
type | string | The type of the agent pool upgrade profile. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | agentPoolName, resourceGroupName, resourceName, subscriptionId |
SELECT
examples
- vw_agent_pools_upgrade_profiles
- agent_pools_upgrade_profiles
SELECT
id,
name,
agentPoolName,
kubernetes_version,
latest_node_image_version,
os_type,
resourceGroupName,
resourceName,
subscriptionId,
type,
upgrades
FROM azure.aks.vw_agent_pools_upgrade_profiles
WHERE agentPoolName = '{{ agentPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.aks.agent_pools_upgrade_profiles
WHERE agentPoolName = '{{ agentPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';