Skip to main content

data_store_types

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

Overview

Namedata_store_types
TypeResource
Idazure.hybrid_data_manager.data_store_types

Fields

The following fields are returned by SELECT queries:

The data store/repository type.

NameDatatypeDescription
idstringId of the object.
namestringName of the object.
propertiesobjectDataStoreType properties.
typestringType of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdataStoreTypeName, subscriptionId, resourceGroupName, dataManagerNameGets the data store/repository type given its name.
list_by_data_managerselectsubscriptionId, resourceGroupName, dataManagerNameGets 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.

NameDatatypeDescription
dataManagerNamestringThe 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
dataStoreTypeNamestringThe data store/repository type name for which details are needed.
resourceGroupNamestringThe Resource Group Name
subscriptionIdstringThe Subscription Id

SELECT examples

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
;