mfa_challenge_org_setting
Creates, updates, deletes, gets or lists a mfa_challenge_org_setting
resource.
Overview
Name | mfa_challenge_org_setting |
Type | Resource |
Id | okta.device_access.mfa_challenge_org_setting |
Fields
The following fields are returned by SELECT
queries:
- get_desktop_mfaenforce_number_matching_challenge_org_setting
Name | Datatype | Description |
---|---|---|
desktopMFAEnforceNumberMatchingChallengeEnabled | boolean | Indicates whether or not the Desktop MFA Enforce Number Matching Challenge push notifications feature is enabled |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_desktop_mfaenforce_number_matching_challenge_org_setting | select | subdomain | Retrieves the status of the Desktop MFA Enforce Number Matching Challenge push notifications feature. That is, whether or not the feature is enabled for your org. | |
replace_desktop_mfaenforce_number_matching_challenge_org_setting | replace | subdomain | Replaces the status of the Desktop MFA Enforce Number Matching Challenge push notifications feature. That is, whether or not the feature is enabled for your org. |
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 |
---|---|---|
subdomain | string | The 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
- get_desktop_mfaenforce_number_matching_challenge_org_setting
Retrieves the status of the Desktop MFA Enforce Number Matching Challenge push notifications feature. That is, whether or not the feature is enabled for your org.
SELECT
desktopMFAEnforceNumberMatchingChallengeEnabled
FROM okta.device_access.mfa_challenge_org_setting
WHERE subdomain = '{{ subdomain }}' -- required;
REPLACE
examples
- replace_desktop_mfaenforce_number_matching_challenge_org_setting
Replaces the status of the Desktop MFA Enforce Number Matching Challenge push notifications feature. That is, whether or not the feature is enabled for your org.
REPLACE okta.device_access.mfa_challenge_org_setting
SET
data__desktopMFAEnforceNumberMatchingChallengeEnabled = {{ desktopMFAEnforceNumberMatchingChallengeEnabled }}
WHERE
subdomain = '{{ subdomain }}' --required
RETURNING
desktopMFAEnforceNumberMatchingChallengeEnabled;