managed_clusters_command_results
Creates, updates, deletes, gets or lists a managed_clusters_command_results
resource.
Overview
Name | managed_clusters_command_results |
Type | Resource |
Id | azure.aks.managed_clusters_command_results |
Fields
The following fields are returned by SELECT
queries:
- get
command finished
Name | Datatype | Description |
---|---|---|
id | string | The command id. |
properties | object | Properties of command result. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , resourceName , commandId |
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 |
---|---|---|
commandId | string | Id of the command. |
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
command finished
SELECT
id,
properties
FROM azure.aks.managed_clusters_command_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND commandId = '{{ commandId }}' -- required
;