Skip to main content

schema_identities

Creates, updates, deletes, gets or lists a schema_identities resource.

Overview

Nameschema_identities
TypeResource
Idsumologic.schemas.schema_identities

Fields

The following fields are returned by SELECT queries:

A summary of all available schema bases grouped by type and their versions sorted by latest.

NameDatatypeDescription
typestringThe type of the schema. (example: Okta)
versionsarrayList of schema base identities sorted by latest version for a specific schema type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectregionGet a summary of all available schema bases grouped by type and their versions sorted by latest.

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.

NameDatatypeDescription
regionstringSumo Logic deployment (au, ca, ch, de, eu, fed, in, jp, kr, us1, us2). Resolved from the SUMOLOGIC_ENVIRONMENT environment variable when it is set (x-stackQL-envVar, the same variable the Terraform provider reads); otherwise defaults to us2. A WHERE region = '...' value always takes precedence. (enum: [au, ca, ch, de, eu, fed, in, jp, kr, us1, us2], default: us2, x-stackQL-envVar: SUMOLOGIC_ENVIRONMENT)

SELECT examples

Get a summary of all available schema bases grouped by type and their versions sorted by latest.

SELECT
type,
versions
FROM sumologic.schemas.schema_identities
WHERE region = '{{ region }}' -- required unless SUMOLOGIC_ENVIRONMENT is set
;