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