Skip to main content

storage_services_subs

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

Overview

Namestorage_services_subs
TypeResource
Idazure_stack.storage_admin.storage_services_subs

Fields

The following fields are returned by SELECT queries:

OK -- The list of storage services has been returned.

NameDatatypeDescription
idstringResource ID.
namestringResource Name.
locationstringResource Location.
propertiesobjectProperties for service name.
typestringResource Type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdReturns 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.

NameDatatypeDescription
subscriptionIdstringSubscription Id.

SELECT examples

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
;