Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.87 KB

File metadata and controls

37 lines (28 loc) · 1.87 KB

NetworkZone

Properties

Name Type Description Notes
created datetime Timestamp when the object was created [optional] [readonly]
id str Unique identifier for the Network Zone [optional] [readonly]
last_updated datetime Timestamp when the object was last modified [optional] [readonly]
name str Unique name for this Network Zone
status NetworkZoneStatus [optional]
system bool Indicates a system Network Zone: * `true` for system Network Zones * `false` for custom Network Zones The Okta org provides the following default system Network Zones: * `LegacyIpZone` * `BlockedIpZone` * `DefaultEnhancedDynamicZone` * `DefaultExemptIpZone` Admins can modify the name of the default system Network Zone and add up to 5000 gateway or proxy IP entries. [optional] [readonly]
type NetworkZoneType
usage NetworkZoneUsage [optional]
links LinksSelfAndLifecycle [optional]

Example

from okta.models.network_zone import NetworkZone

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

# convert the object into a dict
network_zone_dict = network_zone_instance.to_dict()
# create an instance of NetworkZone from a dict
network_zone_from_dict = NetworkZone.from_dict(network_zone_dict)

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