Skip to main content

managed_clusters_command_results

Creates, updates, deletes, gets or lists a managed_clusters_command_results resource.

Overview

Namemanaged_clusters_command_results
TypeResource
Idazure.aks.managed_clusters_command_results

Fields

The following fields are returned by SELECT queries:

command finished

NameDatatypeDescription
idstringThe command id.
propertiesobjectProperties of command result.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, 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.

NameDatatypeDescription
commandIdstringId of the command.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
resourceNamestringThe name of the managed cluster resource.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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
;