software_update_configuration_machine_runs
Creates, updates, deletes, gets or lists a software_update_configuration_machine_runs
resource.
Overview
Name | software_update_configuration_machine_runs |
Type | Resource |
Id | azure.automation.software_update_configuration_machine_runs |
Fields
The following fields are returned by SELECT
queries:
- get_by_id
- list
A single software update configuration machine run.
Name | Datatype | Description |
---|---|---|
id | string | Resource Id of the software update configuration machine run |
name | string | Name of the software update configuration machine run |
properties | object | Software update configuration machine run properties. |
Return list of software update configuration machine runs.
Name | Datatype | Description |
---|---|---|
id | string | Resource Id of the software update configuration machine run |
name | string | Name of the software update configuration machine run |
properties | object | Software update configuration machine run properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_by_id | select | subscriptionId , resourceGroupName , automationAccountName , softwareUpdateConfigurationMachineRunId | clientRequestId | Get a single software update configuration machine run by Id. |
list | select | subscriptionId , resourceGroupName , automationAccountName | clientRequestId , $filter , $skip , $top | Return 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.
Name | Datatype | Description |
---|---|---|
automationAccountName | string | The name of the automation account. |
resourceGroupName | string | Name of an Azure Resource group. |
softwareUpdateConfigurationMachineRunId | string (uuid) | The Id of the software update configuration machine run. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
$filter | string | The filter to apply on the operation. You can use the following filters: 'properties/osType', 'properties/status', 'properties/startTime', and 'properties/softwareUpdateConfiguration/name' |
$skip | string | number of entries you skip before returning results |
$top | string | Maximum number of entries returned in the results collection |
clientRequestId | string | Identifies this specific client request. |
SELECT
examples
- get_by_id
- list
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 }}'
;
Return list of software update configuration machine runs
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 clientRequestId = '{{ clientRequestId }}'
AND $filter = '{{ $filter }}'
AND $skip = '{{ $skip }}'
AND $top = '{{ $top }}'
;