Skip to main content

status

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

Overview

Namestatus
TypeResource
Idsumologic.service_allowlist.status

Fields

The following fields are returned by SELECT queries:

The status of service allowlisting for Content and Login.

NameDatatypeDescription
contentEnabledbooleanWhether service allowlisting is enabled for Content.
loginEnabledbooleanWhether service allowlisting is enabled for Login.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getAllowlistingStatusselectregionGet 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.

NameDatatypeDescription
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)

SELECT examples

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
;