status
Creates, updates, deletes, gets or lists a status
resource.
Overview
Name | status |
Type | Resource |
Id | sumologic.service_allowlist.status |
Fields
The following fields are returned by SELECT
queries:
- getAllowlistingStatus
The status of service allowlisting for Content and Login.
Name | Datatype | Description |
---|---|---|
contentEnabled | boolean | Whether service allowlisting is enabled for Content. |
loginEnabled | boolean | Whether service allowlisting is enabled for Login. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getAllowlistingStatus | select | region | Get the status of the service allowlisting functionality for login/API authentication or content sharing for the organization. |
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
- getAllowlistingStatus
Get the status of the service allowlisting functionality for login/API authentication or content sharing for the organization.
SELECT
contentEnabled,
loginEnabled
FROM sumologic.service_allowlist.status
WHERE region = '{{ region }}' -- required
;