Skip to main content

script_actions_execution_details

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

Overview

Namescript_actions_execution_details
TypeResource
Idazure.hdinsight.script_actions_execution_details

Fields

NameDatatypeDescription
namestringThe name of the script action.
applicationNamestringThe application name of the script action, if any.
debugInformationstringThe script action execution debug information.
endTimestringThe end time of script action execution.
executionSummaryarrayThe summary of script action execution result.
operationstringThe reason why the script action was executed.
parametersstringThe parameters for the script
rolesarrayThe list of roles where script will be executed.
scriptExecutionIdintegerThe execution id of the script action.
startTimestringThe start time of script action execution.
statusstringThe current execution status of the script action.
uristringThe URI to the script.

Methods

NameAccessible byRequired ParamsDescription
getSELECTclusterName, resourceGroupName, scriptExecutionId, subscriptionIdGets the script execution detail for the given script execution ID.

SELECT examples

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 clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND scriptExecutionId = '{{ scriptExecutionId }}'
AND subscriptionId = '{{ subscriptionId }}';