project_details
Creates, updates, deletes, gets or lists a project_details resource.
Overview
| Name | project_details |
| Type | Resource |
| Id | azure.ai_language.project_details |
Fields
The following fields are returned by SELECT queries:
- get_project_details
| Name | Datatype | Description |
|---|---|---|
configureSemanticRanking | boolean | Represents if semantic ranking is configured. |
createdDateTime | string (date-time) | Project creation date-time. |
description | string | Description of the project. |
language | string | Language of the text records. This is BCP-47 representation of a language. For example, use "en" for English; "es" for Spanish etc. If not set, use "en" for English as default. |
lastDeployedDateTime | string (date-time) | Represents the project last deployment date-time. |
lastModifiedDateTime | string (date-time) | Represents the project last modified date-time. |
multilingualResource | boolean | Resource enabled for multiple languages across projects or not. |
projectName | string | Name of the project. Required. |
settings | object | Configurable settings of the Project. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_project_details | select | project_name, endpoint | Get the requested project metadata. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client Endpoint parameter. (default: ) |
project_name | string | Name of the project. Required. |
SELECT examples
- get_project_details
Get the requested project metadata.
SELECT
configureSemanticRanking,
createdDateTime,
description,
language,
lastDeployedDateTime,
lastModifiedDateTime,
multilingualResource,
projectName,
settings
FROM azure.ai_language.project_details
WHERE project_name = '{{ project_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
;