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
- vw_software_update_configuration_machine_runs
- software_update_configuration_machine_runs
Name | Datatype | Description |
---|---|---|
id | text | Resource Id of the software update configuration machine run |
name | text | Name of the software update configuration machine run |
automationAccountName | text | field from the properties object |
configured_duration | text | field from the properties object |
correlation_id | text | field from the properties object |
created_by | text | field from the properties object |
creation_time | text | field from the properties object |
end_time | text | field from the properties object |
error | text | field from the properties object |
job | text | field from the properties object |
last_modified_by | text | field from the properties object |
last_modified_time | text | field from the properties object |
os_type | text | field from the properties object |
resourceGroupName | text | field from the properties object |
softwareUpdateConfigurationMachineRunId | text | field from the properties object |
software_update_configuration | text | field from the properties object |
source_computer_id | text | field from the properties object |
start_time | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
target_computer | text | field from the properties object |
target_computer_type | text | field from the properties object |
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_id | SELECT | automationAccountName, resourceGroupName, softwareUpdateConfigurationMachineRunId, subscriptionId | Get a single software update configuration machine run by Id. |
list | SELECT | automationAccountName, resourceGroupName, subscriptionId | Return list of software update configuration machine runs |
SELECT
examples
Return list of software update configuration machine runs
- vw_software_update_configuration_machine_runs
- 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 }}';
SELECT
id,
name,
properties
FROM azure.automation.software_update_configuration_machine_runs
WHERE automationAccountName = '{{ automationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';