schemata
Creates, updates, deletes, gets or lists a schemata
resource.
Overview
Name | schemata |
Type | Resource |
Id | azure.log_analytics.schemata |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the schema. |
displayName | string | The display name of the schema. |
facet | boolean | The boolean that indicates whether or not the field is a facet. |
indexed | boolean | The boolean that indicates the field is searchable as free text. |
ownerType | array | The array of workflows containing the field. |
stored | boolean | The boolean that indicates whether or not the field is stored. |
type | string | The type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, workspaceName | Gets the schema for a given workspace. |
SELECT
examples
Gets the schema for a given workspace.
SELECT
name,
displayName,
facet,
indexed,
ownerType,
stored,
type
FROM azure.log_analytics.schemata
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';