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

The following fields are returned by SELECT queries:

A single software update configuration machine run.

NameDatatypeDescription
idstringResource Id of the software update configuration machine run
namestringName of the software update configuration machine run
propertiesobjectSoftware update configuration machine run properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_idselectsubscriptionId, resourceGroupName, automationAccountName, softwareUpdateConfigurationMachineRunIdclientRequestIdGet a single software update configuration machine run by Id.
listselectsubscriptionId, resourceGroupName, automationAccountNameclientRequestId, $filter, $skip, $topReturn list of software update configuration machine runs

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
automationAccountNamestringThe name of the automation account.
resourceGroupNamestringName of an Azure Resource group.
softwareUpdateConfigurationMachineRunIdstring (uuid)The Id of the software update configuration machine run.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
$filterstringThe filter to apply on the operation. You can use the following filters: 'properties/osType', 'properties/status', 'properties/startTime', and 'properties/softwareUpdateConfiguration/name'
$skipstringnumber of entries you skip before returning results
$topstringMaximum number of entries returned in the results collection
clientRequestIdstringIdentifies this specific client request.

SELECT examples

Get a single software update configuration machine run by Id.

SELECT
id,
name,
properties
FROM azure.automation.software_update_configuration_machine_runs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND softwareUpdateConfigurationMachineRunId = '{{ softwareUpdateConfigurationMachineRunId }}' -- required
AND clientRequestId = '{{ clientRequestId }}'
;