appliances_upgrade_graphs
Creates, updates, deletes, gets or lists a appliances_upgrade_graphs
resource.
Overview
Name | appliances_upgrade_graphs |
Type | Resource |
Id | azure.resource_connector.appliances_upgrade_graphs |
Fields
- vw_appliances_upgrade_graphs
- appliances_upgrade_graphs
Name | Datatype | Description |
---|---|---|
id | text | The appliance resource path |
name | text | The release train name. |
appliance_version | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
supported_versions | text | field from the properties object |
upgradeGraph | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The appliance resource path |
name | string | The release train name. |
properties | object | The Upgrade Graph Properties for appliance. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, resourceName, subscriptionId, upgradeGraph | Gets the upgrade graph of an Appliance with a specified resource group and name and specific release train. |
SELECT
examples
Gets the upgrade graph of an Appliance with a specified resource group and name and specific release train.
- vw_appliances_upgrade_graphs
- appliances_upgrade_graphs
SELECT
id,
name,
appliance_version,
resourceGroupName,
resourceName,
subscriptionId,
supported_versions,
upgradeGraph
FROM azure.resource_connector.vw_appliances_upgrade_graphs
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND upgradeGraph = '{{ upgradeGraph }}';
SELECT
id,
name,
properties
FROM azure.resource_connector.appliances_upgrade_graphs
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND upgradeGraph = '{{ upgradeGraph }}';