You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Список удаляемых из списка разрешенных IP-адресов.
Example
fromtimeweb_cloud_api.models.delete_ips_from_allowed_list_requestimportDeleteIPsFromAllowedListRequest# TODO update the JSON string belowjson="{}"# create an instance of DeleteIPsFromAllowedListRequest from a JSON stringdelete_ips_from_allowed_list_request_instance=DeleteIPsFromAllowedListRequest.from_json(json)
# print the JSON string representation of the objectprintDeleteIPsFromAllowedListRequest.to_json()
# convert the object into a dictdelete_ips_from_allowed_list_request_dict=delete_ips_from_allowed_list_request_instance.to_dict()
# create an instance of DeleteIPsFromAllowedListRequest from a dictdelete_ips_from_allowed_list_request_form_dict=delete_ips_from_allowed_list_request.from_dict(delete_ips_from_allowed_list_request_dict)