data_access_level
Creates, updates, deletes, gets or lists a data_access_level
resource.
Overview
Name | data_access_level |
Type | Resource |
Id | sumologic.policies.data_access_level |
Fields
The following fields are returned by SELECT
queries:
- getDataAccessLevelPolicy
The Data Access Level policy.
Name | Datatype | Description |
---|---|---|
enabled | boolean | Whether the Data Access Level policy is enabled. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getDataAccessLevelPolicy | select | region | 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 | |
setDataAccessLevelPolicy | exec | region , enabled | 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 |
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
- getDataAccessLevelPolicy
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
- setDataAccessLevelPolicy
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 }}
}'
;