├── .github ├── dependabot.yml └── workflows │ └── security.yml ├── .gitignore ├── .gitlab-ci.yml ├── .openapi-generator-ignore ├── .openapi-generator ├── FILES └── VERSION ├── .travis.yml ├── README.md ├── corellium_api ├── __init__.py ├── api │ ├── __init__.py │ └── corellium_api.py ├── api_client.py ├── configuration.py ├── exceptions.py ├── models │ ├── __init__.py │ ├── activity.py │ ├── activity_export_dto.py │ ├── activity_export_response.py │ ├── activity_list.py │ ├── activity_request.py │ ├── address.py │ ├── agent_app.py │ ├── agent_app_ready_response.py │ ├── agent_app_status.py │ ├── agent_apps_list.py │ ├── agent_apps_status_list.py │ ├── agent_error.py │ ├── agent_icons.py │ ├── agent_install_body.py │ ├── agent_profiles_return.py │ ├── agent_system_adb_auth.py │ ├── agent_system_get_prop_body.py │ ├── agent_system_set_hostname_body.py │ ├── agent_value_return.py │ ├── agreed_ack.py │ ├── allowed_domains_response.py │ ├── api_conflict_error.py │ ├── api_error.py │ ├── api_internal_consistency_error.py │ ├── api_not_found_error.py │ ├── api_token.py │ ├── assessment.py │ ├── assessment_history.py │ ├── assessment_history_line_item.py │ ├── assessment_id_status.py │ ├── attach_interface_request.py │ ├── auth_provider.py │ ├── bit.py │ ├── btrace_enable_options.py │ ├── button.py │ ├── check_subdomain_response.py │ ├── config_response.py │ ├── config_response_maintenance.py │ ├── coupon_options.py │ ├── create_assessment_dto.py │ ├── create_interconnect_request.py │ ├── create_network_connection_options.py │ ├── create_team.py │ ├── created_by.py │ ├── credentials.py │ ├── detach_interface_request.py │ ├── device.py │ ├── domain_auth_provider_request.py │ ├── domain_auth_provider_response.py │ ├── domain_options.py │ ├── extended_firmware_asset_info.py │ ├── extension.py │ ├── features.py │ ├── file_changes.py │ ├── firmware.py │ ├── firmware_asset.py │ ├── get_assessments_by_instance_id500_response.py │ ├── get_interconnects_response.py │ ├── gpio_state_definition.py │ ├── gpios_state.py │ ├── grant_trial_request_response.py │ ├── hook.py │ ├── image.py │ ├── input_response.py │ ├── install_firmware_request.py │ ├── install_firmware_response.py │ ├── instance.py │ ├── instance_agent_state.py │ ├── instance_boot_options.py │ ├── instance_boot_options_additional_tag.py │ ├── instance_console_endpoint.py │ ├── instance_create_options.py │ ├── instance_input.py │ ├── instance_interface.py │ ├── instance_netdump_state.py │ ├── instance_netmon_proc_map_state.py │ ├── instance_netmon_state.py │ ├── instance_return.py │ ├── instance_services.py │ ├── instance_start_options.py │ ├── instance_state.py │ ├── instance_stop_options.py │ ├── instance_upgrade_body.py │ ├── interconnect_response.py │ ├── invitation.py │ ├── invite_revoke_params.py │ ├── invite_revoke_params_ids.py │ ├── kcrange.py │ ├── kernel_task.py │ ├── kernel_thread.py │ ├── logging.py │ ├── maintenance.py │ ├── media_play_body.py │ ├── metered_subscription_usage.py │ ├── model.py │ ├── model_software.py │ ├── net_mon_proc_map_filter.py │ ├── netdump_filter.py │ ├── network_connection.py │ ├── network_connection_offset_pagination_result.py │ ├── network_connection_provider.py │ ├── network_connection_provider_offset_pagination_result.py │ ├── network_status_response.py │ ├── node_information.py │ ├── open_id_config.py │ ├── pagination.py │ ├── partial_update_interconnect_request.py │ ├── password_change_body.py │ ├── password_reset_body.py │ ├── patch_instance_options.py │ ├── patch_instance_read_only.py │ ├── peripherals_data.py │ ├── plan.py │ ├── plan_options.py │ ├── post_share_snapshot_request_payload.py │ ├── project.py │ ├── project_key.py │ ├── project_network_state.py │ ├── project_quota.py │ ├── project_settings.py │ ├── project_usage.py │ ├── proxy_config.py │ ├── rate_info.py │ ├── reset_link_body.py │ ├── reset_link_info_return.py │ ├── restore_backup_data.py │ ├── role.py │ ├── rotate_body.py │ ├── shared_snapshots_info.py │ ├── snapshot.py │ ├── snapshot_creation_options.py │ ├── snapshot_member.py │ ├── snapshot_owner.py │ ├── snapshot_permissions_request_payload.py │ ├── snapshot_sharing.py │ ├── snapshot_sharing_permissions.py │ ├── snapshot_status.py │ ├── sslsplit_filter.py │ ├── subscriber_invite.py │ ├── team.py │ ├── team_create.py │ ├── test_assessment_dto.py │ ├── text_input.py │ ├── token.py │ ├── touch_curve_input.py │ ├── touch_input.py │ ├── touch_input_buttons_inner.py │ ├── trial.py │ ├── trial_extension.py │ ├── trial_request_metadata.py │ ├── trial_request_options.py │ ├── update_assessment_dto.py │ ├── update_extension.py │ ├── update_interconnect_request.py │ ├── update_network_connection_options.py │ ├── update_trial_request_params.py │ ├── user.py │ ├── user_create.py │ ├── user_create_return.py │ ├── user_error.py │ ├── user_snapshots.py │ ├── user_update.py │ ├── v1_check_subdomain_existence_parameters.py │ ├── v1_create_hook_parameters.py │ ├── v1_load_extension_parameters.py │ ├── v1_set_state_body.py │ ├── v1_update_hook_parameters.py │ ├── validation_error.py │ ├── volume_options.py │ ├── vpn_definition.py │ ├── web_player_create_session_request.py │ └── web_player_session.py └── rest.py ├── docs ├── Activity.md ├── ActivityExportDto.md ├── ActivityExportResponse.md ├── ActivityList.md ├── ActivityRequest.md ├── Address.md ├── AgentApp.md ├── AgentAppReadyResponse.md ├── AgentAppStatus.md ├── AgentAppsList.md ├── AgentAppsStatusList.md ├── AgentError.md ├── AgentIcons.md ├── AgentInstallBody.md ├── AgentProfilesReturn.md ├── AgentSystemAdbAuth.md ├── AgentSystemGetPropBody.md ├── AgentSystemSetHostnameBody.md ├── AgentValueReturn.md ├── AgreedAck.md ├── AllowedDomainsResponse.md ├── ApiConflictError.md ├── ApiError.md ├── ApiInternalConsistencyError.md ├── ApiNotFoundError.md ├── ApiToken.md ├── Assessment.md ├── AssessmentHistory.md ├── AssessmentHistoryLineItem.md ├── AssessmentIdStatus.md ├── AttachInterfaceRequest.md ├── AuthProvider.md ├── Bit.md ├── BtraceEnableOptions.md ├── Button.md ├── CheckSubdomainResponse.md ├── ConfigResponse.md ├── ConfigResponseMaintenance.md ├── CorelliumApi.md ├── CouponOptions.md ├── CreateAssessmentDto.md ├── CreateInterconnectRequest.md ├── CreateNetworkConnectionOptions.md ├── CreateTeam.md ├── CreatedBy.md ├── Credentials.md ├── DetachInterfaceRequest.md ├── Device.md ├── DomainAuthProviderRequest.md ├── DomainAuthProviderResponse.md ├── DomainOptions.md ├── ExtendedFirmwareAssetInfo.md ├── Extension.md ├── Features.md ├── FileChanges.md ├── Firmware.md ├── FirmwareAsset.md ├── GetAssessmentsByInstanceId500Response.md ├── GetInterconnectsResponse.md ├── GpioStateDefinition.md ├── GpiosState.md ├── GrantTrialRequestResponse.md ├── Hook.md ├── Image.md ├── InputResponse.md ├── InstallFirmwareRequest.md ├── InstallFirmwareResponse.md ├── Instance.md ├── InstanceAgentState.md ├── InstanceBootOptions.md ├── InstanceBootOptionsAdditionalTag.md ├── InstanceConsoleEndpoint.md ├── InstanceCreateOptions.md ├── InstanceInput.md ├── InstanceInterface.md ├── InstanceNetdumpState.md ├── InstanceNetmonProcMapState.md ├── InstanceNetmonState.md ├── InstanceReturn.md ├── InstanceServices.md ├── InstanceStartOptions.md ├── InstanceState.md ├── InstanceStopOptions.md ├── InstanceUpgradeBody.md ├── InterconnectResponse.md ├── Invitation.md ├── InviteRevokeParams.md ├── InviteRevokeParamsIds.md ├── Kcrange.md ├── KernelTask.md ├── KernelThread.md ├── Logging.md ├── Maintenance.md ├── MediaPlayBody.md ├── MeteredSubscriptionUsage.md ├── Model.md ├── ModelSoftware.md ├── NetMonProcMapFilter.md ├── NetdumpFilter.md ├── NetworkConnection.md ├── NetworkConnectionOffsetPaginationResult.md ├── NetworkConnectionProvider.md ├── NetworkConnectionProviderOffsetPaginationResult.md ├── NetworkStatusResponse.md ├── NodeInformation.md ├── OpenIDConfig.md ├── Pagination.md ├── PartialUpdateInterconnectRequest.md ├── PasswordChangeBody.md ├── PasswordResetBody.md ├── PatchInstanceOptions.md ├── PatchInstanceReadOnly.md ├── PeripheralsData.md ├── Plan.md ├── PlanOptions.md ├── PostShareSnapshotRequestPayload.md ├── Project.md ├── ProjectKey.md ├── ProjectNetworkState.md ├── ProjectQuota.md ├── ProjectSettings.md ├── ProjectUsage.md ├── ProxyConfig.md ├── RateInfo.md ├── ResetLinkBody.md ├── ResetLinkInfoReturn.md ├── RestoreBackupData.md ├── Role.md ├── RotateBody.md ├── SharedSnapshotsInfo.md ├── Snapshot.md ├── SnapshotCreationOptions.md ├── SnapshotMember.md ├── SnapshotOwner.md ├── SnapshotPermissionsRequestPayload.md ├── SnapshotSharing.md ├── SnapshotSharingPermissions.md ├── SnapshotStatus.md ├── SslsplitFilter.md ├── SubscriberInvite.md ├── Team.md ├── TeamCreate.md ├── TestAssessmentDto.md ├── TextInput.md ├── Token.md ├── TouchCurveInput.md ├── TouchInput.md ├── TouchInputButtonsInner.md ├── Trial.md ├── TrialExtension.md ├── TrialRequestMetadata.md ├── TrialRequestOptions.md ├── UpdateAssessmentDto.md ├── UpdateExtension.md ├── UpdateInterconnectRequest.md ├── UpdateNetworkConnectionOptions.md ├── UpdateTrialRequestParams.md ├── User.md ├── UserCreate.md ├── UserCreateReturn.md ├── UserError.md ├── UserSnapshots.md ├── UserUpdate.md ├── V1CheckSubdomainExistenceParameters.md ├── V1CreateHookParameters.md ├── V1LoadExtensionParameters.md ├── V1SetStateBody.md ├── V1UpdateHookParameters.md ├── ValidationError.md ├── VolumeOptions.md ├── VpnDefinition.md ├── WebPlayerCreateSessionRequest.md └── WebPlayerSession.md ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── test ├── __init__.py ├── test_activity.py ├── test_activity_export_dto.py ├── test_activity_export_response.py ├── test_activity_list.py ├── test_activity_request.py ├── test_address.py ├── test_agent_app.py ├── test_agent_app_ready_response.py ├── test_agent_app_status.py ├── test_agent_apps_list.py ├── test_agent_apps_status_list.py ├── test_agent_error.py ├── test_agent_icons.py ├── test_agent_install_body.py ├── test_agent_profiles_return.py ├── test_agent_system_adb_auth.py ├── test_agent_system_get_prop_body.py ├── test_agent_system_set_hostname_body.py ├── test_agent_value_return.py ├── test_agreed_ack.py ├── test_allowed_domains_response.py ├── test_api_conflict_error.py ├── test_api_error.py ├── test_api_internal_consistency_error.py ├── test_api_not_found_error.py ├── test_api_token.py ├── test_assessment.py ├── test_assessment_history.py ├── test_assessment_history_line_item.py ├── test_assessment_id_status.py ├── test_attach_interface_request.py ├── test_auth_provider.py ├── test_bit.py ├── test_btrace_enable_options.py ├── test_button.py ├── test_check_subdomain_response.py ├── test_config_response.py ├── test_config_response_maintenance.py ├── test_corellium_api.py ├── test_coupon_options.py ├── test_create_assessment_dto.py ├── test_create_interconnect_request.py ├── test_create_network_connection_options.py ├── test_create_team.py ├── test_created_by.py ├── test_credentials.py ├── test_detach_interface_request.py ├── test_device.py ├── test_domain_auth_provider_request.py ├── test_domain_auth_provider_response.py ├── test_domain_options.py ├── test_extended_firmware_asset_info.py ├── test_extension.py ├── test_features.py ├── test_file_changes.py ├── test_firmware.py ├── test_firmware_asset.py ├── test_get_assessments_by_instance_id500_response.py ├── test_get_interconnects_response.py ├── test_gpio_state_definition.py ├── test_gpios_state.py ├── test_grant_trial_request_response.py ├── test_hook.py ├── test_image.py ├── test_input_response.py ├── test_install_firmware_request.py ├── test_install_firmware_response.py ├── test_instance.py ├── test_instance_agent_state.py ├── test_instance_boot_options.py ├── test_instance_boot_options_additional_tag.py ├── test_instance_console_endpoint.py ├── test_instance_create_options.py ├── test_instance_input.py ├── test_instance_interface.py ├── test_instance_netdump_state.py ├── test_instance_netmon_proc_map_state.py ├── test_instance_netmon_state.py ├── test_instance_return.py ├── test_instance_services.py ├── test_instance_start_options.py ├── test_instance_state.py ├── test_instance_stop_options.py ├── test_instance_upgrade_body.py ├── test_interconnect_response.py ├── test_invitation.py ├── test_invite_revoke_params.py ├── test_invite_revoke_params_ids.py ├── test_kcrange.py ├── test_kernel_task.py ├── test_kernel_thread.py ├── test_logging.py ├── test_maintenance.py ├── test_media_play_body.py ├── test_metered_subscription_usage.py ├── test_model.py ├── test_model_software.py ├── test_net_mon_proc_map_filter.py ├── test_netdump_filter.py ├── test_network_connection.py ├── test_network_connection_offset_pagination_result.py ├── test_network_connection_provider.py ├── test_network_connection_provider_offset_pagination_result.py ├── test_network_status_response.py ├── test_node_information.py ├── test_open_id_config.py ├── test_pagination.py ├── test_partial_update_interconnect_request.py ├── test_password_change_body.py ├── test_password_reset_body.py ├── test_patch_instance_options.py ├── test_patch_instance_read_only.py ├── test_peripherals_data.py ├── test_plan.py ├── test_plan_options.py ├── test_post_share_snapshot_request_payload.py ├── test_project.py ├── test_project_key.py ├── test_project_network_state.py ├── test_project_quota.py ├── test_project_settings.py ├── test_project_usage.py ├── test_proxy_config.py ├── test_rate_info.py ├── test_reset_link_body.py ├── test_reset_link_info_return.py ├── test_restore_backup_data.py ├── test_role.py ├── test_rotate_body.py ├── test_shared_snapshots_info.py ├── test_snapshot.py ├── test_snapshot_creation_options.py ├── test_snapshot_member.py ├── test_snapshot_owner.py ├── test_snapshot_permissions_request_payload.py ├── test_snapshot_sharing.py ├── test_snapshot_sharing_permissions.py ├── test_snapshot_status.py ├── test_sslsplit_filter.py ├── test_subscriber_invite.py ├── test_team.py ├── test_team_create.py ├── test_test_assessment_dto.py ├── test_text_input.py ├── test_token.py ├── test_touch_curve_input.py ├── test_touch_input.py ├── test_touch_input_buttons_inner.py ├── test_trial.py ├── test_trial_extension.py ├── test_trial_request_metadata.py ├── test_trial_request_options.py ├── test_update_assessment_dto.py ├── test_update_extension.py ├── test_update_interconnect_request.py ├── test_update_network_connection_options.py ├── test_update_trial_request_params.py ├── test_user.py ├── test_user_create.py ├── test_user_create_return.py ├── test_user_error.py ├── test_user_snapshots.py ├── test_user_update.py ├── test_v1_check_subdomain_existence_parameters.py ├── test_v1_create_hook_parameters.py ├── test_v1_load_extension_parameters.py ├── test_v1_set_state_body.py ├── test_v1_update_hook_parameters.py ├── test_validation_error.py ├── test_volume_options.py ├── test_vpn_definition.py ├── test_web_player_create_session_request.py └── test_web_player_session.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/.openapi-generator-ignore -------------------------------------------------------------------------------- /.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/.openapi-generator/FILES -------------------------------------------------------------------------------- /.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/README.md -------------------------------------------------------------------------------- /corellium_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/__init__.py -------------------------------------------------------------------------------- /corellium_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/api/__init__.py -------------------------------------------------------------------------------- /corellium_api/api/corellium_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/api/corellium_api.py -------------------------------------------------------------------------------- /corellium_api/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/api_client.py -------------------------------------------------------------------------------- /corellium_api/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/configuration.py -------------------------------------------------------------------------------- /corellium_api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/exceptions.py -------------------------------------------------------------------------------- /corellium_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/__init__.py -------------------------------------------------------------------------------- /corellium_api/models/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/activity.py -------------------------------------------------------------------------------- /corellium_api/models/activity_export_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/activity_export_dto.py -------------------------------------------------------------------------------- /corellium_api/models/activity_export_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/activity_export_response.py -------------------------------------------------------------------------------- /corellium_api/models/activity_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/activity_list.py -------------------------------------------------------------------------------- /corellium_api/models/activity_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/activity_request.py -------------------------------------------------------------------------------- /corellium_api/models/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/address.py -------------------------------------------------------------------------------- /corellium_api/models/agent_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_app.py -------------------------------------------------------------------------------- /corellium_api/models/agent_app_ready_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_app_ready_response.py -------------------------------------------------------------------------------- /corellium_api/models/agent_app_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_app_status.py -------------------------------------------------------------------------------- /corellium_api/models/agent_apps_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_apps_list.py -------------------------------------------------------------------------------- /corellium_api/models/agent_apps_status_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_apps_status_list.py -------------------------------------------------------------------------------- /corellium_api/models/agent_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_error.py -------------------------------------------------------------------------------- /corellium_api/models/agent_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_icons.py -------------------------------------------------------------------------------- /corellium_api/models/agent_install_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_install_body.py -------------------------------------------------------------------------------- /corellium_api/models/agent_profiles_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_profiles_return.py -------------------------------------------------------------------------------- /corellium_api/models/agent_system_adb_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_system_adb_auth.py -------------------------------------------------------------------------------- /corellium_api/models/agent_system_get_prop_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_system_get_prop_body.py -------------------------------------------------------------------------------- /corellium_api/models/agent_system_set_hostname_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_system_set_hostname_body.py -------------------------------------------------------------------------------- /corellium_api/models/agent_value_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agent_value_return.py -------------------------------------------------------------------------------- /corellium_api/models/agreed_ack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/agreed_ack.py -------------------------------------------------------------------------------- /corellium_api/models/allowed_domains_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/allowed_domains_response.py -------------------------------------------------------------------------------- /corellium_api/models/api_conflict_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/api_conflict_error.py -------------------------------------------------------------------------------- /corellium_api/models/api_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/api_error.py -------------------------------------------------------------------------------- /corellium_api/models/api_internal_consistency_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/api_internal_consistency_error.py -------------------------------------------------------------------------------- /corellium_api/models/api_not_found_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/api_not_found_error.py -------------------------------------------------------------------------------- /corellium_api/models/api_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/api_token.py -------------------------------------------------------------------------------- /corellium_api/models/assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/assessment.py -------------------------------------------------------------------------------- /corellium_api/models/assessment_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/assessment_history.py -------------------------------------------------------------------------------- /corellium_api/models/assessment_history_line_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/assessment_history_line_item.py -------------------------------------------------------------------------------- /corellium_api/models/assessment_id_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/assessment_id_status.py -------------------------------------------------------------------------------- /corellium_api/models/attach_interface_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/attach_interface_request.py -------------------------------------------------------------------------------- /corellium_api/models/auth_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/auth_provider.py -------------------------------------------------------------------------------- /corellium_api/models/bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/bit.py -------------------------------------------------------------------------------- /corellium_api/models/btrace_enable_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/btrace_enable_options.py -------------------------------------------------------------------------------- /corellium_api/models/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/button.py -------------------------------------------------------------------------------- /corellium_api/models/check_subdomain_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/check_subdomain_response.py -------------------------------------------------------------------------------- /corellium_api/models/config_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/config_response.py -------------------------------------------------------------------------------- /corellium_api/models/config_response_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/config_response_maintenance.py -------------------------------------------------------------------------------- /corellium_api/models/coupon_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/coupon_options.py -------------------------------------------------------------------------------- /corellium_api/models/create_assessment_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/create_assessment_dto.py -------------------------------------------------------------------------------- /corellium_api/models/create_interconnect_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/create_interconnect_request.py -------------------------------------------------------------------------------- /corellium_api/models/create_network_connection_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/create_network_connection_options.py -------------------------------------------------------------------------------- /corellium_api/models/create_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/create_team.py -------------------------------------------------------------------------------- /corellium_api/models/created_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/created_by.py -------------------------------------------------------------------------------- /corellium_api/models/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/credentials.py -------------------------------------------------------------------------------- /corellium_api/models/detach_interface_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/detach_interface_request.py -------------------------------------------------------------------------------- /corellium_api/models/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/device.py -------------------------------------------------------------------------------- /corellium_api/models/domain_auth_provider_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/domain_auth_provider_request.py -------------------------------------------------------------------------------- /corellium_api/models/domain_auth_provider_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/domain_auth_provider_response.py -------------------------------------------------------------------------------- /corellium_api/models/domain_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/domain_options.py -------------------------------------------------------------------------------- /corellium_api/models/extended_firmware_asset_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/extended_firmware_asset_info.py -------------------------------------------------------------------------------- /corellium_api/models/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/extension.py -------------------------------------------------------------------------------- /corellium_api/models/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/features.py -------------------------------------------------------------------------------- /corellium_api/models/file_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/file_changes.py -------------------------------------------------------------------------------- /corellium_api/models/firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/firmware.py -------------------------------------------------------------------------------- /corellium_api/models/firmware_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/firmware_asset.py -------------------------------------------------------------------------------- /corellium_api/models/get_assessments_by_instance_id500_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/get_assessments_by_instance_id500_response.py -------------------------------------------------------------------------------- /corellium_api/models/get_interconnects_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/get_interconnects_response.py -------------------------------------------------------------------------------- /corellium_api/models/gpio_state_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/gpio_state_definition.py -------------------------------------------------------------------------------- /corellium_api/models/gpios_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/gpios_state.py -------------------------------------------------------------------------------- /corellium_api/models/grant_trial_request_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/grant_trial_request_response.py -------------------------------------------------------------------------------- /corellium_api/models/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/hook.py -------------------------------------------------------------------------------- /corellium_api/models/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/image.py -------------------------------------------------------------------------------- /corellium_api/models/input_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/input_response.py -------------------------------------------------------------------------------- /corellium_api/models/install_firmware_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/install_firmware_request.py -------------------------------------------------------------------------------- /corellium_api/models/install_firmware_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/install_firmware_response.py -------------------------------------------------------------------------------- /corellium_api/models/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance.py -------------------------------------------------------------------------------- /corellium_api/models/instance_agent_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_agent_state.py -------------------------------------------------------------------------------- /corellium_api/models/instance_boot_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_boot_options.py -------------------------------------------------------------------------------- /corellium_api/models/instance_boot_options_additional_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_boot_options_additional_tag.py -------------------------------------------------------------------------------- /corellium_api/models/instance_console_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_console_endpoint.py -------------------------------------------------------------------------------- /corellium_api/models/instance_create_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_create_options.py -------------------------------------------------------------------------------- /corellium_api/models/instance_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_input.py -------------------------------------------------------------------------------- /corellium_api/models/instance_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_interface.py -------------------------------------------------------------------------------- /corellium_api/models/instance_netdump_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_netdump_state.py -------------------------------------------------------------------------------- /corellium_api/models/instance_netmon_proc_map_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_netmon_proc_map_state.py -------------------------------------------------------------------------------- /corellium_api/models/instance_netmon_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_netmon_state.py -------------------------------------------------------------------------------- /corellium_api/models/instance_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_return.py -------------------------------------------------------------------------------- /corellium_api/models/instance_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_services.py -------------------------------------------------------------------------------- /corellium_api/models/instance_start_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_start_options.py -------------------------------------------------------------------------------- /corellium_api/models/instance_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_state.py -------------------------------------------------------------------------------- /corellium_api/models/instance_stop_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_stop_options.py -------------------------------------------------------------------------------- /corellium_api/models/instance_upgrade_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/instance_upgrade_body.py -------------------------------------------------------------------------------- /corellium_api/models/interconnect_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/interconnect_response.py -------------------------------------------------------------------------------- /corellium_api/models/invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/invitation.py -------------------------------------------------------------------------------- /corellium_api/models/invite_revoke_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/invite_revoke_params.py -------------------------------------------------------------------------------- /corellium_api/models/invite_revoke_params_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/invite_revoke_params_ids.py -------------------------------------------------------------------------------- /corellium_api/models/kcrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/kcrange.py -------------------------------------------------------------------------------- /corellium_api/models/kernel_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/kernel_task.py -------------------------------------------------------------------------------- /corellium_api/models/kernel_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/kernel_thread.py -------------------------------------------------------------------------------- /corellium_api/models/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/logging.py -------------------------------------------------------------------------------- /corellium_api/models/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/maintenance.py -------------------------------------------------------------------------------- /corellium_api/models/media_play_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/media_play_body.py -------------------------------------------------------------------------------- /corellium_api/models/metered_subscription_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/metered_subscription_usage.py -------------------------------------------------------------------------------- /corellium_api/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/model.py -------------------------------------------------------------------------------- /corellium_api/models/model_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/model_software.py -------------------------------------------------------------------------------- /corellium_api/models/net_mon_proc_map_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/net_mon_proc_map_filter.py -------------------------------------------------------------------------------- /corellium_api/models/netdump_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/netdump_filter.py -------------------------------------------------------------------------------- /corellium_api/models/network_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/network_connection.py -------------------------------------------------------------------------------- /corellium_api/models/network_connection_offset_pagination_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/network_connection_offset_pagination_result.py -------------------------------------------------------------------------------- /corellium_api/models/network_connection_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/network_connection_provider.py -------------------------------------------------------------------------------- /corellium_api/models/network_connection_provider_offset_pagination_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/network_connection_provider_offset_pagination_result.py -------------------------------------------------------------------------------- /corellium_api/models/network_status_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/network_status_response.py -------------------------------------------------------------------------------- /corellium_api/models/node_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/node_information.py -------------------------------------------------------------------------------- /corellium_api/models/open_id_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/open_id_config.py -------------------------------------------------------------------------------- /corellium_api/models/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/pagination.py -------------------------------------------------------------------------------- /corellium_api/models/partial_update_interconnect_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/partial_update_interconnect_request.py -------------------------------------------------------------------------------- /corellium_api/models/password_change_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/password_change_body.py -------------------------------------------------------------------------------- /corellium_api/models/password_reset_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/password_reset_body.py -------------------------------------------------------------------------------- /corellium_api/models/patch_instance_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/patch_instance_options.py -------------------------------------------------------------------------------- /corellium_api/models/patch_instance_read_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/patch_instance_read_only.py -------------------------------------------------------------------------------- /corellium_api/models/peripherals_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/peripherals_data.py -------------------------------------------------------------------------------- /corellium_api/models/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/plan.py -------------------------------------------------------------------------------- /corellium_api/models/plan_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/plan_options.py -------------------------------------------------------------------------------- /corellium_api/models/post_share_snapshot_request_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/post_share_snapshot_request_payload.py -------------------------------------------------------------------------------- /corellium_api/models/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/project.py -------------------------------------------------------------------------------- /corellium_api/models/project_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/project_key.py -------------------------------------------------------------------------------- /corellium_api/models/project_network_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/project_network_state.py -------------------------------------------------------------------------------- /corellium_api/models/project_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/project_quota.py -------------------------------------------------------------------------------- /corellium_api/models/project_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/project_settings.py -------------------------------------------------------------------------------- /corellium_api/models/project_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/project_usage.py -------------------------------------------------------------------------------- /corellium_api/models/proxy_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/proxy_config.py -------------------------------------------------------------------------------- /corellium_api/models/rate_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/rate_info.py -------------------------------------------------------------------------------- /corellium_api/models/reset_link_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/reset_link_body.py -------------------------------------------------------------------------------- /corellium_api/models/reset_link_info_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/reset_link_info_return.py -------------------------------------------------------------------------------- /corellium_api/models/restore_backup_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/restore_backup_data.py -------------------------------------------------------------------------------- /corellium_api/models/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/role.py -------------------------------------------------------------------------------- /corellium_api/models/rotate_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/rotate_body.py -------------------------------------------------------------------------------- /corellium_api/models/shared_snapshots_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/shared_snapshots_info.py -------------------------------------------------------------------------------- /corellium_api/models/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/snapshot.py -------------------------------------------------------------------------------- /corellium_api/models/snapshot_creation_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/snapshot_creation_options.py -------------------------------------------------------------------------------- /corellium_api/models/snapshot_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/snapshot_member.py -------------------------------------------------------------------------------- /corellium_api/models/snapshot_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/snapshot_owner.py -------------------------------------------------------------------------------- /corellium_api/models/snapshot_permissions_request_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/snapshot_permissions_request_payload.py -------------------------------------------------------------------------------- /corellium_api/models/snapshot_sharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/snapshot_sharing.py -------------------------------------------------------------------------------- /corellium_api/models/snapshot_sharing_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/snapshot_sharing_permissions.py -------------------------------------------------------------------------------- /corellium_api/models/snapshot_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/snapshot_status.py -------------------------------------------------------------------------------- /corellium_api/models/sslsplit_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/sslsplit_filter.py -------------------------------------------------------------------------------- /corellium_api/models/subscriber_invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/subscriber_invite.py -------------------------------------------------------------------------------- /corellium_api/models/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/team.py -------------------------------------------------------------------------------- /corellium_api/models/team_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/team_create.py -------------------------------------------------------------------------------- /corellium_api/models/test_assessment_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/test_assessment_dto.py -------------------------------------------------------------------------------- /corellium_api/models/text_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/text_input.py -------------------------------------------------------------------------------- /corellium_api/models/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/token.py -------------------------------------------------------------------------------- /corellium_api/models/touch_curve_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/touch_curve_input.py -------------------------------------------------------------------------------- /corellium_api/models/touch_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/touch_input.py -------------------------------------------------------------------------------- /corellium_api/models/touch_input_buttons_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/touch_input_buttons_inner.py -------------------------------------------------------------------------------- /corellium_api/models/trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/trial.py -------------------------------------------------------------------------------- /corellium_api/models/trial_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/trial_extension.py -------------------------------------------------------------------------------- /corellium_api/models/trial_request_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/trial_request_metadata.py -------------------------------------------------------------------------------- /corellium_api/models/trial_request_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/trial_request_options.py -------------------------------------------------------------------------------- /corellium_api/models/update_assessment_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/update_assessment_dto.py -------------------------------------------------------------------------------- /corellium_api/models/update_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/update_extension.py -------------------------------------------------------------------------------- /corellium_api/models/update_interconnect_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/update_interconnect_request.py -------------------------------------------------------------------------------- /corellium_api/models/update_network_connection_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/update_network_connection_options.py -------------------------------------------------------------------------------- /corellium_api/models/update_trial_request_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/update_trial_request_params.py -------------------------------------------------------------------------------- /corellium_api/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/user.py -------------------------------------------------------------------------------- /corellium_api/models/user_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/user_create.py -------------------------------------------------------------------------------- /corellium_api/models/user_create_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/user_create_return.py -------------------------------------------------------------------------------- /corellium_api/models/user_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/user_error.py -------------------------------------------------------------------------------- /corellium_api/models/user_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/user_snapshots.py -------------------------------------------------------------------------------- /corellium_api/models/user_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/user_update.py -------------------------------------------------------------------------------- /corellium_api/models/v1_check_subdomain_existence_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/v1_check_subdomain_existence_parameters.py -------------------------------------------------------------------------------- /corellium_api/models/v1_create_hook_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/v1_create_hook_parameters.py -------------------------------------------------------------------------------- /corellium_api/models/v1_load_extension_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/v1_load_extension_parameters.py -------------------------------------------------------------------------------- /corellium_api/models/v1_set_state_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/v1_set_state_body.py -------------------------------------------------------------------------------- /corellium_api/models/v1_update_hook_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/v1_update_hook_parameters.py -------------------------------------------------------------------------------- /corellium_api/models/validation_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/validation_error.py -------------------------------------------------------------------------------- /corellium_api/models/volume_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/volume_options.py -------------------------------------------------------------------------------- /corellium_api/models/vpn_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/vpn_definition.py -------------------------------------------------------------------------------- /corellium_api/models/web_player_create_session_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/web_player_create_session_request.py -------------------------------------------------------------------------------- /corellium_api/models/web_player_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/models/web_player_session.py -------------------------------------------------------------------------------- /corellium_api/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/corellium_api/rest.py -------------------------------------------------------------------------------- /docs/Activity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Activity.md -------------------------------------------------------------------------------- /docs/ActivityExportDto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ActivityExportDto.md -------------------------------------------------------------------------------- /docs/ActivityExportResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ActivityExportResponse.md -------------------------------------------------------------------------------- /docs/ActivityList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ActivityList.md -------------------------------------------------------------------------------- /docs/ActivityRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ActivityRequest.md -------------------------------------------------------------------------------- /docs/Address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Address.md -------------------------------------------------------------------------------- /docs/AgentApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentApp.md -------------------------------------------------------------------------------- /docs/AgentAppReadyResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentAppReadyResponse.md -------------------------------------------------------------------------------- /docs/AgentAppStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentAppStatus.md -------------------------------------------------------------------------------- /docs/AgentAppsList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentAppsList.md -------------------------------------------------------------------------------- /docs/AgentAppsStatusList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentAppsStatusList.md -------------------------------------------------------------------------------- /docs/AgentError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentError.md -------------------------------------------------------------------------------- /docs/AgentIcons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentIcons.md -------------------------------------------------------------------------------- /docs/AgentInstallBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentInstallBody.md -------------------------------------------------------------------------------- /docs/AgentProfilesReturn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentProfilesReturn.md -------------------------------------------------------------------------------- /docs/AgentSystemAdbAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentSystemAdbAuth.md -------------------------------------------------------------------------------- /docs/AgentSystemGetPropBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentSystemGetPropBody.md -------------------------------------------------------------------------------- /docs/AgentSystemSetHostnameBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentSystemSetHostnameBody.md -------------------------------------------------------------------------------- /docs/AgentValueReturn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgentValueReturn.md -------------------------------------------------------------------------------- /docs/AgreedAck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AgreedAck.md -------------------------------------------------------------------------------- /docs/AllowedDomainsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AllowedDomainsResponse.md -------------------------------------------------------------------------------- /docs/ApiConflictError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ApiConflictError.md -------------------------------------------------------------------------------- /docs/ApiError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ApiError.md -------------------------------------------------------------------------------- /docs/ApiInternalConsistencyError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ApiInternalConsistencyError.md -------------------------------------------------------------------------------- /docs/ApiNotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ApiNotFoundError.md -------------------------------------------------------------------------------- /docs/ApiToken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ApiToken.md -------------------------------------------------------------------------------- /docs/Assessment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Assessment.md -------------------------------------------------------------------------------- /docs/AssessmentHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AssessmentHistory.md -------------------------------------------------------------------------------- /docs/AssessmentHistoryLineItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AssessmentHistoryLineItem.md -------------------------------------------------------------------------------- /docs/AssessmentIdStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AssessmentIdStatus.md -------------------------------------------------------------------------------- /docs/AttachInterfaceRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AttachInterfaceRequest.md -------------------------------------------------------------------------------- /docs/AuthProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/AuthProvider.md -------------------------------------------------------------------------------- /docs/Bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Bit.md -------------------------------------------------------------------------------- /docs/BtraceEnableOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/BtraceEnableOptions.md -------------------------------------------------------------------------------- /docs/Button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Button.md -------------------------------------------------------------------------------- /docs/CheckSubdomainResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/CheckSubdomainResponse.md -------------------------------------------------------------------------------- /docs/ConfigResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ConfigResponse.md -------------------------------------------------------------------------------- /docs/ConfigResponseMaintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ConfigResponseMaintenance.md -------------------------------------------------------------------------------- /docs/CorelliumApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/CorelliumApi.md -------------------------------------------------------------------------------- /docs/CouponOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/CouponOptions.md -------------------------------------------------------------------------------- /docs/CreateAssessmentDto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/CreateAssessmentDto.md -------------------------------------------------------------------------------- /docs/CreateInterconnectRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/CreateInterconnectRequest.md -------------------------------------------------------------------------------- /docs/CreateNetworkConnectionOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/CreateNetworkConnectionOptions.md -------------------------------------------------------------------------------- /docs/CreateTeam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/CreateTeam.md -------------------------------------------------------------------------------- /docs/CreatedBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/CreatedBy.md -------------------------------------------------------------------------------- /docs/Credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Credentials.md -------------------------------------------------------------------------------- /docs/DetachInterfaceRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/DetachInterfaceRequest.md -------------------------------------------------------------------------------- /docs/Device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Device.md -------------------------------------------------------------------------------- /docs/DomainAuthProviderRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/DomainAuthProviderRequest.md -------------------------------------------------------------------------------- /docs/DomainAuthProviderResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/DomainAuthProviderResponse.md -------------------------------------------------------------------------------- /docs/DomainOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/DomainOptions.md -------------------------------------------------------------------------------- /docs/ExtendedFirmwareAssetInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ExtendedFirmwareAssetInfo.md -------------------------------------------------------------------------------- /docs/Extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Extension.md -------------------------------------------------------------------------------- /docs/Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Features.md -------------------------------------------------------------------------------- /docs/FileChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/FileChanges.md -------------------------------------------------------------------------------- /docs/Firmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Firmware.md -------------------------------------------------------------------------------- /docs/FirmwareAsset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/FirmwareAsset.md -------------------------------------------------------------------------------- /docs/GetAssessmentsByInstanceId500Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/GetAssessmentsByInstanceId500Response.md -------------------------------------------------------------------------------- /docs/GetInterconnectsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/GetInterconnectsResponse.md -------------------------------------------------------------------------------- /docs/GpioStateDefinition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/GpioStateDefinition.md -------------------------------------------------------------------------------- /docs/GpiosState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/GpiosState.md -------------------------------------------------------------------------------- /docs/GrantTrialRequestResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/GrantTrialRequestResponse.md -------------------------------------------------------------------------------- /docs/Hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Hook.md -------------------------------------------------------------------------------- /docs/Image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Image.md -------------------------------------------------------------------------------- /docs/InputResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InputResponse.md -------------------------------------------------------------------------------- /docs/InstallFirmwareRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstallFirmwareRequest.md -------------------------------------------------------------------------------- /docs/InstallFirmwareResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstallFirmwareResponse.md -------------------------------------------------------------------------------- /docs/Instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Instance.md -------------------------------------------------------------------------------- /docs/InstanceAgentState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceAgentState.md -------------------------------------------------------------------------------- /docs/InstanceBootOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceBootOptions.md -------------------------------------------------------------------------------- /docs/InstanceBootOptionsAdditionalTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceBootOptionsAdditionalTag.md -------------------------------------------------------------------------------- /docs/InstanceConsoleEndpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceConsoleEndpoint.md -------------------------------------------------------------------------------- /docs/InstanceCreateOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceCreateOptions.md -------------------------------------------------------------------------------- /docs/InstanceInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceInput.md -------------------------------------------------------------------------------- /docs/InstanceInterface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceInterface.md -------------------------------------------------------------------------------- /docs/InstanceNetdumpState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceNetdumpState.md -------------------------------------------------------------------------------- /docs/InstanceNetmonProcMapState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceNetmonProcMapState.md -------------------------------------------------------------------------------- /docs/InstanceNetmonState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceNetmonState.md -------------------------------------------------------------------------------- /docs/InstanceReturn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceReturn.md -------------------------------------------------------------------------------- /docs/InstanceServices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceServices.md -------------------------------------------------------------------------------- /docs/InstanceStartOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceStartOptions.md -------------------------------------------------------------------------------- /docs/InstanceState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceState.md -------------------------------------------------------------------------------- /docs/InstanceStopOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceStopOptions.md -------------------------------------------------------------------------------- /docs/InstanceUpgradeBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InstanceUpgradeBody.md -------------------------------------------------------------------------------- /docs/InterconnectResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InterconnectResponse.md -------------------------------------------------------------------------------- /docs/Invitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Invitation.md -------------------------------------------------------------------------------- /docs/InviteRevokeParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InviteRevokeParams.md -------------------------------------------------------------------------------- /docs/InviteRevokeParamsIds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/InviteRevokeParamsIds.md -------------------------------------------------------------------------------- /docs/Kcrange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Kcrange.md -------------------------------------------------------------------------------- /docs/KernelTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/KernelTask.md -------------------------------------------------------------------------------- /docs/KernelThread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/KernelThread.md -------------------------------------------------------------------------------- /docs/Logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Logging.md -------------------------------------------------------------------------------- /docs/Maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Maintenance.md -------------------------------------------------------------------------------- /docs/MediaPlayBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/MediaPlayBody.md -------------------------------------------------------------------------------- /docs/MeteredSubscriptionUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/MeteredSubscriptionUsage.md -------------------------------------------------------------------------------- /docs/Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Model.md -------------------------------------------------------------------------------- /docs/ModelSoftware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ModelSoftware.md -------------------------------------------------------------------------------- /docs/NetMonProcMapFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/NetMonProcMapFilter.md -------------------------------------------------------------------------------- /docs/NetdumpFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/NetdumpFilter.md -------------------------------------------------------------------------------- /docs/NetworkConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/NetworkConnection.md -------------------------------------------------------------------------------- /docs/NetworkConnectionOffsetPaginationResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/NetworkConnectionOffsetPaginationResult.md -------------------------------------------------------------------------------- /docs/NetworkConnectionProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/NetworkConnectionProvider.md -------------------------------------------------------------------------------- /docs/NetworkConnectionProviderOffsetPaginationResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/NetworkConnectionProviderOffsetPaginationResult.md -------------------------------------------------------------------------------- /docs/NetworkStatusResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/NetworkStatusResponse.md -------------------------------------------------------------------------------- /docs/NodeInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/NodeInformation.md -------------------------------------------------------------------------------- /docs/OpenIDConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/OpenIDConfig.md -------------------------------------------------------------------------------- /docs/Pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Pagination.md -------------------------------------------------------------------------------- /docs/PartialUpdateInterconnectRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/PartialUpdateInterconnectRequest.md -------------------------------------------------------------------------------- /docs/PasswordChangeBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/PasswordChangeBody.md -------------------------------------------------------------------------------- /docs/PasswordResetBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/PasswordResetBody.md -------------------------------------------------------------------------------- /docs/PatchInstanceOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/PatchInstanceOptions.md -------------------------------------------------------------------------------- /docs/PatchInstanceReadOnly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/PatchInstanceReadOnly.md -------------------------------------------------------------------------------- /docs/PeripheralsData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/PeripheralsData.md -------------------------------------------------------------------------------- /docs/Plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Plan.md -------------------------------------------------------------------------------- /docs/PlanOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/PlanOptions.md -------------------------------------------------------------------------------- /docs/PostShareSnapshotRequestPayload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/PostShareSnapshotRequestPayload.md -------------------------------------------------------------------------------- /docs/Project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Project.md -------------------------------------------------------------------------------- /docs/ProjectKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ProjectKey.md -------------------------------------------------------------------------------- /docs/ProjectNetworkState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ProjectNetworkState.md -------------------------------------------------------------------------------- /docs/ProjectQuota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ProjectQuota.md -------------------------------------------------------------------------------- /docs/ProjectSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ProjectSettings.md -------------------------------------------------------------------------------- /docs/ProjectUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ProjectUsage.md -------------------------------------------------------------------------------- /docs/ProxyConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ProxyConfig.md -------------------------------------------------------------------------------- /docs/RateInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/RateInfo.md -------------------------------------------------------------------------------- /docs/ResetLinkBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ResetLinkBody.md -------------------------------------------------------------------------------- /docs/ResetLinkInfoReturn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ResetLinkInfoReturn.md -------------------------------------------------------------------------------- /docs/RestoreBackupData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/RestoreBackupData.md -------------------------------------------------------------------------------- /docs/Role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Role.md -------------------------------------------------------------------------------- /docs/RotateBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/RotateBody.md -------------------------------------------------------------------------------- /docs/SharedSnapshotsInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SharedSnapshotsInfo.md -------------------------------------------------------------------------------- /docs/Snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Snapshot.md -------------------------------------------------------------------------------- /docs/SnapshotCreationOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SnapshotCreationOptions.md -------------------------------------------------------------------------------- /docs/SnapshotMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SnapshotMember.md -------------------------------------------------------------------------------- /docs/SnapshotOwner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SnapshotOwner.md -------------------------------------------------------------------------------- /docs/SnapshotPermissionsRequestPayload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SnapshotPermissionsRequestPayload.md -------------------------------------------------------------------------------- /docs/SnapshotSharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SnapshotSharing.md -------------------------------------------------------------------------------- /docs/SnapshotSharingPermissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SnapshotSharingPermissions.md -------------------------------------------------------------------------------- /docs/SnapshotStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SnapshotStatus.md -------------------------------------------------------------------------------- /docs/SslsplitFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SslsplitFilter.md -------------------------------------------------------------------------------- /docs/SubscriberInvite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/SubscriberInvite.md -------------------------------------------------------------------------------- /docs/Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Team.md -------------------------------------------------------------------------------- /docs/TeamCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/TeamCreate.md -------------------------------------------------------------------------------- /docs/TestAssessmentDto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/TestAssessmentDto.md -------------------------------------------------------------------------------- /docs/TextInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/TextInput.md -------------------------------------------------------------------------------- /docs/Token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Token.md -------------------------------------------------------------------------------- /docs/TouchCurveInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/TouchCurveInput.md -------------------------------------------------------------------------------- /docs/TouchInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/TouchInput.md -------------------------------------------------------------------------------- /docs/TouchInputButtonsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/TouchInputButtonsInner.md -------------------------------------------------------------------------------- /docs/Trial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/Trial.md -------------------------------------------------------------------------------- /docs/TrialExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/TrialExtension.md -------------------------------------------------------------------------------- /docs/TrialRequestMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/TrialRequestMetadata.md -------------------------------------------------------------------------------- /docs/TrialRequestOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/TrialRequestOptions.md -------------------------------------------------------------------------------- /docs/UpdateAssessmentDto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UpdateAssessmentDto.md -------------------------------------------------------------------------------- /docs/UpdateExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UpdateExtension.md -------------------------------------------------------------------------------- /docs/UpdateInterconnectRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UpdateInterconnectRequest.md -------------------------------------------------------------------------------- /docs/UpdateNetworkConnectionOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UpdateNetworkConnectionOptions.md -------------------------------------------------------------------------------- /docs/UpdateTrialRequestParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UpdateTrialRequestParams.md -------------------------------------------------------------------------------- /docs/User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/User.md -------------------------------------------------------------------------------- /docs/UserCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UserCreate.md -------------------------------------------------------------------------------- /docs/UserCreateReturn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UserCreateReturn.md -------------------------------------------------------------------------------- /docs/UserError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UserError.md -------------------------------------------------------------------------------- /docs/UserSnapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UserSnapshots.md -------------------------------------------------------------------------------- /docs/UserUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/UserUpdate.md -------------------------------------------------------------------------------- /docs/V1CheckSubdomainExistenceParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/V1CheckSubdomainExistenceParameters.md -------------------------------------------------------------------------------- /docs/V1CreateHookParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/V1CreateHookParameters.md -------------------------------------------------------------------------------- /docs/V1LoadExtensionParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/V1LoadExtensionParameters.md -------------------------------------------------------------------------------- /docs/V1SetStateBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/V1SetStateBody.md -------------------------------------------------------------------------------- /docs/V1UpdateHookParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/V1UpdateHookParameters.md -------------------------------------------------------------------------------- /docs/ValidationError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/ValidationError.md -------------------------------------------------------------------------------- /docs/VolumeOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/VolumeOptions.md -------------------------------------------------------------------------------- /docs/VpnDefinition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/VpnDefinition.md -------------------------------------------------------------------------------- /docs/WebPlayerCreateSessionRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/WebPlayerCreateSessionRequest.md -------------------------------------------------------------------------------- /docs/WebPlayerSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/docs/WebPlayerSession.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_activity.py -------------------------------------------------------------------------------- /test/test_activity_export_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_activity_export_dto.py -------------------------------------------------------------------------------- /test/test_activity_export_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_activity_export_response.py -------------------------------------------------------------------------------- /test/test_activity_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_activity_list.py -------------------------------------------------------------------------------- /test/test_activity_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_activity_request.py -------------------------------------------------------------------------------- /test/test_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_address.py -------------------------------------------------------------------------------- /test/test_agent_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_app.py -------------------------------------------------------------------------------- /test/test_agent_app_ready_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_app_ready_response.py -------------------------------------------------------------------------------- /test/test_agent_app_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_app_status.py -------------------------------------------------------------------------------- /test/test_agent_apps_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_apps_list.py -------------------------------------------------------------------------------- /test/test_agent_apps_status_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_apps_status_list.py -------------------------------------------------------------------------------- /test/test_agent_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_error.py -------------------------------------------------------------------------------- /test/test_agent_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_icons.py -------------------------------------------------------------------------------- /test/test_agent_install_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_install_body.py -------------------------------------------------------------------------------- /test/test_agent_profiles_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_profiles_return.py -------------------------------------------------------------------------------- /test/test_agent_system_adb_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_system_adb_auth.py -------------------------------------------------------------------------------- /test/test_agent_system_get_prop_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_system_get_prop_body.py -------------------------------------------------------------------------------- /test/test_agent_system_set_hostname_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_system_set_hostname_body.py -------------------------------------------------------------------------------- /test/test_agent_value_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agent_value_return.py -------------------------------------------------------------------------------- /test/test_agreed_ack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_agreed_ack.py -------------------------------------------------------------------------------- /test/test_allowed_domains_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_allowed_domains_response.py -------------------------------------------------------------------------------- /test/test_api_conflict_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_api_conflict_error.py -------------------------------------------------------------------------------- /test/test_api_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_api_error.py -------------------------------------------------------------------------------- /test/test_api_internal_consistency_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_api_internal_consistency_error.py -------------------------------------------------------------------------------- /test/test_api_not_found_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_api_not_found_error.py -------------------------------------------------------------------------------- /test/test_api_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_api_token.py -------------------------------------------------------------------------------- /test/test_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_assessment.py -------------------------------------------------------------------------------- /test/test_assessment_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_assessment_history.py -------------------------------------------------------------------------------- /test/test_assessment_history_line_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_assessment_history_line_item.py -------------------------------------------------------------------------------- /test/test_assessment_id_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_assessment_id_status.py -------------------------------------------------------------------------------- /test/test_attach_interface_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_attach_interface_request.py -------------------------------------------------------------------------------- /test/test_auth_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_auth_provider.py -------------------------------------------------------------------------------- /test/test_bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_bit.py -------------------------------------------------------------------------------- /test/test_btrace_enable_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_btrace_enable_options.py -------------------------------------------------------------------------------- /test/test_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_button.py -------------------------------------------------------------------------------- /test/test_check_subdomain_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_check_subdomain_response.py -------------------------------------------------------------------------------- /test/test_config_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_config_response.py -------------------------------------------------------------------------------- /test/test_config_response_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_config_response_maintenance.py -------------------------------------------------------------------------------- /test/test_corellium_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_corellium_api.py -------------------------------------------------------------------------------- /test/test_coupon_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_coupon_options.py -------------------------------------------------------------------------------- /test/test_create_assessment_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_create_assessment_dto.py -------------------------------------------------------------------------------- /test/test_create_interconnect_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_create_interconnect_request.py -------------------------------------------------------------------------------- /test/test_create_network_connection_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_create_network_connection_options.py -------------------------------------------------------------------------------- /test/test_create_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_create_team.py -------------------------------------------------------------------------------- /test/test_created_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_created_by.py -------------------------------------------------------------------------------- /test/test_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_credentials.py -------------------------------------------------------------------------------- /test/test_detach_interface_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_detach_interface_request.py -------------------------------------------------------------------------------- /test/test_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_device.py -------------------------------------------------------------------------------- /test/test_domain_auth_provider_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_domain_auth_provider_request.py -------------------------------------------------------------------------------- /test/test_domain_auth_provider_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_domain_auth_provider_response.py -------------------------------------------------------------------------------- /test/test_domain_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_domain_options.py -------------------------------------------------------------------------------- /test/test_extended_firmware_asset_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_extended_firmware_asset_info.py -------------------------------------------------------------------------------- /test/test_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_extension.py -------------------------------------------------------------------------------- /test/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_features.py -------------------------------------------------------------------------------- /test/test_file_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_file_changes.py -------------------------------------------------------------------------------- /test/test_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_firmware.py -------------------------------------------------------------------------------- /test/test_firmware_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_firmware_asset.py -------------------------------------------------------------------------------- /test/test_get_assessments_by_instance_id500_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_get_assessments_by_instance_id500_response.py -------------------------------------------------------------------------------- /test/test_get_interconnects_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_get_interconnects_response.py -------------------------------------------------------------------------------- /test/test_gpio_state_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_gpio_state_definition.py -------------------------------------------------------------------------------- /test/test_gpios_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_gpios_state.py -------------------------------------------------------------------------------- /test/test_grant_trial_request_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_grant_trial_request_response.py -------------------------------------------------------------------------------- /test/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_hook.py -------------------------------------------------------------------------------- /test/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_image.py -------------------------------------------------------------------------------- /test/test_input_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_input_response.py -------------------------------------------------------------------------------- /test/test_install_firmware_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_install_firmware_request.py -------------------------------------------------------------------------------- /test/test_install_firmware_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_install_firmware_response.py -------------------------------------------------------------------------------- /test/test_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance.py -------------------------------------------------------------------------------- /test/test_instance_agent_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_agent_state.py -------------------------------------------------------------------------------- /test/test_instance_boot_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_boot_options.py -------------------------------------------------------------------------------- /test/test_instance_boot_options_additional_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_boot_options_additional_tag.py -------------------------------------------------------------------------------- /test/test_instance_console_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_console_endpoint.py -------------------------------------------------------------------------------- /test/test_instance_create_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_create_options.py -------------------------------------------------------------------------------- /test/test_instance_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_input.py -------------------------------------------------------------------------------- /test/test_instance_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_interface.py -------------------------------------------------------------------------------- /test/test_instance_netdump_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_netdump_state.py -------------------------------------------------------------------------------- /test/test_instance_netmon_proc_map_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_netmon_proc_map_state.py -------------------------------------------------------------------------------- /test/test_instance_netmon_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_netmon_state.py -------------------------------------------------------------------------------- /test/test_instance_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_return.py -------------------------------------------------------------------------------- /test/test_instance_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_services.py -------------------------------------------------------------------------------- /test/test_instance_start_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_start_options.py -------------------------------------------------------------------------------- /test/test_instance_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_state.py -------------------------------------------------------------------------------- /test/test_instance_stop_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_stop_options.py -------------------------------------------------------------------------------- /test/test_instance_upgrade_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_instance_upgrade_body.py -------------------------------------------------------------------------------- /test/test_interconnect_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_interconnect_response.py -------------------------------------------------------------------------------- /test/test_invitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_invitation.py -------------------------------------------------------------------------------- /test/test_invite_revoke_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_invite_revoke_params.py -------------------------------------------------------------------------------- /test/test_invite_revoke_params_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_invite_revoke_params_ids.py -------------------------------------------------------------------------------- /test/test_kcrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_kcrange.py -------------------------------------------------------------------------------- /test/test_kernel_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_kernel_task.py -------------------------------------------------------------------------------- /test/test_kernel_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_kernel_thread.py -------------------------------------------------------------------------------- /test/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_logging.py -------------------------------------------------------------------------------- /test/test_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_maintenance.py -------------------------------------------------------------------------------- /test/test_media_play_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_media_play_body.py -------------------------------------------------------------------------------- /test/test_metered_subscription_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_metered_subscription_usage.py -------------------------------------------------------------------------------- /test/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_model.py -------------------------------------------------------------------------------- /test/test_model_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_model_software.py -------------------------------------------------------------------------------- /test/test_net_mon_proc_map_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_net_mon_proc_map_filter.py -------------------------------------------------------------------------------- /test/test_netdump_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_netdump_filter.py -------------------------------------------------------------------------------- /test/test_network_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_network_connection.py -------------------------------------------------------------------------------- /test/test_network_connection_offset_pagination_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_network_connection_offset_pagination_result.py -------------------------------------------------------------------------------- /test/test_network_connection_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_network_connection_provider.py -------------------------------------------------------------------------------- /test/test_network_connection_provider_offset_pagination_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_network_connection_provider_offset_pagination_result.py -------------------------------------------------------------------------------- /test/test_network_status_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_network_status_response.py -------------------------------------------------------------------------------- /test/test_node_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_node_information.py -------------------------------------------------------------------------------- /test/test_open_id_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_open_id_config.py -------------------------------------------------------------------------------- /test/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_pagination.py -------------------------------------------------------------------------------- /test/test_partial_update_interconnect_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_partial_update_interconnect_request.py -------------------------------------------------------------------------------- /test/test_password_change_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_password_change_body.py -------------------------------------------------------------------------------- /test/test_password_reset_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_password_reset_body.py -------------------------------------------------------------------------------- /test/test_patch_instance_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_patch_instance_options.py -------------------------------------------------------------------------------- /test/test_patch_instance_read_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_patch_instance_read_only.py -------------------------------------------------------------------------------- /test/test_peripherals_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_peripherals_data.py -------------------------------------------------------------------------------- /test/test_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_plan.py -------------------------------------------------------------------------------- /test/test_plan_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_plan_options.py -------------------------------------------------------------------------------- /test/test_post_share_snapshot_request_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_post_share_snapshot_request_payload.py -------------------------------------------------------------------------------- /test/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_project.py -------------------------------------------------------------------------------- /test/test_project_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_project_key.py -------------------------------------------------------------------------------- /test/test_project_network_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_project_network_state.py -------------------------------------------------------------------------------- /test/test_project_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_project_quota.py -------------------------------------------------------------------------------- /test/test_project_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_project_settings.py -------------------------------------------------------------------------------- /test/test_project_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_project_usage.py -------------------------------------------------------------------------------- /test/test_proxy_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_proxy_config.py -------------------------------------------------------------------------------- /test/test_rate_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_rate_info.py -------------------------------------------------------------------------------- /test/test_reset_link_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_reset_link_body.py -------------------------------------------------------------------------------- /test/test_reset_link_info_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_reset_link_info_return.py -------------------------------------------------------------------------------- /test/test_restore_backup_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_restore_backup_data.py -------------------------------------------------------------------------------- /test/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_role.py -------------------------------------------------------------------------------- /test/test_rotate_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_rotate_body.py -------------------------------------------------------------------------------- /test/test_shared_snapshots_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_shared_snapshots_info.py -------------------------------------------------------------------------------- /test/test_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_snapshot.py -------------------------------------------------------------------------------- /test/test_snapshot_creation_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_snapshot_creation_options.py -------------------------------------------------------------------------------- /test/test_snapshot_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_snapshot_member.py -------------------------------------------------------------------------------- /test/test_snapshot_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_snapshot_owner.py -------------------------------------------------------------------------------- /test/test_snapshot_permissions_request_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_snapshot_permissions_request_payload.py -------------------------------------------------------------------------------- /test/test_snapshot_sharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_snapshot_sharing.py -------------------------------------------------------------------------------- /test/test_snapshot_sharing_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_snapshot_sharing_permissions.py -------------------------------------------------------------------------------- /test/test_snapshot_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_snapshot_status.py -------------------------------------------------------------------------------- /test/test_sslsplit_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_sslsplit_filter.py -------------------------------------------------------------------------------- /test/test_subscriber_invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_subscriber_invite.py -------------------------------------------------------------------------------- /test/test_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_team.py -------------------------------------------------------------------------------- /test/test_team_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_team_create.py -------------------------------------------------------------------------------- /test/test_test_assessment_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_test_assessment_dto.py -------------------------------------------------------------------------------- /test/test_text_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_text_input.py -------------------------------------------------------------------------------- /test/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_token.py -------------------------------------------------------------------------------- /test/test_touch_curve_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_touch_curve_input.py -------------------------------------------------------------------------------- /test/test_touch_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_touch_input.py -------------------------------------------------------------------------------- /test/test_touch_input_buttons_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_touch_input_buttons_inner.py -------------------------------------------------------------------------------- /test/test_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_trial.py -------------------------------------------------------------------------------- /test/test_trial_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_trial_extension.py -------------------------------------------------------------------------------- /test/test_trial_request_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_trial_request_metadata.py -------------------------------------------------------------------------------- /test/test_trial_request_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_trial_request_options.py -------------------------------------------------------------------------------- /test/test_update_assessment_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_update_assessment_dto.py -------------------------------------------------------------------------------- /test/test_update_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_update_extension.py -------------------------------------------------------------------------------- /test/test_update_interconnect_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_update_interconnect_request.py -------------------------------------------------------------------------------- /test/test_update_network_connection_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_update_network_connection_options.py -------------------------------------------------------------------------------- /test/test_update_trial_request_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_update_trial_request_params.py -------------------------------------------------------------------------------- /test/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_user.py -------------------------------------------------------------------------------- /test/test_user_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_user_create.py -------------------------------------------------------------------------------- /test/test_user_create_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_user_create_return.py -------------------------------------------------------------------------------- /test/test_user_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_user_error.py -------------------------------------------------------------------------------- /test/test_user_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_user_snapshots.py -------------------------------------------------------------------------------- /test/test_user_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_user_update.py -------------------------------------------------------------------------------- /test/test_v1_check_subdomain_existence_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_v1_check_subdomain_existence_parameters.py -------------------------------------------------------------------------------- /test/test_v1_create_hook_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_v1_create_hook_parameters.py -------------------------------------------------------------------------------- /test/test_v1_load_extension_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_v1_load_extension_parameters.py -------------------------------------------------------------------------------- /test/test_v1_set_state_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_v1_set_state_body.py -------------------------------------------------------------------------------- /test/test_v1_update_hook_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_v1_update_hook_parameters.py -------------------------------------------------------------------------------- /test/test_validation_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_validation_error.py -------------------------------------------------------------------------------- /test/test_volume_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_volume_options.py -------------------------------------------------------------------------------- /test/test_vpn_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_vpn_definition.py -------------------------------------------------------------------------------- /test/test_web_player_create_session_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_web_player_create_session_request.py -------------------------------------------------------------------------------- /test/test_web_player_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/test/test_web_player_session.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/HEAD/tox.ini --------------------------------------------------------------------------------