Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 975 Bytes

AllowedIpSettings.md

File metadata and controls

30 lines (21 loc) · 975 Bytes

AllowedIpSettings

Properties

Name Type Description Notes
cidr_whitelist str [optional]
lock bool [optional]

Example

from akeyless.models.allowed_ip_settings import AllowedIpSettings

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

# convert the object into a dict
allowed_ip_settings_dict = allowed_ip_settings_instance.to_dict()
# create an instance of AllowedIpSettings from a dict
allowed_ip_settings_from_dict = AllowedIpSettings.from_dict(allowed_ip_settings_dict)

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