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
- vw_data_services
- data_services
Name | Datatype | Description |
---|---|---|
id | text | Id of the object. |
name | text | Name of the object. |
dataManagerName | text | field from the properties object |
dataServiceName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
supported_data_sink_types | text | field from the properties object |
supported_data_source_types | text | field from the properties object |
type | text | Type of the object. |
Name | Datatype | Description |
---|---|---|
id | string | Id of the object. |
name | string | Name of the object. |
properties | object | Data Service properties. |
type | string | Type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | dataManagerName, dataServiceName, resourceGroupName, subscriptionId | Gets the data service that matches the data service name given. |
list_by_data_manager | SELECT | dataManagerName, resourceGroupName, subscriptionId | This method gets all the data services. |
SELECT
examples
This method gets all the data services.
- vw_data_services
- 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 }}';
SELECT
id,
name,
properties,
type
FROM azure.hybrid_data_manager.data_services
WHERE dataManagerName = '{{ dataManagerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';