Skip to main content

software_update_configuration_runs

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

Overview

Namesoftware_update_configuration_runs
TypeResource
Idazure.automation.software_update_configuration_runs

Fields

NameDatatypeDescription
idtextResource Id of the software update configuration run
nametextName of the software update configuration run.
automationAccountNametextfield from the properties object
computer_counttextfield from the properties object
configured_durationtextfield from the properties object
created_bytextfield from the properties object
creation_timetextfield from the properties object
end_timetextfield from the properties object
failed_counttextfield from the properties object
last_modified_bytextfield from the properties object
last_modified_timetextfield from the properties object
os_typetextfield from the properties object
resourceGroupNametextfield from the properties object
softwareUpdateConfigurationRunIdtextfield from the properties object
software_update_configurationtextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
taskstextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
get_by_idSELECTautomationAccountName, resourceGroupName, softwareUpdateConfigurationRunId, subscriptionIdGet a single software update configuration Run by Id.
listSELECTautomationAccountName, resourceGroupName, subscriptionIdReturn list of software update configuration runs

SELECT examples

Return list of software update configuration runs

SELECT
id,
name,
automationAccountName,
computer_count,
configured_duration,
created_by,
creation_time,
end_time,
failed_count,
last_modified_by,
last_modified_time,
os_type,
resourceGroupName,
softwareUpdateConfigurationRunId,
software_update_configuration,
start_time,
status,
subscriptionId,
tasks
FROM azure.automation.vw_software_update_configuration_runs
WHERE automationAccountName = '{{ automationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';