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
- vw_managed_clusters_command_results
- managed_clusters_command_results
Name | Datatype | Description |
---|---|---|
id | text | The command id. |
commandId | text | field from the properties object |
exit_code | text | field from the properties object |
finished_at | text | field from the properties object |
logs | text | field from the properties object |
provisioning_state | text | field from the properties object |
reason | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
started_at | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The command id. |
properties | object | The results of a run command |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | commandId, resourceGroupName, resourceName, subscriptionId |
SELECT
examples
- vw_managed_clusters_command_results
- managed_clusters_command_results
SELECT
id,
commandId,
exit_code,
finished_at,
logs,
provisioning_state,
reason,
resourceGroupName,
resourceName,
started_at,
subscriptionId
FROM azure.aks.vw_managed_clusters_command_results
WHERE commandId = '{{ commandId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
properties
FROM azure.aks.managed_clusters_command_results
WHERE commandId = '{{ commandId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';