Skip to main content

data_services

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

Overview

Namedata_services
TypeResource
Idazure.hybrid_data_manager.data_services

Fields

NameDatatypeDescription
idtextId of the object.
nametextName of the object.
dataManagerNametextfield from the properties object
dataServiceNametextfield from the properties object
resourceGroupNametextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
supported_data_sink_typestextfield from the properties object
supported_data_source_typestextfield from the properties object
typetextType of the object.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdataManagerName, dataServiceName, resourceGroupName, subscriptionIdGets the data service that matches the data service name given.
list_by_data_managerSELECTdataManagerName, resourceGroupName, subscriptionIdThis method gets all the data services.

SELECT examples

This method gets all the data services.

SELECT
id,
name,
dataManagerName,
dataServiceName,
resourceGroupName,
state,
subscriptionId,
supported_data_sink_types,
supported_data_source_types,
type
FROM azure.hybrid_data_manager.vw_data_services
WHERE dataManagerName = '{{ dataManagerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';