Skip to main content

update_runs_top_levels

Creates, updates, deletes, gets or lists a update_runs_top_levels resource.

Overview

Nameupdate_runs_top_levels
TypeResource
Idazure_stack.update_admin.update_runs_top_levels

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringURI of the resource.
namestringName of the resource.
locationstringRegion location of resource.
propertiesobjectProperties of a update run.
tagsobjectList of key-value pairs.
typestringType of resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, updateLocation, runNameGet an instance of update run using the ID.
listselectsubscriptionId, resourceGroupName, updateLocationGet 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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
runNamestringUpdate run identifier.
subscriptionIdstringThe ID of the target subscription.
updateLocationstringThe name of the update location.

SELECT examples

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
;