Skip to main content

data_access_level

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

Overview

Namedata_access_level
TypeResource
Idsumologic.policies.data_access_level

Fields

The following fields are returned by SELECT queries:

The Data Access Level policy.

NameDatatypeDescription
enabledbooleanWhether the Data Access Level policy is enabled.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getDataAccessLevelPolicyselectregionGet the Data Access Level policy. When enabled, this policy sets the default data access level for all newly created dashboards to the viewer’s role access filter. Otherwise, newly created dashboards will default to the sharer’s role access filter and might display data that viewers’ roles don’t allow them to view. Learn More
setDataAccessLevelPolicyexecregion, enabledSet the Data Access Level policy. When enabled, this policy sets the default data access level for all newly created dashboards to the viewer’s role access filter. Otherwise, newly created dashboards will default to the sharer’s role access filter and might display data that viewers’ roles don’t allow them to view. Learn More

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 Data Access Level policy. When enabled, this policy sets the default data access level for all newly created dashboards to the viewer’s role access filter. Otherwise, newly created dashboards will default to the sharer’s role access filter and might display data that viewers’ roles don’t allow them to view. Learn More

SELECT
enabled
FROM sumologic.policies.data_access_level
WHERE region = '{{ region }}' -- required
;

Lifecycle Methods

Set the Data Access Level policy. When enabled, this policy sets the default data access level for all newly created dashboards to the viewer’s role access filter. Otherwise, newly created dashboards will default to the sharer’s role access filter and might display data that viewers’ roles don’t allow them to view. Learn More

EXEC sumologic.policies.data_access_level.setDataAccessLevelPolicy 
@region='{{ region }}' --required
@@json=
'{
"enabled": {{ enabled }}
}'
;