storage_services_subs
Creates, updates, deletes, gets or lists a storage_services_subs
resource.
Overview
Name | storage_services_subs |
Type | Resource |
Id | azure_stack.storage_admin.storage_services_subs |
Fields
The following fields are returned by SELECT
queries:
- list
OK -- The list of storage services has been returned.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource Name. |
location | string | Resource Location. |
properties | object | Properties for service name. |
type | string | Resource Type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | Returns the storage services list under the specified subscription. |
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 |
---|---|---|
subscriptionId | string | Subscription Id. |
SELECT
examples
- list
Returns the storage services list under the specified subscription.
SELECT
id,
name,
location,
properties,
type
FROM azure_stack.storage_admin.storage_services_subs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;