├── .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 │ ├── api_conflict_error.py │ ├── api_error.py │ ├── api_internal_consistency_error.py │ ├── api_not_found_error.py │ ├── api_token.py │ ├── assessment.py │ ├── assessment_id_status.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_network_connection_options.py │ ├── create_team.py │ ├── created_by.py │ ├── credentials.py │ ├── domain_auth_provider_request.py │ ├── domain_auth_provider_response.py │ ├── domain_options.py │ ├── extension.py │ ├── features.py │ ├── file_changes.py │ ├── firmware.py │ ├── get_assessments_by_instance_id500_response.py │ ├── gpio_state_definition.py │ ├── gpios_state.py │ ├── grant_trial_request_response.py │ ├── hook.py │ ├── image.py │ ├── input_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_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 │ ├── 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 │ ├── open_id_config.py │ ├── pagination.py │ ├── password_change_body.py │ ├── password_reset_body.py │ ├── patch_instance_options.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 │ ├── 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_network_connection_options.py │ ├── user.py │ ├── user_error.py │ ├── user_snapshots.py │ ├── v1_check_subdomain_existence_parameters.py │ ├── v1_create_hook_parameters.py │ ├── v1_load_extension_parameters.py │ ├── v1_set_state_body.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 ├── ApiConflictError.md ├── ApiError.md ├── ApiInternalConsistencyError.md ├── ApiNotFoundError.md ├── ApiToken.md ├── Assessment.md ├── AssessmentIdStatus.md ├── AuthProvider.md ├── Bit.md ├── BtraceEnableOptions.md ├── Button.md ├── CheckSubdomainResponse.md ├── ConfigResponse.md ├── ConfigResponseMaintenance.md ├── CorelliumApi.md ├── CouponOptions.md ├── CreateAssessmentDto.md ├── CreateNetworkConnectionOptions.md ├── CreateTeam.md ├── CreatedBy.md ├── Credentials.md ├── DomainAuthProviderRequest.md ├── DomainAuthProviderResponse.md ├── DomainOptions.md ├── Extension.md ├── Features.md ├── FileChanges.md ├── Firmware.md ├── GetAssessmentsByInstanceId500Response.md ├── GpioStateDefinition.md ├── GpiosState.md ├── GrantTrialRequestResponse.md ├── Hook.md ├── Image.md ├── InputResponse.md ├── Instance.md ├── InstanceAgentState.md ├── InstanceBootOptions.md ├── InstanceBootOptionsAdditionalTag.md ├── InstanceConsoleEndpoint.md ├── InstanceCreateOptions.md ├── InstanceInput.md ├── InstanceNetdumpState.md ├── InstanceNetmonProcMapState.md ├── InstanceNetmonState.md ├── InstanceReturn.md ├── InstanceServices.md ├── InstanceStartOptions.md ├── InstanceState.md ├── InstanceStopOptions.md ├── InstanceUpgradeBody.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 ├── OpenIDConfig.md ├── Pagination.md ├── PasswordChangeBody.md ├── PasswordResetBody.md ├── PatchInstanceOptions.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 ├── 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 ├── UpdateNetworkConnectionOptions.md ├── User.md ├── UserError.md ├── UserSnapshots.md ├── V1CheckSubdomainExistenceParameters.md ├── V1CreateHookParameters.md ├── V1LoadExtensionParameters.md ├── V1SetStateBody.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_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_id_status.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_network_connection_options.py ├── test_create_team.py ├── test_created_by.py ├── test_credentials.py ├── test_domain_auth_provider_request.py ├── test_domain_auth_provider_response.py ├── test_domain_options.py ├── test_extension.py ├── test_features.py ├── test_file_changes.py ├── test_firmware.py ├── test_get_assessments_by_instance_id500_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_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_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_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_open_id_config.py ├── test_pagination.py ├── test_password_change_body.py ├── test_password_reset_body.py ├── test_patch_instance_options.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_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_network_connection_options.py ├── test_user.py ├── test_user_error.py ├── test_user_snapshots.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_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: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "" # See documentation for possible values 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "weekly" 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | # PyInstaller 28 | # Usually these files are written by a python script from a template 29 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 30 | *.manifest 31 | *.spec 32 | 33 | # Installer logs 34 | pip-log.txt 35 | pip-delete-this-directory.txt 36 | 37 | # Unit test / coverage reports 38 | htmlcov/ 39 | .tox/ 40 | .coverage 41 | .coverage.* 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | *,cover 46 | .hypothesis/ 47 | venv/ 48 | .venv/ 49 | .python-version 50 | .pytest_cache 51 | 52 | # Translations 53 | *.mo 54 | *.pot 55 | 56 | # Django stuff: 57 | *.log 58 | 59 | # Sphinx documentation 60 | docs/_build/ 61 | 62 | # PyBuilder 63 | target/ 64 | 65 | #Ipython Notebook 66 | .ipynb_checkpoints 67 | 68 | # Generated upload file 69 | git_push.sh 70 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | # ref: https://docs.gitlab.com/ee/ci/README.html 2 | 3 | stages: 4 | - test 5 | 6 | .nosetest: 7 | stage: test 8 | script: 9 | - pip install -r requirements.txt 10 | - pip install -r test-requirements.txt 11 | - pytest --cov=corellium_api 12 | 13 | nosetest-2.7: 14 | extends: .nosetest 15 | image: python:2.7-alpine 16 | nosetest-3.3: 17 | extends: .nosetest 18 | image: python:3.3-alpine 19 | nosetest-3.4: 20 | extends: .nosetest 21 | image: python:3.4-alpine 22 | nosetest-3.5: 23 | extends: .nosetest 24 | image: python:3.5-alpine 25 | nosetest-3.6: 26 | extends: .nosetest 27 | image: python:3.6-alpine 28 | nosetest-3.7: 29 | extends: .nosetest 30 | image: python:3.7-alpine 31 | nosetest-3.8: 32 | extends: .nosetest 33 | image: python:3.8-alpine 34 | -------------------------------------------------------------------------------- /.openapi-generator-ignore: -------------------------------------------------------------------------------- 1 | # OpenAPI Generator Ignore 2 | # Generated by openapi-generator https://github.com/openapitools/openapi-generator 3 | 4 | # Use this file to prevent files from being overwritten by the generator. 5 | # The patterns follow closely to .gitignore or .dockerignore. 6 | 7 | # As an example, the C# client generator defines ApiClient.cs. 8 | # You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: 9 | #ApiClient.cs 10 | 11 | # You can match any string of characters against a directory, file or extension with a single asterisk (*): 12 | #foo/*/qux 13 | # The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux 14 | 15 | # You can recursively match patterns against a directory, file or extension with a double asterisk (**): 16 | #foo/**/qux 17 | # This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux 18 | 19 | # You can also negate patterns with an exclamation (!). 20 | # For example, you can ignore all files in a docs folder with the file extension .md: 21 | #docs/*.md 22 | # Then explicitly reverse the ignore rule for a single file: 23 | #!docs/README.md 24 | -------------------------------------------------------------------------------- /.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # ref: https://docs.travis-ci.com/user/languages/python 2 | language: python 3 | python: 4 | - "2.7" 5 | - "3.2" 6 | - "3.3" 7 | - "3.4" 8 | - "3.5" 9 | - "3.6" 10 | - "3.7" 11 | - "3.8" 12 | # command to install dependencies 13 | install: 14 | - "pip install -r requirements.txt" 15 | - "pip install -r test-requirements.txt" 16 | # command to run tests 17 | script: pytest --cov=corellium_api 18 | -------------------------------------------------------------------------------- /corellium_api/api/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | # flake8: noqa 4 | 5 | # import apis into api package 6 | from corellium_api.api.corellium_api import CorelliumApi 7 | -------------------------------------------------------------------------------- /docs/Activity.md: -------------------------------------------------------------------------------- 1 | # Activity 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **identifier** | **str** | Unique identifier for the activity entry | [optional] 9 | **domain** | **str** | Unique identifier for the domain | [optional] 10 | **actor** | **str** | Unique identifier for the user | [optional] 11 | **event** | **str** | Resource associated with the activity | [optional] 12 | **outcome** | **str** | The outcome of the activity | [optional] 13 | **metadata** | **object** | Related information that pertains to the activity | [optional] 14 | **corellium_version** | **str** | The Corellium version this activity occurred in | [optional] 15 | **project_id** | **str** | Unique identifier for project if applicable | [optional] 16 | **instance_id** | **str** | Unique identifier for instance if applicable | [optional] 17 | **created_at** | **str** | Timestamp of when the activity was created | [optional] 18 | **updated_at** | **str** | Timestamp of the activity was last updated | [optional] 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | 22 | 23 | -------------------------------------------------------------------------------- /docs/ActivityExportDto.md: -------------------------------------------------------------------------------- 1 | # ActivityExportDto 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **resource** | **str** | Event to filter on | [optional] 9 | **order_by** | **str** | Column to order by | [optional] 10 | **instance** | **str** | Instance ID | [optional] 11 | **project** | **str** | Project ID | [optional] 12 | **actor** | **str** | User ID | [optional] 13 | **search** | **str** | Arbitrary search string against activity metadata | [optional] 14 | **to** | **str** | Include activities up to given ISO 8601 Date | [optional] 15 | **_from** | **str** | Include activities from given ISO 8601 Date | [optional] 16 | 17 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 18 | 19 | 20 | -------------------------------------------------------------------------------- /docs/ActivityExportResponse.md: -------------------------------------------------------------------------------- 1 | # ActivityExportResponse 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **id** | **str** | Task identifier | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/ActivityList.md: -------------------------------------------------------------------------------- 1 | # ActivityList 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **data** | [**list[Activity]**](Activity.md) | List of activities | [optional] 9 | **pagination** | [**Pagination**](Pagination.md) | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/ActivityRequest.md: -------------------------------------------------------------------------------- 1 | # ActivityRequest 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **resource** | **str** | Resource filter | [optional] 9 | **limit** | **float** | Number of entries to return, defaults to 10 | [optional] 10 | **order_by** | **str** | Sorting order ('-createdAt' or 'createdAt') | [optional] 11 | **page** | **float** | Paginated results. Must be a positive integer. If not provided, defaults to the first page. | [optional] 12 | **instance** | **str** | Instance identifier used to filter instance resources | [optional] 13 | **project** | **str** | Instance identifier used to filter instance resources | [optional] 14 | **actor** | **str** | Actor identifier used to filter actor resources | [optional] 15 | **search** | **str** | Last filter applied and is a fuzzy match on results | [optional] 16 | **to** | **str** | Date to filter to, keyed off of createdAt | [optional] 17 | **_from** | **str** | Date to filter from, keyed off of createdAt | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /docs/Address.md: -------------------------------------------------------------------------------- 1 | # Address 2 | 3 | The user's address 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **address1** | **str** | Address line 1 (e.g., street, PO Box, or company name). | [optional] 9 | **address2** | **str** | Address line 2 (e.g., apartment, suite, unit, or building). | [optional] 10 | **city** | **str** | City, district, suburb, town, or village. | [optional] 11 | **country** | **str** | Two-letter country code (ISO 3166-1 alpha-2). | [optional] 12 | **postal_code** | **str** | ZIP or postal code. | [optional] 13 | **state** | **str** | State, county, province, or region. | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/AgentApp.md: -------------------------------------------------------------------------------- 1 | # AgentApp 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **tags** | **list[str]** | | [optional] 9 | **running** | **bool** | | [optional] 10 | **disk_usage** | **float** | | [optional] 11 | **date** | **float** | | [optional] 12 | **application_type** | **str** | | [optional] 13 | **name** | **str** | | [optional] 14 | **bundle_id** | **str** | | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /docs/AgentAppReadyResponse.md: -------------------------------------------------------------------------------- 1 | # AgentAppReadyResponse 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **ready** | **bool** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/AgentAppStatus.md: -------------------------------------------------------------------------------- 1 | # AgentAppStatus 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **running** | **bool** | | [optional] 9 | **bundle_id** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/AgentAppsList.md: -------------------------------------------------------------------------------- 1 | # AgentAppsList 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **apps** | [**list[AgentApp]**](AgentApp.md) | | [optional] 9 | **frontmost** | **str** | bundleID of frontmost app or empty string if none are frontmost | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/AgentAppsStatusList.md: -------------------------------------------------------------------------------- 1 | # AgentAppsStatusList 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **apps** | [**list[AgentAppStatus]**](AgentAppStatus.md) | | [optional] 9 | **frontmost** | **str** | bundleID of frontmost app or empty string if none are frontmost | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/AgentError.md: -------------------------------------------------------------------------------- 1 | # AgentError 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **error** | **str** | The error encountered by the agent | 9 | **error_id** | **str** | AgentError | 10 | **original_error** | **object** | The full error encountered by the agent | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/AgentIcons.md: -------------------------------------------------------------------------------- 1 | # AgentIcons 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **icon** | **str** | The data for an icon | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/AgentInstallBody.md: -------------------------------------------------------------------------------- 1 | # AgentInstallBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **path** | **str** | path to app to install | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/AgentProfilesReturn.md: -------------------------------------------------------------------------------- 1 | # AgentProfilesReturn 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **profiles** | **list[str]** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/AgentSystemAdbAuth.md: -------------------------------------------------------------------------------- 1 | # AgentSystemAdbAuth 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **enabled** | **bool** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/AgentSystemGetPropBody.md: -------------------------------------------------------------------------------- 1 | # AgentSystemGetPropBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **_property** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/AgentSystemSetHostnameBody.md: -------------------------------------------------------------------------------- 1 | # AgentSystemSetHostnameBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **hostname** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/AgentValueReturn.md: -------------------------------------------------------------------------------- 1 | # AgentValueReturn 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **value** | **str** | The requested value | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/AgreedAck.md: -------------------------------------------------------------------------------- 1 | # AgreedAck 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **agreed_to_terms** | **datetime** | Date agreed | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/ApiConflictError.md: -------------------------------------------------------------------------------- 1 | # ApiConflictError 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **error** | **str** | Error text | 9 | **error_id** | **str** | Error ID | 10 | **object** | **object** | Object that is conflicted with | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/ApiError.md: -------------------------------------------------------------------------------- 1 | # ApiError 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **error** | **str** | Error text | 9 | **error_id** | **str** | Error ID | 10 | **original_error** | **str** | Upstream error description | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/ApiInternalConsistencyError.md: -------------------------------------------------------------------------------- 1 | # ApiInternalConsistencyError 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **error** | **str** | Error text | 9 | **error_id** | **str** | Error ID | 10 | **original_error** | **str** | Upstream error description | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/ApiNotFoundError.md: -------------------------------------------------------------------------------- 1 | # ApiNotFoundError 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **error** | **str** | Error text | 9 | **error_id** | **str** | Error ID | 10 | **name** | **str** | Name of the object requested | [optional] 11 | **params** | **object** | params provided by user | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/ApiToken.md: -------------------------------------------------------------------------------- 1 | # ApiToken 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **api_token** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/Assessment.md: -------------------------------------------------------------------------------- 1 | # Assessment 2 | 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **created_at** | **datetime** | | [optional] 8 | **updated_at** | **datetime** | | [optional] 9 | **created_by** | **str** | | [optional] 10 | **report_id** | **str** | | [optional] 11 | **bundle** | **object** | | [optional] 12 | **results** | **object** | | [optional] 13 | **metadata** | **object** | | [optional] 14 | **wordlist** | **object** | | [optional] 15 | **instance_id** | **str** | | 16 | **bundle_id** | **str** | | 17 | **wordlist_id** | **str** | | [optional] 18 | **status** | **str** | | 19 | 20 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 21 | 22 | 23 | -------------------------------------------------------------------------------- /docs/AssessmentIdStatus.md: -------------------------------------------------------------------------------- 1 | # AssessmentIdStatus 2 | 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **id** | **str** | | [optional] 8 | **status** | **str** | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/AuthProvider.md: -------------------------------------------------------------------------------- 1 | # AuthProvider 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **name** | **str** | Provider name for a given provider type | [optional] 9 | **identifier** | **str** | The identifier for the provider | [optional] 10 | **provider_type** | **str** | Provider type | [optional] 11 | **default** | **bool** | Denotes whether it's the default | [optional] 12 | **label** | **str** | Provider label | [optional] 13 | **enabled** | **bool** | Denotes whether they're enabled or not | [optional] 14 | **authorization_url** | **str** | URL for provider auth | [optional] 15 | **id** | **str** | The identifier for the provider | [optional] 16 | **provider** | **str** | Auth provider | [optional] 17 | 18 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/Bit.md: -------------------------------------------------------------------------------- 1 | # Bit 2 | 3 | Bit value 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/BtraceEnableOptions.md: -------------------------------------------------------------------------------- 1 | # BtraceEnableOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **ranges** | **list[list[str]]** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/Button.md: -------------------------------------------------------------------------------- 1 | # Button 2 | 3 | Button definition 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/CheckSubdomainResponse.md: -------------------------------------------------------------------------------- 1 | # CheckSubdomainResponse 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **available** | **bool** | Indicates whether the subdomain is available or not | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/ConfigResponseMaintenance.md: -------------------------------------------------------------------------------- 1 | # ConfigResponseMaintenance 2 | 3 | Denotes whether the server is undergoing maintenance 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **message** | **str** | Maintenance message | [optional] 9 | **header** | **str** | Maintenance header | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/CouponOptions.md: -------------------------------------------------------------------------------- 1 | # CouponOptions 2 | 3 | Coupon options 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **type** | **str** | | 9 | **amount** | **float** | Amount | 10 | **used** | **bool** | Is Used. If true, this coupon has been used and cannot be used again | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/CreateAssessmentDto.md: -------------------------------------------------------------------------------- 1 | # CreateAssessmentDto 2 | 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **instance_id** | **str** | | 8 | **bundle_id** | **str** | | 9 | **wordlist_id** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/CreateNetworkConnectionOptions.md: -------------------------------------------------------------------------------- 1 | # CreateNetworkConnectionOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **identifier** | **str** | UUIDv4 | 9 | **name** | **str** | User specified name for this network connection. e.g. My Network Connection | 10 | **provider** | **str** | One of the registered [network provider types](#get-/v1/network/providers) | 11 | **config** | **object** | An object containing network connection configuration data. Will vary based on network provider type. See examples. | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/CreateTeam.md: -------------------------------------------------------------------------------- 1 | # CreateTeam 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **name** | **str** | Team name | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/CreatedBy.md: -------------------------------------------------------------------------------- 1 | # CreatedBy 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **id** | **str** | User Identifier | [optional] 9 | **username** | **str** | Username | [optional] 10 | **label** | **str** | User Label | [optional] 11 | **deleted** | **bool** | Indicates if user was deleted | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/Credentials.md: -------------------------------------------------------------------------------- 1 | # Credentials 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **username** | **str** | Authentication Username | 9 | **password** | **str** | Authentication Password | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/DomainAuthProviderRequest.md: -------------------------------------------------------------------------------- 1 | # DomainAuthProviderRequest 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **provider_type** | **str** | Provider Type | 9 | **enabled** | **bool** | Enabled/Disabled | 10 | **label** | **str** | Login Button Text | [optional] 11 | **config** | [**OpenIDConfig**](OpenIDConfig.md) | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/DomainAuthProviderResponse.md: -------------------------------------------------------------------------------- 1 | # DomainAuthProviderResponse 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **identifier** | **str** | Provider ID | 9 | **id** | **str** | Provider ID for backward compatibility with frontend | [optional] 10 | **provider_type** | **str** | Provider Type | 11 | **provider** | **str** | Provider Type for backward compatibility with frontend | [optional] 12 | **label** | **str** | Login Button Text | 13 | **name** | **str** | Title Text for the Frontend's Provider Configuration Form | [optional] 14 | **authorization_url** | **str** | Coordinator endpoint for Authorizing with this provider | [optional] 15 | **default** | **bool** | True: Configured in coordinator.json, False: Custom Domain Provider | 16 | **enabled** | **bool** | Enabled/Disabled | 17 | **config** | [**OpenIDConfig**](OpenIDConfig.md) | | [optional] 18 | **created_by** | **str** | Optional User ID of creator | [optional] 19 | **created_at** | **str** | Created Date in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z | 20 | **updated_at** | **str** | Updated Date in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z | 21 | 22 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/DomainOptions.md: -------------------------------------------------------------------------------- 1 | # DomainOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **totp_required** | **bool** | if true, totp is required | [optional] 9 | **trial_extension** | [**TrialExtension**](TrialExtension.md) | | [optional] 10 | **snapshot_sharing_permissions** | [**SnapshotSharingPermissions**](SnapshotSharingPermissions.md) | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/Extension.md: -------------------------------------------------------------------------------- 1 | # Extension 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **identifier** | **str** | Identifier | [optional] 9 | **enabled** | **bool** | If true, instances requiring this extension can be created or started | [optional] 10 | **created_at** | **str** | Created Date in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z | [optional] 11 | **updated_at** | **str** | Updated Date in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z | [optional] 12 | **image_id** | **str** | Image Id | [optional] 13 | **state** | **str** | State | [optional] 14 | **flavors** | **list[object]** | Array of Flavor definitions | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /docs/Features.md: -------------------------------------------------------------------------------- 1 | # Features 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **apps** | **bool** | | [optional] 9 | **connect** | **bool** | | [optional] 10 | **console** | **bool** | | [optional] 11 | **coretrace** | **bool** | | [optional] 12 | **device_control** | **bool** | | [optional] 13 | **device_delete** | **bool** | | [optional] 14 | **files** | **bool** | | [optional] 15 | **frida** | **bool** | | [optional] 16 | **images** | **bool** | | [optional] 17 | **messaging** | **bool** | | [optional] 18 | **netmon** | **bool** | | [optional] 19 | **network** | **bool** | | [optional] 20 | **port_forwarding** | **bool** | | [optional] 21 | **power_management** | **bool** | | [optional] 22 | **profile** | **bool** | | [optional] 23 | **sensors** | **bool** | | [optional] 24 | **settings** | **bool** | | [optional] 25 | **snapshots** | **bool** | | [optional] 26 | **strace** | **bool** | | [optional] 27 | **system** | **bool** | | [optional] 28 | 29 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 30 | 31 | 32 | -------------------------------------------------------------------------------- /docs/FileChanges.md: -------------------------------------------------------------------------------- 1 | # FileChanges 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **path** | **str** | Optional New path | [optional] 9 | **mode** | **float** | Optional New Mode | [optional] 10 | **uid** | **float** | Optional New Owner UID | [optional] 11 | **gid** | **float** | Optional New Group GID | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/Firmware.md: -------------------------------------------------------------------------------- 1 | # Firmware 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **version** | **str** | | [optional] 9 | **buildid** | **str** | | [optional] 10 | **android_flavor** | **str** | Android only flavor | [optional] 11 | **api_version** | **str** | Android only API version | [optional] 12 | **sha256sum** | **str** | | [optional] 13 | **sha1sum** | **str** | | [optional] 14 | **md5sum** | **str** | | [optional] 15 | **size** | **float** | | [optional] 16 | **unique_id** | **str** | | [optional] 17 | **metadata** | **object** | Firmware metadata | [optional] 18 | **releasedate** | **datetime** | Release Date | [optional] 19 | **uploaddate** | **datetime** | Date uploaded | [optional] 20 | **url** | **str** | URL firmware is available at | [optional] 21 | **orig_url** | **str** | URL firmware is available at from vendor | [optional] 22 | **filename** | **str** | | [optional] 23 | 24 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/GetAssessmentsByInstanceId500Response.md: -------------------------------------------------------------------------------- 1 | # GetAssessmentsByInstanceId500Response 2 | 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **error** | **str** | | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/GpioStateDefinition.md: -------------------------------------------------------------------------------- 1 | # GpioStateDefinition 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **bit_count** | **float** | count of bits in members of this bank | 9 | **banks** | **list[list[Bit]]** | bits for each bank of this name as an array of arrays | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/GpiosState.md: -------------------------------------------------------------------------------- 1 | # GpiosState 2 | 3 | Current state of GPIOs 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **led** | [**GpioStateDefinition**](GpioStateDefinition.md) | | [optional] 9 | **button** | [**GpioStateDefinition**](GpioStateDefinition.md) | | [optional] 10 | **switch** | [**GpioStateDefinition**](GpioStateDefinition.md) | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/GrantTrialRequestResponse.md: -------------------------------------------------------------------------------- 1 | # GrantTrialRequestResponse 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **code** | **str** | Trial request code | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/Hook.md: -------------------------------------------------------------------------------- 1 | # Hook 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **identifier** | **str** | Identifier | [optional] 9 | **label** | **str** | Label | [optional] 10 | **address** | **str** | Address | [optional] 11 | **patch** | **str** | Patch | [optional] 12 | **patch_type** | **str** | Patch Type | [optional] 13 | **enabled** | **bool** | If true, instances can call required hooks | [optional] 14 | **created_at** | **str** | Created Date in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z | [optional] 15 | **updated_at** | **str** | Updated Date in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z | [optional] 16 | **instance_id** | **str** | Instance Id | [optional] 17 | 18 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/Image.md: -------------------------------------------------------------------------------- 1 | # Image 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **status** | **str** | | 9 | **id** | **str** | Image ID | [optional] 10 | **name** | **str** | | [optional] 11 | **type** | **str** | Type of image | [optional] 12 | **filename** | **str** | | [optional] 13 | **uniqueid** | **str** | | [optional] 14 | **size** | **float** | | [optional] 15 | **project** | **str** | project ID | [optional] 16 | **created_at** | **datetime** | When Image was created | [optional] 17 | **updated_at** | **datetime** | When Image was last updated | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /docs/InputResponse.md: -------------------------------------------------------------------------------- 1 | # InputResponse 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **eta** | **float** | Expected time to complete | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/InstanceAgentState.md: -------------------------------------------------------------------------------- 1 | # InstanceAgentState 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **hash** | **str** | | [optional] 9 | **info** | **str** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/InstanceBootOptions.md: -------------------------------------------------------------------------------- 1 | # InstanceBootOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **boot_args** | **str** | | [optional] 9 | **restore_boot_args** | **str** | | [optional] 10 | **udid** | **str** | Boot udid | [optional] 11 | **ecid** | **str** | Assigned ECID | [optional] 12 | **random_seed** | **str** | Random seed to provide to boot if any | [optional] 13 | **pac** | **bool** | Enable PAC | [optional] 14 | **aprr** | **bool** | Enable APRR | [optional] 15 | **additional_tags** | [**list[InstanceBootOptionsAdditionalTag]**](InstanceBootOptionsAdditionalTag.md) | | [optional] 16 | 17 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 18 | 19 | 20 | -------------------------------------------------------------------------------- /docs/InstanceBootOptionsAdditionalTag.md: -------------------------------------------------------------------------------- 1 | # InstanceBootOptionsAdditionalTag 2 | 3 | ### Instance Boot Option * kalloc: Enable kalloc/kfree trace access via GDB (Enterprise only) * gpu: Enable cloud GPU acceleration (Extra costs incurred, cloud only) * no-keyboard: Enable keyboard passthrough from web interface * nodevmode: Disable developer mode on iOS16 and greater * sep-cons-ext: Patch SEPOS to print debug messages to console * iboot-jailbreak: Patch iBoot to disable signature checks * llb-jailbreak: Patch LLB to disable signature checks * rom-jailbreak: Patch BootROM to disable signature checks 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/InstanceConsoleEndpoint.md: -------------------------------------------------------------------------------- 1 | # InstanceConsoleEndpoint 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **url** | **str** | Console Websocket URL | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/InstanceCreateOptions.md: -------------------------------------------------------------------------------- 1 | # InstanceCreateOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **shared_snapshot** | **str** | identifier of the snapshot that was shared. | [optional] 9 | **shared_snapshot_password** | **str** | optional password if the shared snapshot requires a password. | [optional] 10 | **name** | **str** | the name of the device | [optional] 11 | **key** | **str** | Key used to encrypt the Instance | [optional] 12 | **flavor** | **str** | the flavor id | 13 | **project** | **str** | project UUID | 14 | **os** | **str** | OS Version | 15 | **osbuild** | **str** | OS Build | [optional] 16 | **patches** | **list[str]** | list of patches to apply | [optional] 17 | **fwpackage** | **str** | URL or image id | [optional] 18 | **orig_fw_package_url** | **str** | URL that firmware package used to create this instance is available at | [optional] 19 | **encrypt** | **bool** | | [optional] 20 | **wifi_mac** | **str** | | [optional] 21 | **volume** | [**VolumeOptions**](VolumeOptions.md) | | [optional] 22 | **snapshot** | **str** | Snapshot ID for this instance to be cloned from if defined | [optional] 23 | **boot_options** | [**InstanceBootOptions**](InstanceBootOptions.md) | | [optional] 24 | **device** | [**Model**](Model.md) | | [optional] 25 | 26 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 27 | 28 | 29 | -------------------------------------------------------------------------------- /docs/InstanceInput.md: -------------------------------------------------------------------------------- 1 | # InstanceInput 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **position** | **object** | Finger Positions | 9 | **buttons** | [**list[TouchInputButtonsInner]**](TouchInputButtonsInner.md) | Buttons to be held when this position is reached. Either a Button enum object or an ASCII character. No change if not defined. | [optional] 10 | **normalized** | **bool** | true if you want to use normalized x,y coordinates from 0-10000 (eg 5000,5000 is always center of screen) | [optional] 11 | **wait** | **float** | Duration to wait before this input is executed. Instant if not defined. | [optional] 12 | **start** | **object** | Finger Positions | 13 | **end** | **object** | Finger Positions | 14 | **bezier_points** | **list[object]** | array of per-finger intermediate touch positions, up to 10 depending on model. Straight line if not defined. | [optional] 15 | **start_buttons** | [**list[TouchInputButtonsInner]**](TouchInputButtonsInner.md) | Buttons to be held during this curve. | 16 | **end_buttons** | [**list[TouchInputButtonsInner]**](TouchInputButtonsInner.md) | Buttons to be left held after this curve. Same as startButtons if not defined. | [optional] 17 | **duration** | **float** | Duration to execute this curve over. | 18 | **required** | **str** | text to type | 19 | **key_duration** | **float** | How long to take to type each key. 150ms if not defined. | [optional] 20 | 21 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 22 | 23 | 24 | -------------------------------------------------------------------------------- /docs/InstanceNetdumpState.md: -------------------------------------------------------------------------------- 1 | # InstanceNetdumpState 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **hash** | **str** | | [optional] 9 | **info** | **str** | | [optional] 10 | **enabled** | **bool** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/InstanceNetmonProcMapState.md: -------------------------------------------------------------------------------- 1 | # InstanceNetmonProcMapState 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **hash** | **str** | | [optional] 9 | **info** | **str** | | [optional] 10 | **enabled** | **bool** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/InstanceNetmonState.md: -------------------------------------------------------------------------------- 1 | # InstanceNetmonState 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **hash** | **str** | | [optional] 9 | **info** | **str** | | [optional] 10 | **enabled** | **bool** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/InstanceReturn.md: -------------------------------------------------------------------------------- 1 | # InstanceReturn 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **id** | **str** | Instance ID | 9 | **state** | [**InstanceState**](InstanceState.md) | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/InstanceServices.md: -------------------------------------------------------------------------------- 1 | # InstanceServices 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **vpn** | [**VpnDefinition**](VpnDefinition.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/InstanceStartOptions.md: -------------------------------------------------------------------------------- 1 | # InstanceStartOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **paused** | **bool** | Start device paused | [optional] 9 | **sockcap** | **bool** | Start device with Process Network Monitoring enabled | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/InstanceState.md: -------------------------------------------------------------------------------- 1 | # InstanceState 2 | 3 | Current Instance State 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/InstanceStopOptions.md: -------------------------------------------------------------------------------- 1 | # InstanceStopOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **soft** | **bool** | Request VM OS power down | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/InstanceUpgradeBody.md: -------------------------------------------------------------------------------- 1 | # InstanceUpgradeBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **os** | **str** | iOS version | 9 | **osbuild** | **str** | (optional) iOS build ID | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/Invitation.md: -------------------------------------------------------------------------------- 1 | # Invitation 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **identifier** | **str** | Invite ID | [optional] 9 | **email** | **str** | Invited email | [optional] 10 | **settings** | **object** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/InviteRevokeParams.md: -------------------------------------------------------------------------------- 1 | # InviteRevokeParams 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **ids** | [**InviteRevokeParamsIds**](InviteRevokeParamsIds.md) | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/InviteRevokeParamsIds.md: -------------------------------------------------------------------------------- 1 | # InviteRevokeParamsIds 2 | 3 | id or array of ids to revoke 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/Kcrange.md: -------------------------------------------------------------------------------- 1 | # Kcrange 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **kext** | **str** | Kernel Extension | [optional] 9 | **range** | **list[str]** | Range | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/KernelTask.md: -------------------------------------------------------------------------------- 1 | # KernelTask 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **kernel_id** | **str** | Kernel Task ID | [optional] 9 | **name** | **str** | Thread name | [optional] 10 | **pid** | **float** | Process ID of task | [optional] 11 | **threads** | [**list[KernelThread]**](KernelThread.md) | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/KernelThread.md: -------------------------------------------------------------------------------- 1 | # KernelThread 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **kernel_id** | **str** | Kernel Thread ID | [optional] 9 | **tid** | **float** | Task ID | [optional] 10 | **stack** | **list[str]** | Array of stack addresses | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/Logging.md: -------------------------------------------------------------------------------- 1 | # Logging 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **development** | **bool** | Denotes whether it's in development | [optional] 9 | **throw_warnings** | **bool** | Denotes whether to throw warnings | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/Maintenance.md: -------------------------------------------------------------------------------- 1 | # Maintenance 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **message** | **str** | Maintenance message | [optional] 9 | **header** | **str** | Maintenance header | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/MediaPlayBody.md: -------------------------------------------------------------------------------- 1 | # MediaPlayBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **image_id** | **str** | Image ID | [optional] 9 | **url** | **str** | URL to a media file | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/MeteredSubscriptionUsage.md: -------------------------------------------------------------------------------- 1 | # MeteredSubscriptionUsage 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **burst_rate** | **float** | Unit price | [optional] 9 | **allocated_hours** | **float** | Allocated hours | [optional] 10 | **plan_billed_amount** | **float** | Plan cost | [optional] 11 | **plan_billed_units** | **float** | Units included in plan | [optional] 12 | **burst_billed_amount** | **float** | Amount billed | [optional] 13 | **burst_billed_units** | **float** | Units billed | [optional] 14 | **burst_outstanding_amount** | **float** | Outstanding amount | [optional] 15 | **burst_outstanding_units** | **float** | Outstanding units | [optional] 16 | **total_usage_amount** | **float** | Total cost in cents for current period | [optional] 17 | **total_used_units** | **float** | Total used units for current period | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /docs/Model.md: -------------------------------------------------------------------------------- 1 | # Model 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **type** | **str** | | 9 | **name** | **str** | | 10 | **flavor** | **str** | | 11 | **description** | **str** | | [optional] 12 | **model** | **str** | | 13 | **board_config** | **str** | | [optional] 14 | **platform** | **str** | | [optional] 15 | **cpid** | **float** | | [optional] 16 | **bdid** | **float** | | [optional] 17 | **peripherals** | **bool** | | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /docs/ModelSoftware.md: -------------------------------------------------------------------------------- 1 | # ModelSoftware 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **name** | **str** | | [optional] 9 | **board_config** | **str** | | [optional] 10 | **platform** | **str** | | [optional] 11 | **cpid** | **float** | | [optional] 12 | **bdid** | **float** | | [optional] 13 | **firmwares** | [**list[Firmware]**](Firmware.md) | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/NetMonProcMapFilter.md: -------------------------------------------------------------------------------- 1 | # NetMonProcMapFilter 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **port_ranges** | **list[str]** | | [optional] 9 | **src_ports** | **list[str]** | | [optional] 10 | **dst_ports** | **list[str]** | | [optional] 11 | **ports** | **list[str]** | | [optional] 12 | **protocols** | **list[str]** | | [optional] 13 | **processes** | **list[str]** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/NetdumpFilter.md: -------------------------------------------------------------------------------- 1 | # NetdumpFilter 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **port_ranges** | **list[str]** | | [optional] 9 | **src_ports** | **list[str]** | | [optional] 10 | **dst_ports** | **list[str]** | | [optional] 11 | **ports** | **list[str]** | | [optional] 12 | **protocols** | **list[str]** | | [optional] 13 | **processes** | **list[str]** | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/NetworkConnection.md: -------------------------------------------------------------------------------- 1 | # NetworkConnection 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **identifier** | **str** | UUIDv4 | 9 | **provider** | **str** | One of the registered [network provider types](#get-/v1/network/providers) | 10 | **name** | **str** | User specified name for this network connection. e.g., \"My Network Connection\" | 11 | **config** | **object** | An object containing network connection configuration data. Will vary based on network provider type. | 12 | **projects** | [**list[ProjectNetworkState]**](ProjectNetworkState.md) | An object where the keys are project IDs and the values are {@link ProjectNetworkState} objects representing the state of each project. | [optional] 13 | **created_at** | **str** | Created Date in ISO-8601 format e.g., \"2022-05-06T02:39:23.000Z\" | 14 | **updated_at** | **str** | Updated Date in ISO-8601 format e.g., \"2022-05-06T02:39:23.000Z\" | 15 | **created_by** | **str** | UUIDv4 of the user who created this record. | 16 | **updated_by** | **str** | UUIDv4 of the user who last updated this record. | 17 | 18 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/NetworkConnectionOffsetPaginationResult.md: -------------------------------------------------------------------------------- 1 | # NetworkConnectionOffsetPaginationResult 2 | 3 | Network Connection Offset Pagination Result 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **total** | **float** | Total number of items. | 9 | **count** | **float** | The number of items returned in this result. | 10 | **limit** | **float** | The maximum number of items that could be returned for this result. | 11 | **offset** | **float** | That starting item 0-indexed. | 12 | **results** | [**list[NetworkConnection]**](NetworkConnection.md) | Array of network connections associated with this domain. | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/NetworkConnectionProvider.md: -------------------------------------------------------------------------------- 1 | # NetworkConnectionProvider 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **name** | **str** | Human friendly name for Network Connection Provider. | 9 | **type** | **str** | Internal identifier for Network Connection Provider. | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/NetworkConnectionProviderOffsetPaginationResult.md: -------------------------------------------------------------------------------- 1 | # NetworkConnectionProviderOffsetPaginationResult 2 | 3 | Network Connection Provider Offset Pagination Result 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **total** | **float** | Total number of items. | 9 | **count** | **float** | The number of items returned in this result. | 10 | **limit** | **float** | The maximum number of items that could be returned for this result. | 11 | **offset** | **float** | That starting item 0-indexed. | 12 | **results** | [**list[NetworkConnectionProvider]**](NetworkConnectionProvider.md) | Array of network connection providers. | 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/NetworkStatusResponse.md: -------------------------------------------------------------------------------- 1 | # NetworkStatusResponse 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **type** | **str** | Network Provider | 9 | **name** | **str** | User defined name | 10 | **state** | **str** | Current state of the network connection | 11 | **params** | **object** | Additional state information | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/OpenIDConfig.md: -------------------------------------------------------------------------------- 1 | # OpenIDConfig 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **discovery_url** | **str** | Service Discovery URL | [optional] 9 | **client_id** | **str** | Service Client ID | [optional] 10 | **client_secret** | **str** | Service Client Secret | [optional] 11 | **invited_only** | **bool** | Only accept individuals with invitations | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/Pagination.md: -------------------------------------------------------------------------------- 1 | # Pagination 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **current_page** | **float** | The current page | [optional] 9 | **total_pages** | **float** | The total number of pages | [optional] 10 | **total_items** | **float** | The total number of activity entries | [optional] 11 | **items_per_page** | **float** | The number of activity entries per page | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/PasswordChangeBody.md: -------------------------------------------------------------------------------- 1 | # PasswordChangeBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **user** | **str** | userId | 9 | **old_password** | **str** | old password | 10 | **new_password** | **str** | new password | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/PasswordResetBody.md: -------------------------------------------------------------------------------- 1 | # PasswordResetBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **token** | **str** | Password reset token | 9 | **totp_token** | **str** | Password reset totpToken | 10 | **new_password** | **str** | new password | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/PatchInstanceOptions.md: -------------------------------------------------------------------------------- 1 | # PatchInstanceOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **name** | **str** | the name of the device | [optional] 9 | **state** | **str** | the desired state of the device | [optional] 10 | **boot_options** | [**InstanceBootOptions**](InstanceBootOptions.md) | | [optional] 11 | **proxy** | [**list[ProxyConfig]**](ProxyConfig.md) | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/PeripheralsData.md: -------------------------------------------------------------------------------- 1 | # PeripheralsData 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **acceleration** | **list[float]** | | [optional] 9 | **gyroscope** | **list[float]** | | [optional] 10 | **magnetic** | **list[float]** | | [optional] 11 | **orientation** | **list[float]** | | [optional] 12 | **temperature** | **float** | | [optional] 13 | **proximity** | **float** | | [optional] 14 | **light** | **float** | | [optional] 15 | **pressure** | **float** | | [optional] 16 | **humidity** | **float** | | [optional] 17 | 18 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/Plan.md: -------------------------------------------------------------------------------- 1 | # Plan 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **plan_id** | **str** | Plan ID | [optional] 9 | **name** | **str** | Plan Name | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/PlanOptions.md: -------------------------------------------------------------------------------- 1 | # PlanOptions 2 | 3 | Plan options 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **license_type** | **str** | | 9 | **cores** | **int** | Number of CPU cores | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/PostShareSnapshotRequestPayload.md: -------------------------------------------------------------------------------- 1 | # PostShareSnapshotRequestPayload 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **sharing_type** | **str** | | 9 | **password** | **str** | Password for passwordPublicLink. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/Project.md: -------------------------------------------------------------------------------- 1 | # Project 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **id** | **str** | Project Identifier | 9 | **name** | **str** | Project Name | [optional] 10 | **settings** | [**ProjectSettings**](ProjectSettings.md) | | [optional] 11 | **quotas** | [**ProjectQuota**](ProjectQuota.md) | | [optional] 12 | **quotas_used** | [**ProjectUsage**](ProjectUsage.md) | | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/ProjectKey.md: -------------------------------------------------------------------------------- 1 | # ProjectKey 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **identifier** | **str** | keyId | [optional] 9 | **kind** | **str** | kind of key | 10 | **project** | **str** | projectId | [optional] 11 | **key** | **str** | The public key | 12 | **fingerprint** | **str** | Key fingerprint | [optional] 13 | **updated_at** | **datetime** | Time of last update | [optional] 14 | **created_at** | **datetime** | Time of creation | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | 19 | -------------------------------------------------------------------------------- /docs/ProjectNetworkState.md: -------------------------------------------------------------------------------- 1 | # ProjectNetworkState 2 | 3 | ProjectNetworkState 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **state** | **str** | State of the project network connection. One of: disconnected, disconnecting, connecting, connected, error | 9 | **details** | **object** | Additional parameters for the network state. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/ProjectQuota.md: -------------------------------------------------------------------------------- 1 | # ProjectQuota 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **cores** | **float** | | [optional] 9 | **instances** | **float** | | [optional] 10 | **ram** | **float** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/ProjectSettings.md: -------------------------------------------------------------------------------- 1 | # ProjectSettings 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **internet_access** | **bool** | | 9 | **connection** | **str** | UUIDv4 network connection identifier or null for no vpn connection | [optional] 10 | **dhcp** | **bool** | | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/ProjectUsage.md: -------------------------------------------------------------------------------- 1 | # ProjectUsage 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **cores** | **float** | | [optional] 9 | **instances** | **float** | | [optional] 10 | **ram** | **float** | | [optional] 11 | **gpu** | **float** | | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/ProxyConfig.md: -------------------------------------------------------------------------------- 1 | # ProxyConfig 2 | 3 | Represents a Proxy configuration object. 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **device_port** | **float** | The device port to use for proxying. | [optional] 9 | **first_available** | **bool** | If `true`, the first available port will be used if `devicePort` is not available. | [optional] 10 | **expose** | **bool** | If `true`, the proxy will be exposed to the external interface. | [optional] 11 | **router_port** | **float** | The router port to use for proxying. | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/RateInfo.md: -------------------------------------------------------------------------------- 1 | # RateInfo 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **on_rate_microcents** | **int** | The amount per second, in microcents (USD), that this instance charges to be running. | [optional] 9 | **off_rate_microcents** | **int** | The amount per second, in microcents (USD), that this instance charges to be stored. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/ResetLinkBody.md: -------------------------------------------------------------------------------- 1 | # ResetLinkBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **email** | **str** | Email address to request password reset link for | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/Role.md: -------------------------------------------------------------------------------- 1 | # Role 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **role** | **str** | | 9 | **project** | **str** | Project ID | 10 | **user** | **str** | User ID | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/RotateBody.md: -------------------------------------------------------------------------------- 1 | # RotateBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **orientation** | **float** | Desired orientation | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/SharedSnapshotsInfo.md: -------------------------------------------------------------------------------- 1 | # SharedSnapshotsInfo 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **id** | **str** | UUID of the snapshot | 9 | **name** | **str** | Snapshot name | 10 | **model** | **str** | Device model | 11 | **shared_on** | **float** | UNIX Date of when the snapshot was first shared with member | 12 | **shared_with_member** | **str** | The member who the snapshot was shared with. Only present in sharedWithUser | [optional] 13 | **shared_by** | [**SnapshotOwner**](SnapshotOwner.md) | | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/Snapshot.md: -------------------------------------------------------------------------------- 1 | # Snapshot 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **id** | **str** | Snapshot ID | 9 | **name** | **str** | Snapshot name | 10 | **instance** | **str** | Instance that this snapshot is of | 11 | **status** | [**SnapshotStatus**](SnapshotStatus.md) | | 12 | **date** | **float** | UNIX Date that the snapshot was created | 13 | **fresh** | **bool** | | 14 | **live** | **bool** | Live snapshot (included state and memory) | 15 | **local** | **bool** | | 16 | **model** | **str** | The device model | [optional] 17 | **sharing** | [**SnapshotSharing**](SnapshotSharing.md) | | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | 22 | -------------------------------------------------------------------------------- /docs/SnapshotCreationOptions.md: -------------------------------------------------------------------------------- 1 | # SnapshotCreationOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **name** | **str** | Snapshot name | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/SnapshotMember.md: -------------------------------------------------------------------------------- 1 | # SnapshotMember 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **email** | **str** | The email of the member | 9 | **invite_sent_at** | **float** | The date when the invite was sent | 10 | **shared_on** | **float** | UNIX Date of when the snapshot was first shared with member | 11 | **user_id** | **str** | The member's user ID | [optional] 12 | **label** | **str** | The user's label or name | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/SnapshotOwner.md: -------------------------------------------------------------------------------- 1 | # SnapshotOwner 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **name** | **str** | The name of the owner. | 9 | **email** | **str** | The email of the member. | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/SnapshotPermissionsRequestPayload.md: -------------------------------------------------------------------------------- 1 | # SnapshotPermissionsRequestPayload 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **members** | **list[str]** | The email addresses or user ids of the members. | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/SnapshotSharing.md: -------------------------------------------------------------------------------- 1 | # SnapshotSharing 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **sharing_type** | **str** | | 9 | **password** | **str** | Password with using passwordPublicLink | [optional] 10 | **shared_by** | [**SnapshotOwner**](SnapshotOwner.md) | | [optional] 11 | **members** | [**list[SnapshotMember]**](SnapshotMember.md) | The members who have access to the snapshot | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/SnapshotSharingPermissions.md: -------------------------------------------------------------------------------- 1 | # SnapshotSharingPermissions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **cloud_enabled** | **bool** | Indicates if snapshot permissions are enabled by the cloud admin | [optional] 9 | **domain_enabled** | **bool** | Indicates if snapshot permissions are enabled by the domain admin | [optional] 10 | **public_link** | **bool** | Indicates if public link access is enabled | [optional] 11 | **domain_restricted_link** | **bool** | Indicates if domain-restricted link access is enabled | [optional] 12 | **password_public_link** | **bool** | Indicates if password-protected public link access is enabled | [optional] 13 | **email_invite** | **bool** | Indicates if email invite access is enabled | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/SnapshotStatus.md: -------------------------------------------------------------------------------- 1 | # SnapshotStatus 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **task** | **str** | The current task being performed on the snapshot | [optional] 9 | **created** | **bool** | Indicates if the snapshot has been successfully created | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/SslsplitFilter.md: -------------------------------------------------------------------------------- 1 | # SslsplitFilter 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **truncate_pcap** | **bool** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/SubscriberInvite.md: -------------------------------------------------------------------------------- 1 | # SubscriberInvite 2 | 3 | Subscriber Invite 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **coupon_options** | [**CouponOptions**](CouponOptions.md) | | [optional] 9 | **plan** | [**Plan**](Plan.md) | | [optional] 10 | **trial** | [**Trial**](Trial.md) | | [optional] 11 | **name** | **str** | Name | [optional] 12 | **email** | **str** | Email | [optional] 13 | **coupon_code** | **str** | Coupon code | 14 | **domain** | **str** | Domain | [optional] 15 | **aggregate** | **str** | Aggregate | 16 | **use_by** | **str** | Used By | [optional] 17 | **active** | **bool** | Is Active flag | 18 | **reusable** | **bool** | Is reusable flag | 19 | **created_at** | **str** | Created Date in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z | 20 | **updated_at** | **str** | Updated Date in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z | 21 | 22 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/Team.md: -------------------------------------------------------------------------------- 1 | # Team 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **id** | **str** | Team ID | 9 | **label** | **str** | Team Label | 10 | **users** | [**list[User]**](User.md) | Users | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/TeamCreate.md: -------------------------------------------------------------------------------- 1 | # TeamCreate 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **id** | **str** | ID of newly created team | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/TestAssessmentDto.md: -------------------------------------------------------------------------------- 1 | # TestAssessmentDto 2 | 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **invert** | **bool** | | [optional] 8 | **grep** | **str** | | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/TextInput.md: -------------------------------------------------------------------------------- 1 | # TextInput 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **required** | **str** | text to type | 9 | **key_duration** | **float** | How long to take to type each key. 150ms if not defined. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/Token.md: -------------------------------------------------------------------------------- 1 | # Token 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **token** | **str** | | 9 | **expiration** | **datetime** | Token expiration | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/TouchCurveInput.md: -------------------------------------------------------------------------------- 1 | # TouchCurveInput 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **start** | **object** | Finger Positions | 9 | **end** | **object** | Finger Positions | 10 | **bezier_points** | **list[object]** | array of per-finger intermediate touch positions, up to 10 depending on model. Straight line if not defined. | [optional] 11 | **start_buttons** | [**list[TouchInputButtonsInner]**](TouchInputButtonsInner.md) | Buttons to be held during this curve. | 12 | **end_buttons** | [**list[TouchInputButtonsInner]**](TouchInputButtonsInner.md) | Buttons to be left held after this curve. Same as startButtons if not defined. | [optional] 13 | **normalized** | **bool** | true if you want to use normalized x,y coordinates from 0-10000 (eg 5000,5000 is always center of screen) | [optional] 14 | **wait** | **float** | Duration to wait before this input is executed. Instant if not defined. | [optional] 15 | **duration** | **float** | Duration to execute this curve over. | 16 | 17 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 18 | 19 | 20 | -------------------------------------------------------------------------------- /docs/TouchInput.md: -------------------------------------------------------------------------------- 1 | # TouchInput 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **position** | **object** | Finger Positions | 9 | **buttons** | [**list[TouchInputButtonsInner]**](TouchInputButtonsInner.md) | Buttons to be held when this position is reached. Either a Button enum object or an ASCII character. No change if not defined. | [optional] 10 | **normalized** | **bool** | true if you want to use normalized x,y coordinates from 0-10000 (eg 5000,5000 is always center of screen) | [optional] 11 | **wait** | **float** | Duration to wait before this input is executed. Instant if not defined. | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/TouchInputButtonsInner.md: -------------------------------------------------------------------------------- 1 | # TouchInputButtonsInner 2 | 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/Trial.md: -------------------------------------------------------------------------------- 1 | # Trial 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **default_duration** | **float** | Maintenance message | [optional] 9 | **default_hours** | **float** | Maintenance header | [optional] 10 | **default_devices** | **float** | Maintenance header | [optional] 11 | **default_cores** | **float** | Maintenance header | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/TrialExtension.md: -------------------------------------------------------------------------------- 1 | # TrialExtension 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **duration** | **float** | how many additional days? | [optional] 9 | **reason** | **str** | why does the user want more time? | [optional] 10 | **denied** | **bool** | | [optional] 11 | **denied_reason** | **str** | explanation for why the request was denied | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/TrialRequestMetadata.md: -------------------------------------------------------------------------------- 1 | # TrialRequestMetadata 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **name** | **str** | | [optional] 9 | **company** | **str** | provided company name | [optional] 10 | **malware** | **bool** | option from sign up form, interesting using for malware | [optional] 11 | **research** | **bool** | option from sign up form, interesting using for research | [optional] 12 | **pentest** | **bool** | option from sign up form, interesting using for pentesting | [optional] 13 | **other** | **str** | option from sign up form, interesting using for other area added here | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/TrialRequestOptions.md: -------------------------------------------------------------------------------- 1 | # TrialRequestOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **address** | [**Address**](Address.md) | | [optional] 9 | **email** | **str** | The user's email address. | [optional] 10 | **name** | **str** | The user's full name. | [optional] 11 | **metadata** | [**TrialRequestMetadata**](TrialRequestMetadata.md) | | [optional] 12 | **enterprise** | **bool** | If true, create an enterprise domain. | [optional] 13 | **token** | **str** | Stripe payment token. | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/UpdateAssessmentDto.md: -------------------------------------------------------------------------------- 1 | # UpdateAssessmentDto 2 | 3 | 4 | ## Properties 5 | Name | Type | Description | Notes 6 | ------------ | ------------- | ------------- | ------------- 7 | **status** | **str** | | 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/UpdateExtension.md: -------------------------------------------------------------------------------- 1 | # UpdateExtension 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **enabled** | **bool** | If true, instances requiring this extension can be created or started | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/UpdateNetworkConnectionOptions.md: -------------------------------------------------------------------------------- 1 | # UpdateNetworkConnectionOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **name** | **str** | User specified name for this network connection. e.g. My Network Connection | 9 | **config** | **object** | An object containing network connection configuration data. Will vary based on network provider type. See examples. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/User.md: -------------------------------------------------------------------------------- 1 | # User 2 | 3 | /** 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **id** | **str** | User ID | 9 | **label** | **str** | User Label | 10 | **name** | **str** | User Name | 11 | **email** | **str** | User Email | 12 | **administrator** | **bool** | the flag that specifies whether user is Administrator or not | [optional] 13 | **can_edit_user_attributes** | **bool** | Flag to determine if user attributes are editable. | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/UserError.md: -------------------------------------------------------------------------------- 1 | # UserError 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **error** | **str** | Error text | 9 | **error_id** | **str** | Error ID | 10 | **field** | **str** | Field associated with error | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/UserSnapshots.md: -------------------------------------------------------------------------------- 1 | # UserSnapshots 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **shared_with_user** | [**SharedSnapshotsInfo**](SharedSnapshotsInfo.md) | | 9 | **shared_by_user** | [**SharedSnapshotsInfo**](SharedSnapshotsInfo.md) | | 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/V1CheckSubdomainExistenceParameters.md: -------------------------------------------------------------------------------- 1 | # V1CheckSubdomainExistenceParameters 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **domain** | **str** | Domain to check | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/V1CreateHookParameters.md: -------------------------------------------------------------------------------- 1 | # V1CreateHookParameters 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **label** | **str** | Label | 9 | **address** | **str** | Address | 10 | **patch** | **str** | Patch | 11 | **patch_type** | **str** | Patch Type | 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/V1LoadExtensionParameters.md: -------------------------------------------------------------------------------- 1 | # V1LoadExtensionParameters 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **image_id** | **str** | The uuid of the image to load | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/V1SetStateBody.md: -------------------------------------------------------------------------------- 1 | # V1SetStateBody 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **state** | [**InstanceState**](InstanceState.md) | | 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/ValidationError.md: -------------------------------------------------------------------------------- 1 | # ValidationError 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **error** | **str** | Error text | 9 | **error_id** | **str** | Error ID | 10 | **field** | **str** | Field associated with error | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/VolumeOptions.md: -------------------------------------------------------------------------------- 1 | # VolumeOptions 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **allocate** | **float** | GB | [optional] 9 | **partitions** | **list[object]** | | [optional] 10 | **compute_node** | **str** | | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /docs/VpnDefinition.md: -------------------------------------------------------------------------------- 1 | # VpnDefinition 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **proxy** | **list[object]** | | [optional] 9 | **listeners** | **list[object]** | | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/WebPlayerCreateSessionRequest.md: -------------------------------------------------------------------------------- 1 | # WebPlayerCreateSessionRequest 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **project_id** | **str** | Project Identifier | 9 | **instance_id** | **str** | VM Instance Identifier | 10 | **expires_in** | **float** | Number of seconds token remains valid | 11 | **features** | [**Features**](Features.md) | | 12 | **client_id** | **str** | Optional string value supplied by client for tracking purposes | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/WebPlayerSession.md: -------------------------------------------------------------------------------- 1 | # WebPlayerSession 2 | 3 | 4 | 5 | ## Properties 6 | Name | Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | **identifier** | **str** | New Session Identifier | 9 | **token** | **str** | Session Token | 10 | **expiration** | **float** | Expiration in ISO-8601 format e.g. 2022-05-06T02:39:23.000Z | 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | future; python_version<="2.7" 2 | six >= 1.10 3 | python_dateutil >= 2.9 4 | setuptools >= 70.0 5 | urllib3 >= 1.26.20 6 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from setuptools import setup, find_packages # noqa: H301 14 | 15 | NAME = "corellium-api" 16 | VERSION = "0.4.1" 17 | # To install the library, run the following 18 | # 19 | # python setup.py install 20 | # 21 | # prerequisite: setuptools 22 | # http://pypi.python.org/pypi/setuptools 23 | 24 | REQUIRES = ["urllib3 >= 1.25.3", "six >= 1.10", "python-dateutil"] 25 | REQUIRES.append("aiohttp >= 3.0.0") 26 | 27 | setup( 28 | name=NAME, 29 | version=VERSION, 30 | description="Corellium API", 31 | author="OpenAPI Generator community", 32 | author_email="team@openapitools.org", 33 | url="", 34 | keywords=["OpenAPI", "OpenAPI-Generator", "Corellium API"], 35 | install_requires=REQUIRES, 36 | packages=find_packages(exclude=["test", "tests"]), 37 | include_package_data=True, 38 | long_description_content_type='text/markdown', 39 | long_description="""\ 40 | REST API to manage your virtual devices. # noqa: E501 41 | """ 42 | ) 43 | -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest~=4.6.7 # needed for python 2.7+3.4 2 | pytest-cov>=2.8.1 3 | pytest-randomly==1.2.3 # needed for python 2.7+3.4 4 | -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corellium/python-api-client/56a0552f24ed74e5978878bdb6e02b9f4bc7b006/test/__init__.py -------------------------------------------------------------------------------- /test/test_activity_export_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.activity_export_response import ActivityExportResponse # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestActivityExportResponse(unittest.TestCase): 23 | """ActivityExportResponse unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test ActivityExportResponse 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.activity_export_response.ActivityExportResponse() # noqa: E501 37 | if include_optional : 38 | return ActivityExportResponse( 39 | id = '' 40 | ) 41 | else : 42 | return ActivityExportResponse( 43 | id = '', 44 | ) 45 | 46 | def testActivityExportResponse(self): 47 | """Test ActivityExportResponse""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_address.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.address import Address # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAddress(unittest.TestCase): 23 | """Address unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Address 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.address.Address() # noqa: E501 37 | if include_optional : 38 | return Address( 39 | address1 = '', 40 | address2 = '', 41 | city = '', 42 | country = '', 43 | postal_code = '', 44 | state = '' 45 | ) 46 | else : 47 | return Address( 48 | ) 49 | 50 | def testAddress(self): 51 | """Test Address""" 52 | inst_req_only = self.make_instance(include_optional=False) 53 | inst_req_and_optional = self.make_instance(include_optional=True) 54 | 55 | if __name__ == '__main__': 56 | unittest.main() 57 | -------------------------------------------------------------------------------- /test/test_agent_app_ready_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.agent_app_ready_response import AgentAppReadyResponse # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAgentAppReadyResponse(unittest.TestCase): 23 | """AgentAppReadyResponse unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test AgentAppReadyResponse 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.agent_app_ready_response.AgentAppReadyResponse() # noqa: E501 37 | if include_optional : 38 | return AgentAppReadyResponse( 39 | ready = True 40 | ) 41 | else : 42 | return AgentAppReadyResponse( 43 | ready = True, 44 | ) 45 | 46 | def testAgentAppReadyResponse(self): 47 | """Test AgentAppReadyResponse""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_agent_app_status.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.agent_app_status import AgentAppStatus # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAgentAppStatus(unittest.TestCase): 23 | """AgentAppStatus unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test AgentAppStatus 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.agent_app_status.AgentAppStatus() # noqa: E501 37 | if include_optional : 38 | return AgentAppStatus( 39 | running = True, 40 | bundle_id = '' 41 | ) 42 | else : 43 | return AgentAppStatus( 44 | ) 45 | 46 | def testAgentAppStatus(self): 47 | """Test AgentAppStatus""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_agent_error.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.agent_error import AgentError # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAgentError(unittest.TestCase): 23 | """AgentError unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test AgentError 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.agent_error.AgentError() # noqa: E501 37 | if include_optional : 38 | return AgentError( 39 | error = '', 40 | error_id = 'AgentError', 41 | original_error = None 42 | ) 43 | else : 44 | return AgentError( 45 | error = '', 46 | error_id = 'AgentError', 47 | ) 48 | 49 | def testAgentError(self): 50 | """Test AgentError""" 51 | inst_req_only = self.make_instance(include_optional=False) 52 | inst_req_and_optional = self.make_instance(include_optional=True) 53 | 54 | if __name__ == '__main__': 55 | unittest.main() 56 | -------------------------------------------------------------------------------- /test/test_agent_icons.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.agent_icons import AgentIcons # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAgentIcons(unittest.TestCase): 23 | """AgentIcons unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test AgentIcons 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.agent_icons.AgentIcons() # noqa: E501 37 | if include_optional : 38 | return AgentIcons( 39 | icon = 'YQ==' 40 | ) 41 | else : 42 | return AgentIcons( 43 | ) 44 | 45 | def testAgentIcons(self): 46 | """Test AgentIcons""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_agent_install_body.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.agent_install_body import AgentInstallBody # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAgentInstallBody(unittest.TestCase): 23 | """AgentInstallBody unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test AgentInstallBody 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.agent_install_body.AgentInstallBody() # noqa: E501 37 | if include_optional : 38 | return AgentInstallBody( 39 | path = '' 40 | ) 41 | else : 42 | return AgentInstallBody( 43 | ) 44 | 45 | def testAgentInstallBody(self): 46 | """Test AgentInstallBody""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_agent_system_adb_auth.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.agent_system_adb_auth import AgentSystemAdbAuth # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAgentSystemAdbAuth(unittest.TestCase): 23 | """AgentSystemAdbAuth unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test AgentSystemAdbAuth 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.agent_system_adb_auth.AgentSystemAdbAuth() # noqa: E501 37 | if include_optional : 38 | return AgentSystemAdbAuth( 39 | enabled = True 40 | ) 41 | else : 42 | return AgentSystemAdbAuth( 43 | ) 44 | 45 | def testAgentSystemAdbAuth(self): 46 | """Test AgentSystemAdbAuth""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_agent_value_return.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.agent_value_return import AgentValueReturn # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAgentValueReturn(unittest.TestCase): 23 | """AgentValueReturn unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test AgentValueReturn 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.agent_value_return.AgentValueReturn() # noqa: E501 37 | if include_optional : 38 | return AgentValueReturn( 39 | value = '' 40 | ) 41 | else : 42 | return AgentValueReturn( 43 | ) 44 | 45 | def testAgentValueReturn(self): 46 | """Test AgentValueReturn""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_agreed_ack.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.agreed_ack import AgreedAck # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAgreedAck(unittest.TestCase): 23 | """AgreedAck unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test AgreedAck 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.agreed_ack.AgreedAck() # noqa: E501 37 | if include_optional : 38 | return AgreedAck( 39 | agreed_to_terms = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f') 40 | ) 41 | else : 42 | return AgreedAck( 43 | ) 44 | 45 | def testAgreedAck(self): 46 | """Test AgreedAck""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_api_error.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.api_error import ApiError # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestApiError(unittest.TestCase): 23 | """ApiError unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test ApiError 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.api_error.ApiError() # noqa: E501 37 | if include_optional : 38 | return ApiError( 39 | error = '', 40 | error_id = '', 41 | original_error = '' 42 | ) 43 | else : 44 | return ApiError( 45 | error = '', 46 | error_id = '', 47 | ) 48 | 49 | def testApiError(self): 50 | """Test ApiError""" 51 | inst_req_only = self.make_instance(include_optional=False) 52 | inst_req_and_optional = self.make_instance(include_optional=True) 53 | 54 | if __name__ == '__main__': 55 | unittest.main() 56 | -------------------------------------------------------------------------------- /test/test_api_token.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.api_token import ApiToken # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestApiToken(unittest.TestCase): 23 | """ApiToken unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test ApiToken 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.api_token.ApiToken() # noqa: E501 37 | if include_optional : 38 | return ApiToken( 39 | api_token = '' 40 | ) 41 | else : 42 | return ApiToken( 43 | api_token = '', 44 | ) 45 | 46 | def testApiToken(self): 47 | """Test ApiToken""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_assessment.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.assessment import Assessment # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAssessment(unittest.TestCase): 23 | """Assessment unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def testAssessment(self): 32 | """Test Assessment""" 33 | # inst_req_only = self.make_instance(include_optional=False) 34 | # inst_req_and_optional = self.make_instance(include_optional=True) 35 | 36 | if __name__ == '__main__': 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /test/test_assessment_id_status.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.assessment_id_status import AssessmentIdStatus # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestAssessmentIdStatus(unittest.TestCase): 23 | """AssessmentIdStatus unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def testAssessmentIdStatus(self): 32 | """Test AssessmentIdStatus""" 33 | # inst_req_only = self.make_instance(include_optional=False) 34 | # inst_req_and_optional = self.make_instance(include_optional=True) 35 | 36 | if __name__ == '__main__': 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /test/test_bit.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.bit import Bit # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestBit(unittest.TestCase): 23 | """Bit unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Bit 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.bit.Bit() # noqa: E501 37 | if include_optional : 38 | return Bit( 39 | ) 40 | else : 41 | return Bit( 42 | ) 43 | 44 | def testBit(self): 45 | """Test Bit""" 46 | inst_req_only = self.make_instance(include_optional=False) 47 | inst_req_and_optional = self.make_instance(include_optional=True) 48 | 49 | if __name__ == '__main__': 50 | unittest.main() 51 | -------------------------------------------------------------------------------- /test/test_button.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.button import Button # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestButton(unittest.TestCase): 23 | """Button unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Button 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.button.Button() # noqa: E501 37 | if include_optional : 38 | return Button( 39 | ) 40 | else : 41 | return Button( 42 | ) 43 | 44 | def testButton(self): 45 | """Test Button""" 46 | inst_req_only = self.make_instance(include_optional=False) 47 | inst_req_and_optional = self.make_instance(include_optional=True) 48 | 49 | if __name__ == '__main__': 50 | unittest.main() 51 | -------------------------------------------------------------------------------- /test/test_check_subdomain_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.check_subdomain_response import CheckSubdomainResponse # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestCheckSubdomainResponse(unittest.TestCase): 23 | """CheckSubdomainResponse unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test CheckSubdomainResponse 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.check_subdomain_response.CheckSubdomainResponse() # noqa: E501 37 | if include_optional : 38 | return CheckSubdomainResponse( 39 | available = True 40 | ) 41 | else : 42 | return CheckSubdomainResponse( 43 | available = True, 44 | ) 45 | 46 | def testCheckSubdomainResponse(self): 47 | """Test CheckSubdomainResponse""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_config_response_maintenance.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.config_response_maintenance import ConfigResponseMaintenance # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestConfigResponseMaintenance(unittest.TestCase): 23 | """ConfigResponseMaintenance unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def testConfigResponseMaintenance(self): 32 | """Test ConfigResponseMaintenance""" 33 | # inst_req_only = self.make_instance(include_optional=False) 34 | # inst_req_and_optional = self.make_instance(include_optional=True) 35 | 36 | if __name__ == '__main__': 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /test/test_create_team.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.create_team import CreateTeam # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestCreateTeam(unittest.TestCase): 23 | """CreateTeam unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test CreateTeam 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.create_team.CreateTeam() # noqa: E501 37 | if include_optional : 38 | return CreateTeam( 39 | name = '' 40 | ) 41 | else : 42 | return CreateTeam( 43 | name = '', 44 | ) 45 | 46 | def testCreateTeam(self): 47 | """Test CreateTeam""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_created_by.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.created_by import CreatedBy # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestCreatedBy(unittest.TestCase): 23 | """CreatedBy unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test CreatedBy 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.created_by.CreatedBy() # noqa: E501 37 | if include_optional : 38 | return CreatedBy( 39 | id = '', 40 | username = '', 41 | label = '', 42 | deleted = True 43 | ) 44 | else : 45 | return CreatedBy( 46 | ) 47 | 48 | def testCreatedBy(self): 49 | """Test CreatedBy""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_credentials.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.credentials import Credentials # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestCredentials(unittest.TestCase): 23 | """Credentials unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Credentials 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.credentials.Credentials() # noqa: E501 37 | if include_optional : 38 | return Credentials( 39 | username = '', 40 | password = '' 41 | ) 42 | else : 43 | return Credentials( 44 | username = '', 45 | password = '', 46 | ) 47 | 48 | def testCredentials(self): 49 | """Test Credentials""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_file_changes.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.file_changes import FileChanges # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestFileChanges(unittest.TestCase): 23 | """FileChanges unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test FileChanges 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.file_changes.FileChanges() # noqa: E501 37 | if include_optional : 38 | return FileChanges( 39 | path = '', 40 | mode = 1.337, 41 | uid = 1.337, 42 | gid = 1.337 43 | ) 44 | else : 45 | return FileChanges( 46 | ) 47 | 48 | def testFileChanges(self): 49 | """Test FileChanges""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_grant_trial_request_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.grant_trial_request_response import GrantTrialRequestResponse # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestGrantTrialRequestResponse(unittest.TestCase): 23 | """GrantTrialRequestResponse unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test GrantTrialRequestResponse 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.grant_trial_request_response.GrantTrialRequestResponse() # noqa: E501 37 | if include_optional : 38 | return GrantTrialRequestResponse( 39 | code = '' 40 | ) 41 | else : 42 | return GrantTrialRequestResponse( 43 | ) 44 | 45 | def testGrantTrialRequestResponse(self): 46 | """Test GrantTrialRequestResponse""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_input_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.input_response import InputResponse # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInputResponse(unittest.TestCase): 23 | """InputResponse unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InputResponse 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.input_response.InputResponse() # noqa: E501 37 | if include_optional : 38 | return InputResponse( 39 | eta = 1.337 40 | ) 41 | else : 42 | return InputResponse( 43 | ) 44 | 45 | def testInputResponse(self): 46 | """Test InputResponse""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_instance_agent_state.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.instance_agent_state import InstanceAgentState # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInstanceAgentState(unittest.TestCase): 23 | """InstanceAgentState unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InstanceAgentState 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.instance_agent_state.InstanceAgentState() # noqa: E501 37 | if include_optional : 38 | return InstanceAgentState( 39 | hash = '', 40 | info = '' 41 | ) 42 | else : 43 | return InstanceAgentState( 44 | ) 45 | 46 | def testInstanceAgentState(self): 47 | """Test InstanceAgentState""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_instance_console_endpoint.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.instance_console_endpoint import InstanceConsoleEndpoint # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInstanceConsoleEndpoint(unittest.TestCase): 23 | """InstanceConsoleEndpoint unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InstanceConsoleEndpoint 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.instance_console_endpoint.InstanceConsoleEndpoint() # noqa: E501 37 | if include_optional : 38 | return InstanceConsoleEndpoint( 39 | url = '' 40 | ) 41 | else : 42 | return InstanceConsoleEndpoint( 43 | ) 44 | 45 | def testInstanceConsoleEndpoint(self): 46 | """Test InstanceConsoleEndpoint""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_instance_input.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.instance_input import InstanceInput # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInstanceInput(unittest.TestCase): 23 | """InstanceInput unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def testInstanceInput(self): 32 | """Test InstanceInput""" 33 | # inst_req_only = self.make_instance(include_optional=False) 34 | # inst_req_and_optional = self.make_instance(include_optional=True) 35 | 36 | if __name__ == '__main__': 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /test/test_instance_netmon_state.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.instance_netmon_state import InstanceNetmonState # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInstanceNetmonState(unittest.TestCase): 23 | """InstanceNetmonState unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InstanceNetmonState 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.instance_netmon_state.InstanceNetmonState() # noqa: E501 37 | if include_optional : 38 | return InstanceNetmonState( 39 | hash = '', 40 | info = '', 41 | enabled = True 42 | ) 43 | else : 44 | return InstanceNetmonState( 45 | ) 46 | 47 | def testInstanceNetmonState(self): 48 | """Test InstanceNetmonState""" 49 | inst_req_only = self.make_instance(include_optional=False) 50 | inst_req_and_optional = self.make_instance(include_optional=True) 51 | 52 | if __name__ == '__main__': 53 | unittest.main() 54 | -------------------------------------------------------------------------------- /test/test_instance_return.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.instance_return import InstanceReturn # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInstanceReturn(unittest.TestCase): 23 | """InstanceReturn unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InstanceReturn 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.instance_return.InstanceReturn() # noqa: E501 37 | if include_optional : 38 | return InstanceReturn( 39 | id = '', 40 | state = 'on' 41 | ) 42 | else : 43 | return InstanceReturn( 44 | id = '', 45 | state = 'on', 46 | ) 47 | 48 | def testInstanceReturn(self): 49 | """Test InstanceReturn""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_instance_start_options.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.instance_start_options import InstanceStartOptions # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInstanceStartOptions(unittest.TestCase): 23 | """InstanceStartOptions unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InstanceStartOptions 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.instance_start_options.InstanceStartOptions() # noqa: E501 37 | if include_optional : 38 | return InstanceStartOptions( 39 | paused = True, 40 | sockcap = True 41 | ) 42 | else : 43 | return InstanceStartOptions( 44 | ) 45 | 46 | def testInstanceStartOptions(self): 47 | """Test InstanceStartOptions""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_instance_state.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.instance_state import InstanceState # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInstanceState(unittest.TestCase): 23 | """InstanceState unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InstanceState 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.instance_state.InstanceState() # noqa: E501 37 | if include_optional : 38 | return InstanceState( 39 | ) 40 | else : 41 | return InstanceState( 42 | ) 43 | 44 | def testInstanceState(self): 45 | """Test InstanceState""" 46 | inst_req_only = self.make_instance(include_optional=False) 47 | inst_req_and_optional = self.make_instance(include_optional=True) 48 | 49 | if __name__ == '__main__': 50 | unittest.main() 51 | -------------------------------------------------------------------------------- /test/test_instance_stop_options.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.instance_stop_options import InstanceStopOptions # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInstanceStopOptions(unittest.TestCase): 23 | """InstanceStopOptions unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InstanceStopOptions 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.instance_stop_options.InstanceStopOptions() # noqa: E501 37 | if include_optional : 38 | return InstanceStopOptions( 39 | soft = True 40 | ) 41 | else : 42 | return InstanceStopOptions( 43 | ) 44 | 45 | def testInstanceStopOptions(self): 46 | """Test InstanceStopOptions""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_instance_upgrade_body.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.instance_upgrade_body import InstanceUpgradeBody # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInstanceUpgradeBody(unittest.TestCase): 23 | """InstanceUpgradeBody unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InstanceUpgradeBody 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.instance_upgrade_body.InstanceUpgradeBody() # noqa: E501 37 | if include_optional : 38 | return InstanceUpgradeBody( 39 | os = '', 40 | osbuild = '' 41 | ) 42 | else : 43 | return InstanceUpgradeBody( 44 | os = '', 45 | ) 46 | 47 | def testInstanceUpgradeBody(self): 48 | """Test InstanceUpgradeBody""" 49 | inst_req_only = self.make_instance(include_optional=False) 50 | inst_req_and_optional = self.make_instance(include_optional=True) 51 | 52 | if __name__ == '__main__': 53 | unittest.main() 54 | -------------------------------------------------------------------------------- /test/test_invitation.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.invitation import Invitation # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInvitation(unittest.TestCase): 23 | """Invitation unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Invitation 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.invitation.Invitation() # noqa: E501 37 | if include_optional : 38 | return Invitation( 39 | identifier = '', 40 | email = '', 41 | settings = None 42 | ) 43 | else : 44 | return Invitation( 45 | ) 46 | 47 | def testInvitation(self): 48 | """Test Invitation""" 49 | inst_req_only = self.make_instance(include_optional=False) 50 | inst_req_and_optional = self.make_instance(include_optional=True) 51 | 52 | if __name__ == '__main__': 53 | unittest.main() 54 | -------------------------------------------------------------------------------- /test/test_invite_revoke_params.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.invite_revoke_params import InviteRevokeParams # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInviteRevokeParams(unittest.TestCase): 23 | """InviteRevokeParams unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InviteRevokeParams 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.invite_revoke_params.InviteRevokeParams() # noqa: E501 37 | if include_optional : 38 | return InviteRevokeParams( 39 | ids = None 40 | ) 41 | else : 42 | return InviteRevokeParams( 43 | ) 44 | 45 | def testInviteRevokeParams(self): 46 | """Test InviteRevokeParams""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_invite_revoke_params_ids.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.invite_revoke_params_ids import InviteRevokeParamsIds # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestInviteRevokeParamsIds(unittest.TestCase): 23 | """InviteRevokeParamsIds unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test InviteRevokeParamsIds 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.invite_revoke_params_ids.InviteRevokeParamsIds() # noqa: E501 37 | if include_optional : 38 | return InviteRevokeParamsIds( 39 | ) 40 | else : 41 | return InviteRevokeParamsIds( 42 | ) 43 | 44 | def testInviteRevokeParamsIds(self): 45 | """Test InviteRevokeParamsIds""" 46 | inst_req_only = self.make_instance(include_optional=False) 47 | inst_req_and_optional = self.make_instance(include_optional=True) 48 | 49 | if __name__ == '__main__': 50 | unittest.main() 51 | -------------------------------------------------------------------------------- /test/test_kcrange.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.kcrange import Kcrange # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestKcrange(unittest.TestCase): 23 | """Kcrange unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Kcrange 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.kcrange.Kcrange() # noqa: E501 37 | if include_optional : 38 | return Kcrange( 39 | kext = '', 40 | range = [ 41 | '' 42 | ] 43 | ) 44 | else : 45 | return Kcrange( 46 | ) 47 | 48 | def testKcrange(self): 49 | """Test Kcrange""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_kernel_thread.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.kernel_thread import KernelThread # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestKernelThread(unittest.TestCase): 23 | """KernelThread unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test KernelThread 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.kernel_thread.KernelThread() # noqa: E501 37 | if include_optional : 38 | return KernelThread( 39 | kernel_id = '', 40 | tid = 56, 41 | stack = [ 42 | '' 43 | ] 44 | ) 45 | else : 46 | return KernelThread( 47 | ) 48 | 49 | def testKernelThread(self): 50 | """Test KernelThread""" 51 | inst_req_only = self.make_instance(include_optional=False) 52 | inst_req_and_optional = self.make_instance(include_optional=True) 53 | 54 | if __name__ == '__main__': 55 | unittest.main() 56 | -------------------------------------------------------------------------------- /test/test_logging.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.logging import Logging # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestLogging(unittest.TestCase): 23 | """Logging unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Logging 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.logging.Logging() # noqa: E501 37 | if include_optional : 38 | return Logging( 39 | development = True, 40 | throw_warnings = True 41 | ) 42 | else : 43 | return Logging( 44 | ) 45 | 46 | def testLogging(self): 47 | """Test Logging""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_maintenance.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.maintenance import Maintenance # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestMaintenance(unittest.TestCase): 23 | """Maintenance unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Maintenance 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.maintenance.Maintenance() # noqa: E501 37 | if include_optional : 38 | return Maintenance( 39 | message = '', 40 | header = '' 41 | ) 42 | else : 43 | return Maintenance( 44 | ) 45 | 46 | def testMaintenance(self): 47 | """Test Maintenance""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_media_play_body.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.media_play_body import MediaPlayBody # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestMediaPlayBody(unittest.TestCase): 23 | """MediaPlayBody unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test MediaPlayBody 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.media_play_body.MediaPlayBody() # noqa: E501 37 | if include_optional : 38 | return MediaPlayBody( 39 | image_id = '', 40 | url = '' 41 | ) 42 | else : 43 | return MediaPlayBody( 44 | ) 45 | 46 | def testMediaPlayBody(self): 47 | """Test MediaPlayBody""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_open_id_config.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.open_id_config import OpenIDConfig # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestOpenIDConfig(unittest.TestCase): 23 | """OpenIDConfig unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test OpenIDConfig 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.open_id_config.OpenIDConfig() # noqa: E501 37 | if include_optional : 38 | return OpenIDConfig( 39 | discovery_url = '', 40 | client_id = '', 41 | client_secret = '', 42 | invited_only = True 43 | ) 44 | else : 45 | return OpenIDConfig( 46 | ) 47 | 48 | def testOpenIDConfig(self): 49 | """Test OpenIDConfig""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_pagination.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.pagination import Pagination # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestPagination(unittest.TestCase): 23 | """Pagination unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Pagination 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.pagination.Pagination() # noqa: E501 37 | if include_optional : 38 | return Pagination( 39 | current_page = 1.337, 40 | total_pages = 1.337, 41 | total_items = 1.337, 42 | items_per_page = 1.337 43 | ) 44 | else : 45 | return Pagination( 46 | ) 47 | 48 | def testPagination(self): 49 | """Test Pagination""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_plan.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.plan import Plan # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestPlan(unittest.TestCase): 23 | """Plan unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Plan 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.plan.Plan() # noqa: E501 37 | if include_optional : 38 | return Plan( 39 | plan_id = '', 40 | name = '' 41 | ) 42 | else : 43 | return Plan( 44 | ) 45 | 46 | def testPlan(self): 47 | """Test Plan""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_plan_options.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 3.11.0-13738 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.plan_options import PlanOptions # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestPlanOptions(unittest.TestCase): 23 | """PlanOptions unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test PlanOptions 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.plan_options.PlanOptions() # noqa: E501 37 | if include_optional : 38 | return PlanOptions( 39 | license_type = 'premium', 40 | cores = 56 41 | ) 42 | else : 43 | return PlanOptions( 44 | license_type = 'premium', 45 | cores = 56, 46 | ) 47 | 48 | def testPlanOptions(self): 49 | """Test PlanOptions""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_project_quota.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.project_quota import ProjectQuota # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestProjectQuota(unittest.TestCase): 23 | """ProjectQuota unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test ProjectQuota 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.project_quota.ProjectQuota() # noqa: E501 37 | if include_optional : 38 | return ProjectQuota( 39 | cores = 1.337, 40 | instances = 1.337, 41 | ram = 1.337 42 | ) 43 | else : 44 | return ProjectQuota( 45 | ) 46 | 47 | def testProjectQuota(self): 48 | """Test ProjectQuota""" 49 | inst_req_only = self.make_instance(include_optional=False) 50 | inst_req_and_optional = self.make_instance(include_optional=True) 51 | 52 | if __name__ == '__main__': 53 | unittest.main() 54 | -------------------------------------------------------------------------------- /test/test_project_usage.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.project_usage import ProjectUsage # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestProjectUsage(unittest.TestCase): 23 | """ProjectUsage unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test ProjectUsage 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.project_usage.ProjectUsage() # noqa: E501 37 | if include_optional : 38 | return ProjectUsage( 39 | cores = 1.337, 40 | instances = 1.337, 41 | ram = 1.337, 42 | gpu = 1.337 43 | ) 44 | else : 45 | return ProjectUsage( 46 | ) 47 | 48 | def testProjectUsage(self): 49 | """Test ProjectUsage""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_proxy_config.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.proxy_config import ProxyConfig # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestProxyConfig(unittest.TestCase): 23 | """ProxyConfig unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test ProxyConfig 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.proxy_config.ProxyConfig() # noqa: E501 37 | if include_optional : 38 | return ProxyConfig( 39 | device_port = 1.337, 40 | first_available = True, 41 | expose = True, 42 | router_port = 1.337 43 | ) 44 | else : 45 | return ProxyConfig( 46 | ) 47 | 48 | def testProxyConfig(self): 49 | """Test ProxyConfig""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_rate_info.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 5.2.0-17368 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.rate_info import RateInfo # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestRateInfo(unittest.TestCase): 23 | """RateInfo unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test RateInfo 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.rate_info.RateInfo() # noqa: E501 37 | if include_optional : 38 | return RateInfo( 39 | on_rate_microcents = 56, 40 | off_rate_microcents = 56 41 | ) 42 | else : 43 | return RateInfo( 44 | ) 45 | 46 | def testRateInfo(self): 47 | """Test RateInfo""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_reset_link_body.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.reset_link_body import ResetLinkBody # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestResetLinkBody(unittest.TestCase): 23 | """ResetLinkBody unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test ResetLinkBody 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.reset_link_body.ResetLinkBody() # noqa: E501 37 | if include_optional : 38 | return ResetLinkBody( 39 | email = '' 40 | ) 41 | else : 42 | return ResetLinkBody( 43 | email = '', 44 | ) 45 | 46 | def testResetLinkBody(self): 47 | """Test ResetLinkBody""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_role.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.role import Role # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestRole(unittest.TestCase): 23 | """Role unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Role 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.role.Role() # noqa: E501 37 | if include_optional : 38 | return Role( 39 | role = 'admin', 40 | project = '', 41 | user = '' 42 | ) 43 | else : 44 | return Role( 45 | role = 'admin', 46 | project = '', 47 | user = '', 48 | ) 49 | 50 | def testRole(self): 51 | """Test Role""" 52 | inst_req_only = self.make_instance(include_optional=False) 53 | inst_req_and_optional = self.make_instance(include_optional=True) 54 | 55 | if __name__ == '__main__': 56 | unittest.main() 57 | -------------------------------------------------------------------------------- /test/test_rotate_body.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.rotate_body import RotateBody # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestRotateBody(unittest.TestCase): 23 | """RotateBody unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test RotateBody 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.rotate_body.RotateBody() # noqa: E501 37 | if include_optional : 38 | return RotateBody( 39 | orientation = 1 40 | ) 41 | else : 42 | return RotateBody( 43 | orientation = 1, 44 | ) 45 | 46 | def testRotateBody(self): 47 | """Test RotateBody""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_snapshot_owner.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.snapshot_owner import SnapshotOwner # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestSnapshotOwner(unittest.TestCase): 23 | """SnapshotOwner unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test SnapshotOwner 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.snapshot_owner.SnapshotOwner() # noqa: E501 37 | if include_optional : 38 | return SnapshotOwner( 39 | name = '', 40 | email = '' 41 | ) 42 | else : 43 | return SnapshotOwner( 44 | name = '', 45 | email = '', 46 | ) 47 | 48 | def testSnapshotOwner(self): 49 | """Test SnapshotOwner""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_snapshot_status.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.snapshot_status import SnapshotStatus # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestSnapshotStatus(unittest.TestCase): 23 | """SnapshotStatus unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test SnapshotStatus 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.snapshot_status.SnapshotStatus() # noqa: E501 37 | if include_optional : 38 | return SnapshotStatus( 39 | task = '', 40 | created = True 41 | ) 42 | else : 43 | return SnapshotStatus( 44 | ) 45 | 46 | def testSnapshotStatus(self): 47 | """Test SnapshotStatus""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_sslsplit_filter.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.sslsplit_filter import SslsplitFilter # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestSslsplitFilter(unittest.TestCase): 23 | """SslsplitFilter unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test SslsplitFilter 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.sslsplit_filter.SslsplitFilter() # noqa: E501 37 | if include_optional : 38 | return SslsplitFilter( 39 | truncate_pcap = True 40 | ) 41 | else : 42 | return SslsplitFilter( 43 | ) 44 | 45 | def testSslsplitFilter(self): 46 | """Test SslsplitFilter""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_team_create.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.team_create import TeamCreate # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestTeamCreate(unittest.TestCase): 23 | """TeamCreate unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test TeamCreate 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.team_create.TeamCreate() # noqa: E501 37 | if include_optional : 38 | return TeamCreate( 39 | id = '' 40 | ) 41 | else : 42 | return TeamCreate( 43 | ) 44 | 45 | def testTeamCreate(self): 46 | """Test TeamCreate""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_test_assessment_dto.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.test_assessment_dto import TestAssessmentDto # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestTestAssessmentDto(unittest.TestCase): 23 | """TestAssessmentDto unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test TestAssessmentDto 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.test_assessment_dto.TestAssessmentDto() # noqa: E501 37 | if include_optional : 38 | return TestAssessmentDto( 39 | invert = True, 40 | grep = 'masvs-storage-2-android-8' 41 | ) 42 | else : 43 | return TestAssessmentDto( 44 | ) 45 | 46 | def testTestAssessmentDto(self): 47 | """Test TestAssessmentDto""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_text_input.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.text_input import TextInput # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestTextInput(unittest.TestCase): 23 | """TextInput unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test TextInput 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.text_input.TextInput() # noqa: E501 37 | if include_optional : 38 | return TextInput( 39 | required = '', 40 | key_duration = 56 41 | ) 42 | else : 43 | return TextInput( 44 | required = '', 45 | ) 46 | 47 | def testTextInput(self): 48 | """Test TextInput""" 49 | inst_req_only = self.make_instance(include_optional=False) 50 | inst_req_and_optional = self.make_instance(include_optional=True) 51 | 52 | if __name__ == '__main__': 53 | unittest.main() 54 | -------------------------------------------------------------------------------- /test/test_token.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.token import Token # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestToken(unittest.TestCase): 23 | """Token unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Token 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.token.Token() # noqa: E501 37 | if include_optional : 38 | return Token( 39 | token = '', 40 | expiration = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f') 41 | ) 42 | else : 43 | return Token( 44 | token = '', 45 | ) 46 | 47 | def testToken(self): 48 | """Test Token""" 49 | inst_req_only = self.make_instance(include_optional=False) 50 | inst_req_and_optional = self.make_instance(include_optional=True) 51 | 52 | if __name__ == '__main__': 53 | unittest.main() 54 | -------------------------------------------------------------------------------- /test/test_touch_input_buttons_inner.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.touch_input_buttons_inner import TouchInputButtonsInner # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestTouchInputButtonsInner(unittest.TestCase): 23 | """TouchInputButtonsInner unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def testTouchInputButtonsInner(self): 32 | """Test TouchInputButtonsInner""" 33 | # inst_req_only = self.make_instance(include_optional=False) 34 | # inst_req_and_optional = self.make_instance(include_optional=True) 35 | 36 | if __name__ == '__main__': 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /test/test_trial.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.trial import Trial # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestTrial(unittest.TestCase): 23 | """Trial unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test Trial 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.trial.Trial() # noqa: E501 37 | if include_optional : 38 | return Trial( 39 | default_duration = 1.337, 40 | default_hours = 1.337, 41 | default_devices = 1.337, 42 | default_cores = 1.337 43 | ) 44 | else : 45 | return Trial( 46 | ) 47 | 48 | def testTrial(self): 49 | """Test Trial""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_trial_extension.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.trial_extension import TrialExtension # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestTrialExtension(unittest.TestCase): 23 | """TrialExtension unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test TrialExtension 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.trial_extension.TrialExtension() # noqa: E501 37 | if include_optional : 38 | return TrialExtension( 39 | duration = 1.337, 40 | reason = '', 41 | denied = True, 42 | denied_reason = '' 43 | ) 44 | else : 45 | return TrialExtension( 46 | ) 47 | 48 | def testTrialExtension(self): 49 | """Test TrialExtension""" 50 | inst_req_only = self.make_instance(include_optional=False) 51 | inst_req_and_optional = self.make_instance(include_optional=True) 52 | 53 | if __name__ == '__main__': 54 | unittest.main() 55 | -------------------------------------------------------------------------------- /test/test_update_assessment_dto.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.update_assessment_dto import UpdateAssessmentDto # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestUpdateAssessmentDto(unittest.TestCase): 23 | """UpdateAssessmentDto unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test UpdateAssessmentDto 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.update_assessment_dto.UpdateAssessmentDto() # noqa: E501 37 | if include_optional : 38 | return UpdateAssessmentDto( 39 | status = 'testing' 40 | ) 41 | else : 42 | return UpdateAssessmentDto( 43 | status = 'testing', 44 | ) 45 | 46 | def testUpdateAssessmentDto(self): 47 | """Test UpdateAssessmentDto""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_update_extension.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.update_extension import UpdateExtension # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestUpdateExtension(unittest.TestCase): 23 | """UpdateExtension unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test UpdateExtension 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.update_extension.UpdateExtension() # noqa: E501 37 | if include_optional : 38 | return UpdateExtension( 39 | enabled = True 40 | ) 41 | else : 42 | return UpdateExtension( 43 | ) 44 | 45 | def testUpdateExtension(self): 46 | """Test UpdateExtension""" 47 | inst_req_only = self.make_instance(include_optional=False) 48 | inst_req_and_optional = self.make_instance(include_optional=True) 49 | 50 | if __name__ == '__main__': 51 | unittest.main() 52 | -------------------------------------------------------------------------------- /test/test_user_error.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.user_error import UserError # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestUserError(unittest.TestCase): 23 | """UserError unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test UserError 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.user_error.UserError() # noqa: E501 37 | if include_optional : 38 | return UserError( 39 | error = '', 40 | error_id = 'UserError', 41 | field = '' 42 | ) 43 | else : 44 | return UserError( 45 | error = '', 46 | error_id = 'UserError', 47 | ) 48 | 49 | def testUserError(self): 50 | """Test UserError""" 51 | inst_req_only = self.make_instance(include_optional=False) 52 | inst_req_and_optional = self.make_instance(include_optional=True) 53 | 54 | if __name__ == '__main__': 55 | unittest.main() 56 | -------------------------------------------------------------------------------- /test/test_v1_set_state_body.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.v1_set_state_body import V1SetStateBody # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestV1SetStateBody(unittest.TestCase): 23 | """V1SetStateBody unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test V1SetStateBody 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.v1_set_state_body.V1SetStateBody() # noqa: E501 37 | if include_optional : 38 | return V1SetStateBody( 39 | state = 'on' 40 | ) 41 | else : 42 | return V1SetStateBody( 43 | state = 'on', 44 | ) 45 | 46 | def testV1SetStateBody(self): 47 | """Test V1SetStateBody""" 48 | inst_req_only = self.make_instance(include_optional=False) 49 | inst_req_and_optional = self.make_instance(include_optional=True) 50 | 51 | if __name__ == '__main__': 52 | unittest.main() 53 | -------------------------------------------------------------------------------- /test/test_volume_options.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.volume_options import VolumeOptions # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestVolumeOptions(unittest.TestCase): 23 | """VolumeOptions unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test VolumeOptions 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.volume_options.VolumeOptions() # noqa: E501 37 | if include_optional : 38 | return VolumeOptions( 39 | allocate = 1.337, 40 | partitions = [ 41 | None 42 | ], 43 | compute_node = '' 44 | ) 45 | else : 46 | return VolumeOptions( 47 | ) 48 | 49 | def testVolumeOptions(self): 50 | """Test VolumeOptions""" 51 | inst_req_only = self.make_instance(include_optional=False) 52 | inst_req_and_optional = self.make_instance(include_optional=True) 53 | 54 | if __name__ == '__main__': 55 | unittest.main() 56 | -------------------------------------------------------------------------------- /test/test_vpn_definition.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Corellium API 5 | 6 | REST API to manage your virtual devices. # noqa: E501 7 | 8 | The version of the OpenAPI document: 7.3.0 9 | Generated by: https://openapi-generator.tech 10 | """ 11 | 12 | 13 | from __future__ import absolute_import 14 | 15 | import unittest 16 | import datetime 17 | 18 | import corellium_api 19 | from corellium_api.models.vpn_definition import VpnDefinition # noqa: E501 20 | from corellium_api.rest import ApiException 21 | 22 | class TestVpnDefinition(unittest.TestCase): 23 | """VpnDefinition unit test stubs""" 24 | 25 | def setUp(self): 26 | pass 27 | 28 | def tearDown(self): 29 | pass 30 | 31 | def make_instance(self, include_optional): 32 | """Test VpnDefinition 33 | include_option is a boolean, when False only required 34 | params are included, when True both required and 35 | optional params are included """ 36 | # model = corellium_api.models.vpn_definition.VpnDefinition() # noqa: E501 37 | if include_optional : 38 | return VpnDefinition( 39 | proxy = [ 40 | None 41 | ], 42 | listeners = [ 43 | None 44 | ] 45 | ) 46 | else : 47 | return VpnDefinition( 48 | ) 49 | 50 | def testVpnDefinition(self): 51 | """Test VpnDefinition""" 52 | inst_req_only = self.make_instance(include_optional=False) 53 | inst_req_and_optional = self.make_instance(include_optional=True) 54 | 55 | if __name__ == '__main__': 56 | unittest.main() 57 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | envlist = py3 3 | 4 | [testenv] 5 | deps=-r{toxinidir}/requirements.txt 6 | -r{toxinidir}/test-requirements.txt 7 | 8 | commands= 9 | pytest --cov=corellium_api 10 | --------------------------------------------------------------------------------