Skip to main content

appliances_upgrade_graphs

Creates, updates, deletes, gets or lists an appliances_upgrade_graphs resource.

Overview

Nameappliances_upgrade_graphs
TypeResource
Idazure.resource_connector.appliances_upgrade_graphs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe appliance resource path
namestringThe release train name.
propertiesobjectThe properties of supported version

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, resourceName, upgradeGraphGets the upgrade graph of an Appliance with a specified resource group and name and specific release train.

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.
resourceNamestringAppliances name.
subscriptionIdstringThe ID of the target subscription.
upgradeGraphstringUpgrade graph version, ex - stable

SELECT examples

Gets the upgrade graph of an Appliance with a specified resource group and name and specific release train.

SELECT
id,
name,
properties
FROM azure.resource_connector.appliances_upgrade_graphs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND upgradeGraph = '{{ upgradeGraph }}' -- required
;