files-com 1.6.413__tar.gz → 1.6.415__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.
- {files_com-1.6.413/files_com.egg-info → files_com-1.6.415}/PKG-INFO +2 -1
- {files_com-1.6.413 → files_com-1.6.415}/README.md +1 -0
- files_com-1.6.415/_VERSION +1 -0
- {files_com-1.6.413 → files_com-1.6.415/files_com.egg-info}/PKG-INFO +2 -1
- {files_com-1.6.413 → files_com-1.6.415}/files_com.egg-info/SOURCES.txt +118 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/__init__.py +141 -1
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/error.py +15 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/__init__.py +80 -0
- files_com-1.6.415/files_sdk/models/account.py +291 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/action_log.py +40 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/action_notification_export_result.py +30 -0
- files_com-1.6.415/files_sdk/models/action_webhook_failure.py +83 -0
- files_com-1.6.415/files_sdk/models/agent_proxy_identity.py +84 -0
- files_com-1.6.415/files_sdk/models/agent_proxy_identity_endpoint.py +41 -0
- files_com-1.6.415/files_sdk/models/agent_proxy_identity_result.py +43 -0
- files_com-1.6.415/files_sdk/models/agent_v2_auth.py +41 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/ai_assistant_personality.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/ai_task.py +19 -0
- files_com-1.6.413/files_sdk/models/bundle_registration.py → files_com-1.6.415/files_sdk/models/announcement.py +32 -28
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/api_key.py +48 -1
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/api_request_log.py +40 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/app.py +26 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/as2_incoming_message.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/as2_outgoing_message.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/as2_partner.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/as2_station.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/automation.py +41 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/automation_log.py +40 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/automation_run.py +31 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/bandwidth_snapshot.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/behavior.py +19 -0
- files_com-1.6.415/files_sdk/models/blog_post.py +119 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/bundle.py +93 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/bundle_action.py +48 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/bundle_download.py +45 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/bundle_notification.py +25 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/bundle_recipient.py +31 -0
- files_com-1.6.415/files_sdk/models/bundle_recipient_registration.py +79 -0
- files_com-1.6.415/files_sdk/models/bundle_registration.py +186 -0
- files_com-1.6.415/files_sdk/models/certificate.py +451 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/chat_session.py +19 -0
- files_com-1.6.415/files_sdk/models/child_site.py +303 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/child_site_management_policy.py +15 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/clickwrap.py +16 -0
- files_com-1.6.415/files_sdk/models/clickwrap_acceptance.py +74 -0
- files_com-1.6.415/files_sdk/models/client_log.py +55 -0
- files_com-1.6.415/files_sdk/models/crash_report.py +116 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/custom_domain.py +16 -0
- files_com-1.6.415/files_sdk/models/custom_domain_for_proxy.py +47 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/desktop_configuration_profile.py +22 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/dns_record.py +12 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/email_incoming_message.py +42 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/email_log.py +33 -0
- files_com-1.6.415/files_sdk/models/email_preference.py +119 -0
- files_com-1.6.415/files_sdk/models/email_preference_bundle_notification.py +43 -0
- files_com-1.6.415/files_sdk/models/email_preference_notification.py +44 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/event_channel.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/event_delivery_attempt.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/event_record.py +42 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/event_subscription.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/event_target.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/exavault_api_request_log.py +40 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/expectation.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/expectation_evaluation.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/expectation_incident.py +19 -0
- files_com-1.6.415/files_sdk/models/export.py +164 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/external_event.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/file.py +221 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/file_migration.py +39 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/file_migration_log.py +33 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/file_upload_part.py +1 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/folder.py +24 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/form_field_set.py +16 -0
- files_com-1.6.415/files_sdk/models/front_end_server.py +183 -0
- files_com-1.6.415/files_sdk/models/frontend_metric.py +80 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/ftp_action_log.py +40 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/gpg_key.py +38 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/group.py +36 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/group_user.py +21 -1
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/history.py +154 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/history_export_result.py +25 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/holiday_region.py +12 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/inbound_s3_log.py +40 -0
- files_com-1.6.415/files_sdk/models/inbox.py +98 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/inbox_recipient.py +28 -0
- files_com-1.6.415/files_sdk/models/inbox_recipient_registration.py +77 -0
- files_com-1.6.415/files_sdk/models/inbox_registration.py +172 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/inbox_upload.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/invoice.py +12 -0
- files_com-1.6.415/files_sdk/models/ip.py +51 -0
- files_com-1.6.415/files_sdk/models/ip_abuse_entry.py +108 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/ip_address.py +79 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/key_lifecycle_rule.py +19 -0
- files_com-1.6.415/files_sdk/models/label.py +48 -0
- files_com-1.6.415/files_sdk/models/lead.py +339 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/lock.py +44 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/message.py +21 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/message_comment.py +24 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/message_comment_reaction.py +28 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/message_reaction.py +21 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/metadata_category.py +16 -0
- files_com-1.6.413/files_sdk/models/inbox_registration.py → files_com-1.6.415/files_sdk/models/monitoring_stat.py +20 -24
- files_com-1.6.415/files_sdk/models/monitoring_stats.py +42 -0
- files_com-1.6.415/files_sdk/models/mover_package.py +145 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/notification.py +39 -0
- files_com-1.6.415/files_sdk/models/nps_response.py +135 -0
- files_com-1.6.415/files_sdk/models/oauth_redirect.py +41 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/outbound_connection_log.py +40 -0
- files_com-1.6.415/files_sdk/models/paired_api_key.py +45 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/partner.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/partner_channel.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/partner_site_request.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/payment.py +12 -0
- files_com-1.6.415/files_sdk/models/paypal_express_info.py +51 -0
- files_com-1.6.415/files_sdk/models/paypal_express_url.py +41 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/pending_work_event.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/permission.py +45 -0
- files_com-1.6.415/files_sdk/models/plan.py +123 -0
- files_com-1.6.415/files_sdk/models/preview.py +141 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/project.py +12 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/public_hosting_request_log.py +40 -0
- files_com-1.6.415/files_sdk/models/public_hosting_session_pairing.py +43 -0
- files_com-1.6.415/files_sdk/models/public_inbox.py +119 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/public_key.py +38 -0
- files_com-1.6.415/files_sdk/models/public_url.py +81 -0
- files_com-1.6.415/files_sdk/models/regional_migration.py +39 -0
- files_com-1.6.415/files_sdk/models/release.py +144 -0
- files_com-1.6.415/files_sdk/models/release_package.py +45 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/remote_bandwidth_snapshot.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/remote_mount_backend.py +16 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/remote_server.py +845 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/remote_server_credential.py +26 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/request.py +22 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/restore.py +19 -0
- files_com-1.6.415/files_sdk/models/revision.py +73 -0
- files_com-1.6.415/files_sdk/models/safe_plan.py +36 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/scheduled_export.py +26 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/scim_log.py +16 -0
- files_com-1.6.415/files_sdk/models/session.py +393 -0
- files_com-1.6.415/files_sdk/models/session_available_site.py +47 -0
- files_com-1.6.415/files_sdk/models/setting.py +75 -0
- files_com-1.6.415/files_sdk/models/settings.py +249 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/settings_change.py +20 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/sftp_action_log.py +40 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/sftp_host_key.py +12 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/share_group.py +16 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/siem_http_destination.py +12 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/siem_http_destination_event.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/site.py +281 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/site_subdomain_redirect.py +16 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/snapshot.py +12 -0
- files_com-1.6.415/files_sdk/models/ssl_certificate.py +53 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/sso_event.py +42 -0
- files_com-1.6.415/files_sdk/models/sso_strategy.py +1246 -0
- files_com-1.6.415/files_sdk/models/staging_site.py +319 -0
- files_com-1.6.415/files_sdk/models/support_request.py +228 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/sync.py +19 -0
- files_com-1.6.415/files_sdk/models/sync_api_usage_snapshot.py +47 -0
- files_com-1.6.415/files_sdk/models/sync_api_usage_snapshot_report.py +146 -0
- files_com-1.6.415/files_sdk/models/sync_bandwidth_snapshot.py +136 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/sync_log.py +33 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/sync_run.py +38 -0
- files_com-1.6.415/files_sdk/models/two_factor_authentication_method.py +254 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/usage_daily_snapshot.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/usage_snapshot.py +12 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/user.py +84 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/user_cipher_use.py +38 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/user_lifecycle_rule.py +19 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/user_request.py +12 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/user_security_event.py +35 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/user_sftp_client_use.py +16 -0
- files_com-1.6.415/files_sdk/models/warning.py +70 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/web_dav_action_log.py +40 -0
- files_com-1.6.415/files_sdk/models/webauthn_sign_request.py +41 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/workspace.py +26 -0
- files_com-1.6.415/files_sdk/models/zip_download.py +82 -0
- files_com-1.6.415/files_sdk/models/zip_download_file.py +85 -0
- files_com-1.6.415/files_sdk/models/zip_download_files.py +46 -0
- {files_com-1.6.413 → files_com-1.6.415}/pyproject.toml +1 -1
- files_com-1.6.415/tests/test_account.py +26 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_action_log.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_action_notification_export_result.py +7 -0
- files_com-1.6.415/tests/test_action_webhook_failure.py +30 -0
- files_com-1.6.415/tests/test_agent_proxy_identity.py +29 -0
- files_com-1.6.415/tests/test_agent_proxy_identity_endpoint.py +14 -0
- files_com-1.6.415/tests/test_agent_proxy_identity_result.py +14 -0
- files_com-1.6.415/tests/test_agent_v2_auth.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_ai_assistant_personality.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_ai_task.py +4 -0
- files_com-1.6.415/tests/test_announcement.py +22 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_api_key.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_api_request_log.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_app.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_as2_incoming_message.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_as2_outgoing_message.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_as2_partner.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_as2_station.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_automation.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_automation_log.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_automation_run.py +7 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_bandwidth_snapshot.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_behavior.py +4 -0
- files_com-1.6.415/tests/test_blog_post.py +22 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_bundle.py +5 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_bundle_action.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_bundle_download.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_bundle_notification.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_bundle_recipient.py +7 -0
- files_com-1.6.415/tests/test_bundle_recipient_registration.py +21 -0
- files_com-1.6.415/tests/test_bundle_registration.py +36 -0
- files_com-1.6.415/tests/test_certificate.py +104 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_chat_session.py +4 -0
- files_com-1.6.415/tests/test_child_site.py +29 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_child_site_management_policy.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_clickwrap.py +4 -0
- files_com-1.6.415/tests/test_clickwrap_acceptance.py +21 -0
- files_com-1.6.415/tests/test_client_log.py +22 -0
- files_com-1.6.415/tests/test_crash_report.py +24 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_custom_domain.py +4 -0
- files_com-1.6.415/tests/test_custom_domain_for_proxy.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_desktop_configuration_profile.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_dns_record.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_email_incoming_message.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_email_log.py +4 -0
- files_com-1.6.415/tests/test_email_preference.py +30 -0
- files_com-1.6.415/tests/test_email_preference_bundle_notification.py +14 -0
- files_com-1.6.415/tests/test_email_preference_notification.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_event_channel.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_event_delivery_attempt.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_event_record.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_event_subscription.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_event_target.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_exavault_api_request_log.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_expectation.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_expectation_evaluation.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_expectation_incident.py +4 -0
- files_com-1.6.415/tests/test_export.py +37 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_external_event.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_file.py +8 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_file_migration.py +8 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_file_migration_log.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_form_field_set.py +4 -0
- files_com-1.6.415/tests/test_front_end_server.py +21 -0
- files_com-1.6.415/tests/test_frontend_metric.py +22 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_ftp_action_log.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_gpg_key.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_group.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_group_user.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_history.py +32 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_history_export_result.py +7 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_holiday_region.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_inbound_s3_log.py +4 -0
- files_com-1.6.415/tests/test_inbox.py +22 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_inbox_recipient.py +7 -0
- files_com-1.6.415/tests/test_inbox_recipient_registration.py +21 -0
- files_com-1.6.415/tests/test_inbox_registration.py +36 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_inbox_upload.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_invoice.py +4 -0
- files_com-1.6.415/tests/test_ip.py +14 -0
- files_com-1.6.415/tests/test_ip_abuse_entry.py +29 -0
- files_com-1.6.415/tests/test_ip_address.py +54 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_key_lifecycle_rule.py +4 -0
- files_com-1.6.415/tests/test_label.py +18 -0
- files_com-1.6.415/tests/test_lead.py +26 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_message.py +7 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_message_comment.py +7 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_message_comment_reaction.py +7 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_message_reaction.py +7 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_metadata_category.py +4 -0
- files_com-1.6.415/tests/test_monitoring_stat.py +22 -0
- files_com-1.6.415/tests/test_monitoring_stats.py +14 -0
- files_com-1.6.415/tests/test_mover_package.py +38 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_notification.py +4 -0
- files_com-1.6.415/tests/test_nps_response.py +36 -0
- files_com-1.6.415/tests/test_oauth_redirect.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_outbound_connection_log.py +4 -0
- files_com-1.6.415/tests/test_paired_api_key.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_partner.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_partner_channel.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_partner_site_request.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_payment.py +4 -0
- files_com-1.6.415/tests/test_paypal_express_info.py +14 -0
- files_com-1.6.415/tests/test_paypal_express_url.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_pending_work_event.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_permission.py +4 -0
- files_com-1.6.415/tests/test_plan.py +22 -0
- files_com-1.6.415/tests/test_preview.py +36 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_project.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_public_hosting_request_log.py +4 -0
- files_com-1.6.415/tests/test_public_hosting_session_pairing.py +14 -0
- files_com-1.6.415/tests/test_public_inbox.py +30 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_public_key.py +4 -0
- files_com-1.6.415/tests/test_public_url.py +23 -0
- files_com-1.6.415/tests/test_regional_migration.py +14 -0
- files_com-1.6.415/tests/test_release.py +22 -0
- files_com-1.6.415/tests/test_release_package.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_remote_bandwidth_snapshot.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_remote_mount_backend.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_remote_server.py +45 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_remote_server_credential.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_request.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_restore.py +4 -0
- files_com-1.6.415/tests/test_revision.py +22 -0
- files_com-1.6.415/tests/test_safe_plan.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_scheduled_export.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_scim_log.py +4 -0
- files_com-1.6.415/tests/test_session.py +84 -0
- files_com-1.6.415/tests/test_session_available_site.py +14 -0
- files_com-1.6.415/tests/test_setting.py +29 -0
- files_com-1.6.415/tests/test_settings.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_settings_change.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_sftp_action_log.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_sftp_host_key.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_share_group.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_siem_http_destination.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_siem_http_destination_event.py +4 -0
- files_com-1.6.415/tests/test_site.py +85 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_site_subdomain_redirect.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_snapshot.py +4 -0
- files_com-1.6.415/tests/test_ssl_certificate.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_sso_event.py +4 -0
- files_com-1.6.415/tests/test_sso_strategy.py +85 -0
- files_com-1.6.415/tests/test_staging_site.py +30 -0
- files_com-1.6.415/tests/test_support_request.py +47 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_sync.py +4 -0
- files_com-1.6.415/tests/test_sync_api_usage_snapshot.py +14 -0
- files_com-1.6.415/tests/test_sync_api_usage_snapshot_report.py +18 -0
- files_com-1.6.415/tests/test_sync_bandwidth_snapshot.py +27 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_sync_log.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_sync_run.py +4 -0
- files_com-1.6.415/tests/test_two_factor_authentication_method.py +68 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_usage_daily_snapshot.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_usage_snapshot.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_user.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_user_cipher_use.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_user_lifecycle_rule.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_user_request.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_user_security_event.py +4 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_user_sftp_client_use.py +4 -0
- files_com-1.6.415/tests/test_warning.py +22 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_web_dav_action_log.py +4 -0
- files_com-1.6.415/tests/test_webauthn_sign_request.py +14 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_workspace.py +4 -0
- files_com-1.6.415/tests/test_zip_download.py +21 -0
- files_com-1.6.415/tests/test_zip_download_file.py +21 -0
- files_com-1.6.415/tests/test_zip_download_files.py +14 -0
- files_com-1.6.413/_VERSION +0 -1
- files_com-1.6.413/files_sdk/models/preview.py +0 -42
- files_com-1.6.413/files_sdk/models/session.py +0 -102
- files_com-1.6.413/files_sdk/models/sso_strategy.py +0 -181
- files_com-1.6.413/tests/test_bundle_registration.py +0 -18
- files_com-1.6.413/tests/test_inbox_registration.py +0 -18
- files_com-1.6.413/tests/test_ip_address.py +0 -30
- files_com-1.6.413/tests/test_preview.py +0 -14
- files_com-1.6.413/tests/test_session.py +0 -22
- files_com-1.6.413/tests/test_site.py +0 -26
- files_com-1.6.413/tests/test_sso_strategy.py +0 -42
- {files_com-1.6.413 → files_com-1.6.415}/LICENSE +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_com.egg-info/dependency_links.txt +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_com.egg-info/requires.txt +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_com.egg-info/top_level.txt +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/api.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/api_client.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/list_obj.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/account_line_item.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/action.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/action_notification_export.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/agent_push_update.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/auto.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/bundle_path.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/chat_message.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/errors.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/file_action.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/file_comment.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/file_comment_reaction.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/form_field.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/history_export.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/image.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/invoice_line_item.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/partner_site.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/payment_line_item.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/public_ip_address.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/remote_server_configuration_file.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/share_group_member.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/status.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/style.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/sync_run_live_transfer.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/usage_by_top_level_dir.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/webhook_test.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/models/zip_list_entry.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/path_util.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/files_sdk/util.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/setup.cfg +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_account_line_item.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_action.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_action_notification_export.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_agent_push_update.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_api_errors.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_auto.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_bundle_path.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_chat_message.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_connection_adapter.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_decimal_contract.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_errors.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_file_action.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_file_comment.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_file_comment_reaction.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_file_upload_part.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_folder.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_form_field.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_history_export.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_image.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_invoice_line_item.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_lock.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_partner_site.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_path_parameter_encoding.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_path_util.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_payment_line_item.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_public_ip_address.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_remote_server_configuration_file.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_share_group_member.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_status.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_style.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_sync_run_live_transfer.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_usage_by_top_level_dir.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_webhook_test.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_workspace_id.py +0 -0
- {files_com-1.6.413 → files_com-1.6.415}/tests/test_zip_list_entry.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: files_com
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.415
|
|
4
4
|
Summary: Python bindings for the Files.com API
|
|
5
5
|
License: MIT
|
|
6
6
|
Requires-Python: >=3.5
|
|
@@ -565,6 +565,7 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
565
565
|
|`InvalidOauthProviderError`| `BadRequestError` |
|
|
566
566
|
|`InvalidPathError`| `BadRequestError` |
|
|
567
567
|
|`InvalidReturnToUrlError`| `BadRequestError` |
|
|
568
|
+
|`InvalidSearchQueryError`| `BadRequestError` |
|
|
568
569
|
|`InvalidSortFieldError`| `BadRequestError` |
|
|
569
570
|
|`InvalidSortFilterCombinationError`| `BadRequestError` |
|
|
570
571
|
|`InvalidUploadOffsetError`| `BadRequestError` |
|
|
@@ -553,6 +553,7 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
553
553
|
|`InvalidOauthProviderError`| `BadRequestError` |
|
|
554
554
|
|`InvalidPathError`| `BadRequestError` |
|
|
555
555
|
|`InvalidReturnToUrlError`| `BadRequestError` |
|
|
556
|
+
|`InvalidSearchQueryError`| `BadRequestError` |
|
|
556
557
|
|`InvalidSortFieldError`| `BadRequestError` |
|
|
557
558
|
|`InvalidSortFilterCombinationError`| `BadRequestError` |
|
|
558
559
|
|`InvalidUploadOffsetError`| `BadRequestError` |
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.6.415
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: files_com
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.415
|
|
4
4
|
Summary: Python bindings for the Files.com API
|
|
5
5
|
License: MIT
|
|
6
6
|
Requires-Python: >=3.5
|
|
@@ -565,6 +565,7 @@ files_sdk.error.FolderAdminPermissionRequiredError -> files_sdk.error.NotAuthori
|
|
|
565
565
|
|`InvalidOauthProviderError`| `BadRequestError` |
|
|
566
566
|
|`InvalidPathError`| `BadRequestError` |
|
|
567
567
|
|`InvalidReturnToUrlError`| `BadRequestError` |
|
|
568
|
+
|`InvalidSearchQueryError`| `BadRequestError` |
|
|
568
569
|
|`InvalidSortFieldError`| `BadRequestError` |
|
|
569
570
|
|`InvalidSortFilterCombinationError`| `BadRequestError` |
|
|
570
571
|
|`InvalidUploadOffsetError`| `BadRequestError` |
|
|
@@ -16,14 +16,21 @@ files_sdk/util.py
|
|
|
16
16
|
files_sdk/../README.md
|
|
17
17
|
files_sdk/../_VERSION
|
|
18
18
|
files_sdk/models/__init__.py
|
|
19
|
+
files_sdk/models/account.py
|
|
19
20
|
files_sdk/models/account_line_item.py
|
|
20
21
|
files_sdk/models/action.py
|
|
21
22
|
files_sdk/models/action_log.py
|
|
22
23
|
files_sdk/models/action_notification_export.py
|
|
23
24
|
files_sdk/models/action_notification_export_result.py
|
|
25
|
+
files_sdk/models/action_webhook_failure.py
|
|
26
|
+
files_sdk/models/agent_proxy_identity.py
|
|
27
|
+
files_sdk/models/agent_proxy_identity_endpoint.py
|
|
28
|
+
files_sdk/models/agent_proxy_identity_result.py
|
|
24
29
|
files_sdk/models/agent_push_update.py
|
|
30
|
+
files_sdk/models/agent_v2_auth.py
|
|
25
31
|
files_sdk/models/ai_assistant_personality.py
|
|
26
32
|
files_sdk/models/ai_task.py
|
|
33
|
+
files_sdk/models/announcement.py
|
|
27
34
|
files_sdk/models/api_key.py
|
|
28
35
|
files_sdk/models/api_request_log.py
|
|
29
36
|
files_sdk/models/app.py
|
|
@@ -37,22 +44,33 @@ files_sdk/models/automation_log.py
|
|
|
37
44
|
files_sdk/models/automation_run.py
|
|
38
45
|
files_sdk/models/bandwidth_snapshot.py
|
|
39
46
|
files_sdk/models/behavior.py
|
|
47
|
+
files_sdk/models/blog_post.py
|
|
40
48
|
files_sdk/models/bundle.py
|
|
41
49
|
files_sdk/models/bundle_action.py
|
|
42
50
|
files_sdk/models/bundle_download.py
|
|
43
51
|
files_sdk/models/bundle_notification.py
|
|
44
52
|
files_sdk/models/bundle_path.py
|
|
45
53
|
files_sdk/models/bundle_recipient.py
|
|
54
|
+
files_sdk/models/bundle_recipient_registration.py
|
|
46
55
|
files_sdk/models/bundle_registration.py
|
|
56
|
+
files_sdk/models/certificate.py
|
|
47
57
|
files_sdk/models/chat_message.py
|
|
48
58
|
files_sdk/models/chat_session.py
|
|
59
|
+
files_sdk/models/child_site.py
|
|
49
60
|
files_sdk/models/child_site_management_policy.py
|
|
50
61
|
files_sdk/models/clickwrap.py
|
|
62
|
+
files_sdk/models/clickwrap_acceptance.py
|
|
63
|
+
files_sdk/models/client_log.py
|
|
64
|
+
files_sdk/models/crash_report.py
|
|
51
65
|
files_sdk/models/custom_domain.py
|
|
66
|
+
files_sdk/models/custom_domain_for_proxy.py
|
|
52
67
|
files_sdk/models/desktop_configuration_profile.py
|
|
53
68
|
files_sdk/models/dns_record.py
|
|
54
69
|
files_sdk/models/email_incoming_message.py
|
|
55
70
|
files_sdk/models/email_log.py
|
|
71
|
+
files_sdk/models/email_preference.py
|
|
72
|
+
files_sdk/models/email_preference_bundle_notification.py
|
|
73
|
+
files_sdk/models/email_preference_notification.py
|
|
56
74
|
files_sdk/models/errors.py
|
|
57
75
|
files_sdk/models/event_channel.py
|
|
58
76
|
files_sdk/models/event_delivery_attempt.py
|
|
@@ -63,6 +81,7 @@ files_sdk/models/exavault_api_request_log.py
|
|
|
63
81
|
files_sdk/models/expectation.py
|
|
64
82
|
files_sdk/models/expectation_evaluation.py
|
|
65
83
|
files_sdk/models/expectation_incident.py
|
|
84
|
+
files_sdk/models/export.py
|
|
66
85
|
files_sdk/models/external_event.py
|
|
67
86
|
files_sdk/models/file.py
|
|
68
87
|
files_sdk/models/file_action.py
|
|
@@ -74,6 +93,8 @@ files_sdk/models/file_upload_part.py
|
|
|
74
93
|
files_sdk/models/folder.py
|
|
75
94
|
files_sdk/models/form_field.py
|
|
76
95
|
files_sdk/models/form_field_set.py
|
|
96
|
+
files_sdk/models/front_end_server.py
|
|
97
|
+
files_sdk/models/frontend_metric.py
|
|
77
98
|
files_sdk/models/ftp_action_log.py
|
|
78
99
|
files_sdk/models/gpg_key.py
|
|
79
100
|
files_sdk/models/group.py
|
|
@@ -84,34 +105,55 @@ files_sdk/models/history_export_result.py
|
|
|
84
105
|
files_sdk/models/holiday_region.py
|
|
85
106
|
files_sdk/models/image.py
|
|
86
107
|
files_sdk/models/inbound_s3_log.py
|
|
108
|
+
files_sdk/models/inbox.py
|
|
87
109
|
files_sdk/models/inbox_recipient.py
|
|
110
|
+
files_sdk/models/inbox_recipient_registration.py
|
|
88
111
|
files_sdk/models/inbox_registration.py
|
|
89
112
|
files_sdk/models/inbox_upload.py
|
|
90
113
|
files_sdk/models/invoice.py
|
|
91
114
|
files_sdk/models/invoice_line_item.py
|
|
115
|
+
files_sdk/models/ip.py
|
|
116
|
+
files_sdk/models/ip_abuse_entry.py
|
|
92
117
|
files_sdk/models/ip_address.py
|
|
93
118
|
files_sdk/models/key_lifecycle_rule.py
|
|
119
|
+
files_sdk/models/label.py
|
|
120
|
+
files_sdk/models/lead.py
|
|
94
121
|
files_sdk/models/lock.py
|
|
95
122
|
files_sdk/models/message.py
|
|
96
123
|
files_sdk/models/message_comment.py
|
|
97
124
|
files_sdk/models/message_comment_reaction.py
|
|
98
125
|
files_sdk/models/message_reaction.py
|
|
99
126
|
files_sdk/models/metadata_category.py
|
|
127
|
+
files_sdk/models/monitoring_stat.py
|
|
128
|
+
files_sdk/models/monitoring_stats.py
|
|
129
|
+
files_sdk/models/mover_package.py
|
|
100
130
|
files_sdk/models/notification.py
|
|
131
|
+
files_sdk/models/nps_response.py
|
|
132
|
+
files_sdk/models/oauth_redirect.py
|
|
101
133
|
files_sdk/models/outbound_connection_log.py
|
|
134
|
+
files_sdk/models/paired_api_key.py
|
|
102
135
|
files_sdk/models/partner.py
|
|
103
136
|
files_sdk/models/partner_channel.py
|
|
104
137
|
files_sdk/models/partner_site.py
|
|
105
138
|
files_sdk/models/partner_site_request.py
|
|
106
139
|
files_sdk/models/payment.py
|
|
107
140
|
files_sdk/models/payment_line_item.py
|
|
141
|
+
files_sdk/models/paypal_express_info.py
|
|
142
|
+
files_sdk/models/paypal_express_url.py
|
|
108
143
|
files_sdk/models/pending_work_event.py
|
|
109
144
|
files_sdk/models/permission.py
|
|
145
|
+
files_sdk/models/plan.py
|
|
110
146
|
files_sdk/models/preview.py
|
|
111
147
|
files_sdk/models/project.py
|
|
112
148
|
files_sdk/models/public_hosting_request_log.py
|
|
149
|
+
files_sdk/models/public_hosting_session_pairing.py
|
|
150
|
+
files_sdk/models/public_inbox.py
|
|
113
151
|
files_sdk/models/public_ip_address.py
|
|
114
152
|
files_sdk/models/public_key.py
|
|
153
|
+
files_sdk/models/public_url.py
|
|
154
|
+
files_sdk/models/regional_migration.py
|
|
155
|
+
files_sdk/models/release.py
|
|
156
|
+
files_sdk/models/release_package.py
|
|
115
157
|
files_sdk/models/remote_bandwidth_snapshot.py
|
|
116
158
|
files_sdk/models/remote_mount_backend.py
|
|
117
159
|
files_sdk/models/remote_server.py
|
|
@@ -119,9 +161,14 @@ files_sdk/models/remote_server_configuration_file.py
|
|
|
119
161
|
files_sdk/models/remote_server_credential.py
|
|
120
162
|
files_sdk/models/request.py
|
|
121
163
|
files_sdk/models/restore.py
|
|
164
|
+
files_sdk/models/revision.py
|
|
165
|
+
files_sdk/models/safe_plan.py
|
|
122
166
|
files_sdk/models/scheduled_export.py
|
|
123
167
|
files_sdk/models/scim_log.py
|
|
124
168
|
files_sdk/models/session.py
|
|
169
|
+
files_sdk/models/session_available_site.py
|
|
170
|
+
files_sdk/models/setting.py
|
|
171
|
+
files_sdk/models/settings.py
|
|
125
172
|
files_sdk/models/settings_change.py
|
|
126
173
|
files_sdk/models/sftp_action_log.py
|
|
127
174
|
files_sdk/models/sftp_host_key.py
|
|
@@ -132,14 +179,21 @@ files_sdk/models/siem_http_destination_event.py
|
|
|
132
179
|
files_sdk/models/site.py
|
|
133
180
|
files_sdk/models/site_subdomain_redirect.py
|
|
134
181
|
files_sdk/models/snapshot.py
|
|
182
|
+
files_sdk/models/ssl_certificate.py
|
|
135
183
|
files_sdk/models/sso_event.py
|
|
136
184
|
files_sdk/models/sso_strategy.py
|
|
185
|
+
files_sdk/models/staging_site.py
|
|
137
186
|
files_sdk/models/status.py
|
|
138
187
|
files_sdk/models/style.py
|
|
188
|
+
files_sdk/models/support_request.py
|
|
139
189
|
files_sdk/models/sync.py
|
|
190
|
+
files_sdk/models/sync_api_usage_snapshot.py
|
|
191
|
+
files_sdk/models/sync_api_usage_snapshot_report.py
|
|
192
|
+
files_sdk/models/sync_bandwidth_snapshot.py
|
|
140
193
|
files_sdk/models/sync_log.py
|
|
141
194
|
files_sdk/models/sync_run.py
|
|
142
195
|
files_sdk/models/sync_run_live_transfer.py
|
|
196
|
+
files_sdk/models/two_factor_authentication_method.py
|
|
143
197
|
files_sdk/models/usage_by_top_level_dir.py
|
|
144
198
|
files_sdk/models/usage_daily_snapshot.py
|
|
145
199
|
files_sdk/models/usage_snapshot.py
|
|
@@ -149,18 +203,30 @@ files_sdk/models/user_lifecycle_rule.py
|
|
|
149
203
|
files_sdk/models/user_request.py
|
|
150
204
|
files_sdk/models/user_security_event.py
|
|
151
205
|
files_sdk/models/user_sftp_client_use.py
|
|
206
|
+
files_sdk/models/warning.py
|
|
152
207
|
files_sdk/models/web_dav_action_log.py
|
|
208
|
+
files_sdk/models/webauthn_sign_request.py
|
|
153
209
|
files_sdk/models/webhook_test.py
|
|
154
210
|
files_sdk/models/workspace.py
|
|
211
|
+
files_sdk/models/zip_download.py
|
|
212
|
+
files_sdk/models/zip_download_file.py
|
|
213
|
+
files_sdk/models/zip_download_files.py
|
|
155
214
|
files_sdk/models/zip_list_entry.py
|
|
215
|
+
tests/test_account.py
|
|
156
216
|
tests/test_account_line_item.py
|
|
157
217
|
tests/test_action.py
|
|
158
218
|
tests/test_action_log.py
|
|
159
219
|
tests/test_action_notification_export.py
|
|
160
220
|
tests/test_action_notification_export_result.py
|
|
221
|
+
tests/test_action_webhook_failure.py
|
|
222
|
+
tests/test_agent_proxy_identity.py
|
|
223
|
+
tests/test_agent_proxy_identity_endpoint.py
|
|
224
|
+
tests/test_agent_proxy_identity_result.py
|
|
161
225
|
tests/test_agent_push_update.py
|
|
226
|
+
tests/test_agent_v2_auth.py
|
|
162
227
|
tests/test_ai_assistant_personality.py
|
|
163
228
|
tests/test_ai_task.py
|
|
229
|
+
tests/test_announcement.py
|
|
164
230
|
tests/test_api_errors.py
|
|
165
231
|
tests/test_api_key.py
|
|
166
232
|
tests/test_api_request_log.py
|
|
@@ -175,24 +241,35 @@ tests/test_automation_log.py
|
|
|
175
241
|
tests/test_automation_run.py
|
|
176
242
|
tests/test_bandwidth_snapshot.py
|
|
177
243
|
tests/test_behavior.py
|
|
244
|
+
tests/test_blog_post.py
|
|
178
245
|
tests/test_bundle.py
|
|
179
246
|
tests/test_bundle_action.py
|
|
180
247
|
tests/test_bundle_download.py
|
|
181
248
|
tests/test_bundle_notification.py
|
|
182
249
|
tests/test_bundle_path.py
|
|
183
250
|
tests/test_bundle_recipient.py
|
|
251
|
+
tests/test_bundle_recipient_registration.py
|
|
184
252
|
tests/test_bundle_registration.py
|
|
253
|
+
tests/test_certificate.py
|
|
185
254
|
tests/test_chat_message.py
|
|
186
255
|
tests/test_chat_session.py
|
|
256
|
+
tests/test_child_site.py
|
|
187
257
|
tests/test_child_site_management_policy.py
|
|
188
258
|
tests/test_clickwrap.py
|
|
259
|
+
tests/test_clickwrap_acceptance.py
|
|
260
|
+
tests/test_client_log.py
|
|
189
261
|
tests/test_connection_adapter.py
|
|
262
|
+
tests/test_crash_report.py
|
|
190
263
|
tests/test_custom_domain.py
|
|
264
|
+
tests/test_custom_domain_for_proxy.py
|
|
191
265
|
tests/test_decimal_contract.py
|
|
192
266
|
tests/test_desktop_configuration_profile.py
|
|
193
267
|
tests/test_dns_record.py
|
|
194
268
|
tests/test_email_incoming_message.py
|
|
195
269
|
tests/test_email_log.py
|
|
270
|
+
tests/test_email_preference.py
|
|
271
|
+
tests/test_email_preference_bundle_notification.py
|
|
272
|
+
tests/test_email_preference_notification.py
|
|
196
273
|
tests/test_errors.py
|
|
197
274
|
tests/test_event_channel.py
|
|
198
275
|
tests/test_event_delivery_attempt.py
|
|
@@ -203,6 +280,7 @@ tests/test_exavault_api_request_log.py
|
|
|
203
280
|
tests/test_expectation.py
|
|
204
281
|
tests/test_expectation_evaluation.py
|
|
205
282
|
tests/test_expectation_incident.py
|
|
283
|
+
tests/test_export.py
|
|
206
284
|
tests/test_external_event.py
|
|
207
285
|
tests/test_file.py
|
|
208
286
|
tests/test_file_action.py
|
|
@@ -214,6 +292,8 @@ tests/test_file_upload_part.py
|
|
|
214
292
|
tests/test_folder.py
|
|
215
293
|
tests/test_form_field.py
|
|
216
294
|
tests/test_form_field_set.py
|
|
295
|
+
tests/test_front_end_server.py
|
|
296
|
+
tests/test_frontend_metric.py
|
|
217
297
|
tests/test_ftp_action_log.py
|
|
218
298
|
tests/test_gpg_key.py
|
|
219
299
|
tests/test_group.py
|
|
@@ -224,21 +304,33 @@ tests/test_history_export_result.py
|
|
|
224
304
|
tests/test_holiday_region.py
|
|
225
305
|
tests/test_image.py
|
|
226
306
|
tests/test_inbound_s3_log.py
|
|
307
|
+
tests/test_inbox.py
|
|
227
308
|
tests/test_inbox_recipient.py
|
|
309
|
+
tests/test_inbox_recipient_registration.py
|
|
228
310
|
tests/test_inbox_registration.py
|
|
229
311
|
tests/test_inbox_upload.py
|
|
230
312
|
tests/test_invoice.py
|
|
231
313
|
tests/test_invoice_line_item.py
|
|
314
|
+
tests/test_ip.py
|
|
315
|
+
tests/test_ip_abuse_entry.py
|
|
232
316
|
tests/test_ip_address.py
|
|
233
317
|
tests/test_key_lifecycle_rule.py
|
|
318
|
+
tests/test_label.py
|
|
319
|
+
tests/test_lead.py
|
|
234
320
|
tests/test_lock.py
|
|
235
321
|
tests/test_message.py
|
|
236
322
|
tests/test_message_comment.py
|
|
237
323
|
tests/test_message_comment_reaction.py
|
|
238
324
|
tests/test_message_reaction.py
|
|
239
325
|
tests/test_metadata_category.py
|
|
326
|
+
tests/test_monitoring_stat.py
|
|
327
|
+
tests/test_monitoring_stats.py
|
|
328
|
+
tests/test_mover_package.py
|
|
240
329
|
tests/test_notification.py
|
|
330
|
+
tests/test_nps_response.py
|
|
331
|
+
tests/test_oauth_redirect.py
|
|
241
332
|
tests/test_outbound_connection_log.py
|
|
333
|
+
tests/test_paired_api_key.py
|
|
242
334
|
tests/test_partner.py
|
|
243
335
|
tests/test_partner_channel.py
|
|
244
336
|
tests/test_partner_site.py
|
|
@@ -247,13 +339,22 @@ tests/test_path_parameter_encoding.py
|
|
|
247
339
|
tests/test_path_util.py
|
|
248
340
|
tests/test_payment.py
|
|
249
341
|
tests/test_payment_line_item.py
|
|
342
|
+
tests/test_paypal_express_info.py
|
|
343
|
+
tests/test_paypal_express_url.py
|
|
250
344
|
tests/test_pending_work_event.py
|
|
251
345
|
tests/test_permission.py
|
|
346
|
+
tests/test_plan.py
|
|
252
347
|
tests/test_preview.py
|
|
253
348
|
tests/test_project.py
|
|
254
349
|
tests/test_public_hosting_request_log.py
|
|
350
|
+
tests/test_public_hosting_session_pairing.py
|
|
351
|
+
tests/test_public_inbox.py
|
|
255
352
|
tests/test_public_ip_address.py
|
|
256
353
|
tests/test_public_key.py
|
|
354
|
+
tests/test_public_url.py
|
|
355
|
+
tests/test_regional_migration.py
|
|
356
|
+
tests/test_release.py
|
|
357
|
+
tests/test_release_package.py
|
|
257
358
|
tests/test_remote_bandwidth_snapshot.py
|
|
258
359
|
tests/test_remote_mount_backend.py
|
|
259
360
|
tests/test_remote_server.py
|
|
@@ -261,9 +362,14 @@ tests/test_remote_server_configuration_file.py
|
|
|
261
362
|
tests/test_remote_server_credential.py
|
|
262
363
|
tests/test_request.py
|
|
263
364
|
tests/test_restore.py
|
|
365
|
+
tests/test_revision.py
|
|
366
|
+
tests/test_safe_plan.py
|
|
264
367
|
tests/test_scheduled_export.py
|
|
265
368
|
tests/test_scim_log.py
|
|
266
369
|
tests/test_session.py
|
|
370
|
+
tests/test_session_available_site.py
|
|
371
|
+
tests/test_setting.py
|
|
372
|
+
tests/test_settings.py
|
|
267
373
|
tests/test_settings_change.py
|
|
268
374
|
tests/test_sftp_action_log.py
|
|
269
375
|
tests/test_sftp_host_key.py
|
|
@@ -274,14 +380,21 @@ tests/test_siem_http_destination_event.py
|
|
|
274
380
|
tests/test_site.py
|
|
275
381
|
tests/test_site_subdomain_redirect.py
|
|
276
382
|
tests/test_snapshot.py
|
|
383
|
+
tests/test_ssl_certificate.py
|
|
277
384
|
tests/test_sso_event.py
|
|
278
385
|
tests/test_sso_strategy.py
|
|
386
|
+
tests/test_staging_site.py
|
|
279
387
|
tests/test_status.py
|
|
280
388
|
tests/test_style.py
|
|
389
|
+
tests/test_support_request.py
|
|
281
390
|
tests/test_sync.py
|
|
391
|
+
tests/test_sync_api_usage_snapshot.py
|
|
392
|
+
tests/test_sync_api_usage_snapshot_report.py
|
|
393
|
+
tests/test_sync_bandwidth_snapshot.py
|
|
282
394
|
tests/test_sync_log.py
|
|
283
395
|
tests/test_sync_run.py
|
|
284
396
|
tests/test_sync_run_live_transfer.py
|
|
397
|
+
tests/test_two_factor_authentication_method.py
|
|
285
398
|
tests/test_usage_by_top_level_dir.py
|
|
286
399
|
tests/test_usage_daily_snapshot.py
|
|
287
400
|
tests/test_usage_snapshot.py
|
|
@@ -291,8 +404,13 @@ tests/test_user_lifecycle_rule.py
|
|
|
291
404
|
tests/test_user_request.py
|
|
292
405
|
tests/test_user_security_event.py
|
|
293
406
|
tests/test_user_sftp_client_use.py
|
|
407
|
+
tests/test_warning.py
|
|
294
408
|
tests/test_web_dav_action_log.py
|
|
409
|
+
tests/test_webauthn_sign_request.py
|
|
295
410
|
tests/test_webhook_test.py
|
|
296
411
|
tests/test_workspace.py
|
|
297
412
|
tests/test_workspace_id.py
|
|
413
|
+
tests/test_zip_download.py
|
|
414
|
+
tests/test_zip_download_file.py
|
|
415
|
+
tests/test_zip_download_files.py
|
|
298
416
|
tests/test_zip_list_entry.py
|