Skip to main content

personal_apps_export_block_list

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

Overview

Namepersonal_apps_export_block_list
TypeResource
Idokta.okta_personal_settings.personal_apps_export_block_list

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
domainsarrayList of blocked email domains

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_personal_apps_export_block_listselectsubdomainLists all blocked email domains which are excluded from app migration

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
subdomainstringThe domain of your organization. This can be a provided subdomain of an official okta domain (okta.com, oktapreview.com, etc) or one of your configured custom domains. (default: my-org)

SELECT examples

Lists all blocked email domains which are excluded from app migration

SELECT
domains
FROM okta.okta_personal_settings.personal_apps_export_block_list
WHERE subdomain = '{{ subdomain }}' -- required
;