cloud_appliances_supported_configurations
Creates, updates, deletes, gets or lists a cloud_appliances_supported_configurations
resource.
Overview
Name | cloud_appliances_supported_configurations |
Type | Resource |
Id | azure_extras.storsimple_8000_series.cloud_appliances_supported_configurations |
Fields
The following fields are returned by SELECT
queries:
- list
The collection of cloud appliance configuration.
Name | Datatype | Description |
---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The name of the object. |
kind | string | The Kind of the object. Currently only Series8000 is supported |
properties | object | The properties. |
type | string | The hierarchical type of the object. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , managerName | Lists 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.
Name | Datatype | Description |
---|---|---|
managerName | string | The manager name |
resourceGroupName | string | The resource group name |
subscriptionId | string | The subscription id |
SELECT
examples
- list
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
;