Skip to main content

quota

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

Overview

Namequota
TypeResource
Idsumologic.event_extraction_rules.quota

Fields

The following fields are returned by SELECT queries:

Current state of Event Extraction Rules quota usage (limit and remaining).

NameDatatypeDescription
quotainteger (int32)Maximum number of EventExtractionRules allowed.
remaininginteger (int32)Remaining number of EventExtractionRules allowed.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectregionEvery customer can use a limited number of Event Extraction Rules. This endpoint allows learning about these limitations and remaining quota.

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

Every customer can use a limited number of Event Extraction Rules. This endpoint allows learning about these limitations and remaining quota.

SELECT
quota,
remaining
FROM sumologic.event_extraction_rules.quota
WHERE region = '{{ region }}' -- required unless SUMOLOGIC_ENVIRONMENT is set
;