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
The following fields are returned by SELECT
queries:
- get
- list
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 a update run. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
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 a update run. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , updateLocation , runName | Get an instance of update run using the ID. | |
list | select | subscriptionId , resourceGroupName , updateLocation | Get the list of update 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 |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
runName | string | Update run identifier. |
subscriptionId | string | The ID of the target subscription. |
updateLocation | string | The name of the update location. |
SELECT
examples
- get
- list
Get an instance of update run using the ID.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.update_admin.update_runs_top_levels
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND updateLocation = '{{ updateLocation }}' -- required
AND runName = '{{ runName }}' -- required
;
Get the list of update runs.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.update_admin.update_runs_top_levels
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND updateLocation = '{{ updateLocation }}' -- required
;