agent_pools_upgrade_profiles
Creates, updates, deletes, gets or lists an agent_pools_upgrade_profiles resource.
Overview
| Name | agent_pools_upgrade_profiles |
| Type | Resource |
| Id | azure.aks.agent_pools_upgrade_profiles |
Fields
The following fields are returned by SELECT queries:
- get
| 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 properties of the agent pool upgrade profile. |
type | string | The type of the agent pool upgrade profile. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, resourceName, agentPoolName |
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.
| Name | Datatype | Description |
|---|---|---|
agentPoolName | string | The name of the agent pool. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
resourceName | string | The name of the managed cluster resource. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
OK
SELECT
id,
name,
properties,
type
FROM azure.aks.agent_pools_upgrade_profiles
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND agentPoolName = '{{ agentPoolName }}' -- required
;