update_runs_top_levels
Creates, updates, deletes, gets or lists a update_runs_top_levels
resource.
Overview
Name | update_runs_top_levels |
Type | Resource |
Id | azure_stack.update_admin.update_runs_top_levels |
Fields
- vw_update_runs_top_levels
- update_runs_top_levels
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
duration | text | field from the properties object |
location | text | Region location of resource. |
progress | text | field from the properties object |
resourceGroupName | text | field from the properties object |
runName | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
time_started | text | field from the properties object |
type | text | Type of resource. |
updateLocation | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | Region location of resource. |
properties | object | Properties of an update run. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, runName, subscriptionId, updateLocation | Get an instance of update run using the ID. |
list | SELECT | resourceGroupName, subscriptionId, updateLocation | Get the list of update runs. |
SELECT
examples
Get the list of update runs.
- vw_update_runs_top_levels
- update_runs_top_levels
SELECT
id,
name,
duration,
location,
progress,
resourceGroupName,
runName,
state,
subscriptionId,
tags,
time_started,
type,
updateLocation
FROM azure_stack.update_admin.vw_update_runs_top_levels
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND updateLocation = '{{ updateLocation }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.update_admin.update_runs_top_levels
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND updateLocation = '{{ updateLocation }}';