Skip to main content

software_update_configuration_machine_runs

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

Overview

Namesoftware_update_configuration_machine_runs
TypeResource
Idazure.automation.software_update_configuration_machine_runs

Fields

NameDatatypeDescription
idtextResource Id of the software update configuration machine run
nametextName of the software update configuration machine run
automationAccountNametextfield from the properties object
configured_durationtextfield from the properties object
correlation_idtextfield from the properties object
created_bytextfield from the properties object
creation_timetextfield from the properties object
end_timetextfield from the properties object
errortextfield from the properties object
jobtextfield 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
softwareUpdateConfigurationMachineRunIdtextfield from the properties object
software_update_configurationtextfield from the properties object
source_computer_idtextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
target_computertextfield from the properties object
target_computer_typetextfield from the properties object

Methods

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

SELECT examples

Return list of software update configuration machine runs

SELECT
id,
name,
automationAccountName,
configured_duration,
correlation_id,
created_by,
creation_time,
end_time,
error,
job,
last_modified_by,
last_modified_time,
os_type,
resourceGroupName,
softwareUpdateConfigurationMachineRunId,
software_update_configuration,
source_computer_id,
start_time,
status,
subscriptionId,
target_computer,
target_computer_type
FROM azure.automation.vw_software_update_configuration_machine_runs
WHERE automationAccountName = '{{ automationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';