| Name |
Type |
Description |
Notes |
| created_by |
str |
|
[optional] [readonly] |
| created_date |
str |
|
[optional] [readonly] |
| device_posture_checks |
DevicePostureChecks |
|
[optional] |
| display_remediation_mode |
str |
<x-lifecycle-container><x-lifecycle class="ea"></x-lifecycle></x-lifecycle-container>Represents the remediation mode of this device assurance policy when users are denied access due to device noncompliance |
[optional] |
| grace_period |
GracePeriod |
|
[optional] |
| id |
str |
|
[optional] [readonly] |
| last_update |
str |
|
[optional] [readonly] |
| last_updated_by |
str |
|
[optional] [readonly] |
| name |
str |
Display name of the device assurance policy |
[optional] |
| platform |
Platform |
|
[optional] |
| links |
LinksSelf |
|
[optional] |
from okta.models.device_assurance import DeviceAssurance
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceAssurance from a JSON string
device_assurance_instance = DeviceAssurance.from_json(json)
# print the JSON string representation of the object
print(DeviceAssurance.to_json())
# convert the object into a dict
device_assurance_dict = device_assurance_instance.to_dict()
# create an instance of DeviceAssurance from a dict
device_assurance_from_dict = DeviceAssurance.from_dict(device_assurance_dict)
[Back to Model list] [Back to API list] [Back to README]