Skip to main content

share_dashboards_outside_organization

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

Overview

Nameshare_dashboards_outside_organization
TypeResource
Idsumologic.policies.share_dashboards_outside_organization

Fields

The following fields are returned by SELECT queries:

The Share Dashboards Outside Organization policy.

NameDatatypeDescription
enabledbooleanWhether the Share Dashboards Outside Organization policy is enabled.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getShareDashboardsOutsideOrganizationPolicyselectregionGet the Share Dashboards Outside Organization policy. This policy allows users to share the dashboard with view only privileges outside of the organization (capability must be enabled from the Roles page). Disabling this policy will disable all dashboards that have been shared outside of the organization. Learn More
setShareDashboardsOutsideOrganizationPolicyexecregion, enabledSet the Share Dashboards Outside Organization policy. This policy allows users to share the dashboard with view only privileges outside of the organization (capability must be enabled from the Roles page). Disabling this policy will disable all dashboards that have been shared outside of the organization. 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 Share Dashboards Outside Organization policy. This policy allows users to share the dashboard with view only privileges outside of the organization (capability must be enabled from the Roles page). Disabling this policy will disable all dashboards that have been shared outside of the organization. Learn More

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

Lifecycle Methods

Set the Share Dashboards Outside Organization policy. This policy allows users to share the dashboard with view only privileges outside of the organization (capability must be enabled from the Roles page). Disabling this policy will disable all dashboards that have been shared outside of the organization. Learn More

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