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

The following fields are returned by SELECT queries:

A single software update configuration Run.

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_idselectsubscriptionId, resourceGroupName, automationAccountName, softwareUpdateConfigurationRunIdclientRequestIdGet a single software update configuration Run by Id.
listselectsubscriptionId, resourceGroupName, automationAccountNameclientRequestId, $filter, $skip, $topReturn list of software update configuration 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.
softwareUpdateConfigurationRunIdstring (uuid)The Id of the software update configuration 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 Run by Id.

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