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

The following fields are returned by SELECT queries:

The data service that matches the name.

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdataServiceName, subscriptionId, resourceGroupName, dataManagerNameGets the data service that matches the data service name given.
list_by_data_managerselectsubscriptionId, resourceGroupName, dataManagerNameThis method gets all the data services.

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
dataServiceNamestringThe name of the data service that is being queried.
resourceGroupNamestringThe Resource Group Name
subscriptionIdstringThe Subscription Id

SELECT examples

Gets the data service that matches the data service name given.

SELECT
id,
name,
properties,
type
FROM azure.hybrid_data_manager.data_services
WHERE dataServiceName = '{{ dataServiceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND dataManagerName = '{{ dataManagerName }}' -- required
;