Skip to main content

virtual_machine_scale_set_rolling_upgrades_latest

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

Overview

Namevirtual_machine_scale_set_rolling_upgrades_latest
TypeResource
Idazure.compute.virtual_machine_scale_set_rolling_upgrades_latest

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id
namestringResource name
locationstringResource location
propertiesobjectThe status of the latest virtual machine scale set rolling upgrade.
tagsobjectResource tags
typestringResource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, vmScaleSetName, subscriptionIdGets the status of the latest virtual machine scale set rolling upgrade.

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.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
vmScaleSetNamestringThe name of the VM scale set.

SELECT examples

Gets the status of the latest virtual machine scale set rolling upgrade.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.compute.virtual_machine_scale_set_rolling_upgrades_latest
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND vmScaleSetName = '{{ vmScaleSetName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;