data_services
Creates, updates, deletes, gets or lists a data_services
resource.
Overview
Name | data_services |
Type | Resource |
Id | azure.hybrid_data_manager.data_services |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_data_manager
The data service that matches the name.
Name | Datatype | Description |
---|---|---|
id | string | Id of the object. |
name | string | Name of the object. |
properties | object | DataService properties. |
type | string | Type of the object. |
The list of data services.
Name | Datatype | Description |
---|---|---|
id | string | Id of the object. |
name | string | Name of the object. |
properties | object | DataService 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 | dataServiceName , subscriptionId , resourceGroupName , dataManagerName | Gets the data service that matches the data service name given. | |
list_by_data_manager | select | subscriptionId , resourceGroupName , dataManagerName | This 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.
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 |
dataServiceName | string | The name of the data service that is being queried. |
resourceGroupName | string | The Resource Group Name |
subscriptionId | string | The Subscription Id |
SELECT
examples
- get
- list_by_data_manager
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
;
This method gets all the data services.
SELECT
id,
name,
properties,
type
FROM azure.hybrid_data_manager.data_services
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND dataManagerName = '{{ dataManagerName }}' -- required
;