data_store_types
Creates, updates, deletes, gets or lists a data_store_types
resource.
Overview
Name | data_store_types |
Type | Resource |
Id | azure.hybrid_data_manager.data_store_types |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_data_manager
The data store/repository type.
Name | Datatype | Description |
---|---|---|
id | string | Id of the object. |
name | string | Name of the object. |
properties | object | DataStoreType properties. |
type | string | Type of the object. |
The list of data store types that are supported.
Name | Datatype | Description |
---|---|---|
id | string | Id of the object. |
name | string | Name of the object. |
properties | object | DataStoreType properties. |
type | string | Type of the object. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | dataStoreTypeName , subscriptionId , resourceGroupName , dataManagerName | Gets the data store/repository type given its name. | |
list_by_data_manager | select | subscriptionId , resourceGroupName , dataManagerName | Gets all the data store/repository types that the resource supports. |
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 |
---|---|---|
dataManagerName | string | The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only |
dataStoreTypeName | string | The data store/repository type name for which details are needed. |
resourceGroupName | string | The Resource Group Name |
subscriptionId | string | The Subscription Id |
SELECT
examples
- get
- list_by_data_manager
Gets the data store/repository type given its name.
SELECT
id,
name,
properties,
type
FROM azure.hybrid_data_manager.data_store_types
WHERE dataStoreTypeName = '{{ dataStoreTypeName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND dataManagerName = '{{ dataManagerName }}' -- required
;
Gets all the data store/repository types that the resource supports.
SELECT
id,
name,
properties,
type
FROM azure.hybrid_data_manager.data_store_types
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND dataManagerName = '{{ dataManagerName }}' -- required
;