latitudesh-python-sdk 2.1.0__tar.gz → 2.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/PKG-INFO +1 -1
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/pyproject.toml +2 -1
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/_version.py +3 -3
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/apikeys.py +8 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/basesdk.py +6 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/billing.py +6 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/events_sdk.py +2 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/firewalls_sdk.py +18 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/ipaddresses_sdk.py +6 -2
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/billing_usage.py +5 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_serverop.py +3 -3
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_virtual_networkop.py +3 -3
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_ipsop.py +2 -2
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_serversop.py +2 -2
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_ssh_keysop.py +9 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_users_dataop.py +9 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_ssh_keyop.py +5 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_user_dataop.py +5 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_vpn_sessionop.py +4 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_machine_plans.py +3 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/operatingsystems_sdk.py +2 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/plans.py +30 -4
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/privatenetworks.py +16 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/projects_sdk.py +8 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/regions_sdk.py +4 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/roles.py +4 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/servers_sdk.py +46 -4
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/sshkeys_sdk.py +26 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/storage.py +18 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/tags.py +8 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/teams_sdk.py +6 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/teamsmembers.py +6 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/traffic_sdk.py +4 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/userdata_sdk.py +26 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/userprofile.py +6 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/forms.py +21 -10
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/queryparams.py +14 -2
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/retries.py +69 -5
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/unmarshal_json_response.py +15 -1
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/virtualmachines.py +10 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/vpnsessions.py +8 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/LICENSE +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/README-PYPI.md +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/py.typed +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/__init__.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/_hooks/__init__.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/_hooks/registration.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/_hooks/sdkhooks.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/_hooks/types.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/httpclient.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/__init__.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/api_key.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/apierror.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/assign_server_virtual_networkop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/bandwidth_packages.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/bandwidth_plan_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/bandwidth_plans.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/container_plan_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_api_key.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_firewall_assignmentop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_firewallop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_ipmi_sessionop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_projectop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_server_actionop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_server_out_of_bandop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_server_reinstallop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_tagop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/create_virtual_machine_actionop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/custom_tag.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/custom_tag_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/custom_tags.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_api_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_firewall_assignmentop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_firewallop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_project_ssh_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_project_user_dataop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_projectop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_ssh_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_storage_filesystemsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_storage_volumesop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_user_dataop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_virtual_networks_assignmentsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/delete_vpn_sessionop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/deploy_config.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/destroy_serverop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/destroy_tagop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/destroy_team_memberop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/destroy_virtual_machineop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/destroy_virtual_networkop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/event_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/events.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/filesystem_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/firewall.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/firewall_assignment_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/firewall_assignments.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/firewall_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/firewall_server.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/firewalls.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_all_firewall_assignmentsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_bandwidth_plansop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_billing_usageop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_containers_planop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_eventsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_firewall_assignmentsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_firewallop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_ipop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_planop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_plans_operating_systemop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_plansop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_project_ssh_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_project_ssh_keysop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_project_user_dataop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_project_users_dataop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_projectsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_regionop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_regionsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_role_idop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_rolesop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_server_deploy_configop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_server_out_of_bandop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_serverop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_ssh_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_storage_filesystemsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_storage_volumeop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_storage_volumesop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_team_membersop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_traffic_consumptionop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_traffic_quotaop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_user_dataop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_user_profileop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_virtual_networkop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_virtual_networks_assignmentsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_virtual_networksop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/get_vpn_sessionsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/index_virtual_machineop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/ip_address.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/ip_addresses.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/ipmi_session.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/latitudesherror.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/list_firewallsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/membership.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/no_response_error.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/operating_system_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/operating_systems.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/out_of_band_connection.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/patch_current_teamop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/patch_storage_filesystemsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/patch_user_dataop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/patch_user_profileop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/plan.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/plan_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_api_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_project_ssh_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_project_user_dataop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_storage_filesystemsop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_storage_volumes_mountop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_storage_volumesop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_team_membersop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/post_teamop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/project.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/project_include.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/projects.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/put_project_ssh_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/put_project_user_dataop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/put_ssh_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/put_vpn_sessionop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/region.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/region_resource_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/regions.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/responsevalidationerror.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/role.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/role_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/security.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_action.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_exit_rescue_modeop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_lockop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_region_resource_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_rescue.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_schedule_deletion.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_schedule_deletionop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_start_rescue_modeop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_unlockop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/server_unschedule_deletionop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/servers.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/show_virtual_machineop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/ssh_key_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/ssh_keys.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/storage_plan_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/storage_plans.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/team.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/team_include.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/team_members.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/teams.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/traffic.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/traffic_quota.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/update_api_key.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/update_api_keyop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/update_firewallop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/update_plans_bandwidthop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/update_projectop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/update_server_deploy_configop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/update_serverop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/update_tagop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/update_virtual_networkop.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/user.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/user_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/user_data_properties.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/user_include.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/user_team.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/user_teams.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/user_update.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_machine.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_machine_attributes.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_machine_payload.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_network.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_network_assignment.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_network_assignment_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_network_assignments.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_network_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/virtual_networks.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/volume_data.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/vpn_session_data_with_password.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/models/vpn_session_with_password.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/py.typed +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/sdk.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/sdkconfiguration.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/types/__init__.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/types/basemodel.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/__init__.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/annotations.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/datetimes.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/enums.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/eventstreaming.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/headers.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/logger.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/metadata.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/requestbodies.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/security.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/serializers.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/url.py +0 -0
- {latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/utils/values.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
[project]
|
|
3
3
|
name = "latitudesh-python-sdk"
|
|
4
|
-
version = "2.
|
|
4
|
+
version = "2.2.0"
|
|
5
5
|
description = "Python Client SDK Generated by Speakeasy."
|
|
6
6
|
authors = [{ name = "Speakeasy" },]
|
|
7
7
|
readme = "README-PYPI.md"
|
|
@@ -29,6 +29,7 @@ in-project = true
|
|
|
29
29
|
[tool.poetry.group.dev.dependencies]
|
|
30
30
|
mypy = "==1.15.0"
|
|
31
31
|
pylint = "==3.2.3"
|
|
32
|
+
pyright = "==1.1.398"
|
|
32
33
|
|
|
33
34
|
[build-system]
|
|
34
35
|
requires = ["poetry-core"]
|
{latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/_version.py
RENAMED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "latitudesh-python-sdk"
|
|
6
|
-
__version__: str = "2.
|
|
6
|
+
__version__: str = "2.2.0"
|
|
7
7
|
__openapi_doc_version__: str = "2023-06-01"
|
|
8
|
-
__gen_version__: str = "2.
|
|
8
|
+
__gen_version__: str = "2.767.2"
|
|
9
9
|
__user_agent__: str = (
|
|
10
|
-
"speakeasy-sdk/python 2.
|
|
10
|
+
"speakeasy-sdk/python 2.2.0 2.767.2 2023-06-01 latitudesh-python-sdk"
|
|
11
11
|
)
|
|
12
12
|
|
|
13
13
|
try:
|
{latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/apikeys.py
RENAMED
|
@@ -50,6 +50,7 @@ class APIKeys(BaseSDK):
|
|
|
50
50
|
accept_header_value="application/vnd.api+json",
|
|
51
51
|
http_headers=http_headers,
|
|
52
52
|
security=self.sdk_configuration.security,
|
|
53
|
+
allow_empty_value=None,
|
|
53
54
|
timeout_ms=timeout_ms,
|
|
54
55
|
)
|
|
55
56
|
|
|
@@ -127,6 +128,7 @@ class APIKeys(BaseSDK):
|
|
|
127
128
|
accept_header_value="application/vnd.api+json",
|
|
128
129
|
http_headers=http_headers,
|
|
129
130
|
security=self.sdk_configuration.security,
|
|
131
|
+
allow_empty_value=None,
|
|
130
132
|
timeout_ms=timeout_ms,
|
|
131
133
|
)
|
|
132
134
|
|
|
@@ -214,6 +216,7 @@ class APIKeys(BaseSDK):
|
|
|
214
216
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
215
217
|
request, False, False, "json", models.CreateAPIKey
|
|
216
218
|
),
|
|
219
|
+
allow_empty_value=None,
|
|
217
220
|
timeout_ms=timeout_ms,
|
|
218
221
|
)
|
|
219
222
|
|
|
@@ -301,6 +304,7 @@ class APIKeys(BaseSDK):
|
|
|
301
304
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
302
305
|
request, False, False, "json", models.CreateAPIKey
|
|
303
306
|
),
|
|
307
|
+
allow_empty_value=None,
|
|
304
308
|
timeout_ms=timeout_ms,
|
|
305
309
|
)
|
|
306
310
|
|
|
@@ -395,6 +399,7 @@ class APIKeys(BaseSDK):
|
|
|
395
399
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
396
400
|
request.update_api_key, False, False, "json", models.UpdateAPIKey
|
|
397
401
|
),
|
|
402
|
+
allow_empty_value=None,
|
|
398
403
|
timeout_ms=timeout_ms,
|
|
399
404
|
)
|
|
400
405
|
|
|
@@ -489,6 +494,7 @@ class APIKeys(BaseSDK):
|
|
|
489
494
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
490
495
|
request.update_api_key, False, False, "json", models.UpdateAPIKey
|
|
491
496
|
),
|
|
497
|
+
allow_empty_value=None,
|
|
492
498
|
timeout_ms=timeout_ms,
|
|
493
499
|
)
|
|
494
500
|
|
|
@@ -573,6 +579,7 @@ class APIKeys(BaseSDK):
|
|
|
573
579
|
accept_header_value="*/*",
|
|
574
580
|
http_headers=http_headers,
|
|
575
581
|
security=self.sdk_configuration.security,
|
|
582
|
+
allow_empty_value=None,
|
|
576
583
|
timeout_ms=timeout_ms,
|
|
577
584
|
)
|
|
578
585
|
|
|
@@ -657,6 +664,7 @@ class APIKeys(BaseSDK):
|
|
|
657
664
|
accept_header_value="*/*",
|
|
658
665
|
http_headers=http_headers,
|
|
659
666
|
security=self.sdk_configuration.security,
|
|
667
|
+
allow_empty_value=None,
|
|
660
668
|
timeout_ms=timeout_ms,
|
|
661
669
|
)
|
|
662
670
|
|
{latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/basesdk.py
RENAMED
|
@@ -64,6 +64,7 @@ class BaseSDK:
|
|
|
64
64
|
] = None,
|
|
65
65
|
url_override: Optional[str] = None,
|
|
66
66
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
67
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
67
68
|
) -> httpx.Request:
|
|
68
69
|
client = self.sdk_configuration.async_client
|
|
69
70
|
return self._build_request_with_client(
|
|
@@ -84,6 +85,7 @@ class BaseSDK:
|
|
|
84
85
|
get_serialized_body,
|
|
85
86
|
url_override,
|
|
86
87
|
http_headers,
|
|
88
|
+
allow_empty_value,
|
|
87
89
|
)
|
|
88
90
|
|
|
89
91
|
def _build_request(
|
|
@@ -106,6 +108,7 @@ class BaseSDK:
|
|
|
106
108
|
] = None,
|
|
107
109
|
url_override: Optional[str] = None,
|
|
108
110
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
111
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
109
112
|
) -> httpx.Request:
|
|
110
113
|
client = self.sdk_configuration.client
|
|
111
114
|
return self._build_request_with_client(
|
|
@@ -126,6 +129,7 @@ class BaseSDK:
|
|
|
126
129
|
get_serialized_body,
|
|
127
130
|
url_override,
|
|
128
131
|
http_headers,
|
|
132
|
+
allow_empty_value,
|
|
129
133
|
)
|
|
130
134
|
|
|
131
135
|
def _build_request_with_client(
|
|
@@ -149,6 +153,7 @@ class BaseSDK:
|
|
|
149
153
|
] = None,
|
|
150
154
|
url_override: Optional[str] = None,
|
|
151
155
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
156
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
152
157
|
) -> httpx.Request:
|
|
153
158
|
query_params = {}
|
|
154
159
|
|
|
@@ -164,6 +169,7 @@ class BaseSDK:
|
|
|
164
169
|
query_params = utils.get_query_params(
|
|
165
170
|
request if request_has_query_params else None,
|
|
166
171
|
_globals if request_has_query_params else None,
|
|
172
|
+
allow_empty_value,
|
|
167
173
|
)
|
|
168
174
|
else:
|
|
169
175
|
# Pick up the query parameter from the override so they can be
|
{latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/billing.py
RENAMED
|
@@ -28,7 +28,9 @@ class Billing(BaseSDK):
|
|
|
28
28
|
|
|
29
29
|
:param filter_project:
|
|
30
30
|
:param filter_products: Allows to filter the billing usage for specific products. It accepts an array of product ids.
|
|
31
|
+
|
|
31
32
|
:param filter_plan: Accepts a plan name and allows to filter the usage for that plan.
|
|
33
|
+
|
|
32
34
|
:param retries: Override the default retry configuration for this method
|
|
33
35
|
:param server_url: Override the default server URL for this method
|
|
34
36
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -63,6 +65,7 @@ class Billing(BaseSDK):
|
|
|
63
65
|
accept_header_value="application/vnd.api+json",
|
|
64
66
|
http_headers=http_headers,
|
|
65
67
|
security=self.sdk_configuration.security,
|
|
68
|
+
allow_empty_value=None,
|
|
66
69
|
timeout_ms=timeout_ms,
|
|
67
70
|
)
|
|
68
71
|
|
|
@@ -118,7 +121,9 @@ class Billing(BaseSDK):
|
|
|
118
121
|
|
|
119
122
|
:param filter_project:
|
|
120
123
|
:param filter_products: Allows to filter the billing usage for specific products. It accepts an array of product ids.
|
|
124
|
+
|
|
121
125
|
:param filter_plan: Accepts a plan name and allows to filter the usage for that plan.
|
|
126
|
+
|
|
122
127
|
:param retries: Override the default retry configuration for this method
|
|
123
128
|
:param server_url: Override the default server URL for this method
|
|
124
129
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -153,6 +158,7 @@ class Billing(BaseSDK):
|
|
|
153
158
|
accept_header_value="application/vnd.api+json",
|
|
154
159
|
http_headers=http_headers,
|
|
155
160
|
security=self.sdk_configuration.security,
|
|
161
|
+
allow_empty_value=None,
|
|
156
162
|
timeout_ms=timeout_ms,
|
|
157
163
|
)
|
|
158
164
|
|
{latitudesh_python_sdk-2.1.0 → latitudesh_python_sdk-2.2.0}/src/latitudesh_python_sdk/events_sdk.py
RENAMED
|
@@ -85,6 +85,7 @@ class EventsSDK(BaseSDK):
|
|
|
85
85
|
accept_header_value="application/vnd.api+json",
|
|
86
86
|
http_headers=http_headers,
|
|
87
87
|
security=self.sdk_configuration.security,
|
|
88
|
+
allow_empty_value=None,
|
|
88
89
|
timeout_ms=timeout_ms,
|
|
89
90
|
)
|
|
90
91
|
|
|
@@ -227,6 +228,7 @@ class EventsSDK(BaseSDK):
|
|
|
227
228
|
accept_header_value="application/vnd.api+json",
|
|
228
229
|
http_headers=http_headers,
|
|
229
230
|
security=self.sdk_configuration.security,
|
|
231
|
+
allow_empty_value=None,
|
|
230
232
|
timeout_ms=timeout_ms,
|
|
231
233
|
)
|
|
232
234
|
|
|
@@ -63,6 +63,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
63
63
|
accept_header_value="application/vnd.api+json",
|
|
64
64
|
http_headers=http_headers,
|
|
65
65
|
security=self.sdk_configuration.security,
|
|
66
|
+
allow_empty_value=None,
|
|
66
67
|
timeout_ms=timeout_ms,
|
|
67
68
|
)
|
|
68
69
|
|
|
@@ -176,6 +177,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
176
177
|
accept_header_value="application/vnd.api+json",
|
|
177
178
|
http_headers=http_headers,
|
|
178
179
|
security=self.sdk_configuration.security,
|
|
180
|
+
allow_empty_value=None,
|
|
179
181
|
timeout_ms=timeout_ms,
|
|
180
182
|
)
|
|
181
183
|
|
|
@@ -289,6 +291,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
289
291
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
290
292
|
request, False, False, "json", models.CreateFirewallFirewallsRequestBody
|
|
291
293
|
),
|
|
294
|
+
allow_empty_value=None,
|
|
292
295
|
timeout_ms=timeout_ms,
|
|
293
296
|
)
|
|
294
297
|
|
|
@@ -378,6 +381,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
378
381
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
379
382
|
request, False, False, "json", models.CreateFirewallFirewallsRequestBody
|
|
380
383
|
),
|
|
384
|
+
allow_empty_value=None,
|
|
381
385
|
timeout_ms=timeout_ms,
|
|
382
386
|
)
|
|
383
387
|
|
|
@@ -467,6 +471,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
467
471
|
accept_header_value="application/vnd.api+json",
|
|
468
472
|
http_headers=http_headers,
|
|
469
473
|
security=self.sdk_configuration.security,
|
|
474
|
+
allow_empty_value=None,
|
|
470
475
|
timeout_ms=timeout_ms,
|
|
471
476
|
)
|
|
472
477
|
|
|
@@ -580,6 +585,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
580
585
|
accept_header_value="application/vnd.api+json",
|
|
581
586
|
http_headers=http_headers,
|
|
582
587
|
security=self.sdk_configuration.security,
|
|
588
|
+
allow_empty_value=None,
|
|
583
589
|
timeout_ms=timeout_ms,
|
|
584
590
|
)
|
|
585
591
|
|
|
@@ -687,6 +693,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
687
693
|
accept_header_value="application/vnd.api+json",
|
|
688
694
|
http_headers=http_headers,
|
|
689
695
|
security=self.sdk_configuration.security,
|
|
696
|
+
allow_empty_value=None,
|
|
690
697
|
timeout_ms=timeout_ms,
|
|
691
698
|
)
|
|
692
699
|
|
|
@@ -770,6 +777,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
770
777
|
accept_header_value="application/vnd.api+json",
|
|
771
778
|
http_headers=http_headers,
|
|
772
779
|
security=self.sdk_configuration.security,
|
|
780
|
+
allow_empty_value=None,
|
|
773
781
|
timeout_ms=timeout_ms,
|
|
774
782
|
)
|
|
775
783
|
|
|
@@ -868,6 +876,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
868
876
|
"json",
|
|
869
877
|
models.UpdateFirewallFirewallsRequestBody,
|
|
870
878
|
),
|
|
879
|
+
allow_empty_value=None,
|
|
871
880
|
timeout_ms=timeout_ms,
|
|
872
881
|
)
|
|
873
882
|
|
|
@@ -966,6 +975,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
966
975
|
"json",
|
|
967
976
|
models.UpdateFirewallFirewallsRequestBody,
|
|
968
977
|
),
|
|
978
|
+
allow_empty_value=None,
|
|
969
979
|
timeout_ms=timeout_ms,
|
|
970
980
|
)
|
|
971
981
|
|
|
@@ -1049,6 +1059,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
1049
1059
|
accept_header_value="*/*",
|
|
1050
1060
|
http_headers=http_headers,
|
|
1051
1061
|
security=self.sdk_configuration.security,
|
|
1062
|
+
allow_empty_value=None,
|
|
1052
1063
|
timeout_ms=timeout_ms,
|
|
1053
1064
|
)
|
|
1054
1065
|
|
|
@@ -1132,6 +1143,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
1132
1143
|
accept_header_value="*/*",
|
|
1133
1144
|
http_headers=http_headers,
|
|
1134
1145
|
security=self.sdk_configuration.security,
|
|
1146
|
+
allow_empty_value=None,
|
|
1135
1147
|
timeout_ms=timeout_ms,
|
|
1136
1148
|
)
|
|
1137
1149
|
|
|
@@ -1232,6 +1244,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
1232
1244
|
"json",
|
|
1233
1245
|
models.CreateFirewallAssignmentFirewallsRequestBody,
|
|
1234
1246
|
),
|
|
1247
|
+
allow_empty_value=None,
|
|
1235
1248
|
timeout_ms=timeout_ms,
|
|
1236
1249
|
)
|
|
1237
1250
|
|
|
@@ -1332,6 +1345,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
1332
1345
|
"json",
|
|
1333
1346
|
models.CreateFirewallAssignmentFirewallsRequestBody,
|
|
1334
1347
|
),
|
|
1348
|
+
allow_empty_value=None,
|
|
1335
1349
|
timeout_ms=timeout_ms,
|
|
1336
1350
|
)
|
|
1337
1351
|
|
|
@@ -1421,6 +1435,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
1421
1435
|
accept_header_value="application/vnd.api+json",
|
|
1422
1436
|
http_headers=http_headers,
|
|
1423
1437
|
security=self.sdk_configuration.security,
|
|
1438
|
+
allow_empty_value=None,
|
|
1424
1439
|
timeout_ms=timeout_ms,
|
|
1425
1440
|
)
|
|
1426
1441
|
|
|
@@ -1534,6 +1549,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
1534
1549
|
accept_header_value="application/vnd.api+json",
|
|
1535
1550
|
http_headers=http_headers,
|
|
1536
1551
|
security=self.sdk_configuration.security,
|
|
1552
|
+
allow_empty_value=None,
|
|
1537
1553
|
timeout_ms=timeout_ms,
|
|
1538
1554
|
)
|
|
1539
1555
|
|
|
@@ -1644,6 +1660,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
1644
1660
|
accept_header_value="*/*",
|
|
1645
1661
|
http_headers=http_headers,
|
|
1646
1662
|
security=self.sdk_configuration.security,
|
|
1663
|
+
allow_empty_value=None,
|
|
1647
1664
|
timeout_ms=timeout_ms,
|
|
1648
1665
|
)
|
|
1649
1666
|
|
|
@@ -1730,6 +1747,7 @@ class FirewallsSDK(BaseSDK):
|
|
|
1730
1747
|
accept_header_value="*/*",
|
|
1731
1748
|
http_headers=http_headers,
|
|
1732
1749
|
security=self.sdk_configuration.security,
|
|
1750
|
+
allow_empty_value=None,
|
|
1733
1751
|
timeout_ms=timeout_ms,
|
|
1734
1752
|
)
|
|
1735
1753
|
|
|
@@ -40,7 +40,7 @@ class IPAddressesSDK(BaseSDK):
|
|
|
40
40
|
:param filter_project: The project ID or Slug to filter by
|
|
41
41
|
:param filter_family: The protocol family to filter by
|
|
42
42
|
:param filter_type: The protocol type to filter by
|
|
43
|
-
:param filter_location: The site slug to filter by
|
|
43
|
+
:param filter_location: The site slug to filter by (case-insensitive)
|
|
44
44
|
:param filter_address: The address of IP to filter by starts_with
|
|
45
45
|
:param extra_fields_ip_addresses: The `region` and `server` are provided as extra attributes that are lazy loaded. To request it, just set `extra_fields[ip_addresses]=region,server` in the query string.
|
|
46
46
|
:param page_size: Number of items to return per page
|
|
@@ -85,6 +85,7 @@ class IPAddressesSDK(BaseSDK):
|
|
|
85
85
|
accept_header_value="application/vnd.api+json",
|
|
86
86
|
http_headers=http_headers,
|
|
87
87
|
security=self.sdk_configuration.security,
|
|
88
|
+
allow_empty_value=None,
|
|
88
89
|
timeout_ms=timeout_ms,
|
|
89
90
|
)
|
|
90
91
|
|
|
@@ -181,7 +182,7 @@ class IPAddressesSDK(BaseSDK):
|
|
|
181
182
|
:param filter_project: The project ID or Slug to filter by
|
|
182
183
|
:param filter_family: The protocol family to filter by
|
|
183
184
|
:param filter_type: The protocol type to filter by
|
|
184
|
-
:param filter_location: The site slug to filter by
|
|
185
|
+
:param filter_location: The site slug to filter by (case-insensitive)
|
|
185
186
|
:param filter_address: The address of IP to filter by starts_with
|
|
186
187
|
:param extra_fields_ip_addresses: The `region` and `server` are provided as extra attributes that are lazy loaded. To request it, just set `extra_fields[ip_addresses]=region,server` in the query string.
|
|
187
188
|
:param page_size: Number of items to return per page
|
|
@@ -226,6 +227,7 @@ class IPAddressesSDK(BaseSDK):
|
|
|
226
227
|
accept_header_value="application/vnd.api+json",
|
|
227
228
|
http_headers=http_headers,
|
|
228
229
|
security=self.sdk_configuration.security,
|
|
230
|
+
allow_empty_value=None,
|
|
229
231
|
timeout_ms=timeout_ms,
|
|
230
232
|
)
|
|
231
233
|
|
|
@@ -342,6 +344,7 @@ class IPAddressesSDK(BaseSDK):
|
|
|
342
344
|
accept_header_value="application/vnd.api+json",
|
|
343
345
|
http_headers=http_headers,
|
|
344
346
|
security=self.sdk_configuration.security,
|
|
347
|
+
allow_empty_value=None,
|
|
345
348
|
timeout_ms=timeout_ms,
|
|
346
349
|
)
|
|
347
350
|
|
|
@@ -428,6 +431,7 @@ class IPAddressesSDK(BaseSDK):
|
|
|
428
431
|
accept_header_value="application/vnd.api+json",
|
|
429
432
|
http_headers=http_headers,
|
|
430
433
|
security=self.sdk_configuration.security,
|
|
434
|
+
allow_empty_value=None,
|
|
431
435
|
timeout_ms=timeout_ms,
|
|
432
436
|
)
|
|
433
437
|
|
|
@@ -163,6 +163,8 @@ class BillingUsageAttributesTypedDict(TypedDict):
|
|
|
163
163
|
threshold: NotRequired[float]
|
|
164
164
|
r"""The threshold which we use to charge your usage, in cents"""
|
|
165
165
|
products: NotRequired[List[ProductsTypedDict]]
|
|
166
|
+
available_credit_balance: NotRequired[int]
|
|
167
|
+
r"""The available credit balance in cents"""
|
|
166
168
|
|
|
167
169
|
|
|
168
170
|
class BillingUsageAttributes(BaseModel):
|
|
@@ -180,6 +182,9 @@ class BillingUsageAttributes(BaseModel):
|
|
|
180
182
|
|
|
181
183
|
products: Optional[List[Products]] = None
|
|
182
184
|
|
|
185
|
+
available_credit_balance: Optional[int] = None
|
|
186
|
+
r"""The available credit balance in cents"""
|
|
187
|
+
|
|
183
188
|
|
|
184
189
|
class BillingUsageDataTypedDict(TypedDict):
|
|
185
190
|
id: NotRequired[str]
|
|
@@ -31,7 +31,7 @@ class CreateServerServersPlan(str, Enum):
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class CreateServerServersSite(str, Enum):
|
|
34
|
-
r"""The site slug to deploy the server"""
|
|
34
|
+
r"""The site slug to deploy the server (case-insensitive)"""
|
|
35
35
|
|
|
36
36
|
ASH = "ASH"
|
|
37
37
|
BGT = "BGT"
|
|
@@ -105,7 +105,7 @@ class CreateServerServersAttributesTypedDict(TypedDict):
|
|
|
105
105
|
plan: NotRequired[CreateServerServersPlan]
|
|
106
106
|
r"""The plan slug to choose server from, defining the specs the server will have"""
|
|
107
107
|
site: NotRequired[CreateServerServersSite]
|
|
108
|
-
r"""The site slug to deploy the server"""
|
|
108
|
+
r"""The site slug to deploy the server (case-insensitive)"""
|
|
109
109
|
operating_system: NotRequired[CreateServerServersOperatingSystem]
|
|
110
110
|
r"""The operating system slug for the new server"""
|
|
111
111
|
hostname: NotRequired[str]
|
|
@@ -130,7 +130,7 @@ class CreateServerServersAttributes(BaseModel):
|
|
|
130
130
|
r"""The plan slug to choose server from, defining the specs the server will have"""
|
|
131
131
|
|
|
132
132
|
site: Optional[CreateServerServersSite] = None
|
|
133
|
-
r"""The site slug to deploy the server"""
|
|
133
|
+
r"""The site slug to deploy the server (case-insensitive)"""
|
|
134
134
|
|
|
135
135
|
operating_system: Optional[CreateServerServersOperatingSystem] = None
|
|
136
136
|
r"""The operating system slug for the new server"""
|
|
@@ -12,7 +12,7 @@ class CreateVirtualNetworkPrivateNetworksType(str, Enum):
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class CreateVirtualNetworkPrivateNetworksSite(str, Enum):
|
|
15
|
-
r"""Site ID or slug"""
|
|
15
|
+
r"""Site ID or slug (case-insensitive)"""
|
|
16
16
|
|
|
17
17
|
ASH = "ASH"
|
|
18
18
|
BGT = "BGT"
|
|
@@ -40,7 +40,7 @@ class CreateVirtualNetworkPrivateNetworksAttributesTypedDict(TypedDict):
|
|
|
40
40
|
project: str
|
|
41
41
|
r"""Project ID or slug"""
|
|
42
42
|
site: NotRequired[CreateVirtualNetworkPrivateNetworksSite]
|
|
43
|
-
r"""Site ID or slug"""
|
|
43
|
+
r"""Site ID or slug (case-insensitive)"""
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
class CreateVirtualNetworkPrivateNetworksAttributes(BaseModel):
|
|
@@ -50,7 +50,7 @@ class CreateVirtualNetworkPrivateNetworksAttributes(BaseModel):
|
|
|
50
50
|
r"""Project ID or slug"""
|
|
51
51
|
|
|
52
52
|
site: Optional[CreateVirtualNetworkPrivateNetworksSite] = None
|
|
53
|
-
r"""Site ID or slug"""
|
|
53
|
+
r"""Site ID or slug (case-insensitive)"""
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
class CreateVirtualNetworkPrivateNetworksDataTypedDict(TypedDict):
|
|
@@ -34,7 +34,7 @@ class GetIpsRequestTypedDict(TypedDict):
|
|
|
34
34
|
filter_type: NotRequired[FilterType]
|
|
35
35
|
r"""The protocol type to filter by"""
|
|
36
36
|
filter_location: NotRequired[str]
|
|
37
|
-
r"""The site slug to filter by"""
|
|
37
|
+
r"""The site slug to filter by (case-insensitive)"""
|
|
38
38
|
filter_address: NotRequired[str]
|
|
39
39
|
r"""The address of IP to filter by starts_with"""
|
|
40
40
|
extra_fields_ip_addresses: NotRequired[str]
|
|
@@ -79,7 +79,7 @@ class GetIpsRequest(BaseModel):
|
|
|
79
79
|
pydantic.Field(alias="filter[location]"),
|
|
80
80
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
81
81
|
] = None
|
|
82
|
-
r"""The site slug to filter by"""
|
|
82
|
+
r"""The site slug to filter by (case-insensitive)"""
|
|
83
83
|
|
|
84
84
|
filter_address: Annotated[
|
|
85
85
|
Optional[str],
|
|
@@ -13,7 +13,7 @@ class GetServersRequestTypedDict(TypedDict):
|
|
|
13
13
|
filter_project: NotRequired[str]
|
|
14
14
|
r"""The project ID or Slug to filter by"""
|
|
15
15
|
filter_region: NotRequired[str]
|
|
16
|
-
r"""The region Slug to filter by"""
|
|
16
|
+
r"""The region Slug to filter by (case-insensitive)"""
|
|
17
17
|
filter_hostname: NotRequired[str]
|
|
18
18
|
r"""The hostname of server to filter by"""
|
|
19
19
|
filter_created_at_gte: NotRequired[str]
|
|
@@ -63,7 +63,7 @@ class GetServersRequest(BaseModel):
|
|
|
63
63
|
pydantic.Field(alias="filter[region]"),
|
|
64
64
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
65
65
|
] = None
|
|
66
|
-
r"""The region Slug to filter by"""
|
|
66
|
+
r"""The region Slug to filter by (case-insensitive)"""
|
|
67
67
|
|
|
68
68
|
filter_hostname: Annotated[
|
|
69
69
|
Optional[str],
|
|
@@ -9,11 +9,20 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class GetSSHKeysRequestTypedDict(TypedDict):
|
|
12
|
+
filter_project: NotRequired[str]
|
|
13
|
+
r"""Project ID or slug"""
|
|
12
14
|
filter_tags: NotRequired[str]
|
|
13
15
|
r"""The tags ids to filter by, separated by comma, e.g. `filter[tags]=tag_1,tag_2`will return ssh keys with `tag_1` AND `tag_2`"""
|
|
14
16
|
|
|
15
17
|
|
|
16
18
|
class GetSSHKeysRequest(BaseModel):
|
|
19
|
+
filter_project: Annotated[
|
|
20
|
+
Optional[str],
|
|
21
|
+
pydantic.Field(alias="filter[project]"),
|
|
22
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
23
|
+
] = None
|
|
24
|
+
r"""Project ID or slug"""
|
|
25
|
+
|
|
17
26
|
filter_tags: Annotated[
|
|
18
27
|
Optional[str],
|
|
19
28
|
pydantic.Field(alias="filter[tags]"),
|
|
@@ -10,11 +10,20 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class GetUsersDataRequestTypedDict(TypedDict):
|
|
13
|
+
filter_project: NotRequired[str]
|
|
14
|
+
r"""Project ID or slug"""
|
|
13
15
|
extra_fields_user_data: NotRequired[str]
|
|
14
16
|
r"""The `decoded_content` is provided as an extra attribute that shows content in decoded form."""
|
|
15
17
|
|
|
16
18
|
|
|
17
19
|
class GetUsersDataRequest(BaseModel):
|
|
20
|
+
filter_project: Annotated[
|
|
21
|
+
Optional[str],
|
|
22
|
+
pydantic.Field(alias="filter[project]"),
|
|
23
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
24
|
+
] = None
|
|
25
|
+
r"""Project ID or slug"""
|
|
26
|
+
|
|
18
27
|
extra_fields_user_data: Annotated[
|
|
19
28
|
Optional[str],
|
|
20
29
|
pydantic.Field(alias="extra_fields[user_data]"),
|
|
@@ -15,6 +15,8 @@ class PostSSHKeySSHKeysType(str, Enum):
|
|
|
15
15
|
class PostSSHKeySSHKeysAttributesTypedDict(TypedDict):
|
|
16
16
|
name: NotRequired[str]
|
|
17
17
|
r"""Name of the SSH Key"""
|
|
18
|
+
project: NotRequired[str]
|
|
19
|
+
r"""Project ID or slug"""
|
|
18
20
|
public_key: NotRequired[str]
|
|
19
21
|
r"""SSH Public Key"""
|
|
20
22
|
|
|
@@ -23,6 +25,9 @@ class PostSSHKeySSHKeysAttributes(BaseModel):
|
|
|
23
25
|
name: Optional[str] = None
|
|
24
26
|
r"""Name of the SSH Key"""
|
|
25
27
|
|
|
28
|
+
project: Optional[str] = None
|
|
29
|
+
r"""Project ID or slug"""
|
|
30
|
+
|
|
26
31
|
public_key: Optional[str] = None
|
|
27
32
|
r"""SSH Public Key"""
|
|
28
33
|
|
|
@@ -16,6 +16,8 @@ class PostUserDataUserDataAttributesTypedDict(TypedDict):
|
|
|
16
16
|
r"""description of the User Data"""
|
|
17
17
|
content: str
|
|
18
18
|
r"""base64 encoded content of the User Data"""
|
|
19
|
+
project: NotRequired[str]
|
|
20
|
+
r"""Project ID or slug"""
|
|
19
21
|
|
|
20
22
|
|
|
21
23
|
class PostUserDataUserDataAttributes(BaseModel):
|
|
@@ -25,6 +27,9 @@ class PostUserDataUserDataAttributes(BaseModel):
|
|
|
25
27
|
content: str
|
|
26
28
|
r"""base64 encoded content of the User Data"""
|
|
27
29
|
|
|
30
|
+
project: Optional[str] = None
|
|
31
|
+
r"""Project ID or slug"""
|
|
32
|
+
|
|
28
33
|
|
|
29
34
|
class PostUserDataUserDataDataTypedDict(TypedDict):
|
|
30
35
|
type: PostUserDataUserDataType
|
|
@@ -12,6 +12,8 @@ class PostVpnSessionVpnSessionsType(str, Enum):
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class PostVpnSessionVpnSessionsSite(str, Enum):
|
|
15
|
+
r"""Site slug (case-insensitive)"""
|
|
16
|
+
|
|
15
17
|
ASH = "ASH"
|
|
16
18
|
BGT = "BGT"
|
|
17
19
|
BUE = "BUE"
|
|
@@ -35,11 +37,13 @@ class PostVpnSessionVpnSessionsSite(str, Enum):
|
|
|
35
37
|
|
|
36
38
|
class PostVpnSessionVpnSessionsAttributesTypedDict(TypedDict):
|
|
37
39
|
site: NotRequired[PostVpnSessionVpnSessionsSite]
|
|
40
|
+
r"""Site slug (case-insensitive)"""
|
|
38
41
|
server_id: NotRequired[str]
|
|
39
42
|
|
|
40
43
|
|
|
41
44
|
class PostVpnSessionVpnSessionsAttributes(BaseModel):
|
|
42
45
|
site: Optional[PostVpnSessionVpnSessionsSite] = None
|
|
46
|
+
r"""Site slug (case-insensitive)"""
|
|
43
47
|
|
|
44
48
|
server_id: Optional[str] = None
|
|
45
49
|
|
|
@@ -61,6 +61,7 @@ class OperatingSystemsSDK(BaseSDK):
|
|
|
61
61
|
accept_header_value="application/vnd.api+json",
|
|
62
62
|
http_headers=http_headers,
|
|
63
63
|
security=self.sdk_configuration.security,
|
|
64
|
+
allow_empty_value=None,
|
|
64
65
|
timeout_ms=timeout_ms,
|
|
65
66
|
)
|
|
66
67
|
|
|
@@ -173,6 +174,7 @@ class OperatingSystemsSDK(BaseSDK):
|
|
|
173
174
|
accept_header_value="application/vnd.api+json",
|
|
174
175
|
http_headers=http_headers,
|
|
175
176
|
security=self.sdk_configuration.security,
|
|
177
|
+
allow_empty_value=None,
|
|
176
178
|
timeout_ms=timeout_ms,
|
|
177
179
|
)
|
|
178
180
|
|