script_actions_execution_details
Creates, updates, deletes, gets or lists a script_actions_execution_details
resource.
Overview
Name | script_actions_execution_details |
Type | Resource |
Id | azure.hdinsight.script_actions_execution_details |
Fields
The following fields are returned by SELECT
queries:
- get
OK response definition.
Name | Datatype | Description |
---|---|---|
name | string | The name of the script action. |
applicationName | string | The application name of the script action, if any. |
debugInformation | string | The script action execution debug information. |
endTime | string | The end time of script action execution. |
executionSummary | array | The summary of script action execution result. |
operation | string | The reason why the script action was executed. |
parameters | string | The parameters for the script |
roles | array | The list of roles where script will be executed. |
scriptExecutionId | integer (int64) | The execution id of the script action. |
startTime | string | The start time of script action execution. |
status | string | The current execution status of the script action. |
uri | string | The URI to the script. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , clusterName , scriptExecutionId | Gets the script execution detail for the given script execution ID. |
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 |
---|---|---|
clusterName | string | The name of the cluster. |
resourceGroupName | string | The name of the resource group. |
scriptExecutionId | string | The script execution Id |
subscriptionId | string | The subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
Gets the script execution detail for the given script execution ID.
SELECT
name,
applicationName,
debugInformation,
endTime,
executionSummary,
operation,
parameters,
roles,
scriptExecutionId,
startTime,
status,
uri
FROM azure.hdinsight.script_actions_execution_details
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND scriptExecutionId = '{{ scriptExecutionId }}' -- required
;