featurestore_entity_containers_entities
Creates, updates, deletes, gets or lists a featurestore_entity_containers_entities
resource.
Overview
Name | featurestore_entity_containers_entities |
Type | Resource |
Id | azure.ml_services.featurestore_entity_containers_entities |
Fields
- vw_featurestore_entity_containers_entities
- featurestore_entity_containers_entities
Name | Datatype | Description |
---|---|---|
name | text | field from the properties object |
is_archived | text | field from the properties object |
latest_version | text | field from the properties object |
next_version | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | DTO object representing feature entity |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | name, resourceGroupName, subscriptionId, workspaceName |
SELECT
examples
- vw_featurestore_entity_containers_entities
- featurestore_entity_containers_entities
SELECT
name,
is_archived,
latest_version,
next_version,
provisioning_state,
resourceGroupName,
subscriptionId,
workspaceName
FROM azure.ml_services.vw_featurestore_entity_containers_entities
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
SELECT
properties
FROM azure.ml_services.featurestore_entity_containers_entities
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';