total_count
Creates, updates, deletes, gets or lists a total_count resource.
Overview
| Name | total_count |
| Type | Resource |
| Id | sumologic.ot_collectors.total_count |
Fields
The following fields are returned by SELECT queries:
- get
Total count of OT Collectors.
| Name | Datatype | Description |
|---|---|---|
total_count | integer (int32) | Total number of OT Collector for a customer. (wire: totalCount) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | region | Get total count of OT Collectors for a customer. |
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 | Sumo 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
Get total count of OT Collectors for a customer.
SELECT
total_count
FROM sumologic.ot_collectors.total_count
WHERE region = '{{ region }}' -- required unless SUMOLOGIC_ENVIRONMENT is set
;