software_update_configuration_runs
Creates, updates, deletes, gets or lists a software_update_configuration_runs
resource.
Overview
Name | software_update_configuration_runs |
Type | Resource |
Id | azure.automation.software_update_configuration_runs |
Fields
- vw_software_update_configuration_runs
- software_update_configuration_runs
Name | Datatype | Description |
---|---|---|
id | text | Resource Id of the software update configuration run |
name | text | Name of the software update configuration run. |
automationAccountName | text | field from the properties object |
computer_count | text | field from the properties object |
configured_duration | 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 |
failed_count | 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 |
softwareUpdateConfigurationRunId | text | field from the properties object |
software_update_configuration | 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 |
tasks | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id of the software update configuration run |
name | string | Name of the software update configuration run. |
properties | object | Software update configuration properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_id | SELECT | automationAccountName, resourceGroupName, softwareUpdateConfigurationRunId, subscriptionId | Get a single software update configuration Run by Id. |
list | SELECT | automationAccountName, resourceGroupName, subscriptionId | Return list of software update configuration runs |
SELECT
examples
Return list of software update configuration runs
- vw_software_update_configuration_runs
- software_update_configuration_runs
SELECT
id,
name,
automationAccountName,
computer_count,
configured_duration,
created_by,
creation_time,
end_time,
failed_count,
last_modified_by,
last_modified_time,
os_type,
resourceGroupName,
softwareUpdateConfigurationRunId,
software_update_configuration,
start_time,
status,
subscriptionId,
tasks
FROM azure.automation.vw_software_update_configuration_runs
WHERE automationAccountName = '{{ automationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties
FROM azure.automation.software_update_configuration_runs
WHERE automationAccountName = '{{ automationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';