ths-apimatic-sdk-sdk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +28 -0
- data/README.md +181 -0
- data/bin/console +15 -0
- data/lib/thought_spot_public_rest_api/api_helper.rb +10 -0
- data/lib/thought_spot_public_rest_api/client.rb +218 -0
- data/lib/thought_spot_public_rest_api/configuration.rb +177 -0
- data/lib/thought_spot_public_rest_api/controllers/ai_controller.rb +550 -0
- data/lib/thought_spot_public_rest_api/controllers/authentication_controller.rb +498 -0
- data/lib/thought_spot_public_rest_api/controllers/base_controller.rb +65 -0
- data/lib/thought_spot_public_rest_api/controllers/collections_controller.rb +214 -0
- data/lib/thought_spot_public_rest_api/controllers/connection_configurations_controller.rb +227 -0
- data/lib/thought_spot_public_rest_api/controllers/connections_controller.rb +845 -0
- data/lib/thought_spot_public_rest_api/controllers/custom_action_controller.rb +205 -0
- data/lib/thought_spot_public_rest_api/controllers/custom_calendars_controller.rb +373 -0
- data/lib/thought_spot_public_rest_api/controllers/data_controller.rb +161 -0
- data/lib/thought_spot_public_rest_api/controllers/dbt_controller.rb +381 -0
- data/lib/thought_spot_public_rest_api/controllers/email_customization_controller.rb +354 -0
- data/lib/thought_spot_public_rest_api/controllers/groups_controller.rb +257 -0
- data/lib/thought_spot_public_rest_api/controllers/jobs_controller.rb +62 -0
- data/lib/thought_spot_public_rest_api/controllers/log_controller.rb +67 -0
- data/lib/thought_spot_public_rest_api/controllers/metadata_controller.rb +1074 -0
- data/lib/thought_spot_public_rest_api/controllers/orgs_controller.rb +183 -0
- data/lib/thought_spot_public_rest_api/controllers/reports_controller.rb +126 -0
- data/lib/thought_spot_public_rest_api/controllers/roles_controller.rb +176 -0
- data/lib/thought_spot_public_rest_api/controllers/schedules_controller.rb +213 -0
- data/lib/thought_spot_public_rest_api/controllers/security_controller.rb +749 -0
- data/lib/thought_spot_public_rest_api/controllers/system_controller.rb +401 -0
- data/lib/thought_spot_public_rest_api/controllers/tags_controller.rb +246 -0
- data/lib/thought_spot_public_rest_api/controllers/users_controller.rb +467 -0
- data/lib/thought_spot_public_rest_api/controllers/variable_controller.rb +338 -0
- data/lib/thought_spot_public_rest_api/controllers/version_control_controller.rb +418 -0
- data/lib/thought_spot_public_rest_api/controllers/webhooks_controller.rb +238 -0
- data/lib/thought_spot_public_rest_api/exceptions/api_exception.rb +21 -0
- data/lib/thought_spot_public_rest_api/exceptions/error_response_exception.rb +46 -0
- data/lib/thought_spot_public_rest_api/http/api_response.rb +19 -0
- data/lib/thought_spot_public_rest_api/http/auth/oauth_2.rb +53 -0
- data/lib/thought_spot_public_rest_api/http/http_call_back.rb +10 -0
- data/lib/thought_spot_public_rest_api/http/http_method_enum.rb +10 -0
- data/lib/thought_spot_public_rest_api/http/http_request.rb +10 -0
- data/lib/thought_spot_public_rest_api/http/http_response.rb +10 -0
- data/lib/thought_spot_public_rest_api/http/proxy_settings.rb +22 -0
- data/lib/thought_spot_public_rest_api/logging/configuration/api_logging_configuration.rb +186 -0
- data/lib/thought_spot_public_rest_api/logging/sdk_logger.rb +17 -0
- data/lib/thought_spot_public_rest_api/models/access_token.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/account_status.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/account_status2.rb +53 -0
- data/lib/thought_spot_public_rest_api/models/account_status3.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/account_type.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/account_type2.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/account_type3.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/action_config.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/action_config_input.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/action_config_input_create.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/action_details.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/action_details_input.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/action_details_input_create.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/activate_user_request.rb +104 -0
- data/lib/thought_spot_public_rest_api/models/agent_conversation.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/ai_context.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/answer_content.rb +135 -0
- data/lib/thought_spot_public_rest_api/models/answer_context_input.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/answer_data_response.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/api_key.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/api_key_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/assign_change_author_request.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/assign_tag_request.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/associate_metadata_input.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/associate_metadata_input_create.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/authentication.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/authentication_input.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/authentication_type.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/authentication_type1.rb +64 -0
- data/lib/thought_spot_public_rest_api/models/authentication_type2.rb +74 -0
- data/lib/thought_spot_public_rest_api/models/author.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/author_metadata_type_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/author_type.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/aws_assume_role_setup.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/aws_s3_config.rb +115 -0
- data/lib/thought_spot_public_rest_api/models/aws_s3_config_input.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/base_model.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/basic_auth.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/basic_auth_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/calendar_response.rb +153 -0
- data/lib/thought_spot_public_rest_api/models/calendar_type.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/callback.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/callback_input.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/callback_input_mandatory.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/change_user_password_request.rb +94 -0
- data/lib/thought_spot_public_rest_api/models/channel.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/channel_history_event_input.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/channel_history_job.rb +116 -0
- data/lib/thought_spot_public_rest_api/models/channel_status.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/channel_validation_aws_s3_info.rb +99 -0
- data/lib/thought_spot_public_rest_api/models/channel_validation_detail.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/cluster_non_embed_access.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/cluster_non_embed_access_input.rb +100 -0
- data/lib/thought_spot_public_rest_api/models/cluster_preference.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/cluster_type.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/collection.rb +169 -0
- data/lib/thought_spot_public_rest_api/models/collection_delete_response.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/collection_delete_type_identifiers.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/collection_entity_identifier.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/collection_metadata_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/collection_metadata_item.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/collection_search_response.rb +129 -0
- data/lib/thought_spot_public_rest_api/models/column.rb +130 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule.rb +108 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_column.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_group.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_group_operation.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_response.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_source_table.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_table_input.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_update.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/commit_branch_request.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/commit_file_type.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/commit_history_response.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/commit_response.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/commiter_type.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/communication_channel_preferences_response.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/communication_channel_validate_response.rb +138 -0
- data/lib/thought_spot_public_rest_api/models/configure_communication_channel_preferences_request.rb +104 -0
- data/lib/thought_spot_public_rest_api/models/configure_security_settings_request.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/connection_configuration_response.rb +206 -0
- data/lib/thought_spot_public_rest_api/models/connection_configuration_search_request.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/connection_input.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/context_payload_v2_input.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/conversation.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/conversation_settings_input.rb +113 -0
- data/lib/thought_spot_public_rest_api/models/convert_worksheet_to_model_request.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/copy_object_request.rb +104 -0
- data/lib/thought_spot_public_rest_api/models/create_agent_conversation_request.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/create_calendar_request.rb +180 -0
- data/lib/thought_spot_public_rest_api/models/create_collection_request.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/create_config_request.rb +171 -0
- data/lib/thought_spot_public_rest_api/models/create_connection_configuration_request.rb +187 -0
- data/lib/thought_spot_public_rest_api/models/create_connection_request.rb +121 -0
- data/lib/thought_spot_public_rest_api/models/create_connection_response.rb +105 -0
- data/lib/thought_spot_public_rest_api/models/create_conversation_request.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/create_custom_action_request.rb +133 -0
- data/lib/thought_spot_public_rest_api/models/create_email_customization_request.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/create_email_customization_response.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/create_org_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/create_role_request.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/create_schedule_request.rb +178 -0
- data/lib/thought_spot_public_rest_api/models/create_tag_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/create_user_group_request.rb +179 -0
- data/lib/thought_spot_public_rest_api/models/create_user_request.rb +330 -0
- data/lib/thought_spot_public_rest_api/models/create_variable_request.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/create_webhook_configuration_request.rb +175 -0
- data/lib/thought_spot_public_rest_api/models/creation_method.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/cron_expression.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/cron_expression_input.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/csp_settings.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/csp_settings_input.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/currency_format.rb +964 -0
- data/lib/thought_spot_public_rest_api/models/custom_action_metadata_type_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/data_format.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/data_source.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/data_source_context_input.rb +72 -0
- data/lib/thought_spot_public_rest_api/models/data_type.rb +53 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_object_input.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_object_type.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_objects.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_type.rb +160 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_type1.rb +160 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_type3.rb +160 -0
- data/lib/thought_spot_public_rest_api/models/database.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/date_format_locale.rb +136 -0
- data/lib/thought_spot_public_rest_api/models/dbt_search_response.rb +151 -0
- data/lib/thought_spot_public_rest_api/models/deactivate_user_request.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/default_action_config.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/default_action_config_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/default_action_config_input_create.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/default_action_config_search_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/default_metadata_type.rb +53 -0
- data/lib/thought_spot_public_rest_api/models/delete_collection_request.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/delete_config_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/delete_connection_configuration_request.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/delete_connection_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/delete_metadata_request.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/delete_metadata_type_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/delete_org_email_customization_request.rb +77 -0
- data/lib/thought_spot_public_rest_api/models/delete_variables_request.rb +74 -0
- data/lib/thought_spot_public_rest_api/models/delete_webhook_configurations_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/dependent_object_version.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/deploy_commit_request.rb +115 -0
- data/lib/thought_spot_public_rest_api/models/deploy_policy.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/deploy_response.rb +124 -0
- data/lib/thought_spot_public_rest_api/models/deploy_type.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/edoc_format.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/edoc_format1.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/entity_header.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/eureka_data_source_suggestion_response.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/eureka_decompose_query_response.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/eureka_get_nl_instructions_response.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/eureka_get_relevant_questions_response.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/eureka_llm_decompose_query_response.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/eureka_llm_suggested_query.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/eureka_relevant_question.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/eureka_set_nl_instructions_response.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/event.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/event_channel_config.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/event_channel_config_input.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/event_type.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/event_type1.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/exclude_metadata_list_item_input.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/export_answer_report_request.rb +159 -0
- data/lib/thought_spot_public_rest_api/models/export_liveboard_report_request.rb +273 -0
- data/lib/thought_spot_public_rest_api/models/export_metadata_tml_batched_request.rb +133 -0
- data/lib/thought_spot_public_rest_api/models/export_metadata_tml_request.rb +196 -0
- data/lib/thought_spot_public_rest_api/models/export_metadata_type_input.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/export_options.rb +168 -0
- data/lib/thought_spot_public_rest_api/models/export_schema_version.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/external_table_input.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/favorite_metadata_input.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/favorite_metadata_item.rb +93 -0
- data/lib/thought_spot_public_rest_api/models/favorite_object_options_input.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/fetch_answer_data_request.rb +157 -0
- data/lib/thought_spot_public_rest_api/models/fetch_answer_sql_query_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/fetch_async_import_task_status_request.rb +134 -0
- data/lib/thought_spot_public_rest_api/models/fetch_column_security_rules_request.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/fetch_connection_diff_status_response.rb +77 -0
- data/lib/thought_spot_public_rest_api/models/fetch_liveboard_data_request.rb +185 -0
- data/lib/thought_spot_public_rest_api/models/fetch_liveboard_sql_query_request.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/fetch_logs_request.rb +112 -0
- data/lib/thought_spot_public_rest_api/models/fetch_object_privileges_request.rb +128 -0
- data/lib/thought_spot_public_rest_api/models/fetch_permissions_of_principals_request.rb +139 -0
- data/lib/thought_spot_public_rest_api/models/fetch_permissions_on_metadata_request.rb +159 -0
- data/lib/thought_spot_public_rest_api/models/field_name.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/field_name1.rb +60 -0
- data/lib/thought_spot_public_rest_api/models/field_name2.rb +68 -0
- data/lib/thought_spot_public_rest_api/models/field_name3.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/field_name4.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/field_type.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/field_type1.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/file_format.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/file_format2.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/filter_rules.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/force_logout_users_request.rb +77 -0
- data/lib/thought_spot_public_rest_api/models/frequency.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/frequency_input.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/gcp_web_identity_setup.rb +144 -0
- data/lib/thought_spot_public_rest_api/models/generate_csv_request.rb +140 -0
- data/lib/thought_spot_public_rest_api/models/generic_info.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/get_async_import_status_response.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/get_custom_access_token_request.rb +280 -0
- data/lib/thought_spot_public_rest_api/models/get_data_source_suggestions_request.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/get_full_access_token_request.rb +170 -0
- data/lib/thought_spot_public_rest_api/models/get_nl_instructions_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/get_object_access_token_request.rb +183 -0
- data/lib/thought_spot_public_rest_api/models/get_relevant_questions_request.rb +122 -0
- data/lib/thought_spot_public_rest_api/models/get_token_response.rb +117 -0
- data/lib/thought_spot_public_rest_api/models/group_info.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/group_object.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/groups_import_list_input.rb +176 -0
- data/lib/thought_spot_public_rest_api/models/header_attribute_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/header_update_input.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/import_e_pack_async_task_status.rb +241 -0
- data/lib/thought_spot_public_rest_api/models/import_metadata_tml_async_request.rb +143 -0
- data/lib/thought_spot_public_rest_api/models/import_metadata_tml_request.rb +146 -0
- data/lib/thought_spot_public_rest_api/models/import_policy.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/import_policy1.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/import_policy2.rb +46 -0
- data/lib/thought_spot_public_rest_api/models/import_type.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/import_user.rb +282 -0
- data/lib/thought_spot_public_rest_api/models/import_user_groups_request.rb +113 -0
- data/lib/thought_spot_public_rest_api/models/import_user_groups_response.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/import_user_type.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/import_users_request.rb +121 -0
- data/lib/thought_spot_public_rest_api/models/import_users_response.rb +127 -0
- data/lib/thought_spot_public_rest_api/models/import_worksheets.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/input_eureka_nls_request.rb +113 -0
- data/lib/thought_spot_public_rest_api/models/jwt_metadata_object.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/jwt_parameter.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/jwt_user_options.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/jwt_user_options_full.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/lb_context_input.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_content.rb +162 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_data_response.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_options.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_options_input.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_response_version.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/log_response.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/login_request.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/manage_object_privilege_request.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/metadata_association_item.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/metadata_context.rb +121 -0
- data/lib/thought_spot_public_rest_api/models/metadata_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/metadata_list_item_input.rb +146 -0
- data/lib/thought_spot_public_rest_api/models/metadata_object.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/metadata_response.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/metadata_search_response.rb +186 -0
- data/lib/thought_spot_public_rest_api/models/metadata_search_sort_options.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type.rb +68 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type1.rb +64 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type2.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type3.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type4.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type5.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type6.rb +50 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type7.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/model_table_list.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/month_offset.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/month_offset1.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/nl_instructions_info.rb +80 -0
- data/lib/thought_spot_public_rest_api/models/nl_instructions_info_input.rb +80 -0
- data/lib/thought_spot_public_rest_api/models/number_format_locale.rb +136 -0
- data/lib/thought_spot_public_rest_api/models/object_id_and_name.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/object_privilege_type.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/object_privileges_metadata_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/object_privileges_of_metadata_response.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/operation.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/operation1.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/operation2.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/operation3.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/operation4.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/operation5.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/operation6.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/operation7.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/operator.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/operator1.rb +93 -0
- data/lib/thought_spot_public_rest_api/models/order.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/order4.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/order5.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/org.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/org_channel_config_input.rb +124 -0
- data/lib/thought_spot_public_rest_api/models/org_channel_config_response.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/org_details.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/org_info.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/org_non_embed_access.rb +100 -0
- data/lib/thought_spot_public_rest_api/models/org_non_embed_access_input.rb +99 -0
- data/lib/thought_spot_public_rest_api/models/org_preference_search_criteria_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/org_response.rb +121 -0
- data/lib/thought_spot_public_rest_api/models/org_type.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/page_orientation.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/page_size.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/parameter_values.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/parameterize_metadata_request.rb +116 -0
- data/lib/thought_spot_public_rest_api/models/parameters_list_item.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/parameters_list_item_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/parent_type.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/parent_type1.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/pdf_options.rb +179 -0
- data/lib/thought_spot_public_rest_api/models/pdf_options_input.rb +151 -0
- data/lib/thought_spot_public_rest_api/models/permission.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/permission2.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/permission_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/permission_of_metadata_response.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/permission_of_principals_response.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/permissions_metadata_type_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/persist_option.rb +45 -0
- data/lib/thought_spot_public_rest_api/models/png_options_input.rb +144 -0
- data/lib/thought_spot_public_rest_api/models/policy_process.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/policy_process_options.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/policy_process_options_input.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/policy_type.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/policy_type1.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/position.rb +41 -0
- data/lib/thought_spot_public_rest_api/models/preferred_locale.rb +138 -0
- data/lib/thought_spot_public_rest_api/models/preferred_locale1.rb +138 -0
- data/lib/thought_spot_public_rest_api/models/principal_type.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/principal_type1.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/principal_type2.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/principal_type3.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/principals_input.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/principals_list_item.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/principals_list_item_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/privilege.rb +236 -0
- data/lib/thought_spot_public_rest_api/models/privilege1.rb +160 -0
- data/lib/thought_spot_public_rest_api/models/privilege2.rb +188 -0
- data/lib/thought_spot_public_rest_api/models/privilege4.rb +200 -0
- data/lib/thought_spot_public_rest_api/models/privilege8.rb +180 -0
- data/lib/thought_spot_public_rest_api/models/publish_metadata_list_item.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/publish_metadata_request.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/put_variable_values_request.rb +94 -0
- data/lib/thought_spot_public_rest_api/models/query_get_decomposed_query_request.rb +145 -0
- data/lib/thought_spot_public_rest_api/models/recipient_details.rb +99 -0
- data/lib/thought_spot_public_rest_api/models/recipient_details_input.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/regional_settings_input.rb +116 -0
- data/lib/thought_spot_public_rest_api/models/repo_config_object.rb +154 -0
- data/lib/thought_spot_public_rest_api/models/reset_event.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/reset_user_password_request.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/response_activation_url.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/response_content.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/response_copy_object.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/response_custom_action.rb +148 -0
- data/lib/thought_spot_public_rest_api/models/response_failed_entities.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_failed_entity.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/response_incomplete_entities.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_incomplete_entity.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/response_message.rb +134 -0
- data/lib/thought_spot_public_rest_api/models/response_post_upgrade_failed_entities.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_post_upgrade_failed_entity.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/response_schedule.rb +227 -0
- data/lib/thought_spot_public_rest_api/models/response_schedule_run.rb +115 -0
- data/lib/thought_spot_public_rest_api/models/response_successful_entities.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_successful_entity.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_worksheet_to_model_conversion.rb +174 -0
- data/lib/thought_spot_public_rest_api/models/result_code.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/revert_commit_request.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/revert_policy.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/revert_response.rb +172 -0
- data/lib/thought_spot_public_rest_api/models/reverted_metadata.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/revoke_refresh_tokens_request.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/revoke_refresh_tokens_response.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/revoke_token_request.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/rise_gql_arg_wrapper.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/rise_setter.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/role.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/role_response.rb +274 -0
- data/lib/thought_spot_public_rest_api/models/runtime_filter.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/runtime_filters.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/runtime_param_override.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/runtime_parameters.rb +116 -0
- data/lib/thought_spot_public_rest_api/models/runtime_sort.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/runtime_sorts.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/schedule_history_runs_options_input.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/schedules_pdf_options_input.rb +179 -0
- data/lib/thought_spot_public_rest_api/models/schema_object.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/scope.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/scope1.rb +38 -0
- data/lib/thought_spot_public_rest_api/models/script_src_urls.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/script_src_urls_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/search_calendars_request.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/search_channel_history_request.rb +139 -0
- data/lib/thought_spot_public_rest_api/models/search_channel_history_response.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/search_collections_request.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/search_commits_request.rb +127 -0
- data/lib/thought_spot_public_rest_api/models/search_communication_channel_preferences_request.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/search_config_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/search_connection_request.rb +209 -0
- data/lib/thought_spot_public_rest_api/models/search_connection_response.rb +129 -0
- data/lib/thought_spot_public_rest_api/models/search_custom_actions_request.rb +166 -0
- data/lib/thought_spot_public_rest_api/models/search_data_request.rb +173 -0
- data/lib/thought_spot_public_rest_api/models/search_data_response.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/search_email_customization_request.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/search_metadata_request.rb +446 -0
- data/lib/thought_spot_public_rest_api/models/search_orgs_request.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/search_role_response.rb +274 -0
- data/lib/thought_spot_public_rest_api/models/search_roles_request.rb +158 -0
- data/lib/thought_spot_public_rest_api/models/search_schedules_request.rb +139 -0
- data/lib/thought_spot_public_rest_api/models/search_security_settings_request.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/search_tags_request.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/search_user_groups_request.rb +265 -0
- data/lib/thought_spot_public_rest_api/models/search_users_request.rb +327 -0
- data/lib/thought_spot_public_rest_api/models/search_variables_request.rb +135 -0
- data/lib/thought_spot_public_rest_api/models/search_webhook_configurations_request.rb +132 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_cluster_preferences.rb +131 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_cluster_preferences_input.rb +131 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_org_details.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_org_preferences.rb +100 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_org_preferences_input.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_response.rb +99 -0
- data/lib/thought_spot_public_rest_api/models/send_agent_message_request.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/send_agent_message_response.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/send_agent_message_streaming_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/send_message_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/set_nl_instructions_request.rb +94 -0
- data/lib/thought_spot_public_rest_api/models/share_metadata_request.rb +207 -0
- data/lib/thought_spot_public_rest_api/models/share_metadata_type_input.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/share_mode.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/share_mode1.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/share_permissions_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/single_answer_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/sort_option.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/sort_option_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/sort_options.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/sorting_options.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/sql_query.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/sql_query_response.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/start_day_of_week.rb +56 -0
- data/lib/thought_spot_public_rest_api/models/start_day_of_week2.rb +56 -0
- data/lib/thought_spot_public_rest_api/models/status.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/status1.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/status2.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/status3.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/status4.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/storage_config.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/storage_config_input.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/storage_destination.rb +80 -0
- data/lib/thought_spot_public_rest_api/models/storage_destination_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/storage_setup_info.rb +175 -0
- data/lib/thought_spot_public_rest_api/models/subtype.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/system_config.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/system_info.rb +344 -0
- data/lib/thought_spot_public_rest_api/models/system_override_info.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/table.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/tag.rb +202 -0
- data/lib/thought_spot_public_rest_api/models/tag_metadata_type_input.rb +94 -0
- data/lib/thought_spot_public_rest_api/models/task_status.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/task_status1.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/template_properties_input_create.rb +440 -0
- data/lib/thought_spot_public_rest_api/models/time_zone.rb +2548 -0
- data/lib/thought_spot_public_rest_api/models/token.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/token_access_scope_object.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/token_validation_response.rb +114 -0
- data/lib/thought_spot_public_rest_api/models/type.rb +66 -0
- data/lib/thought_spot_public_rest_api/models/type1.rb +38 -0
- data/lib/thought_spot_public_rest_api/models/type10.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/type11.rb +28 -0
- data/lib/thought_spot_public_rest_api/models/type13.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/type15.rb +60 -0
- data/lib/thought_spot_public_rest_api/models/type16.rb +60 -0
- data/lib/thought_spot_public_rest_api/models/type17.rb +66 -0
- data/lib/thought_spot_public_rest_api/models/type18.rb +50 -0
- data/lib/thought_spot_public_rest_api/models/type19.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/type2.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/type20.rb +46 -0
- data/lib/thought_spot_public_rest_api/models/type21.rb +50 -0
- data/lib/thought_spot_public_rest_api/models/type22.rb +46 -0
- data/lib/thought_spot_public_rest_api/models/type23.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/type24.rb +42 -0
- data/lib/thought_spot_public_rest_api/models/type26.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/type27.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/type28.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/type29.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/type3.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/type31.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/type32.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/type4.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/type5.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/type6.rb +28 -0
- data/lib/thought_spot_public_rest_api/models/type7.rb +50 -0
- data/lib/thought_spot_public_rest_api/models/type8.rb +42 -0
- data/lib/thought_spot_public_rest_api/models/type9.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/unassign_tag_request.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/unparameterize_metadata_request.rb +113 -0
- data/lib/thought_spot_public_rest_api/models/unpublish_metadata_request.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/update_calendar_request.rb +173 -0
- data/lib/thought_spot_public_rest_api/models/update_collection_request.rb +114 -0
- data/lib/thought_spot_public_rest_api/models/update_column_security_rules_request.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/update_config_request.rb +161 -0
- data/lib/thought_spot_public_rest_api/models/update_connection_configuration_request.rb +200 -0
- data/lib/thought_spot_public_rest_api/models/update_connection_request.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/update_connection_v2_request.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/update_custom_action_request.rb +144 -0
- data/lib/thought_spot_public_rest_api/models/update_email_customization_request.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/update_metadata_header_request.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/update_metadata_obj_id_request.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/update_method.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/update_obj_id_input.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/update_org_request.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/update_role_request.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/update_schedule_request.rb +194 -0
- data/lib/thought_spot_public_rest_api/models/update_system_config_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/update_tag_request.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/update_user_group_request.rb +191 -0
- data/lib/thought_spot_public_rest_api/models/update_user_request.rb +305 -0
- data/lib/thought_spot_public_rest_api/models/update_variable_request.rb +72 -0
- data/lib/thought_spot_public_rest_api/models/update_variable_values_request.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/update_webhook_configuration_request.rb +178 -0
- data/lib/thought_spot_public_rest_api/models/url.rb +117 -0
- data/lib/thought_spot_public_rest_api/models/url_input.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/url_input_mandatory.rb +117 -0
- data/lib/thought_spot_public_rest_api/models/user.rb +684 -0
- data/lib/thought_spot_public_rest_api/models/user_group.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/user_group_response.rb +455 -0
- data/lib/thought_spot_public_rest_api/models/user_info.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/user_locale.rb +136 -0
- data/lib/thought_spot_public_rest_api/models/user_object.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/user_parameter_options.rb +163 -0
- data/lib/thought_spot_public_rest_api/models/user_principal.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/validate_communication_channel_request.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/validate_merge_request.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/validate_token_request.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/validation_step.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/value_scope_input.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/variable.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/variable_detail_input.rb +100 -0
- data/lib/thought_spot_public_rest_api/models/variable_put_assignment_input.rb +138 -0
- data/lib/thought_spot_public_rest_api/models/variable_type.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/variable_update_assignment_input.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/variable_update_scope_input.rb +130 -0
- data/lib/thought_spot_public_rest_api/models/variable_value.rb +151 -0
- data/lib/thought_spot_public_rest_api/models/variable_values.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/visibility.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility1.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/visibility10.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/visibility2.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility3.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility5.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility7.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility8.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/visibility9.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visualization_type.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_api_key.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_api_key_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_basic_auth.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_basic_auth_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_oauth_2.rb +93 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_oauth_2_input.rb +93 -0
- data/lib/thought_spot_public_rest_api/models/webhook_authentication.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/webhook_authentication_input.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/webhook_delete_failure.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/webhook_delete_response.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/webhook_key_value_pair.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_key_value_pair_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_org.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_pagination.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/webhook_response.rb +234 -0
- data/lib/thought_spot_public_rest_api/models/webhook_search_response.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/webhook_signature_verification.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/webhook_signature_verification_input.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/webhook_sort_options_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/webhook_user.rb +82 -0
- data/lib/thought_spot_public_rest_api/utilities/date_time_helper.rb +11 -0
- data/lib/thought_spot_public_rest_api/utilities/file_wrapper.rb +28 -0
- data/lib/thought_spot_public_rest_api/utilities/union_type_lookup.rb +67 -0
- data/lib/thought_spot_public_rest_api.rb +801 -0
- metadata +695 -0
|
@@ -0,0 +1,801 @@
|
|
|
1
|
+
# thought_spot_public_rest_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by
|
|
4
|
+
# APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
require 'date'
|
|
7
|
+
require 'json'
|
|
8
|
+
|
|
9
|
+
require 'apimatic_core_interfaces'
|
|
10
|
+
require 'apimatic_core'
|
|
11
|
+
require 'apimatic_faraday_client_adapter'
|
|
12
|
+
|
|
13
|
+
require_relative 'thought_spot_public_rest_api/api_helper'
|
|
14
|
+
require_relative 'thought_spot_public_rest_api/client'
|
|
15
|
+
|
|
16
|
+
# Utilities
|
|
17
|
+
require_relative 'thought_spot_public_rest_api/utilities/file_wrapper'
|
|
18
|
+
require_relative 'thought_spot_public_rest_api/utilities/date_time_helper'
|
|
19
|
+
require_relative 'thought_spot_public_rest_api/utilities/union_type_lookup'
|
|
20
|
+
|
|
21
|
+
# Http
|
|
22
|
+
require_relative 'thought_spot_public_rest_api/http/api_response'
|
|
23
|
+
require_relative 'thought_spot_public_rest_api/http/http_call_back'
|
|
24
|
+
require_relative 'thought_spot_public_rest_api/http/http_method_enum'
|
|
25
|
+
require_relative 'thought_spot_public_rest_api/http/http_request'
|
|
26
|
+
require_relative 'thought_spot_public_rest_api/http/http_response'
|
|
27
|
+
require_relative 'thought_spot_public_rest_api/http/proxy_settings'
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# Logger
|
|
31
|
+
require_relative 'thought_spot_public_rest_api/logging/configuration/' \
|
|
32
|
+
'api_logging_configuration'
|
|
33
|
+
require_relative 'thought_spot_public_rest_api/logging/sdk_logger'
|
|
34
|
+
require_relative 'thought_spot_public_rest_api/http/auth/oauth_2'
|
|
35
|
+
|
|
36
|
+
# Models
|
|
37
|
+
require_relative 'thought_spot_public_rest_api/models/base_model'
|
|
38
|
+
require_relative 'thought_spot_public_rest_api/models/get_token_response'
|
|
39
|
+
require_relative 'thought_spot_public_rest_api/models/rise_setter'
|
|
40
|
+
require_relative 'thought_spot_public_rest_api/models/user'
|
|
41
|
+
require_relative 'thought_spot_public_rest_api/models/org'
|
|
42
|
+
require_relative 'thought_spot_public_rest_api/models/favorite_metadata_item'
|
|
43
|
+
require_relative 'thought_spot_public_rest_api/models/object_id_and_name'
|
|
44
|
+
require_relative 'thought_spot_public_rest_api/models/favorite_metadata_input'
|
|
45
|
+
require_relative 'thought_spot_public_rest_api/models/sort_options'
|
|
46
|
+
require_relative 'thought_spot_public_rest_api/models/system_info'
|
|
47
|
+
require_relative 'thought_spot_public_rest_api/models/system_config'
|
|
48
|
+
require_relative 'thought_spot_public_rest_api/models/system_override_info'
|
|
49
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
50
|
+
'org_preference_search_criteria_input'
|
|
51
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
52
|
+
'communication_channel_preferences_response'
|
|
53
|
+
require_relative 'thought_spot_public_rest_api/models/event_channel_config'
|
|
54
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
55
|
+
'org_channel_config_response'
|
|
56
|
+
require_relative 'thought_spot_public_rest_api/models/org_details'
|
|
57
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
58
|
+
'security_settings_response'
|
|
59
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
60
|
+
'security_settings_cluster_preferences'
|
|
61
|
+
require_relative 'thought_spot_public_rest_api/models/csp_settings'
|
|
62
|
+
require_relative 'thought_spot_public_rest_api/models/script_src_urls'
|
|
63
|
+
require_relative 'thought_spot_public_rest_api/models/cluster_non_embed_access'
|
|
64
|
+
require_relative 'thought_spot_public_rest_api/models/group_info'
|
|
65
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
66
|
+
'security_settings_org_preferences'
|
|
67
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
68
|
+
'security_settings_org_details'
|
|
69
|
+
require_relative 'thought_spot_public_rest_api/models/org_non_embed_access'
|
|
70
|
+
require_relative 'thought_spot_public_rest_api/models/org_response'
|
|
71
|
+
require_relative 'thought_spot_public_rest_api/models/tag'
|
|
72
|
+
require_relative 'thought_spot_public_rest_api/models/user_group_response'
|
|
73
|
+
require_relative 'thought_spot_public_rest_api/models/role'
|
|
74
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_list_item_input'
|
|
75
|
+
require_relative 'thought_spot_public_rest_api/models/permission_input'
|
|
76
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
77
|
+
'exclude_metadata_list_item_input'
|
|
78
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
79
|
+
'favorite_object_options_input'
|
|
80
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
81
|
+
'metadata_search_sort_options'
|
|
82
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_search_response'
|
|
83
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
84
|
+
'get_async_import_status_response'
|
|
85
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
86
|
+
'import_e_pack_async_task_status'
|
|
87
|
+
require_relative 'thought_spot_public_rest_api/models/sql_query_response'
|
|
88
|
+
require_relative 'thought_spot_public_rest_api/models/sql_query'
|
|
89
|
+
require_relative 'thought_spot_public_rest_api/models/pdf_options_input'
|
|
90
|
+
require_relative 'thought_spot_public_rest_api/models/png_options_input'
|
|
91
|
+
require_relative 'thought_spot_public_rest_api/models/regional_settings_input'
|
|
92
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
93
|
+
'permission_of_principals_response'
|
|
94
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
95
|
+
'permission_of_metadata_response'
|
|
96
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
97
|
+
'object_privileges_metadata_input'
|
|
98
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
99
|
+
'object_privileges_of_metadata_response'
|
|
100
|
+
require_relative 'thought_spot_public_rest_api/models/principals_input'
|
|
101
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
102
|
+
'permissions_metadata_type_input'
|
|
103
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
104
|
+
'column_security_rule_table_input'
|
|
105
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
106
|
+
'column_security_rule_response'
|
|
107
|
+
require_relative 'thought_spot_public_rest_api/models/column_security_rule'
|
|
108
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
109
|
+
'column_security_rule_column'
|
|
110
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
111
|
+
'column_security_rule_group'
|
|
112
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
113
|
+
'column_security_rule_source_table'
|
|
114
|
+
require_relative 'thought_spot_public_rest_api/models/search_data_response'
|
|
115
|
+
require_relative 'thought_spot_public_rest_api/models/answer_content'
|
|
116
|
+
require_relative 'thought_spot_public_rest_api/models/liveboard_data_response'
|
|
117
|
+
require_relative 'thought_spot_public_rest_api/models/liveboard_content'
|
|
118
|
+
require_relative 'thought_spot_public_rest_api/models/answer_data_response'
|
|
119
|
+
require_relative 'thought_spot_public_rest_api/models/log_response'
|
|
120
|
+
require_relative 'thought_spot_public_rest_api/models/repo_config_object'
|
|
121
|
+
require_relative 'thought_spot_public_rest_api/models/commit_history_response'
|
|
122
|
+
require_relative 'thought_spot_public_rest_api/models/commiter_type'
|
|
123
|
+
require_relative 'thought_spot_public_rest_api/models/author_type'
|
|
124
|
+
require_relative 'thought_spot_public_rest_api/models/connection_input'
|
|
125
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
126
|
+
'data_warehouse_object_input'
|
|
127
|
+
require_relative 'thought_spot_public_rest_api/models/sort_option_input'
|
|
128
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
129
|
+
'search_connection_response'
|
|
130
|
+
require_relative 'thought_spot_public_rest_api/models/data_warehouse_objects'
|
|
131
|
+
require_relative 'thought_spot_public_rest_api/models/database'
|
|
132
|
+
require_relative 'thought_spot_public_rest_api/models/schema_object'
|
|
133
|
+
require_relative 'thought_spot_public_rest_api/models/table'
|
|
134
|
+
require_relative 'thought_spot_public_rest_api/models/column'
|
|
135
|
+
require_relative 'thought_spot_public_rest_api/models/search_role_response'
|
|
136
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
137
|
+
'default_action_config_search_input'
|
|
138
|
+
require_relative 'thought_spot_public_rest_api/models/response_custom_action'
|
|
139
|
+
require_relative 'thought_spot_public_rest_api/models/action_details'
|
|
140
|
+
require_relative 'thought_spot_public_rest_api/models/callback'
|
|
141
|
+
require_relative 'thought_spot_public_rest_api/models/url'
|
|
142
|
+
require_relative 'thought_spot_public_rest_api/models/authentication'
|
|
143
|
+
require_relative 'thought_spot_public_rest_api/models/api_key'
|
|
144
|
+
require_relative 'thought_spot_public_rest_api/models/basic_auth'
|
|
145
|
+
require_relative 'thought_spot_public_rest_api/models/parameters_list_item'
|
|
146
|
+
require_relative 'thought_spot_public_rest_api/models/default_action_config'
|
|
147
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_association_item'
|
|
148
|
+
require_relative 'thought_spot_public_rest_api/models/action_config'
|
|
149
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
150
|
+
'custom_action_metadata_type_input'
|
|
151
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_context'
|
|
152
|
+
require_relative 'thought_spot_public_rest_api/models/ai_context'
|
|
153
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
154
|
+
'eureka_get_relevant_questions_response'
|
|
155
|
+
require_relative 'thought_spot_public_rest_api/models/eureka_relevant_question'
|
|
156
|
+
require_relative 'thought_spot_public_rest_api/models/input_eureka_nls_request'
|
|
157
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
158
|
+
'eureka_decompose_query_response'
|
|
159
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
160
|
+
'eureka_llm_decompose_query_response'
|
|
161
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
162
|
+
'eureka_llm_suggested_query'
|
|
163
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
164
|
+
'eureka_data_source_suggestion_response'
|
|
165
|
+
require_relative 'thought_spot_public_rest_api/models/data_source'
|
|
166
|
+
require_relative 'thought_spot_public_rest_api/models/entity_header'
|
|
167
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
168
|
+
'eureka_get_nl_instructions_response'
|
|
169
|
+
require_relative 'thought_spot_public_rest_api/models/nl_instructions_info'
|
|
170
|
+
require_relative 'thought_spot_public_rest_api/models/rise_gql_arg_wrapper'
|
|
171
|
+
require_relative 'thought_spot_public_rest_api/models/variable_detail_input'
|
|
172
|
+
require_relative 'thought_spot_public_rest_api/models/value_scope_input'
|
|
173
|
+
require_relative 'thought_spot_public_rest_api/models/variable'
|
|
174
|
+
require_relative 'thought_spot_public_rest_api/models/variable_value'
|
|
175
|
+
require_relative 'thought_spot_public_rest_api/models/sort_option'
|
|
176
|
+
require_relative 'thought_spot_public_rest_api/models/calendar_response'
|
|
177
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
178
|
+
'connection_configuration_response'
|
|
179
|
+
require_relative 'thought_spot_public_rest_api/models/user_principal'
|
|
180
|
+
require_relative 'thought_spot_public_rest_api/models/policy_process_options'
|
|
181
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
182
|
+
'webhook_sort_options_input'
|
|
183
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_search_response'
|
|
184
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_response'
|
|
185
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_org'
|
|
186
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_authentication'
|
|
187
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_auth_api_key'
|
|
188
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_auth_basic_auth'
|
|
189
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_auth_oauth_2'
|
|
190
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
191
|
+
'webhook_signature_verification'
|
|
192
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_key_value_pair'
|
|
193
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_user'
|
|
194
|
+
require_relative 'thought_spot_public_rest_api/models/storage_destination'
|
|
195
|
+
require_relative 'thought_spot_public_rest_api/models/storage_config'
|
|
196
|
+
require_relative 'thought_spot_public_rest_api/models/aws_s3_config'
|
|
197
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_pagination'
|
|
198
|
+
require_relative 'thought_spot_public_rest_api/models/storage_setup_info'
|
|
199
|
+
require_relative 'thought_spot_public_rest_api/models/aws_assume_role_setup'
|
|
200
|
+
require_relative 'thought_spot_public_rest_api/models/gcp_web_identity_setup'
|
|
201
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
202
|
+
'collection_search_response'
|
|
203
|
+
require_relative 'thought_spot_public_rest_api/models/collection'
|
|
204
|
+
require_relative 'thought_spot_public_rest_api/models/collection_metadata_item'
|
|
205
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
206
|
+
'collection_entity_identifier'
|
|
207
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
208
|
+
'channel_history_event_input'
|
|
209
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
210
|
+
'search_channel_history_response'
|
|
211
|
+
require_relative 'thought_spot_public_rest_api/models/channel_history_job'
|
|
212
|
+
require_relative 'thought_spot_public_rest_api/models/generic_info'
|
|
213
|
+
require_relative 'thought_spot_public_rest_api/models/user_group'
|
|
214
|
+
require_relative 'thought_spot_public_rest_api/models/jwt_user_options'
|
|
215
|
+
require_relative 'thought_spot_public_rest_api/models/jwt_parameter'
|
|
216
|
+
require_relative 'thought_spot_public_rest_api/models/jwt_metadata_object'
|
|
217
|
+
require_relative 'thought_spot_public_rest_api/models/user_parameter_options'
|
|
218
|
+
require_relative 'thought_spot_public_rest_api/models/user_object'
|
|
219
|
+
require_relative 'thought_spot_public_rest_api/models/runtime_filters'
|
|
220
|
+
require_relative 'thought_spot_public_rest_api/models/runtime_sorts'
|
|
221
|
+
require_relative 'thought_spot_public_rest_api/models/runtime_parameters'
|
|
222
|
+
require_relative 'thought_spot_public_rest_api/models/token'
|
|
223
|
+
require_relative 'thought_spot_public_rest_api/models/scope'
|
|
224
|
+
require_relative 'thought_spot_public_rest_api/models/jwt_user_options_full'
|
|
225
|
+
require_relative 'thought_spot_public_rest_api/models/token_validation_response'
|
|
226
|
+
require_relative 'thought_spot_public_rest_api/models/filter_rules'
|
|
227
|
+
require_relative 'thought_spot_public_rest_api/models/parameter_values'
|
|
228
|
+
require_relative 'thought_spot_public_rest_api/models/variable_values'
|
|
229
|
+
require_relative 'thought_spot_public_rest_api/models/token_access_scope_object'
|
|
230
|
+
require_relative 'thought_spot_public_rest_api/models/group_object'
|
|
231
|
+
require_relative 'thought_spot_public_rest_api/models/access_token'
|
|
232
|
+
require_relative 'thought_spot_public_rest_api/models/org_info'
|
|
233
|
+
require_relative 'thought_spot_public_rest_api/models/user_info'
|
|
234
|
+
require_relative 'thought_spot_public_rest_api/models/response_activation_url'
|
|
235
|
+
require_relative 'thought_spot_public_rest_api/models/import_user'
|
|
236
|
+
require_relative 'thought_spot_public_rest_api/models/import_users_response'
|
|
237
|
+
require_relative 'thought_spot_public_rest_api/models/import_user_type'
|
|
238
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
239
|
+
'event_channel_config_input'
|
|
240
|
+
require_relative 'thought_spot_public_rest_api/models/org_channel_config_input'
|
|
241
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
242
|
+
'security_settings_cluster_preferences_input'
|
|
243
|
+
require_relative 'thought_spot_public_rest_api/models/csp_settings_input'
|
|
244
|
+
require_relative 'thought_spot_public_rest_api/models/script_src_urls_input'
|
|
245
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
246
|
+
'cluster_non_embed_access_input'
|
|
247
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
248
|
+
'security_settings_org_preferences_input'
|
|
249
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
250
|
+
'org_non_embed_access_input'
|
|
251
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
252
|
+
'communication_channel_validate_response'
|
|
253
|
+
require_relative 'thought_spot_public_rest_api/models/channel_validation_detail'
|
|
254
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
255
|
+
'channel_validation_aws_s3_info'
|
|
256
|
+
require_relative 'thought_spot_public_rest_api/models/tag_metadata_type_input'
|
|
257
|
+
require_relative 'thought_spot_public_rest_api/models/groups_import_list_input'
|
|
258
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
259
|
+
'import_user_groups_response'
|
|
260
|
+
require_relative 'thought_spot_public_rest_api/models/export_options'
|
|
261
|
+
require_relative 'thought_spot_public_rest_api/models/response_copy_object'
|
|
262
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
263
|
+
'response_worksheet_to_model_conversion'
|
|
264
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
265
|
+
'response_successful_entities'
|
|
266
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
267
|
+
'response_successful_entity'
|
|
268
|
+
require_relative 'thought_spot_public_rest_api/models/response_failed_entities'
|
|
269
|
+
require_relative 'thought_spot_public_rest_api/models/response_failed_entity'
|
|
270
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
271
|
+
'response_incomplete_entities'
|
|
272
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
273
|
+
'response_incomplete_entity'
|
|
274
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
275
|
+
'response_post_upgrade_failed_entities'
|
|
276
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
277
|
+
'response_post_upgrade_failed_entity'
|
|
278
|
+
require_relative 'thought_spot_public_rest_api/models/header_update_input'
|
|
279
|
+
require_relative 'thought_spot_public_rest_api/models/header_attribute_input'
|
|
280
|
+
require_relative 'thought_spot_public_rest_api/models/update_obj_id_input'
|
|
281
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
282
|
+
'export_metadata_type_input'
|
|
283
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
284
|
+
'delete_metadata_type_input'
|
|
285
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
286
|
+
'publish_metadata_list_item'
|
|
287
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
288
|
+
'author_metadata_type_input'
|
|
289
|
+
require_relative 'thought_spot_public_rest_api/models/share_metadata_type_input'
|
|
290
|
+
require_relative 'thought_spot_public_rest_api/models/share_permissions_input'
|
|
291
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
292
|
+
'column_security_rule_update'
|
|
293
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
294
|
+
'column_security_rule_group_operation'
|
|
295
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_object'
|
|
296
|
+
require_relative 'thought_spot_public_rest_api/models/commit_response'
|
|
297
|
+
require_relative 'thought_spot_public_rest_api/models/commit_file_type'
|
|
298
|
+
require_relative 'thought_spot_public_rest_api/models/revert_response'
|
|
299
|
+
require_relative 'thought_spot_public_rest_api/models/reverted_metadata'
|
|
300
|
+
require_relative 'thought_spot_public_rest_api/models/deploy_response'
|
|
301
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
302
|
+
'create_connection_response'
|
|
303
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
304
|
+
'fetch_connection_diff_status_response'
|
|
305
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
306
|
+
'revoke_refresh_tokens_response'
|
|
307
|
+
require_relative 'thought_spot_public_rest_api/models/role_response'
|
|
308
|
+
require_relative 'thought_spot_public_rest_api/models/liveboard_options_input'
|
|
309
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
310
|
+
'schedules_pdf_options_input'
|
|
311
|
+
require_relative 'thought_spot_public_rest_api/models/frequency_input'
|
|
312
|
+
require_relative 'thought_spot_public_rest_api/models/cron_expression_input'
|
|
313
|
+
require_relative 'thought_spot_public_rest_api/models/recipient_details_input'
|
|
314
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
315
|
+
'principals_list_item_input'
|
|
316
|
+
require_relative 'thought_spot_public_rest_api/models/response_schedule'
|
|
317
|
+
require_relative 'thought_spot_public_rest_api/models/author'
|
|
318
|
+
require_relative 'thought_spot_public_rest_api/models/frequency'
|
|
319
|
+
require_relative 'thought_spot_public_rest_api/models/cron_expression'
|
|
320
|
+
require_relative 'thought_spot_public_rest_api/models/liveboard_options'
|
|
321
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_response'
|
|
322
|
+
require_relative 'thought_spot_public_rest_api/models/pdf_options'
|
|
323
|
+
require_relative 'thought_spot_public_rest_api/models/recipient_details'
|
|
324
|
+
require_relative 'thought_spot_public_rest_api/models/principals_list_item'
|
|
325
|
+
require_relative 'thought_spot_public_rest_api/models/response_schedule_run'
|
|
326
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_input'
|
|
327
|
+
require_relative 'thought_spot_public_rest_api/models/sorting_options'
|
|
328
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
329
|
+
'schedule_history_runs_options_input'
|
|
330
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
331
|
+
'action_details_input_create'
|
|
332
|
+
require_relative 'thought_spot_public_rest_api/models/callback_input_mandatory'
|
|
333
|
+
require_relative 'thought_spot_public_rest_api/models/url_input_mandatory'
|
|
334
|
+
require_relative 'thought_spot_public_rest_api/models/authentication_input'
|
|
335
|
+
require_relative 'thought_spot_public_rest_api/models/api_key_input'
|
|
336
|
+
require_relative 'thought_spot_public_rest_api/models/basic_auth_input'
|
|
337
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
338
|
+
'parameters_list_item_input'
|
|
339
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
340
|
+
'associate_metadata_input_create'
|
|
341
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
342
|
+
'action_config_input_create'
|
|
343
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
344
|
+
'default_action_config_input_create'
|
|
345
|
+
require_relative 'thought_spot_public_rest_api/models/action_details_input'
|
|
346
|
+
require_relative 'thought_spot_public_rest_api/models/callback_input'
|
|
347
|
+
require_relative 'thought_spot_public_rest_api/models/url_input'
|
|
348
|
+
require_relative 'thought_spot_public_rest_api/models/associate_metadata_input'
|
|
349
|
+
require_relative 'thought_spot_public_rest_api/models/action_config_input'
|
|
350
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
351
|
+
'default_action_config_input'
|
|
352
|
+
require_relative 'thought_spot_public_rest_api/models/model_table_list'
|
|
353
|
+
require_relative 'thought_spot_public_rest_api/models/dbt_search_response'
|
|
354
|
+
require_relative 'thought_spot_public_rest_api/models/conversation'
|
|
355
|
+
require_relative 'thought_spot_public_rest_api/models/response_message'
|
|
356
|
+
require_relative 'thought_spot_public_rest_api/models/context_payload_v2_input'
|
|
357
|
+
require_relative 'thought_spot_public_rest_api/models/answer_context_input'
|
|
358
|
+
require_relative 'thought_spot_public_rest_api/models/lb_context_input'
|
|
359
|
+
require_relative 'thought_spot_public_rest_api/models/data_source_context_input'
|
|
360
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
361
|
+
'conversation_settings_input'
|
|
362
|
+
require_relative 'thought_spot_public_rest_api/models/agent_conversation'
|
|
363
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
364
|
+
'send_agent_message_response'
|
|
365
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
366
|
+
'nl_instructions_info_input'
|
|
367
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
368
|
+
'eureka_set_nl_instructions_response'
|
|
369
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
370
|
+
'variable_update_assignment_input'
|
|
371
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
372
|
+
'variable_update_scope_input'
|
|
373
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
374
|
+
'variable_put_assignment_input'
|
|
375
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
376
|
+
'create_email_customization_response'
|
|
377
|
+
require_relative 'thought_spot_public_rest_api/models/org_type'
|
|
378
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
379
|
+
'template_properties_input_create'
|
|
380
|
+
require_relative 'thought_spot_public_rest_api/models/external_table_input'
|
|
381
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
382
|
+
'policy_process_options_input'
|
|
383
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
384
|
+
'webhook_authentication_input'
|
|
385
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
386
|
+
'webhook_auth_api_key_input'
|
|
387
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
388
|
+
'webhook_auth_basic_auth_input'
|
|
389
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
390
|
+
'webhook_auth_oauth_2_input'
|
|
391
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
392
|
+
'webhook_signature_verification_input'
|
|
393
|
+
require_relative 'thought_spot_public_rest_api/models/storage_destination_input'
|
|
394
|
+
require_relative 'thought_spot_public_rest_api/models/storage_config_input'
|
|
395
|
+
require_relative 'thought_spot_public_rest_api/models/aws_s3_config_input'
|
|
396
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
397
|
+
'webhook_key_value_pair_input'
|
|
398
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_delete_response'
|
|
399
|
+
require_relative 'thought_spot_public_rest_api/models/webhook_delete_failure'
|
|
400
|
+
require_relative 'thought_spot_public_rest_api/models/collection_metadata_input'
|
|
401
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
402
|
+
'collection_delete_response'
|
|
403
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
404
|
+
'collection_delete_type_identifiers'
|
|
405
|
+
require_relative 'thought_spot_public_rest_api/models/runtime_filter'
|
|
406
|
+
require_relative 'thought_spot_public_rest_api/models/runtime_sort'
|
|
407
|
+
require_relative 'thought_spot_public_rest_api/models/runtime_param_override'
|
|
408
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
409
|
+
'create_agent_conversation_request'
|
|
410
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
411
|
+
'create_conversation_request'
|
|
412
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
413
|
+
'get_data_source_suggestions_request'
|
|
414
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
415
|
+
'get_nl_instructions_request'
|
|
416
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
417
|
+
'get_relevant_questions_request'
|
|
418
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
419
|
+
'query_get_decomposed_query_request'
|
|
420
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
421
|
+
'send_agent_message_request'
|
|
422
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
423
|
+
'send_agent_message_streaming_request'
|
|
424
|
+
require_relative 'thought_spot_public_rest_api/models/send_message_request'
|
|
425
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
426
|
+
'set_nl_instructions_request'
|
|
427
|
+
require_relative 'thought_spot_public_rest_api/models/single_answer_request'
|
|
428
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
429
|
+
'get_custom_access_token_request'
|
|
430
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
431
|
+
'get_full_access_token_request'
|
|
432
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
433
|
+
'get_object_access_token_request'
|
|
434
|
+
require_relative 'thought_spot_public_rest_api/models/login_request'
|
|
435
|
+
require_relative 'thought_spot_public_rest_api/models/revoke_token_request'
|
|
436
|
+
require_relative 'thought_spot_public_rest_api/models/validate_token_request'
|
|
437
|
+
require_relative 'thought_spot_public_rest_api/models/create_collection_request'
|
|
438
|
+
require_relative 'thought_spot_public_rest_api/models/delete_collection_request'
|
|
439
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
440
|
+
'search_collections_request'
|
|
441
|
+
require_relative 'thought_spot_public_rest_api/models/update_collection_request'
|
|
442
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
443
|
+
'connection_configuration_search_request'
|
|
444
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
445
|
+
'create_connection_configuration_request'
|
|
446
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
447
|
+
'delete_connection_configuration_request'
|
|
448
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
449
|
+
'update_connection_configuration_request'
|
|
450
|
+
require_relative 'thought_spot_public_rest_api/models/create_connection_request'
|
|
451
|
+
require_relative 'thought_spot_public_rest_api/models/delete_connection_request'
|
|
452
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
453
|
+
'revoke_refresh_tokens_request'
|
|
454
|
+
require_relative 'thought_spot_public_rest_api/models/search_connection_request'
|
|
455
|
+
require_relative 'thought_spot_public_rest_api/models/update_connection_request'
|
|
456
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
457
|
+
'update_connection_v2_request'
|
|
458
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
459
|
+
'create_custom_action_request'
|
|
460
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
461
|
+
'search_custom_actions_request'
|
|
462
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
463
|
+
'update_custom_action_request'
|
|
464
|
+
require_relative 'thought_spot_public_rest_api/models/create_calendar_request'
|
|
465
|
+
require_relative 'thought_spot_public_rest_api/models/generate_csv_request'
|
|
466
|
+
require_relative 'thought_spot_public_rest_api/models/search_calendars_request'
|
|
467
|
+
require_relative 'thought_spot_public_rest_api/models/update_calendar_request'
|
|
468
|
+
require_relative 'thought_spot_public_rest_api/models/fetch_answer_data_request'
|
|
469
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
470
|
+
'fetch_liveboard_data_request'
|
|
471
|
+
require_relative 'thought_spot_public_rest_api/models/search_data_request'
|
|
472
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
473
|
+
'create_email_customization_request'
|
|
474
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
475
|
+
'delete_org_email_customization_request'
|
|
476
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
477
|
+
'search_email_customization_request'
|
|
478
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
479
|
+
'update_email_customization_request'
|
|
480
|
+
require_relative 'thought_spot_public_rest_api/models/create_user_group_request'
|
|
481
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
482
|
+
'import_user_groups_request'
|
|
483
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
484
|
+
'search_user_groups_request'
|
|
485
|
+
require_relative 'thought_spot_public_rest_api/models/update_user_group_request'
|
|
486
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
487
|
+
'search_channel_history_request'
|
|
488
|
+
require_relative 'thought_spot_public_rest_api/models/fetch_logs_request'
|
|
489
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
490
|
+
'convert_worksheet_to_model_request'
|
|
491
|
+
require_relative 'thought_spot_public_rest_api/models/copy_object_request'
|
|
492
|
+
require_relative 'thought_spot_public_rest_api/models/delete_metadata_request'
|
|
493
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
494
|
+
'export_metadata_tml_request'
|
|
495
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
496
|
+
'export_metadata_tml_batched_request'
|
|
497
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
498
|
+
'fetch_answer_sql_query_request'
|
|
499
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
500
|
+
'fetch_async_import_task_status_request'
|
|
501
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
502
|
+
'fetch_liveboard_sql_query_request'
|
|
503
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
504
|
+
'import_metadata_tml_request'
|
|
505
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
506
|
+
'import_metadata_tml_async_request'
|
|
507
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
508
|
+
'parameterize_metadata_request'
|
|
509
|
+
require_relative 'thought_spot_public_rest_api/models/search_metadata_request'
|
|
510
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
511
|
+
'unparameterize_metadata_request'
|
|
512
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
513
|
+
'update_metadata_header_request'
|
|
514
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
515
|
+
'update_metadata_obj_id_request'
|
|
516
|
+
require_relative 'thought_spot_public_rest_api/models/create_org_request'
|
|
517
|
+
require_relative 'thought_spot_public_rest_api/models/search_orgs_request'
|
|
518
|
+
require_relative 'thought_spot_public_rest_api/models/update_org_request'
|
|
519
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
520
|
+
'export_answer_report_request'
|
|
521
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
522
|
+
'export_liveboard_report_request'
|
|
523
|
+
require_relative 'thought_spot_public_rest_api/models/create_role_request'
|
|
524
|
+
require_relative 'thought_spot_public_rest_api/models/search_roles_request'
|
|
525
|
+
require_relative 'thought_spot_public_rest_api/models/update_role_request'
|
|
526
|
+
require_relative 'thought_spot_public_rest_api/models/create_schedule_request'
|
|
527
|
+
require_relative 'thought_spot_public_rest_api/models/search_schedules_request'
|
|
528
|
+
require_relative 'thought_spot_public_rest_api/models/update_schedule_request'
|
|
529
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
530
|
+
'assign_change_author_request'
|
|
531
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
532
|
+
'fetch_column_security_rules_request'
|
|
533
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
534
|
+
'fetch_object_privileges_request'
|
|
535
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
536
|
+
'fetch_permissions_of_principals_request'
|
|
537
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
538
|
+
'fetch_permissions_on_metadata_request'
|
|
539
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
540
|
+
'manage_object_privilege_request'
|
|
541
|
+
require_relative 'thought_spot_public_rest_api/models/publish_metadata_request'
|
|
542
|
+
require_relative 'thought_spot_public_rest_api/models/share_metadata_request'
|
|
543
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
544
|
+
'unpublish_metadata_request'
|
|
545
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
546
|
+
'update_column_security_rules_request'
|
|
547
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
548
|
+
'configure_communication_channel_preferences_request'
|
|
549
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
550
|
+
'configure_security_settings_request'
|
|
551
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
552
|
+
'search_communication_channel_preferences_request'
|
|
553
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
554
|
+
'search_security_settings_request'
|
|
555
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
556
|
+
'update_system_config_request'
|
|
557
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
558
|
+
'validate_communication_channel_request'
|
|
559
|
+
require_relative 'thought_spot_public_rest_api/models/assign_tag_request'
|
|
560
|
+
require_relative 'thought_spot_public_rest_api/models/create_tag_request'
|
|
561
|
+
require_relative 'thought_spot_public_rest_api/models/search_tags_request'
|
|
562
|
+
require_relative 'thought_spot_public_rest_api/models/unassign_tag_request'
|
|
563
|
+
require_relative 'thought_spot_public_rest_api/models/update_tag_request'
|
|
564
|
+
require_relative 'thought_spot_public_rest_api/models/activate_user_request'
|
|
565
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
566
|
+
'change_user_password_request'
|
|
567
|
+
require_relative 'thought_spot_public_rest_api/models/create_user_request'
|
|
568
|
+
require_relative 'thought_spot_public_rest_api/models/deactivate_user_request'
|
|
569
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
570
|
+
'force_logout_users_request'
|
|
571
|
+
require_relative 'thought_spot_public_rest_api/models/import_users_request'
|
|
572
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
573
|
+
'reset_user_password_request'
|
|
574
|
+
require_relative 'thought_spot_public_rest_api/models/search_users_request'
|
|
575
|
+
require_relative 'thought_spot_public_rest_api/models/update_user_request'
|
|
576
|
+
require_relative 'thought_spot_public_rest_api/models/create_variable_request'
|
|
577
|
+
require_relative 'thought_spot_public_rest_api/models/delete_variables_request'
|
|
578
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
579
|
+
'put_variable_values_request'
|
|
580
|
+
require_relative 'thought_spot_public_rest_api/models/search_variables_request'
|
|
581
|
+
require_relative 'thought_spot_public_rest_api/models/update_variable_request'
|
|
582
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
583
|
+
'update_variable_values_request'
|
|
584
|
+
require_relative 'thought_spot_public_rest_api/models/commit_branch_request'
|
|
585
|
+
require_relative 'thought_spot_public_rest_api/models/create_config_request'
|
|
586
|
+
require_relative 'thought_spot_public_rest_api/models/delete_config_request'
|
|
587
|
+
require_relative 'thought_spot_public_rest_api/models/deploy_commit_request'
|
|
588
|
+
require_relative 'thought_spot_public_rest_api/models/revert_commit_request'
|
|
589
|
+
require_relative 'thought_spot_public_rest_api/models/search_commits_request'
|
|
590
|
+
require_relative 'thought_spot_public_rest_api/models/search_config_request'
|
|
591
|
+
require_relative 'thought_spot_public_rest_api/models/update_config_request'
|
|
592
|
+
require_relative 'thought_spot_public_rest_api/models/validate_merge_request'
|
|
593
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
594
|
+
'create_webhook_configuration_request'
|
|
595
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
596
|
+
'delete_webhook_configurations_request'
|
|
597
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
598
|
+
'search_webhook_configurations_request'
|
|
599
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
600
|
+
'update_webhook_configuration_request'
|
|
601
|
+
require_relative 'thought_spot_public_rest_api/models/account_status'
|
|
602
|
+
require_relative 'thought_spot_public_rest_api/models/account_status2'
|
|
603
|
+
require_relative 'thought_spot_public_rest_api/models/account_status3'
|
|
604
|
+
require_relative 'thought_spot_public_rest_api/models/account_type'
|
|
605
|
+
require_relative 'thought_spot_public_rest_api/models/account_type2'
|
|
606
|
+
require_relative 'thought_spot_public_rest_api/models/account_type3'
|
|
607
|
+
require_relative 'thought_spot_public_rest_api/models/authentication_type'
|
|
608
|
+
require_relative 'thought_spot_public_rest_api/models/authentication_type1'
|
|
609
|
+
require_relative 'thought_spot_public_rest_api/models/authentication_type2'
|
|
610
|
+
require_relative 'thought_spot_public_rest_api/models/calendar_type'
|
|
611
|
+
require_relative 'thought_spot_public_rest_api/models/channel'
|
|
612
|
+
require_relative 'thought_spot_public_rest_api/models/channel_status'
|
|
613
|
+
require_relative 'thought_spot_public_rest_api/models/cluster_preference'
|
|
614
|
+
require_relative 'thought_spot_public_rest_api/models/cluster_type'
|
|
615
|
+
require_relative 'thought_spot_public_rest_api/models/creation_method'
|
|
616
|
+
require_relative 'thought_spot_public_rest_api/models/currency_format'
|
|
617
|
+
require_relative 'thought_spot_public_rest_api/models/data_format'
|
|
618
|
+
require_relative 'thought_spot_public_rest_api/models/data_type'
|
|
619
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
620
|
+
'data_warehouse_object_type'
|
|
621
|
+
require_relative 'thought_spot_public_rest_api/models/data_warehouse_type'
|
|
622
|
+
require_relative 'thought_spot_public_rest_api/models/data_warehouse_type1'
|
|
623
|
+
require_relative 'thought_spot_public_rest_api/models/data_warehouse_type3'
|
|
624
|
+
require_relative 'thought_spot_public_rest_api/models/date_format_locale'
|
|
625
|
+
require_relative 'thought_spot_public_rest_api/models/default_metadata_type'
|
|
626
|
+
require_relative 'thought_spot_public_rest_api/models/dependent_object_version'
|
|
627
|
+
require_relative 'thought_spot_public_rest_api/models/deploy_policy'
|
|
628
|
+
require_relative 'thought_spot_public_rest_api/models/deploy_type'
|
|
629
|
+
require_relative 'thought_spot_public_rest_api/models/edoc_format'
|
|
630
|
+
require_relative 'thought_spot_public_rest_api/models/edoc_format1'
|
|
631
|
+
require_relative 'thought_spot_public_rest_api/models/event'
|
|
632
|
+
require_relative 'thought_spot_public_rest_api/models/event_type'
|
|
633
|
+
require_relative 'thought_spot_public_rest_api/models/event_type1'
|
|
634
|
+
require_relative 'thought_spot_public_rest_api/models/export_schema_version'
|
|
635
|
+
require_relative 'thought_spot_public_rest_api/models/field_name'
|
|
636
|
+
require_relative 'thought_spot_public_rest_api/models/field_name1'
|
|
637
|
+
require_relative 'thought_spot_public_rest_api/models/field_name2'
|
|
638
|
+
require_relative 'thought_spot_public_rest_api/models/field_name3'
|
|
639
|
+
require_relative 'thought_spot_public_rest_api/models/field_name4'
|
|
640
|
+
require_relative 'thought_spot_public_rest_api/models/field_type'
|
|
641
|
+
require_relative 'thought_spot_public_rest_api/models/field_type1'
|
|
642
|
+
require_relative 'thought_spot_public_rest_api/models/file_format'
|
|
643
|
+
require_relative 'thought_spot_public_rest_api/models/file_format2'
|
|
644
|
+
require_relative 'thought_spot_public_rest_api/models/import_type'
|
|
645
|
+
require_relative 'thought_spot_public_rest_api/models/import_worksheets'
|
|
646
|
+
require_relative 'thought_spot_public_rest_api/models/import_policy'
|
|
647
|
+
require_relative 'thought_spot_public_rest_api/models/import_policy1'
|
|
648
|
+
require_relative 'thought_spot_public_rest_api/models/import_policy2'
|
|
649
|
+
require_relative 'thought_spot_public_rest_api/models/' \
|
|
650
|
+
'liveboard_response_version'
|
|
651
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_type'
|
|
652
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_type1'
|
|
653
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_type2'
|
|
654
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_type3'
|
|
655
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_type4'
|
|
656
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_type5'
|
|
657
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_type6'
|
|
658
|
+
require_relative 'thought_spot_public_rest_api/models/metadata_type7'
|
|
659
|
+
require_relative 'thought_spot_public_rest_api/models/month_offset'
|
|
660
|
+
require_relative 'thought_spot_public_rest_api/models/month_offset1'
|
|
661
|
+
require_relative 'thought_spot_public_rest_api/models/number_format_locale'
|
|
662
|
+
require_relative 'thought_spot_public_rest_api/models/object_privilege_type'
|
|
663
|
+
require_relative 'thought_spot_public_rest_api/models/operation'
|
|
664
|
+
require_relative 'thought_spot_public_rest_api/models/operation1'
|
|
665
|
+
require_relative 'thought_spot_public_rest_api/models/operation2'
|
|
666
|
+
require_relative 'thought_spot_public_rest_api/models/operation3'
|
|
667
|
+
require_relative 'thought_spot_public_rest_api/models/operation4'
|
|
668
|
+
require_relative 'thought_spot_public_rest_api/models/operation5'
|
|
669
|
+
require_relative 'thought_spot_public_rest_api/models/operation6'
|
|
670
|
+
require_relative 'thought_spot_public_rest_api/models/operation7'
|
|
671
|
+
require_relative 'thought_spot_public_rest_api/models/operator'
|
|
672
|
+
require_relative 'thought_spot_public_rest_api/models/operator1'
|
|
673
|
+
require_relative 'thought_spot_public_rest_api/models/order'
|
|
674
|
+
require_relative 'thought_spot_public_rest_api/models/order4'
|
|
675
|
+
require_relative 'thought_spot_public_rest_api/models/order5'
|
|
676
|
+
require_relative 'thought_spot_public_rest_api/models/page_orientation'
|
|
677
|
+
require_relative 'thought_spot_public_rest_api/models/page_size'
|
|
678
|
+
require_relative 'thought_spot_public_rest_api/models/parent_type'
|
|
679
|
+
require_relative 'thought_spot_public_rest_api/models/parent_type1'
|
|
680
|
+
require_relative 'thought_spot_public_rest_api/models/permission'
|
|
681
|
+
require_relative 'thought_spot_public_rest_api/models/permission2'
|
|
682
|
+
require_relative 'thought_spot_public_rest_api/models/persist_option'
|
|
683
|
+
require_relative 'thought_spot_public_rest_api/models/policy_process'
|
|
684
|
+
require_relative 'thought_spot_public_rest_api/models/policy_type'
|
|
685
|
+
require_relative 'thought_spot_public_rest_api/models/policy_type1'
|
|
686
|
+
require_relative 'thought_spot_public_rest_api/models/position'
|
|
687
|
+
require_relative 'thought_spot_public_rest_api/models/preferred_locale'
|
|
688
|
+
require_relative 'thought_spot_public_rest_api/models/preferred_locale1'
|
|
689
|
+
require_relative 'thought_spot_public_rest_api/models/principal_type'
|
|
690
|
+
require_relative 'thought_spot_public_rest_api/models/principal_type1'
|
|
691
|
+
require_relative 'thought_spot_public_rest_api/models/principal_type2'
|
|
692
|
+
require_relative 'thought_spot_public_rest_api/models/principal_type3'
|
|
693
|
+
require_relative 'thought_spot_public_rest_api/models/privilege'
|
|
694
|
+
require_relative 'thought_spot_public_rest_api/models/privilege1'
|
|
695
|
+
require_relative 'thought_spot_public_rest_api/models/privilege2'
|
|
696
|
+
require_relative 'thought_spot_public_rest_api/models/privilege4'
|
|
697
|
+
require_relative 'thought_spot_public_rest_api/models/privilege8'
|
|
698
|
+
require_relative 'thought_spot_public_rest_api/models/reset_event'
|
|
699
|
+
require_relative 'thought_spot_public_rest_api/models/response_content'
|
|
700
|
+
require_relative 'thought_spot_public_rest_api/models/result_code'
|
|
701
|
+
require_relative 'thought_spot_public_rest_api/models/revert_policy'
|
|
702
|
+
require_relative 'thought_spot_public_rest_api/models/scope1'
|
|
703
|
+
require_relative 'thought_spot_public_rest_api/models/share_mode'
|
|
704
|
+
require_relative 'thought_spot_public_rest_api/models/share_mode1'
|
|
705
|
+
require_relative 'thought_spot_public_rest_api/models/start_day_of_week'
|
|
706
|
+
require_relative 'thought_spot_public_rest_api/models/start_day_of_week2'
|
|
707
|
+
require_relative 'thought_spot_public_rest_api/models/status'
|
|
708
|
+
require_relative 'thought_spot_public_rest_api/models/status1'
|
|
709
|
+
require_relative 'thought_spot_public_rest_api/models/status2'
|
|
710
|
+
require_relative 'thought_spot_public_rest_api/models/status3'
|
|
711
|
+
require_relative 'thought_spot_public_rest_api/models/status4'
|
|
712
|
+
require_relative 'thought_spot_public_rest_api/models/subtype'
|
|
713
|
+
require_relative 'thought_spot_public_rest_api/models/task_status'
|
|
714
|
+
require_relative 'thought_spot_public_rest_api/models/task_status1'
|
|
715
|
+
require_relative 'thought_spot_public_rest_api/models/time_zone'
|
|
716
|
+
require_relative 'thought_spot_public_rest_api/models/type'
|
|
717
|
+
require_relative 'thought_spot_public_rest_api/models/type1'
|
|
718
|
+
require_relative 'thought_spot_public_rest_api/models/type2'
|
|
719
|
+
require_relative 'thought_spot_public_rest_api/models/type3'
|
|
720
|
+
require_relative 'thought_spot_public_rest_api/models/type4'
|
|
721
|
+
require_relative 'thought_spot_public_rest_api/models/type5'
|
|
722
|
+
require_relative 'thought_spot_public_rest_api/models/type6'
|
|
723
|
+
require_relative 'thought_spot_public_rest_api/models/type7'
|
|
724
|
+
require_relative 'thought_spot_public_rest_api/models/type8'
|
|
725
|
+
require_relative 'thought_spot_public_rest_api/models/type9'
|
|
726
|
+
require_relative 'thought_spot_public_rest_api/models/type10'
|
|
727
|
+
require_relative 'thought_spot_public_rest_api/models/type11'
|
|
728
|
+
require_relative 'thought_spot_public_rest_api/models/type13'
|
|
729
|
+
require_relative 'thought_spot_public_rest_api/models/type15'
|
|
730
|
+
require_relative 'thought_spot_public_rest_api/models/type16'
|
|
731
|
+
require_relative 'thought_spot_public_rest_api/models/type17'
|
|
732
|
+
require_relative 'thought_spot_public_rest_api/models/type18'
|
|
733
|
+
require_relative 'thought_spot_public_rest_api/models/type19'
|
|
734
|
+
require_relative 'thought_spot_public_rest_api/models/type20'
|
|
735
|
+
require_relative 'thought_spot_public_rest_api/models/type21'
|
|
736
|
+
require_relative 'thought_spot_public_rest_api/models/type22'
|
|
737
|
+
require_relative 'thought_spot_public_rest_api/models/type23'
|
|
738
|
+
require_relative 'thought_spot_public_rest_api/models/type24'
|
|
739
|
+
require_relative 'thought_spot_public_rest_api/models/type26'
|
|
740
|
+
require_relative 'thought_spot_public_rest_api/models/type27'
|
|
741
|
+
require_relative 'thought_spot_public_rest_api/models/type28'
|
|
742
|
+
require_relative 'thought_spot_public_rest_api/models/type29'
|
|
743
|
+
require_relative 'thought_spot_public_rest_api/models/type31'
|
|
744
|
+
require_relative 'thought_spot_public_rest_api/models/type32'
|
|
745
|
+
require_relative 'thought_spot_public_rest_api/models/update_method'
|
|
746
|
+
require_relative 'thought_spot_public_rest_api/models/user_locale'
|
|
747
|
+
require_relative 'thought_spot_public_rest_api/models/validation_step'
|
|
748
|
+
require_relative 'thought_spot_public_rest_api/models/variable_type'
|
|
749
|
+
require_relative 'thought_spot_public_rest_api/models/visibility'
|
|
750
|
+
require_relative 'thought_spot_public_rest_api/models/visibility1'
|
|
751
|
+
require_relative 'thought_spot_public_rest_api/models/visibility2'
|
|
752
|
+
require_relative 'thought_spot_public_rest_api/models/visibility3'
|
|
753
|
+
require_relative 'thought_spot_public_rest_api/models/visibility5'
|
|
754
|
+
require_relative 'thought_spot_public_rest_api/models/visibility7'
|
|
755
|
+
require_relative 'thought_spot_public_rest_api/models/visibility8'
|
|
756
|
+
require_relative 'thought_spot_public_rest_api/models/visibility9'
|
|
757
|
+
require_relative 'thought_spot_public_rest_api/models/visibility10'
|
|
758
|
+
require_relative 'thought_spot_public_rest_api/models/visualization_type'
|
|
759
|
+
|
|
760
|
+
# Exceptions
|
|
761
|
+
require_relative 'thought_spot_public_rest_api/exceptions/api_exception'
|
|
762
|
+
require_relative 'thought_spot_public_rest_api/exceptions/' \
|
|
763
|
+
'error_response_exception'
|
|
764
|
+
|
|
765
|
+
require_relative 'thought_spot_public_rest_api/configuration'
|
|
766
|
+
|
|
767
|
+
# Controllers
|
|
768
|
+
require_relative 'thought_spot_public_rest_api/controllers/base_controller'
|
|
769
|
+
require_relative 'thought_spot_public_rest_api/controllers/ai_controller'
|
|
770
|
+
require_relative 'thought_spot_public_rest_api/controllers/' \
|
|
771
|
+
'authentication_controller'
|
|
772
|
+
require_relative 'thought_spot_public_rest_api/controllers/' \
|
|
773
|
+
'collections_controller'
|
|
774
|
+
require_relative 'thought_spot_public_rest_api/controllers/' \
|
|
775
|
+
'connection_configurations_controller'
|
|
776
|
+
require_relative 'thought_spot_public_rest_api/controllers/' \
|
|
777
|
+
'connections_controller'
|
|
778
|
+
require_relative 'thought_spot_public_rest_api/controllers/' \
|
|
779
|
+
'custom_action_controller'
|
|
780
|
+
require_relative 'thought_spot_public_rest_api/controllers/' \
|
|
781
|
+
'custom_calendars_controller'
|
|
782
|
+
require_relative 'thought_spot_public_rest_api/controllers/data_controller'
|
|
783
|
+
require_relative 'thought_spot_public_rest_api/controllers/dbt_controller'
|
|
784
|
+
require_relative 'thought_spot_public_rest_api/controllers/' \
|
|
785
|
+
'email_customization_controller'
|
|
786
|
+
require_relative 'thought_spot_public_rest_api/controllers/groups_controller'
|
|
787
|
+
require_relative 'thought_spot_public_rest_api/controllers/jobs_controller'
|
|
788
|
+
require_relative 'thought_spot_public_rest_api/controllers/log_controller'
|
|
789
|
+
require_relative 'thought_spot_public_rest_api/controllers/metadata_controller'
|
|
790
|
+
require_relative 'thought_spot_public_rest_api/controllers/orgs_controller'
|
|
791
|
+
require_relative 'thought_spot_public_rest_api/controllers/reports_controller'
|
|
792
|
+
require_relative 'thought_spot_public_rest_api/controllers/roles_controller'
|
|
793
|
+
require_relative 'thought_spot_public_rest_api/controllers/schedules_controller'
|
|
794
|
+
require_relative 'thought_spot_public_rest_api/controllers/security_controller'
|
|
795
|
+
require_relative 'thought_spot_public_rest_api/controllers/system_controller'
|
|
796
|
+
require_relative 'thought_spot_public_rest_api/controllers/tags_controller'
|
|
797
|
+
require_relative 'thought_spot_public_rest_api/controllers/users_controller'
|
|
798
|
+
require_relative 'thought_spot_public_rest_api/controllers/variable_controller'
|
|
799
|
+
require_relative 'thought_spot_public_rest_api/controllers/' \
|
|
800
|
+
'version_control_controller'
|
|
801
|
+
require_relative 'thought_spot_public_rest_api/controllers/webhooks_controller'
|