appliances_upgrade_graphs
Creates, updates, deletes, gets or lists an appliances_upgrade_graphs
resource.
Overview
Name | appliances_upgrade_graphs |
Type | Resource |
Id | azure.resource_connector.appliances_upgrade_graphs |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | The appliance resource path |
name | string | The release train name. |
properties | object | The properties of supported version |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , resourceName , upgradeGraph | Gets 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
resourceName | string | Appliances name. |
subscriptionId | string | The ID of the target subscription. |
upgradeGraph | string | Upgrade graph version, ex - stable |
SELECT
examples
- get
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
;