Skip to main content

cloud_appliances_supported_configurations

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

Overview

Namecloud_appliances_supported_configurations
TypeResource
Idazure_extras.storsimple_8000_series.cloud_appliances_supported_configurations

Fields

The following fields are returned by SELECT queries:

The collection of cloud appliance configuration.

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe name of the object.
kindstringThe Kind of the object. Currently only Series8000 is supported
propertiesobjectThe properties.
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, managerNameLists supported cloud appliance models and supported configurations.

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
managerNamestringThe manager name
resourceGroupNamestringThe resource group name
subscriptionIdstringThe subscription id

SELECT examples

Lists supported cloud appliance models and supported configurations.

SELECT
id,
name,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.cloud_appliances_supported_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;