quota
Creates, updates, deletes, gets or lists a quota
resource.
Overview
Name | quota |
Type | Resource |
Id | sumologic.fields.quota |
Fields
The following fields are returned by SELECT
queries:
- getFieldQuota
Current fields capacity usage (fields count).
Name | Datatype | Description |
---|---|---|
quota | integer (int32) | Maximum number of fields available. |
remaining | integer (int32) | Current number of fields available. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getFieldQuota | select | region | Every account has a limited number of fields available. This endpoint returns your account 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.
Name | Datatype | Description |
---|---|---|
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
SELECT
examples
- getFieldQuota
Every account has a limited number of fields available. This endpoint returns your account limitations and remaining quota.
SELECT
quota,
remaining
FROM sumologic.fields.quota
WHERE region = '{{ region }}' -- required
;