Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.71 KB

File metadata and controls

32 lines (23 loc) · 1.71 KB

DeviceAccessPolicyRuleCondition

<x-lifecycle class="oie"> Specifies the device condition to match on

Properties

Name Type Description Notes
assurance DevicePolicyRuleConditionAssurance [optional]
managed bool Indicates if the device is managed. A device is considered managed if it's part of a device management system. [optional]
registered bool Indicates if the device is registered. A device is registered if the User enrolls with Okta Verify that's installed on the device. When the `managed` property is passed, you must also include the `registered` property and set it to `true`. [optional]

Example

from okta.models.device_access_policy_rule_condition import DeviceAccessPolicyRuleCondition

# TODO update the JSON string below
json = "{}"
# create an instance of DeviceAccessPolicyRuleCondition from a JSON string
device_access_policy_rule_condition_instance = DeviceAccessPolicyRuleCondition.from_json(json)
# print the JSON string representation of the object
print(DeviceAccessPolicyRuleCondition.to_json())

# convert the object into a dict
device_access_policy_rule_condition_dict = device_access_policy_rule_condition_instance.to_dict()
# create an instance of DeviceAccessPolicyRuleCondition from a dict
device_access_policy_rule_condition_from_dict = DeviceAccessPolicyRuleCondition.from_dict(device_access_policy_rule_condition_dict)

[Back to Model list] [Back to API list] [Back to README]