ths-apimatic-sdk-sdk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +28 -0
- data/README.md +181 -0
- data/bin/console +15 -0
- data/lib/thought_spot_public_rest_api/api_helper.rb +10 -0
- data/lib/thought_spot_public_rest_api/client.rb +218 -0
- data/lib/thought_spot_public_rest_api/configuration.rb +177 -0
- data/lib/thought_spot_public_rest_api/controllers/ai_controller.rb +550 -0
- data/lib/thought_spot_public_rest_api/controllers/authentication_controller.rb +498 -0
- data/lib/thought_spot_public_rest_api/controllers/base_controller.rb +65 -0
- data/lib/thought_spot_public_rest_api/controllers/collections_controller.rb +214 -0
- data/lib/thought_spot_public_rest_api/controllers/connection_configurations_controller.rb +227 -0
- data/lib/thought_spot_public_rest_api/controllers/connections_controller.rb +845 -0
- data/lib/thought_spot_public_rest_api/controllers/custom_action_controller.rb +205 -0
- data/lib/thought_spot_public_rest_api/controllers/custom_calendars_controller.rb +373 -0
- data/lib/thought_spot_public_rest_api/controllers/data_controller.rb +161 -0
- data/lib/thought_spot_public_rest_api/controllers/dbt_controller.rb +381 -0
- data/lib/thought_spot_public_rest_api/controllers/email_customization_controller.rb +354 -0
- data/lib/thought_spot_public_rest_api/controllers/groups_controller.rb +257 -0
- data/lib/thought_spot_public_rest_api/controllers/jobs_controller.rb +62 -0
- data/lib/thought_spot_public_rest_api/controllers/log_controller.rb +67 -0
- data/lib/thought_spot_public_rest_api/controllers/metadata_controller.rb +1074 -0
- data/lib/thought_spot_public_rest_api/controllers/orgs_controller.rb +183 -0
- data/lib/thought_spot_public_rest_api/controllers/reports_controller.rb +126 -0
- data/lib/thought_spot_public_rest_api/controllers/roles_controller.rb +176 -0
- data/lib/thought_spot_public_rest_api/controllers/schedules_controller.rb +213 -0
- data/lib/thought_spot_public_rest_api/controllers/security_controller.rb +749 -0
- data/lib/thought_spot_public_rest_api/controllers/system_controller.rb +401 -0
- data/lib/thought_spot_public_rest_api/controllers/tags_controller.rb +246 -0
- data/lib/thought_spot_public_rest_api/controllers/users_controller.rb +467 -0
- data/lib/thought_spot_public_rest_api/controllers/variable_controller.rb +338 -0
- data/lib/thought_spot_public_rest_api/controllers/version_control_controller.rb +418 -0
- data/lib/thought_spot_public_rest_api/controllers/webhooks_controller.rb +238 -0
- data/lib/thought_spot_public_rest_api/exceptions/api_exception.rb +21 -0
- data/lib/thought_spot_public_rest_api/exceptions/error_response_exception.rb +46 -0
- data/lib/thought_spot_public_rest_api/http/api_response.rb +19 -0
- data/lib/thought_spot_public_rest_api/http/auth/oauth_2.rb +53 -0
- data/lib/thought_spot_public_rest_api/http/http_call_back.rb +10 -0
- data/lib/thought_spot_public_rest_api/http/http_method_enum.rb +10 -0
- data/lib/thought_spot_public_rest_api/http/http_request.rb +10 -0
- data/lib/thought_spot_public_rest_api/http/http_response.rb +10 -0
- data/lib/thought_spot_public_rest_api/http/proxy_settings.rb +22 -0
- data/lib/thought_spot_public_rest_api/logging/configuration/api_logging_configuration.rb +186 -0
- data/lib/thought_spot_public_rest_api/logging/sdk_logger.rb +17 -0
- data/lib/thought_spot_public_rest_api/models/access_token.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/account_status.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/account_status2.rb +53 -0
- data/lib/thought_spot_public_rest_api/models/account_status3.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/account_type.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/account_type2.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/account_type3.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/action_config.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/action_config_input.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/action_config_input_create.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/action_details.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/action_details_input.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/action_details_input_create.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/activate_user_request.rb +104 -0
- data/lib/thought_spot_public_rest_api/models/agent_conversation.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/ai_context.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/answer_content.rb +135 -0
- data/lib/thought_spot_public_rest_api/models/answer_context_input.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/answer_data_response.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/api_key.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/api_key_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/assign_change_author_request.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/assign_tag_request.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/associate_metadata_input.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/associate_metadata_input_create.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/authentication.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/authentication_input.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/authentication_type.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/authentication_type1.rb +64 -0
- data/lib/thought_spot_public_rest_api/models/authentication_type2.rb +74 -0
- data/lib/thought_spot_public_rest_api/models/author.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/author_metadata_type_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/author_type.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/aws_assume_role_setup.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/aws_s3_config.rb +115 -0
- data/lib/thought_spot_public_rest_api/models/aws_s3_config_input.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/base_model.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/basic_auth.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/basic_auth_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/calendar_response.rb +153 -0
- data/lib/thought_spot_public_rest_api/models/calendar_type.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/callback.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/callback_input.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/callback_input_mandatory.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/change_user_password_request.rb +94 -0
- data/lib/thought_spot_public_rest_api/models/channel.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/channel_history_event_input.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/channel_history_job.rb +116 -0
- data/lib/thought_spot_public_rest_api/models/channel_status.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/channel_validation_aws_s3_info.rb +99 -0
- data/lib/thought_spot_public_rest_api/models/channel_validation_detail.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/cluster_non_embed_access.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/cluster_non_embed_access_input.rb +100 -0
- data/lib/thought_spot_public_rest_api/models/cluster_preference.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/cluster_type.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/collection.rb +169 -0
- data/lib/thought_spot_public_rest_api/models/collection_delete_response.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/collection_delete_type_identifiers.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/collection_entity_identifier.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/collection_metadata_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/collection_metadata_item.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/collection_search_response.rb +129 -0
- data/lib/thought_spot_public_rest_api/models/column.rb +130 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule.rb +108 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_column.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_group.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_group_operation.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_response.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_source_table.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_table_input.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/column_security_rule_update.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/commit_branch_request.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/commit_file_type.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/commit_history_response.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/commit_response.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/commiter_type.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/communication_channel_preferences_response.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/communication_channel_validate_response.rb +138 -0
- data/lib/thought_spot_public_rest_api/models/configure_communication_channel_preferences_request.rb +104 -0
- data/lib/thought_spot_public_rest_api/models/configure_security_settings_request.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/connection_configuration_response.rb +206 -0
- data/lib/thought_spot_public_rest_api/models/connection_configuration_search_request.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/connection_input.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/context_payload_v2_input.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/conversation.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/conversation_settings_input.rb +113 -0
- data/lib/thought_spot_public_rest_api/models/convert_worksheet_to_model_request.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/copy_object_request.rb +104 -0
- data/lib/thought_spot_public_rest_api/models/create_agent_conversation_request.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/create_calendar_request.rb +180 -0
- data/lib/thought_spot_public_rest_api/models/create_collection_request.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/create_config_request.rb +171 -0
- data/lib/thought_spot_public_rest_api/models/create_connection_configuration_request.rb +187 -0
- data/lib/thought_spot_public_rest_api/models/create_connection_request.rb +121 -0
- data/lib/thought_spot_public_rest_api/models/create_connection_response.rb +105 -0
- data/lib/thought_spot_public_rest_api/models/create_conversation_request.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/create_custom_action_request.rb +133 -0
- data/lib/thought_spot_public_rest_api/models/create_email_customization_request.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/create_email_customization_response.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/create_org_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/create_role_request.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/create_schedule_request.rb +178 -0
- data/lib/thought_spot_public_rest_api/models/create_tag_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/create_user_group_request.rb +179 -0
- data/lib/thought_spot_public_rest_api/models/create_user_request.rb +330 -0
- data/lib/thought_spot_public_rest_api/models/create_variable_request.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/create_webhook_configuration_request.rb +175 -0
- data/lib/thought_spot_public_rest_api/models/creation_method.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/cron_expression.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/cron_expression_input.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/csp_settings.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/csp_settings_input.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/currency_format.rb +964 -0
- data/lib/thought_spot_public_rest_api/models/custom_action_metadata_type_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/data_format.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/data_source.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/data_source_context_input.rb +72 -0
- data/lib/thought_spot_public_rest_api/models/data_type.rb +53 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_object_input.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_object_type.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_objects.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_type.rb +160 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_type1.rb +160 -0
- data/lib/thought_spot_public_rest_api/models/data_warehouse_type3.rb +160 -0
- data/lib/thought_spot_public_rest_api/models/database.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/date_format_locale.rb +136 -0
- data/lib/thought_spot_public_rest_api/models/dbt_search_response.rb +151 -0
- data/lib/thought_spot_public_rest_api/models/deactivate_user_request.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/default_action_config.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/default_action_config_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/default_action_config_input_create.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/default_action_config_search_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/default_metadata_type.rb +53 -0
- data/lib/thought_spot_public_rest_api/models/delete_collection_request.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/delete_config_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/delete_connection_configuration_request.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/delete_connection_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/delete_metadata_request.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/delete_metadata_type_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/delete_org_email_customization_request.rb +77 -0
- data/lib/thought_spot_public_rest_api/models/delete_variables_request.rb +74 -0
- data/lib/thought_spot_public_rest_api/models/delete_webhook_configurations_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/dependent_object_version.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/deploy_commit_request.rb +115 -0
- data/lib/thought_spot_public_rest_api/models/deploy_policy.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/deploy_response.rb +124 -0
- data/lib/thought_spot_public_rest_api/models/deploy_type.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/edoc_format.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/edoc_format1.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/entity_header.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/eureka_data_source_suggestion_response.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/eureka_decompose_query_response.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/eureka_get_nl_instructions_response.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/eureka_get_relevant_questions_response.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/eureka_llm_decompose_query_response.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/eureka_llm_suggested_query.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/eureka_relevant_question.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/eureka_set_nl_instructions_response.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/event.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/event_channel_config.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/event_channel_config_input.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/event_type.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/event_type1.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/exclude_metadata_list_item_input.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/export_answer_report_request.rb +159 -0
- data/lib/thought_spot_public_rest_api/models/export_liveboard_report_request.rb +273 -0
- data/lib/thought_spot_public_rest_api/models/export_metadata_tml_batched_request.rb +133 -0
- data/lib/thought_spot_public_rest_api/models/export_metadata_tml_request.rb +196 -0
- data/lib/thought_spot_public_rest_api/models/export_metadata_type_input.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/export_options.rb +168 -0
- data/lib/thought_spot_public_rest_api/models/export_schema_version.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/external_table_input.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/favorite_metadata_input.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/favorite_metadata_item.rb +93 -0
- data/lib/thought_spot_public_rest_api/models/favorite_object_options_input.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/fetch_answer_data_request.rb +157 -0
- data/lib/thought_spot_public_rest_api/models/fetch_answer_sql_query_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/fetch_async_import_task_status_request.rb +134 -0
- data/lib/thought_spot_public_rest_api/models/fetch_column_security_rules_request.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/fetch_connection_diff_status_response.rb +77 -0
- data/lib/thought_spot_public_rest_api/models/fetch_liveboard_data_request.rb +185 -0
- data/lib/thought_spot_public_rest_api/models/fetch_liveboard_sql_query_request.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/fetch_logs_request.rb +112 -0
- data/lib/thought_spot_public_rest_api/models/fetch_object_privileges_request.rb +128 -0
- data/lib/thought_spot_public_rest_api/models/fetch_permissions_of_principals_request.rb +139 -0
- data/lib/thought_spot_public_rest_api/models/fetch_permissions_on_metadata_request.rb +159 -0
- data/lib/thought_spot_public_rest_api/models/field_name.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/field_name1.rb +60 -0
- data/lib/thought_spot_public_rest_api/models/field_name2.rb +68 -0
- data/lib/thought_spot_public_rest_api/models/field_name3.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/field_name4.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/field_type.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/field_type1.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/file_format.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/file_format2.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/filter_rules.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/force_logout_users_request.rb +77 -0
- data/lib/thought_spot_public_rest_api/models/frequency.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/frequency_input.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/gcp_web_identity_setup.rb +144 -0
- data/lib/thought_spot_public_rest_api/models/generate_csv_request.rb +140 -0
- data/lib/thought_spot_public_rest_api/models/generic_info.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/get_async_import_status_response.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/get_custom_access_token_request.rb +280 -0
- data/lib/thought_spot_public_rest_api/models/get_data_source_suggestions_request.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/get_full_access_token_request.rb +170 -0
- data/lib/thought_spot_public_rest_api/models/get_nl_instructions_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/get_object_access_token_request.rb +183 -0
- data/lib/thought_spot_public_rest_api/models/get_relevant_questions_request.rb +122 -0
- data/lib/thought_spot_public_rest_api/models/get_token_response.rb +117 -0
- data/lib/thought_spot_public_rest_api/models/group_info.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/group_object.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/groups_import_list_input.rb +176 -0
- data/lib/thought_spot_public_rest_api/models/header_attribute_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/header_update_input.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/import_e_pack_async_task_status.rb +241 -0
- data/lib/thought_spot_public_rest_api/models/import_metadata_tml_async_request.rb +143 -0
- data/lib/thought_spot_public_rest_api/models/import_metadata_tml_request.rb +146 -0
- data/lib/thought_spot_public_rest_api/models/import_policy.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/import_policy1.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/import_policy2.rb +46 -0
- data/lib/thought_spot_public_rest_api/models/import_type.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/import_user.rb +282 -0
- data/lib/thought_spot_public_rest_api/models/import_user_groups_request.rb +113 -0
- data/lib/thought_spot_public_rest_api/models/import_user_groups_response.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/import_user_type.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/import_users_request.rb +121 -0
- data/lib/thought_spot_public_rest_api/models/import_users_response.rb +127 -0
- data/lib/thought_spot_public_rest_api/models/import_worksheets.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/input_eureka_nls_request.rb +113 -0
- data/lib/thought_spot_public_rest_api/models/jwt_metadata_object.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/jwt_parameter.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/jwt_user_options.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/jwt_user_options_full.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/lb_context_input.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_content.rb +162 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_data_response.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_options.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_options_input.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/liveboard_response_version.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/log_response.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/login_request.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/manage_object_privilege_request.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/metadata_association_item.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/metadata_context.rb +121 -0
- data/lib/thought_spot_public_rest_api/models/metadata_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/metadata_list_item_input.rb +146 -0
- data/lib/thought_spot_public_rest_api/models/metadata_object.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/metadata_response.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/metadata_search_response.rb +186 -0
- data/lib/thought_spot_public_rest_api/models/metadata_search_sort_options.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type.rb +68 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type1.rb +64 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type2.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type3.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type4.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type5.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type6.rb +50 -0
- data/lib/thought_spot_public_rest_api/models/metadata_type7.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/model_table_list.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/month_offset.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/month_offset1.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/nl_instructions_info.rb +80 -0
- data/lib/thought_spot_public_rest_api/models/nl_instructions_info_input.rb +80 -0
- data/lib/thought_spot_public_rest_api/models/number_format_locale.rb +136 -0
- data/lib/thought_spot_public_rest_api/models/object_id_and_name.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/object_privilege_type.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/object_privileges_metadata_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/object_privileges_of_metadata_response.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/operation.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/operation1.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/operation2.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/operation3.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/operation4.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/operation5.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/operation6.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/operation7.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/operator.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/operator1.rb +93 -0
- data/lib/thought_spot_public_rest_api/models/order.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/order4.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/order5.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/org.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/org_channel_config_input.rb +124 -0
- data/lib/thought_spot_public_rest_api/models/org_channel_config_response.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/org_details.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/org_info.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/org_non_embed_access.rb +100 -0
- data/lib/thought_spot_public_rest_api/models/org_non_embed_access_input.rb +99 -0
- data/lib/thought_spot_public_rest_api/models/org_preference_search_criteria_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/org_response.rb +121 -0
- data/lib/thought_spot_public_rest_api/models/org_type.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/page_orientation.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/page_size.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/parameter_values.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/parameterize_metadata_request.rb +116 -0
- data/lib/thought_spot_public_rest_api/models/parameters_list_item.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/parameters_list_item_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/parent_type.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/parent_type1.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/pdf_options.rb +179 -0
- data/lib/thought_spot_public_rest_api/models/pdf_options_input.rb +151 -0
- data/lib/thought_spot_public_rest_api/models/permission.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/permission2.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/permission_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/permission_of_metadata_response.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/permission_of_principals_response.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/permissions_metadata_type_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/persist_option.rb +45 -0
- data/lib/thought_spot_public_rest_api/models/png_options_input.rb +144 -0
- data/lib/thought_spot_public_rest_api/models/policy_process.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/policy_process_options.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/policy_process_options_input.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/policy_type.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/policy_type1.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/position.rb +41 -0
- data/lib/thought_spot_public_rest_api/models/preferred_locale.rb +138 -0
- data/lib/thought_spot_public_rest_api/models/preferred_locale1.rb +138 -0
- data/lib/thought_spot_public_rest_api/models/principal_type.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/principal_type1.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/principal_type2.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/principal_type3.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/principals_input.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/principals_list_item.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/principals_list_item_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/privilege.rb +236 -0
- data/lib/thought_spot_public_rest_api/models/privilege1.rb +160 -0
- data/lib/thought_spot_public_rest_api/models/privilege2.rb +188 -0
- data/lib/thought_spot_public_rest_api/models/privilege4.rb +200 -0
- data/lib/thought_spot_public_rest_api/models/privilege8.rb +180 -0
- data/lib/thought_spot_public_rest_api/models/publish_metadata_list_item.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/publish_metadata_request.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/put_variable_values_request.rb +94 -0
- data/lib/thought_spot_public_rest_api/models/query_get_decomposed_query_request.rb +145 -0
- data/lib/thought_spot_public_rest_api/models/recipient_details.rb +99 -0
- data/lib/thought_spot_public_rest_api/models/recipient_details_input.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/regional_settings_input.rb +116 -0
- data/lib/thought_spot_public_rest_api/models/repo_config_object.rb +154 -0
- data/lib/thought_spot_public_rest_api/models/reset_event.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/reset_user_password_request.rb +83 -0
- data/lib/thought_spot_public_rest_api/models/response_activation_url.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/response_content.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/response_copy_object.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/response_custom_action.rb +148 -0
- data/lib/thought_spot_public_rest_api/models/response_failed_entities.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_failed_entity.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/response_incomplete_entities.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_incomplete_entity.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/response_message.rb +134 -0
- data/lib/thought_spot_public_rest_api/models/response_post_upgrade_failed_entities.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_post_upgrade_failed_entity.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/response_schedule.rb +227 -0
- data/lib/thought_spot_public_rest_api/models/response_schedule_run.rb +115 -0
- data/lib/thought_spot_public_rest_api/models/response_successful_entities.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_successful_entity.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/response_worksheet_to_model_conversion.rb +174 -0
- data/lib/thought_spot_public_rest_api/models/result_code.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/revert_commit_request.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/revert_policy.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/revert_response.rb +172 -0
- data/lib/thought_spot_public_rest_api/models/reverted_metadata.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/revoke_refresh_tokens_request.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/revoke_refresh_tokens_response.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/revoke_token_request.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/rise_gql_arg_wrapper.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/rise_setter.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/role.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/role_response.rb +274 -0
- data/lib/thought_spot_public_rest_api/models/runtime_filter.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/runtime_filters.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/runtime_param_override.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/runtime_parameters.rb +116 -0
- data/lib/thought_spot_public_rest_api/models/runtime_sort.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/runtime_sorts.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/schedule_history_runs_options_input.rb +103 -0
- data/lib/thought_spot_public_rest_api/models/schedules_pdf_options_input.rb +179 -0
- data/lib/thought_spot_public_rest_api/models/schema_object.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/scope.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/scope1.rb +38 -0
- data/lib/thought_spot_public_rest_api/models/script_src_urls.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/script_src_urls_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/search_calendars_request.rb +118 -0
- data/lib/thought_spot_public_rest_api/models/search_channel_history_request.rb +139 -0
- data/lib/thought_spot_public_rest_api/models/search_channel_history_response.rb +81 -0
- data/lib/thought_spot_public_rest_api/models/search_collections_request.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/search_commits_request.rb +127 -0
- data/lib/thought_spot_public_rest_api/models/search_communication_channel_preferences_request.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/search_config_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/search_connection_request.rb +209 -0
- data/lib/thought_spot_public_rest_api/models/search_connection_response.rb +129 -0
- data/lib/thought_spot_public_rest_api/models/search_custom_actions_request.rb +166 -0
- data/lib/thought_spot_public_rest_api/models/search_data_request.rb +173 -0
- data/lib/thought_spot_public_rest_api/models/search_data_response.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/search_email_customization_request.rb +78 -0
- data/lib/thought_spot_public_rest_api/models/search_metadata_request.rb +446 -0
- data/lib/thought_spot_public_rest_api/models/search_orgs_request.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/search_role_response.rb +274 -0
- data/lib/thought_spot_public_rest_api/models/search_roles_request.rb +158 -0
- data/lib/thought_spot_public_rest_api/models/search_schedules_request.rb +139 -0
- data/lib/thought_spot_public_rest_api/models/search_security_settings_request.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/search_tags_request.rb +97 -0
- data/lib/thought_spot_public_rest_api/models/search_user_groups_request.rb +265 -0
- data/lib/thought_spot_public_rest_api/models/search_users_request.rb +327 -0
- data/lib/thought_spot_public_rest_api/models/search_variables_request.rb +135 -0
- data/lib/thought_spot_public_rest_api/models/search_webhook_configurations_request.rb +132 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_cluster_preferences.rb +131 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_cluster_preferences_input.rb +131 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_org_details.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_org_preferences.rb +100 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_org_preferences_input.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/security_settings_response.rb +99 -0
- data/lib/thought_spot_public_rest_api/models/send_agent_message_request.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/send_agent_message_response.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/send_agent_message_streaming_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/send_message_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/set_nl_instructions_request.rb +94 -0
- data/lib/thought_spot_public_rest_api/models/share_metadata_request.rb +207 -0
- data/lib/thought_spot_public_rest_api/models/share_metadata_type_input.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/share_mode.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/share_mode1.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/share_permissions_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/single_answer_request.rb +84 -0
- data/lib/thought_spot_public_rest_api/models/sort_option.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/sort_option_input.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/sort_options.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/sorting_options.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/sql_query.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/sql_query_response.rb +110 -0
- data/lib/thought_spot_public_rest_api/models/start_day_of_week.rb +56 -0
- data/lib/thought_spot_public_rest_api/models/start_day_of_week2.rb +56 -0
- data/lib/thought_spot_public_rest_api/models/status.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/status1.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/status2.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/status3.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/status4.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/storage_config.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/storage_config_input.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/storage_destination.rb +80 -0
- data/lib/thought_spot_public_rest_api/models/storage_destination_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/storage_setup_info.rb +175 -0
- data/lib/thought_spot_public_rest_api/models/subtype.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/system_config.rb +102 -0
- data/lib/thought_spot_public_rest_api/models/system_info.rb +344 -0
- data/lib/thought_spot_public_rest_api/models/system_override_info.rb +79 -0
- data/lib/thought_spot_public_rest_api/models/table.rb +150 -0
- data/lib/thought_spot_public_rest_api/models/tag.rb +202 -0
- data/lib/thought_spot_public_rest_api/models/tag_metadata_type_input.rb +94 -0
- data/lib/thought_spot_public_rest_api/models/task_status.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/task_status1.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/template_properties_input_create.rb +440 -0
- data/lib/thought_spot_public_rest_api/models/time_zone.rb +2548 -0
- data/lib/thought_spot_public_rest_api/models/token.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/token_access_scope_object.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/token_validation_response.rb +114 -0
- data/lib/thought_spot_public_rest_api/models/type.rb +66 -0
- data/lib/thought_spot_public_rest_api/models/type1.rb +38 -0
- data/lib/thought_spot_public_rest_api/models/type10.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/type11.rb +28 -0
- data/lib/thought_spot_public_rest_api/models/type13.rb +52 -0
- data/lib/thought_spot_public_rest_api/models/type15.rb +60 -0
- data/lib/thought_spot_public_rest_api/models/type16.rb +60 -0
- data/lib/thought_spot_public_rest_api/models/type17.rb +66 -0
- data/lib/thought_spot_public_rest_api/models/type18.rb +50 -0
- data/lib/thought_spot_public_rest_api/models/type19.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/type2.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/type20.rb +46 -0
- data/lib/thought_spot_public_rest_api/models/type21.rb +50 -0
- data/lib/thought_spot_public_rest_api/models/type22.rb +46 -0
- data/lib/thought_spot_public_rest_api/models/type23.rb +26 -0
- data/lib/thought_spot_public_rest_api/models/type24.rb +42 -0
- data/lib/thought_spot_public_rest_api/models/type26.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/type27.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/type28.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/type29.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/type3.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/type31.rb +44 -0
- data/lib/thought_spot_public_rest_api/models/type32.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/type4.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/type5.rb +76 -0
- data/lib/thought_spot_public_rest_api/models/type6.rb +28 -0
- data/lib/thought_spot_public_rest_api/models/type7.rb +50 -0
- data/lib/thought_spot_public_rest_api/models/type8.rb +42 -0
- data/lib/thought_spot_public_rest_api/models/type9.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/unassign_tag_request.rb +92 -0
- data/lib/thought_spot_public_rest_api/models/unparameterize_metadata_request.rb +113 -0
- data/lib/thought_spot_public_rest_api/models/unpublish_metadata_request.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/update_calendar_request.rb +173 -0
- data/lib/thought_spot_public_rest_api/models/update_collection_request.rb +114 -0
- data/lib/thought_spot_public_rest_api/models/update_column_security_rules_request.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/update_config_request.rb +161 -0
- data/lib/thought_spot_public_rest_api/models/update_connection_configuration_request.rb +200 -0
- data/lib/thought_spot_public_rest_api/models/update_connection_request.rb +120 -0
- data/lib/thought_spot_public_rest_api/models/update_connection_v2_request.rb +109 -0
- data/lib/thought_spot_public_rest_api/models/update_custom_action_request.rb +144 -0
- data/lib/thought_spot_public_rest_api/models/update_email_customization_request.rb +87 -0
- data/lib/thought_spot_public_rest_api/models/update_metadata_header_request.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/update_metadata_obj_id_request.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/update_method.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/update_obj_id_input.rb +111 -0
- data/lib/thought_spot_public_rest_api/models/update_org_request.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/update_role_request.rb +96 -0
- data/lib/thought_spot_public_rest_api/models/update_schedule_request.rb +194 -0
- data/lib/thought_spot_public_rest_api/models/update_system_config_request.rb +75 -0
- data/lib/thought_spot_public_rest_api/models/update_tag_request.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/update_user_group_request.rb +191 -0
- data/lib/thought_spot_public_rest_api/models/update_user_request.rb +305 -0
- data/lib/thought_spot_public_rest_api/models/update_variable_request.rb +72 -0
- data/lib/thought_spot_public_rest_api/models/update_variable_values_request.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/update_webhook_configuration_request.rb +178 -0
- data/lib/thought_spot_public_rest_api/models/url.rb +117 -0
- data/lib/thought_spot_public_rest_api/models/url_input.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/url_input_mandatory.rb +117 -0
- data/lib/thought_spot_public_rest_api/models/user.rb +684 -0
- data/lib/thought_spot_public_rest_api/models/user_group.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/user_group_response.rb +455 -0
- data/lib/thought_spot_public_rest_api/models/user_info.rb +86 -0
- data/lib/thought_spot_public_rest_api/models/user_locale.rb +136 -0
- data/lib/thought_spot_public_rest_api/models/user_object.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/user_parameter_options.rb +163 -0
- data/lib/thought_spot_public_rest_api/models/user_principal.rb +98 -0
- data/lib/thought_spot_public_rest_api/models/validate_communication_channel_request.rb +88 -0
- data/lib/thought_spot_public_rest_api/models/validate_merge_request.rb +85 -0
- data/lib/thought_spot_public_rest_api/models/validate_token_request.rb +73 -0
- data/lib/thought_spot_public_rest_api/models/validation_step.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/value_scope_input.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/variable.rb +125 -0
- data/lib/thought_spot_public_rest_api/models/variable_detail_input.rb +100 -0
- data/lib/thought_spot_public_rest_api/models/variable_put_assignment_input.rb +138 -0
- data/lib/thought_spot_public_rest_api/models/variable_type.rb +48 -0
- data/lib/thought_spot_public_rest_api/models/variable_update_assignment_input.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/variable_update_scope_input.rb +130 -0
- data/lib/thought_spot_public_rest_api/models/variable_value.rb +151 -0
- data/lib/thought_spot_public_rest_api/models/variable_values.rb +106 -0
- data/lib/thought_spot_public_rest_api/models/visibility.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility1.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/visibility10.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/visibility2.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility3.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility5.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility7.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visibility8.rb +36 -0
- data/lib/thought_spot_public_rest_api/models/visibility9.rb +37 -0
- data/lib/thought_spot_public_rest_api/models/visualization_type.rb +40 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_api_key.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_api_key_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_basic_auth.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_basic_auth_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_oauth_2.rb +93 -0
- data/lib/thought_spot_public_rest_api/models/webhook_auth_oauth_2_input.rb +93 -0
- data/lib/thought_spot_public_rest_api/models/webhook_authentication.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/webhook_authentication_input.rb +107 -0
- data/lib/thought_spot_public_rest_api/models/webhook_delete_failure.rb +90 -0
- data/lib/thought_spot_public_rest_api/models/webhook_delete_response.rb +119 -0
- data/lib/thought_spot_public_rest_api/models/webhook_key_value_pair.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_key_value_pair_input.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_org.rb +82 -0
- data/lib/thought_spot_public_rest_api/models/webhook_pagination.rb +101 -0
- data/lib/thought_spot_public_rest_api/models/webhook_response.rb +234 -0
- data/lib/thought_spot_public_rest_api/models/webhook_search_response.rb +91 -0
- data/lib/thought_spot_public_rest_api/models/webhook_signature_verification.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/webhook_signature_verification_input.rb +95 -0
- data/lib/thought_spot_public_rest_api/models/webhook_sort_options_input.rb +89 -0
- data/lib/thought_spot_public_rest_api/models/webhook_user.rb +82 -0
- data/lib/thought_spot_public_rest_api/utilities/date_time_helper.rb +11 -0
- data/lib/thought_spot_public_rest_api/utilities/file_wrapper.rb +28 -0
- data/lib/thought_spot_public_rest_api/utilities/union_type_lookup.rb +67 -0
- data/lib/thought_spot_public_rest_api.rb +801 -0
- metadata +695 -0
|
@@ -0,0 +1,418 @@
|
|
|
1
|
+
# thought_spot_public_rest_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by
|
|
4
|
+
# APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
module ThoughtSpotPublicRestApi
|
|
7
|
+
# VersionControlController
|
|
8
|
+
class VersionControlController < BaseController
|
|
9
|
+
# <span class="since-beta-tag">Version: 9.2.0.cl or later</span>
|
|
10
|
+
# Commits TML files of metadata objects to the Git branch configured on your
|
|
11
|
+
# instance.
|
|
12
|
+
# Requires at least edit access to objects used in the commit operation.
|
|
13
|
+
# Before using this endpoint to push your commits:
|
|
14
|
+
# * Enable Git integration on your instance.
|
|
15
|
+
# * Make sure the Git repository and branch details are configured on your
|
|
16
|
+
# instance.
|
|
17
|
+
# For more information, see [Git integration
|
|
18
|
+
# documentation](https://developers.thoughtspot.com/docs/git-integration).
|
|
19
|
+
# #### Endpoint URL
|
|
20
|
+
# @param [CommitBranchRequest] body Required parameter: TODO: type
|
|
21
|
+
# description here
|
|
22
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
23
|
+
def commit_branch(body)
|
|
24
|
+
@api_call
|
|
25
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
26
|
+
'/api/rest/2.0/vcs/git/branches/commit',
|
|
27
|
+
Server::DEFAULT)
|
|
28
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
29
|
+
.body_param(new_parameter(body)
|
|
30
|
+
.is_required(true))
|
|
31
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
32
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
33
|
+
.auth(Single.new('bearerAuth')))
|
|
34
|
+
.response(new_response_handler
|
|
35
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
36
|
+
.deserialize_into(CommitResponse.method(:from_hash))
|
|
37
|
+
.is_api_response(true)
|
|
38
|
+
.local_error('400',
|
|
39
|
+
'Invalid request.',
|
|
40
|
+
ErrorResponseException)
|
|
41
|
+
.local_error('401',
|
|
42
|
+
'Unauthorized access.',
|
|
43
|
+
ErrorResponseException)
|
|
44
|
+
.local_error('403',
|
|
45
|
+
'Forbidden access.',
|
|
46
|
+
ErrorResponseException)
|
|
47
|
+
.local_error('500',
|
|
48
|
+
'Unexpected error',
|
|
49
|
+
ErrorResponseException))
|
|
50
|
+
.execute
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# <span class="since-beta-tag">Version: 9.2.0.cl or later</span>
|
|
54
|
+
# Allows you to connect a ThoughtSpot instance to a Git repository.
|
|
55
|
+
# Requires `ADMINISTRATION` (**Can administer ThoughtSpot**) privilege.
|
|
56
|
+
# If [Role-Based Access Control
|
|
57
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
58
|
+
# instance on your instance, the `CAN_SETUP_VERSION_CONTROL` (**Can set up
|
|
59
|
+
# version control**) privilege.
|
|
60
|
+
# You can use this API endpoint to connect your ThoughtSpot development and
|
|
61
|
+
# production environments to the development and production branches of a
|
|
62
|
+
# Git repository.
|
|
63
|
+
# Before using this endpoint to connect your ThoughtSpot instance to a Git
|
|
64
|
+
# repository, check the following prerequisites:
|
|
65
|
+
# * You have a Git repository. If you are using GitHub, make sure you have a
|
|
66
|
+
# valid account and an access token to connect ThoughtSpot to GitHub. For
|
|
67
|
+
# information about generating a token, see [GitHub
|
|
68
|
+
# Documentation](https://docs.github.com/en/authentication/keeping-your-acco
|
|
69
|
+
# unt-and-data-secure/managing-your-personal-access-tokens).
|
|
70
|
+
# * Your access token has `repo` scope that grants full access to public and
|
|
71
|
+
# private repositories.
|
|
72
|
+
# * Your Git repository has a branch that can be configured as a default
|
|
73
|
+
# branch in ThoughtSpot.
|
|
74
|
+
# For more information, see [Git integration
|
|
75
|
+
# documentation](https://developers.thoughtspot.com/docs/?pageid=git-integra
|
|
76
|
+
# tion).
|
|
77
|
+
# **Note**: ThoughtSpot supports only GitHub / itHub Enterprise for CI/CD.
|
|
78
|
+
# #### Endpoint URL
|
|
79
|
+
# @param [CreateConfigRequest] body Required parameter: TODO: type
|
|
80
|
+
# description here
|
|
81
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
82
|
+
def create_config(body)
|
|
83
|
+
@api_call
|
|
84
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
85
|
+
'/api/rest/2.0/vcs/git/config/create',
|
|
86
|
+
Server::DEFAULT)
|
|
87
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
88
|
+
.body_param(new_parameter(body)
|
|
89
|
+
.is_required(true))
|
|
90
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
91
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
92
|
+
.auth(Single.new('bearerAuth')))
|
|
93
|
+
.response(new_response_handler
|
|
94
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
95
|
+
.deserialize_into(RepoConfigObject.method(:from_hash))
|
|
96
|
+
.is_api_response(true)
|
|
97
|
+
.local_error('400',
|
|
98
|
+
'Invalid request.',
|
|
99
|
+
ErrorResponseException)
|
|
100
|
+
.local_error('401',
|
|
101
|
+
'Unauthorized access.',
|
|
102
|
+
ErrorResponseException)
|
|
103
|
+
.local_error('403',
|
|
104
|
+
'Forbidden access.',
|
|
105
|
+
ErrorResponseException)
|
|
106
|
+
.local_error('500',
|
|
107
|
+
'Unexpected error',
|
|
108
|
+
ErrorResponseException))
|
|
109
|
+
.execute
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
# <span class="since-beta-tag">Version: 9.2.0.cl or later</span>
|
|
113
|
+
# Deletes Git repository configuration from your ThoughtSpot instance.
|
|
114
|
+
# Requires `ADMINISTRATION` (**Can administer ThoughtSpot**) privilege.
|
|
115
|
+
# If [Role-Based Access Control
|
|
116
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
117
|
+
# instance on your instance, the `CAN_SETUP_VERSION_CONTROL` (**Can set up
|
|
118
|
+
# version control**) privilege.
|
|
119
|
+
# #### Endpoint URL
|
|
120
|
+
# @param [DeleteConfigRequest] body Required parameter: TODO: type
|
|
121
|
+
# description here
|
|
122
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
123
|
+
def delete_config(body)
|
|
124
|
+
@api_call
|
|
125
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
126
|
+
'/api/rest/2.0/vcs/git/config/delete',
|
|
127
|
+
Server::DEFAULT)
|
|
128
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
129
|
+
.body_param(new_parameter(body)
|
|
130
|
+
.is_required(true))
|
|
131
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
132
|
+
.auth(Single.new('bearerAuth')))
|
|
133
|
+
.response(new_response_handler
|
|
134
|
+
.is_response_void(true)
|
|
135
|
+
.is_api_response(true)
|
|
136
|
+
.local_error('400',
|
|
137
|
+
'Invalid request.',
|
|
138
|
+
ErrorResponseException)
|
|
139
|
+
.local_error('401',
|
|
140
|
+
'Unauthorized access.',
|
|
141
|
+
ErrorResponseException)
|
|
142
|
+
.local_error('403',
|
|
143
|
+
'Forbidden access.',
|
|
144
|
+
ErrorResponseException)
|
|
145
|
+
.local_error('500',
|
|
146
|
+
'Unexpected error',
|
|
147
|
+
ErrorResponseException))
|
|
148
|
+
.execute
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
# <span class="since-beta-tag">Version: 9.2.0.cl or later</span>
|
|
152
|
+
# Allows you to deploy a commit and publish TML content to your ThoughtSpot
|
|
153
|
+
# instance.
|
|
154
|
+
# Requires at least edit access to the objects used in the deploy operation.
|
|
155
|
+
# The API deploys the head of the branch unless a `commit_id` is specified
|
|
156
|
+
# in the API request. If the branch name is not defined in the request, the
|
|
157
|
+
# default branch is considered for deploying commits.
|
|
158
|
+
# For more information, see [Git integration
|
|
159
|
+
# documentation](https://developers.thoughtspot.com/docs/git-integration).
|
|
160
|
+
# #### Endpoint URL
|
|
161
|
+
# @param [DeployCommitRequest] body Required parameter: TODO: type
|
|
162
|
+
# description here
|
|
163
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
164
|
+
def deploy_commit(body)
|
|
165
|
+
@api_call
|
|
166
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
167
|
+
'/api/rest/2.0/vcs/git/commits/deploy',
|
|
168
|
+
Server::DEFAULT)
|
|
169
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
170
|
+
.body_param(new_parameter(body)
|
|
171
|
+
.is_required(true))
|
|
172
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
173
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
174
|
+
.auth(Single.new('bearerAuth')))
|
|
175
|
+
.response(new_response_handler
|
|
176
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
177
|
+
.deserialize_into(DeployResponse.method(:from_hash))
|
|
178
|
+
.is_api_response(true)
|
|
179
|
+
.is_response_array(true)
|
|
180
|
+
.local_error('400',
|
|
181
|
+
'Invalid request.',
|
|
182
|
+
ErrorResponseException)
|
|
183
|
+
.local_error('401',
|
|
184
|
+
'Unauthorized access.',
|
|
185
|
+
ErrorResponseException)
|
|
186
|
+
.local_error('403',
|
|
187
|
+
'Forbidden access.',
|
|
188
|
+
ErrorResponseException)
|
|
189
|
+
.local_error('500',
|
|
190
|
+
'Unexpected error',
|
|
191
|
+
ErrorResponseException))
|
|
192
|
+
.execute
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
# <span class="since-beta-tag">Version: 9.2.0.cl or later</span>
|
|
196
|
+
# Reverts TML objects to a previous commit specified in the API request.
|
|
197
|
+
# Requires at least edit access to objects.
|
|
198
|
+
# In the API request, specify the `commit_id`. If the branch name is not
|
|
199
|
+
# specified in the request, the API will consider the default branch
|
|
200
|
+
# configured on your instance.
|
|
201
|
+
# By default, the API reverts all objects. If the revert operation fails for
|
|
202
|
+
# one of the objects provided in the commit, the API returns an error and
|
|
203
|
+
# does not revert any object.
|
|
204
|
+
# For more information, see [Git integration
|
|
205
|
+
# documentation](https://developers.thoughtspot.com/docs/git-integration).
|
|
206
|
+
# #### Endpoint URL
|
|
207
|
+
# @param [String] commit_id Required parameter: Commit id to which the
|
|
208
|
+
# object should be reverted
|
|
209
|
+
# @param [RevertCommitRequest] body Required parameter: TODO: type
|
|
210
|
+
# description here
|
|
211
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
212
|
+
def revert_commit(commit_id,
|
|
213
|
+
body)
|
|
214
|
+
@api_call
|
|
215
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
216
|
+
'/api/rest/2.0/vcs/git/commits/{commit_id}/revert',
|
|
217
|
+
Server::DEFAULT)
|
|
218
|
+
.template_param(new_parameter(commit_id, key: 'commit_id')
|
|
219
|
+
.is_required(true)
|
|
220
|
+
.should_encode(true))
|
|
221
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
222
|
+
.body_param(new_parameter(body)
|
|
223
|
+
.is_required(true))
|
|
224
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
225
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
226
|
+
.auth(Single.new('bearerAuth')))
|
|
227
|
+
.response(new_response_handler
|
|
228
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
229
|
+
.deserialize_into(RevertResponse.method(:from_hash))
|
|
230
|
+
.is_api_response(true)
|
|
231
|
+
.local_error('400',
|
|
232
|
+
'Invalid request.',
|
|
233
|
+
ErrorResponseException)
|
|
234
|
+
.local_error('401',
|
|
235
|
+
'Unauthorized access.',
|
|
236
|
+
ErrorResponseException)
|
|
237
|
+
.local_error('403',
|
|
238
|
+
'Forbidden access.',
|
|
239
|
+
ErrorResponseException)
|
|
240
|
+
.local_error('500',
|
|
241
|
+
'Unexpected error',
|
|
242
|
+
ErrorResponseException))
|
|
243
|
+
.execute
|
|
244
|
+
end
|
|
245
|
+
|
|
246
|
+
# <span class="since-beta-tag">Version: 9.2.0.cl or later</span>
|
|
247
|
+
# Gets a list of commits for a given metadata object.
|
|
248
|
+
# Requires `DATAMANAGEMENT` (**Can manage data**) privilege.
|
|
249
|
+
# If [Role-Based Access Control
|
|
250
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
251
|
+
# instance on your instance, the `CAN_MANAGE_WORKSHEET_VIEWS_TABLES` (**Can
|
|
252
|
+
# manage data models**) privilege and edit access to the metadata objects.
|
|
253
|
+
# #### Endpoint URL
|
|
254
|
+
# @param [SearchCommitsRequest] body Required parameter: TODO: type
|
|
255
|
+
# description here
|
|
256
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
257
|
+
def search_commits(body)
|
|
258
|
+
@api_call
|
|
259
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
260
|
+
'/api/rest/2.0/vcs/git/commits/search',
|
|
261
|
+
Server::DEFAULT)
|
|
262
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
263
|
+
.body_param(new_parameter(body)
|
|
264
|
+
.is_required(true))
|
|
265
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
266
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
267
|
+
.auth(Single.new('bearerAuth')))
|
|
268
|
+
.response(new_response_handler
|
|
269
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
270
|
+
.deserialize_into(CommitHistoryResponse.method(:from_hash))
|
|
271
|
+
.is_api_response(true)
|
|
272
|
+
.is_response_array(true)
|
|
273
|
+
.local_error('400',
|
|
274
|
+
'Invalid request.',
|
|
275
|
+
ErrorResponseException)
|
|
276
|
+
.local_error('401',
|
|
277
|
+
'Unauthorized access.',
|
|
278
|
+
ErrorResponseException)
|
|
279
|
+
.local_error('403',
|
|
280
|
+
'Forbidden access.',
|
|
281
|
+
ErrorResponseException)
|
|
282
|
+
.local_error('500',
|
|
283
|
+
'Unexpected error',
|
|
284
|
+
ErrorResponseException))
|
|
285
|
+
.execute
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
# <span class="since-beta-tag">Version: 9.2.0.cl or later</span>
|
|
289
|
+
# Gets Git repository connections configured on the ThoughtSpot instance.
|
|
290
|
+
# Requires `ADMINISTRATION` (**Can administer ThoughtSpot**) privilege.
|
|
291
|
+
# If [Role-Based Access Control
|
|
292
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
293
|
+
# instance on your instance, the `CAN_SETUP_VERSION_CONTROL` (**Can set up
|
|
294
|
+
# version control**) privilege.
|
|
295
|
+
# #### Endpoint URL
|
|
296
|
+
# @param [SearchConfigRequest] body Required parameter: TODO: type
|
|
297
|
+
# description here
|
|
298
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
299
|
+
def search_config(body)
|
|
300
|
+
@api_call
|
|
301
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
302
|
+
'/api/rest/2.0/vcs/git/config/search',
|
|
303
|
+
Server::DEFAULT)
|
|
304
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
305
|
+
.body_param(new_parameter(body)
|
|
306
|
+
.is_required(true))
|
|
307
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
308
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
309
|
+
.auth(Single.new('bearerAuth')))
|
|
310
|
+
.response(new_response_handler
|
|
311
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
312
|
+
.deserialize_into(RepoConfigObject.method(:from_hash))
|
|
313
|
+
.is_api_response(true)
|
|
314
|
+
.is_response_array(true)
|
|
315
|
+
.local_error('400',
|
|
316
|
+
'Invalid request.',
|
|
317
|
+
ErrorResponseException)
|
|
318
|
+
.local_error('401',
|
|
319
|
+
'Unauthorized access.',
|
|
320
|
+
ErrorResponseException)
|
|
321
|
+
.local_error('403',
|
|
322
|
+
'Forbidden access.',
|
|
323
|
+
ErrorResponseException)
|
|
324
|
+
.local_error('500',
|
|
325
|
+
'Unexpected error',
|
|
326
|
+
ErrorResponseException))
|
|
327
|
+
.execute
|
|
328
|
+
end
|
|
329
|
+
|
|
330
|
+
# <span class="since-beta-tag">Version: 9.2.0.cl or later</span>
|
|
331
|
+
# Updates Git repository configuration settings.
|
|
332
|
+
# Requires `ADMINISTRATION` (**Can administer ThoughtSpot**) privilege.
|
|
333
|
+
# If [Role-Based Access Control
|
|
334
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
335
|
+
# instance on your instance, the `CAN_SETUP_VERSION_CONTROL` (**Can set up
|
|
336
|
+
# version control**) privilege.
|
|
337
|
+
# #### Endpoint URL
|
|
338
|
+
# @param [UpdateConfigRequest] body Required parameter: TODO: type
|
|
339
|
+
# description here
|
|
340
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
341
|
+
def update_config(body)
|
|
342
|
+
@api_call
|
|
343
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
344
|
+
'/api/rest/2.0/vcs/git/config/update',
|
|
345
|
+
Server::DEFAULT)
|
|
346
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
347
|
+
.body_param(new_parameter(body)
|
|
348
|
+
.is_required(true))
|
|
349
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
350
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
351
|
+
.auth(Single.new('bearerAuth')))
|
|
352
|
+
.response(new_response_handler
|
|
353
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
354
|
+
.deserialize_into(RepoConfigObject.method(:from_hash))
|
|
355
|
+
.is_api_response(true)
|
|
356
|
+
.local_error('400',
|
|
357
|
+
'Invalid request.',
|
|
358
|
+
ErrorResponseException)
|
|
359
|
+
.local_error('401',
|
|
360
|
+
'Unauthorized access.',
|
|
361
|
+
ErrorResponseException)
|
|
362
|
+
.local_error('403',
|
|
363
|
+
'Forbidden access.',
|
|
364
|
+
ErrorResponseException)
|
|
365
|
+
.local_error('500',
|
|
366
|
+
'Unexpected error',
|
|
367
|
+
ErrorResponseException))
|
|
368
|
+
.execute
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
# <span class="since-beta-tag">Version: 9.2.0.cl or later</span>
|
|
372
|
+
# Validates the content of your source branch against the objects in your
|
|
373
|
+
# destination environment.
|
|
374
|
+
# Before merging content from your source branch to the destination branch,
|
|
375
|
+
# run this API operation from your destination environment and ensure that
|
|
376
|
+
# the changes from the source branch function in the destination
|
|
377
|
+
# environment.
|
|
378
|
+
# Requires `DATAMANAGEMENT` (**Can manage data**) privilege.
|
|
379
|
+
# If [Role-Based Access Control
|
|
380
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
381
|
+
# instance on your instance, the `CAN_MANAGE_WORKSHEET_VIEWS_TABLES` (**Can
|
|
382
|
+
# manage data models**) privilege and edit access to the metadata objects.
|
|
383
|
+
# #### Endpoint URL
|
|
384
|
+
# @param [ValidateMergeRequest] body Required parameter: TODO: type
|
|
385
|
+
# description here
|
|
386
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
387
|
+
def validate_merge(body)
|
|
388
|
+
@api_call
|
|
389
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
390
|
+
'/api/rest/2.0/vcs/git/branches/validate',
|
|
391
|
+
Server::DEFAULT)
|
|
392
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
393
|
+
.body_param(new_parameter(body)
|
|
394
|
+
.is_required(true))
|
|
395
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
396
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
397
|
+
.auth(Single.new('bearerAuth')))
|
|
398
|
+
.response(new_response_handler
|
|
399
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
400
|
+
.deserialize_into(DeployResponse.method(:from_hash))
|
|
401
|
+
.is_api_response(true)
|
|
402
|
+
.is_response_array(true)
|
|
403
|
+
.local_error('400',
|
|
404
|
+
'Invalid request.',
|
|
405
|
+
ErrorResponseException)
|
|
406
|
+
.local_error('401',
|
|
407
|
+
'Unauthorized access.',
|
|
408
|
+
ErrorResponseException)
|
|
409
|
+
.local_error('403',
|
|
410
|
+
'Forbidden access.',
|
|
411
|
+
ErrorResponseException)
|
|
412
|
+
.local_error('500',
|
|
413
|
+
'Unexpected error',
|
|
414
|
+
ErrorResponseException))
|
|
415
|
+
.execute
|
|
416
|
+
end
|
|
417
|
+
end
|
|
418
|
+
end
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
# thought_spot_public_rest_api
|
|
2
|
+
#
|
|
3
|
+
# This file was automatically generated by
|
|
4
|
+
# APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
5
|
+
|
|
6
|
+
module ThoughtSpotPublicRestApi
|
|
7
|
+
# WebhooksController
|
|
8
|
+
class WebhooksController < BaseController
|
|
9
|
+
# <span class="since-beta-tag">Beta</span> <span
|
|
10
|
+
# class="since-beta-tag">Version: 10.14.0.cl or later</span>
|
|
11
|
+
# Creates a new webhook configuration to receive notifications for specified
|
|
12
|
+
# events. The webhook will be triggered when the configured events occur in
|
|
13
|
+
# the system.
|
|
14
|
+
# Requires `ADMINISTRATION` (**Can administer ThoughtSpot**) or `DEVELOPER`
|
|
15
|
+
# (**Has developer privilege**) privilege. If [Role-Based Access Control
|
|
16
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
17
|
+
# instance, users with `CAN_MANAGE_WEBHOOKS` (**Can manage webhooks**)
|
|
18
|
+
# privilege are also authorized to perform this action.
|
|
19
|
+
# #### Endpoint URL
|
|
20
|
+
# @param [CreateWebhookConfigurationRequest] body Required parameter: TODO:
|
|
21
|
+
# type description here
|
|
22
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
23
|
+
def create_webhook_configuration(body)
|
|
24
|
+
@api_call
|
|
25
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
26
|
+
'/api/rest/2.0/webhooks/create',
|
|
27
|
+
Server::DEFAULT)
|
|
28
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
29
|
+
.body_param(new_parameter(body)
|
|
30
|
+
.is_required(true))
|
|
31
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
32
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
33
|
+
.auth(Single.new('bearerAuth')))
|
|
34
|
+
.response(new_response_handler
|
|
35
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
36
|
+
.deserialize_into(WebhookResponse.method(:from_hash))
|
|
37
|
+
.is_api_response(true)
|
|
38
|
+
.local_error('400',
|
|
39
|
+
'Invalid request.',
|
|
40
|
+
ErrorResponseException)
|
|
41
|
+
.local_error('401',
|
|
42
|
+
'Unauthorized access.',
|
|
43
|
+
ErrorResponseException)
|
|
44
|
+
.local_error('403',
|
|
45
|
+
'Forbidden access.',
|
|
46
|
+
ErrorResponseException)
|
|
47
|
+
.local_error('500',
|
|
48
|
+
'Unexpected error',
|
|
49
|
+
ErrorResponseException))
|
|
50
|
+
.execute
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# <span class="since-beta-tag">Beta</span> <span
|
|
54
|
+
# class="since-beta-tag">Version: 10.14.0.cl or later</span>
|
|
55
|
+
# Deletes one or more webhook configurations by their unique id or name.
|
|
56
|
+
# Returns status of each deletion operation, including successfully deleted
|
|
57
|
+
# webhooks and any failures with error details.
|
|
58
|
+
# Requires `ADMINISTRATION` (**Can administer ThoughtSpot**) or `DEVELOPER`
|
|
59
|
+
# (**Has developer privilege**) privilege. If [Role-Based Access Control
|
|
60
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
61
|
+
# instance, users with `CAN_MANAGE_WEBHOOKS` (**Can manage webhooks**)
|
|
62
|
+
# privilege are also authorized to perform this action.
|
|
63
|
+
# #### Endpoint URL
|
|
64
|
+
# @param [DeleteWebhookConfigurationsRequest] body Required parameter: TODO:
|
|
65
|
+
# type description here
|
|
66
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
67
|
+
def delete_webhook_configurations(body)
|
|
68
|
+
@api_call
|
|
69
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
70
|
+
'/api/rest/2.0/webhooks/delete',
|
|
71
|
+
Server::DEFAULT)
|
|
72
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
73
|
+
.body_param(new_parameter(body)
|
|
74
|
+
.is_required(true))
|
|
75
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
76
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
77
|
+
.auth(Single.new('bearerAuth')))
|
|
78
|
+
.response(new_response_handler
|
|
79
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
80
|
+
.deserialize_into(WebhookDeleteResponse.method(:from_hash))
|
|
81
|
+
.is_api_response(true)
|
|
82
|
+
.local_error('400',
|
|
83
|
+
'Invalid request.',
|
|
84
|
+
ErrorResponseException)
|
|
85
|
+
.local_error('401',
|
|
86
|
+
'Unauthorized access.',
|
|
87
|
+
ErrorResponseException)
|
|
88
|
+
.local_error('403',
|
|
89
|
+
'Forbidden access.',
|
|
90
|
+
ErrorResponseException)
|
|
91
|
+
.local_error('500',
|
|
92
|
+
'Unexpected error',
|
|
93
|
+
ErrorResponseException))
|
|
94
|
+
.execute
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
# <span class="since-beta-tag">Beta</span> <span
|
|
98
|
+
# class="since-beta-tag">Version: 26.4.0.cl or later</span>
|
|
99
|
+
# Get storage config information for a webhook configuration. This endpoint
|
|
100
|
+
# provides ThoughtSpot's identity information and IAM policy configuration
|
|
101
|
+
# required for customers to set up cross-account access to their S3 buckets.
|
|
102
|
+
# The setup info returned depends on the ThoughtSpot cluster type:
|
|
103
|
+
# - For AWS clusters: Returns `aws_config` with STS AssumeRole configuration
|
|
104
|
+
# - For GCP clusters: Returns `gcp_config` with STS
|
|
105
|
+
# AssumeRoleWithWebIdentity configuration
|
|
106
|
+
# **Note:** This endpoint only returns data if the webhook has a storage
|
|
107
|
+
# destination configured.
|
|
108
|
+
# Requires `ADMINISTRATION` (**Can administer ThoughtSpot**) or `DEVELOPER`
|
|
109
|
+
# (**Has developer privilege**) privilege. If [Role-Based Access Control
|
|
110
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
111
|
+
# instance, users with `CAN_MANAGE_WEBHOOKS` (**Can manage webhooks**)
|
|
112
|
+
# privilege are also authorized to perform this action.
|
|
113
|
+
# #### Endpoint URL
|
|
114
|
+
# @param [String] webhook_identifier Required parameter: Unique ID or name
|
|
115
|
+
# of the webhook configuration.
|
|
116
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
117
|
+
def get_webhook_storage_config(webhook_identifier)
|
|
118
|
+
@api_call
|
|
119
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
|
120
|
+
'/api/rest/2.0/webhooks/{webhook_identifier}/storage-config',
|
|
121
|
+
Server::DEFAULT)
|
|
122
|
+
.template_param(new_parameter(webhook_identifier, key: 'webhook_identifier')
|
|
123
|
+
.is_required(true)
|
|
124
|
+
.should_encode(true))
|
|
125
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
126
|
+
.auth(Single.new('bearerAuth')))
|
|
127
|
+
.response(new_response_handler
|
|
128
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
129
|
+
.deserialize_into(StorageSetupInfo.method(:from_hash))
|
|
130
|
+
.is_api_response(true)
|
|
131
|
+
.local_error('400',
|
|
132
|
+
'Invalid request. Webhook not found or does not have storage'\
|
|
133
|
+
' destination configured.',
|
|
134
|
+
ErrorResponseException)
|
|
135
|
+
.local_error('401',
|
|
136
|
+
'Unauthorized access.',
|
|
137
|
+
ErrorResponseException)
|
|
138
|
+
.local_error('403',
|
|
139
|
+
'Forbidden access.',
|
|
140
|
+
ErrorResponseException)
|
|
141
|
+
.local_error('500',
|
|
142
|
+
'Unexpected error',
|
|
143
|
+
ErrorResponseException))
|
|
144
|
+
.execute
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
# <span class="since-beta-tag">Beta</span> <span
|
|
148
|
+
# class="since-beta-tag">Version: 10.14.0.cl or later</span>
|
|
149
|
+
# Searches for webhook configurations based on various criteria such as Org,
|
|
150
|
+
# webhook identifier, event type, with support for pagination and sorting.
|
|
151
|
+
# Returns matching webhook configurations with their complete details.
|
|
152
|
+
# Requires `ADMINISTRATION` (**Can administer ThoughtSpot**) or `DEVELOPER`
|
|
153
|
+
# (**Has developer privilege**) privilege. If [Role-Based Access Control
|
|
154
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
155
|
+
# instance, users with `CAN_MANAGE_WEBHOOKS` (**Can manage webhooks**)
|
|
156
|
+
# privilege are also authorized to perform this action.
|
|
157
|
+
# #### Endpoint URL
|
|
158
|
+
# @param [SearchWebhookConfigurationsRequest] body Required parameter: TODO:
|
|
159
|
+
# type description here
|
|
160
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
161
|
+
def search_webhook_configurations(body)
|
|
162
|
+
@api_call
|
|
163
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
164
|
+
'/api/rest/2.0/webhooks/search',
|
|
165
|
+
Server::DEFAULT)
|
|
166
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
167
|
+
.body_param(new_parameter(body)
|
|
168
|
+
.is_required(true))
|
|
169
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
|
170
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
171
|
+
.auth(Single.new('bearerAuth')))
|
|
172
|
+
.response(new_response_handler
|
|
173
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
|
174
|
+
.deserialize_into(WebhookSearchResponse.method(:from_hash))
|
|
175
|
+
.is_api_response(true)
|
|
176
|
+
.local_error('400',
|
|
177
|
+
'Invalid request.',
|
|
178
|
+
ErrorResponseException)
|
|
179
|
+
.local_error('401',
|
|
180
|
+
'Unauthorized access.',
|
|
181
|
+
ErrorResponseException)
|
|
182
|
+
.local_error('403',
|
|
183
|
+
'Forbidden access.',
|
|
184
|
+
ErrorResponseException)
|
|
185
|
+
.local_error('500',
|
|
186
|
+
'Unexpected error',
|
|
187
|
+
ErrorResponseException))
|
|
188
|
+
.execute
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
# <span class="since-beta-tag">Beta</span> <span
|
|
192
|
+
# class="since-beta-tag">Version: 10.14.0.cl or later</span>
|
|
193
|
+
# Updates an existing webhook configuration by its unique id or name. Only
|
|
194
|
+
# the provided fields will be updated.
|
|
195
|
+
# Requires `ADMINISTRATION` (**Can administer ThoughtSpot**) or `DEVELOPER`
|
|
196
|
+
# (**Has developer privilege**) privilege. If [Role-Based Access Control
|
|
197
|
+
# (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your
|
|
198
|
+
# instance, users with `CAN_MANAGE_WEBHOOKS` (**Can manage webhooks**)
|
|
199
|
+
# privilege are also authorized to perform this action.
|
|
200
|
+
# #### Endpoint URL
|
|
201
|
+
# @param [String] webhook_identifier Required parameter: Unique ID or name
|
|
202
|
+
# of the webhook configuration.
|
|
203
|
+
# @param [UpdateWebhookConfigurationRequest] body Required parameter: TODO:
|
|
204
|
+
# type description here
|
|
205
|
+
# @return [ApiResponse] Complete http response with raw body and status code.
|
|
206
|
+
def update_webhook_configuration(webhook_identifier,
|
|
207
|
+
body)
|
|
208
|
+
@api_call
|
|
209
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
|
210
|
+
'/api/rest/2.0/webhooks/{webhook_identifier}/update',
|
|
211
|
+
Server::DEFAULT)
|
|
212
|
+
.template_param(new_parameter(webhook_identifier, key: 'webhook_identifier')
|
|
213
|
+
.is_required(true)
|
|
214
|
+
.should_encode(true))
|
|
215
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
|
216
|
+
.body_param(new_parameter(body)
|
|
217
|
+
.is_required(true))
|
|
218
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
|
219
|
+
.auth(Single.new('bearerAuth')))
|
|
220
|
+
.response(new_response_handler
|
|
221
|
+
.is_response_void(true)
|
|
222
|
+
.is_api_response(true)
|
|
223
|
+
.local_error('400',
|
|
224
|
+
'Invalid request.',
|
|
225
|
+
ErrorResponseException)
|
|
226
|
+
.local_error('401',
|
|
227
|
+
'Unauthorized access.',
|
|
228
|
+
ErrorResponseException)
|
|
229
|
+
.local_error('403',
|
|
230
|
+
'Forbidden access.',
|
|
231
|
+
ErrorResponseException)
|
|
232
|
+
.local_error('500',
|
|
233
|
+
'Unexpected error',
|
|
234
|
+
ErrorResponseException))
|
|
235
|
+
.execute
|
|
236
|
+
end
|
|
237
|
+
end
|
|
238
|
+
end
|