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.
Files changed (612) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +28 -0
  3. data/README.md +181 -0
  4. data/bin/console +15 -0
  5. data/lib/thought_spot_public_rest_api/api_helper.rb +10 -0
  6. data/lib/thought_spot_public_rest_api/client.rb +218 -0
  7. data/lib/thought_spot_public_rest_api/configuration.rb +177 -0
  8. data/lib/thought_spot_public_rest_api/controllers/ai_controller.rb +550 -0
  9. data/lib/thought_spot_public_rest_api/controllers/authentication_controller.rb +498 -0
  10. data/lib/thought_spot_public_rest_api/controllers/base_controller.rb +65 -0
  11. data/lib/thought_spot_public_rest_api/controllers/collections_controller.rb +214 -0
  12. data/lib/thought_spot_public_rest_api/controllers/connection_configurations_controller.rb +227 -0
  13. data/lib/thought_spot_public_rest_api/controllers/connections_controller.rb +845 -0
  14. data/lib/thought_spot_public_rest_api/controllers/custom_action_controller.rb +205 -0
  15. data/lib/thought_spot_public_rest_api/controllers/custom_calendars_controller.rb +373 -0
  16. data/lib/thought_spot_public_rest_api/controllers/data_controller.rb +161 -0
  17. data/lib/thought_spot_public_rest_api/controllers/dbt_controller.rb +381 -0
  18. data/lib/thought_spot_public_rest_api/controllers/email_customization_controller.rb +354 -0
  19. data/lib/thought_spot_public_rest_api/controllers/groups_controller.rb +257 -0
  20. data/lib/thought_spot_public_rest_api/controllers/jobs_controller.rb +62 -0
  21. data/lib/thought_spot_public_rest_api/controllers/log_controller.rb +67 -0
  22. data/lib/thought_spot_public_rest_api/controllers/metadata_controller.rb +1074 -0
  23. data/lib/thought_spot_public_rest_api/controllers/orgs_controller.rb +183 -0
  24. data/lib/thought_spot_public_rest_api/controllers/reports_controller.rb +126 -0
  25. data/lib/thought_spot_public_rest_api/controllers/roles_controller.rb +176 -0
  26. data/lib/thought_spot_public_rest_api/controllers/schedules_controller.rb +213 -0
  27. data/lib/thought_spot_public_rest_api/controllers/security_controller.rb +749 -0
  28. data/lib/thought_spot_public_rest_api/controllers/system_controller.rb +401 -0
  29. data/lib/thought_spot_public_rest_api/controllers/tags_controller.rb +246 -0
  30. data/lib/thought_spot_public_rest_api/controllers/users_controller.rb +467 -0
  31. data/lib/thought_spot_public_rest_api/controllers/variable_controller.rb +338 -0
  32. data/lib/thought_spot_public_rest_api/controllers/version_control_controller.rb +418 -0
  33. data/lib/thought_spot_public_rest_api/controllers/webhooks_controller.rb +238 -0
  34. data/lib/thought_spot_public_rest_api/exceptions/api_exception.rb +21 -0
  35. data/lib/thought_spot_public_rest_api/exceptions/error_response_exception.rb +46 -0
  36. data/lib/thought_spot_public_rest_api/http/api_response.rb +19 -0
  37. data/lib/thought_spot_public_rest_api/http/auth/oauth_2.rb +53 -0
  38. data/lib/thought_spot_public_rest_api/http/http_call_back.rb +10 -0
  39. data/lib/thought_spot_public_rest_api/http/http_method_enum.rb +10 -0
  40. data/lib/thought_spot_public_rest_api/http/http_request.rb +10 -0
  41. data/lib/thought_spot_public_rest_api/http/http_response.rb +10 -0
  42. data/lib/thought_spot_public_rest_api/http/proxy_settings.rb +22 -0
  43. data/lib/thought_spot_public_rest_api/logging/configuration/api_logging_configuration.rb +186 -0
  44. data/lib/thought_spot_public_rest_api/logging/sdk_logger.rb +17 -0
  45. data/lib/thought_spot_public_rest_api/models/access_token.rb +125 -0
  46. data/lib/thought_spot_public_rest_api/models/account_status.rb +52 -0
  47. data/lib/thought_spot_public_rest_api/models/account_status2.rb +53 -0
  48. data/lib/thought_spot_public_rest_api/models/account_status3.rb +52 -0
  49. data/lib/thought_spot_public_rest_api/models/account_type.rb +48 -0
  50. data/lib/thought_spot_public_rest_api/models/account_type2.rb +48 -0
  51. data/lib/thought_spot_public_rest_api/models/account_type3.rb +48 -0
  52. data/lib/thought_spot_public_rest_api/models/action_config.rb +90 -0
  53. data/lib/thought_spot_public_rest_api/models/action_config_input.rb +90 -0
  54. data/lib/thought_spot_public_rest_api/models/action_config_input_create.rb +91 -0
  55. data/lib/thought_spot_public_rest_api/models/action_details.rb +85 -0
  56. data/lib/thought_spot_public_rest_api/models/action_details_input.rb +86 -0
  57. data/lib/thought_spot_public_rest_api/models/action_details_input_create.rb +87 -0
  58. data/lib/thought_spot_public_rest_api/models/activate_user_request.rb +104 -0
  59. data/lib/thought_spot_public_rest_api/models/agent_conversation.rb +75 -0
  60. data/lib/thought_spot_public_rest_api/models/ai_context.rb +91 -0
  61. data/lib/thought_spot_public_rest_api/models/answer_content.rb +135 -0
  62. data/lib/thought_spot_public_rest_api/models/answer_context_input.rb +85 -0
  63. data/lib/thought_spot_public_rest_api/models/answer_data_response.rb +101 -0
  64. data/lib/thought_spot_public_rest_api/models/api_key.rb +89 -0
  65. data/lib/thought_spot_public_rest_api/models/api_key_input.rb +89 -0
  66. data/lib/thought_spot_public_rest_api/models/assign_change_author_request.rb +107 -0
  67. data/lib/thought_spot_public_rest_api/models/assign_tag_request.rb +92 -0
  68. data/lib/thought_spot_public_rest_api/models/associate_metadata_input.rb +102 -0
  69. data/lib/thought_spot_public_rest_api/models/associate_metadata_input_create.rb +101 -0
  70. data/lib/thought_spot_public_rest_api/models/authentication.rb +110 -0
  71. data/lib/thought_spot_public_rest_api/models/authentication_input.rb +110 -0
  72. data/lib/thought_spot_public_rest_api/models/authentication_type.rb +48 -0
  73. data/lib/thought_spot_public_rest_api/models/authentication_type1.rb +64 -0
  74. data/lib/thought_spot_public_rest_api/models/authentication_type2.rb +74 -0
  75. data/lib/thought_spot_public_rest_api/models/author.rb +82 -0
  76. data/lib/thought_spot_public_rest_api/models/author_metadata_type_input.rb +89 -0
  77. data/lib/thought_spot_public_rest_api/models/author_type.rb +88 -0
  78. data/lib/thought_spot_public_rest_api/models/aws_assume_role_setup.rb +120 -0
  79. data/lib/thought_spot_public_rest_api/models/aws_s3_config.rb +115 -0
  80. data/lib/thought_spot_public_rest_api/models/aws_s3_config_input.rb +120 -0
  81. data/lib/thought_spot_public_rest_api/models/base_model.rb +110 -0
  82. data/lib/thought_spot_public_rest_api/models/basic_auth.rb +89 -0
  83. data/lib/thought_spot_public_rest_api/models/basic_auth_input.rb +89 -0
  84. data/lib/thought_spot_public_rest_api/models/calendar_response.rb +153 -0
  85. data/lib/thought_spot_public_rest_api/models/calendar_type.rb +44 -0
  86. data/lib/thought_spot_public_rest_api/models/callback.rb +79 -0
  87. data/lib/thought_spot_public_rest_api/models/callback_input.rb +78 -0
  88. data/lib/thought_spot_public_rest_api/models/callback_input_mandatory.rb +78 -0
  89. data/lib/thought_spot_public_rest_api/models/change_user_password_request.rb +94 -0
  90. data/lib/thought_spot_public_rest_api/models/channel.rb +36 -0
  91. data/lib/thought_spot_public_rest_api/models/channel_history_event_input.rb +84 -0
  92. data/lib/thought_spot_public_rest_api/models/channel_history_job.rb +116 -0
  93. data/lib/thought_spot_public_rest_api/models/channel_status.rb +44 -0
  94. data/lib/thought_spot_public_rest_api/models/channel_validation_aws_s3_info.rb +99 -0
  95. data/lib/thought_spot_public_rest_api/models/channel_validation_detail.rb +119 -0
  96. data/lib/thought_spot_public_rest_api/models/cluster_non_embed_access.rb +102 -0
  97. data/lib/thought_spot_public_rest_api/models/cluster_non_embed_access_input.rb +100 -0
  98. data/lib/thought_spot_public_rest_api/models/cluster_preference.rb +26 -0
  99. data/lib/thought_spot_public_rest_api/models/cluster_type.rb +37 -0
  100. data/lib/thought_spot_public_rest_api/models/collection.rb +169 -0
  101. data/lib/thought_spot_public_rest_api/models/collection_delete_response.rb +109 -0
  102. data/lib/thought_spot_public_rest_api/models/collection_delete_type_identifiers.rb +97 -0
  103. data/lib/thought_spot_public_rest_api/models/collection_entity_identifier.rb +88 -0
  104. data/lib/thought_spot_public_rest_api/models/collection_metadata_input.rb +82 -0
  105. data/lib/thought_spot_public_rest_api/models/collection_metadata_item.rb +97 -0
  106. data/lib/thought_spot_public_rest_api/models/collection_search_response.rb +129 -0
  107. data/lib/thought_spot_public_rest_api/models/column.rb +130 -0
  108. data/lib/thought_spot_public_rest_api/models/column_security_rule.rb +108 -0
  109. data/lib/thought_spot_public_rest_api/models/column_security_rule_column.rb +82 -0
  110. data/lib/thought_spot_public_rest_api/models/column_security_rule_group.rb +82 -0
  111. data/lib/thought_spot_public_rest_api/models/column_security_rule_group_operation.rb +84 -0
  112. data/lib/thought_spot_public_rest_api/models/column_security_rule_response.rb +109 -0
  113. data/lib/thought_spot_public_rest_api/models/column_security_rule_source_table.rb +82 -0
  114. data/lib/thought_spot_public_rest_api/models/column_security_rule_table_input.rb +90 -0
  115. data/lib/thought_spot_public_rest_api/models/column_security_rule_update.rb +110 -0
  116. data/lib/thought_spot_public_rest_api/models/commit_branch_request.rb +118 -0
  117. data/lib/thought_spot_public_rest_api/models/commit_file_type.rb +97 -0
  118. data/lib/thought_spot_public_rest_api/models/commit_history_response.rb +118 -0
  119. data/lib/thought_spot_public_rest_api/models/commit_response.rb +150 -0
  120. data/lib/thought_spot_public_rest_api/models/commiter_type.rb +88 -0
  121. data/lib/thought_spot_public_rest_api/models/communication_channel_preferences_response.rb +107 -0
  122. data/lib/thought_spot_public_rest_api/models/communication_channel_validate_response.rb +138 -0
  123. data/lib/thought_spot_public_rest_api/models/configure_communication_channel_preferences_request.rb +104 -0
  124. data/lib/thought_spot_public_rest_api/models/configure_security_settings_request.rb +97 -0
  125. data/lib/thought_spot_public_rest_api/models/connection_configuration_response.rb +206 -0
  126. data/lib/thought_spot_public_rest_api/models/connection_configuration_search_request.rb +98 -0
  127. data/lib/thought_spot_public_rest_api/models/connection_input.rb +111 -0
  128. data/lib/thought_spot_public_rest_api/models/context_payload_v2_input.rb +111 -0
  129. data/lib/thought_spot_public_rest_api/models/conversation.rb +75 -0
  130. data/lib/thought_spot_public_rest_api/models/conversation_settings_input.rb +113 -0
  131. data/lib/thought_spot_public_rest_api/models/convert_worksheet_to_model_request.rb +111 -0
  132. data/lib/thought_spot_public_rest_api/models/copy_object_request.rb +104 -0
  133. data/lib/thought_spot_public_rest_api/models/create_agent_conversation_request.rb +85 -0
  134. data/lib/thought_spot_public_rest_api/models/create_calendar_request.rb +180 -0
  135. data/lib/thought_spot_public_rest_api/models/create_collection_request.rb +103 -0
  136. data/lib/thought_spot_public_rest_api/models/create_config_request.rb +171 -0
  137. data/lib/thought_spot_public_rest_api/models/create_connection_configuration_request.rb +187 -0
  138. data/lib/thought_spot_public_rest_api/models/create_connection_request.rb +121 -0
  139. data/lib/thought_spot_public_rest_api/models/create_connection_response.rb +105 -0
  140. data/lib/thought_spot_public_rest_api/models/create_conversation_request.rb +88 -0
  141. data/lib/thought_spot_public_rest_api/models/create_custom_action_request.rb +133 -0
  142. data/lib/thought_spot_public_rest_api/models/create_email_customization_request.rb +88 -0
  143. data/lib/thought_spot_public_rest_api/models/create_email_customization_response.rb +102 -0
  144. data/lib/thought_spot_public_rest_api/models/create_org_request.rb +84 -0
  145. data/lib/thought_spot_public_rest_api/models/create_role_request.rb +110 -0
  146. data/lib/thought_spot_public_rest_api/models/create_schedule_request.rb +178 -0
  147. data/lib/thought_spot_public_rest_api/models/create_tag_request.rb +84 -0
  148. data/lib/thought_spot_public_rest_api/models/create_user_group_request.rb +179 -0
  149. data/lib/thought_spot_public_rest_api/models/create_user_request.rb +330 -0
  150. data/lib/thought_spot_public_rest_api/models/create_variable_request.rb +106 -0
  151. data/lib/thought_spot_public_rest_api/models/create_webhook_configuration_request.rb +175 -0
  152. data/lib/thought_spot_public_rest_api/models/creation_method.rb +36 -0
  153. data/lib/thought_spot_public_rest_api/models/cron_expression.rb +118 -0
  154. data/lib/thought_spot_public_rest_api/models/cron_expression_input.rb +118 -0
  155. data/lib/thought_spot_public_rest_api/models/csp_settings.rb +150 -0
  156. data/lib/thought_spot_public_rest_api/models/csp_settings_input.rb +150 -0
  157. data/lib/thought_spot_public_rest_api/models/currency_format.rb +964 -0
  158. data/lib/thought_spot_public_rest_api/models/custom_action_metadata_type_input.rb +89 -0
  159. data/lib/thought_spot_public_rest_api/models/data_format.rb +37 -0
  160. data/lib/thought_spot_public_rest_api/models/data_source.rb +98 -0
  161. data/lib/thought_spot_public_rest_api/models/data_source_context_input.rb +72 -0
  162. data/lib/thought_spot_public_rest_api/models/data_type.rb +53 -0
  163. data/lib/thought_spot_public_rest_api/models/data_warehouse_object_input.rb +110 -0
  164. data/lib/thought_spot_public_rest_api/models/data_warehouse_object_type.rb +44 -0
  165. data/lib/thought_spot_public_rest_api/models/data_warehouse_objects.rb +83 -0
  166. data/lib/thought_spot_public_rest_api/models/data_warehouse_type.rb +160 -0
  167. data/lib/thought_spot_public_rest_api/models/data_warehouse_type1.rb +160 -0
  168. data/lib/thought_spot_public_rest_api/models/data_warehouse_type3.rb +160 -0
  169. data/lib/thought_spot_public_rest_api/models/database.rb +106 -0
  170. data/lib/thought_spot_public_rest_api/models/date_format_locale.rb +136 -0
  171. data/lib/thought_spot_public_rest_api/models/dbt_search_response.rb +151 -0
  172. data/lib/thought_spot_public_rest_api/models/deactivate_user_request.rb +83 -0
  173. data/lib/thought_spot_public_rest_api/models/default_action_config.rb +82 -0
  174. data/lib/thought_spot_public_rest_api/models/default_action_config_input.rb +82 -0
  175. data/lib/thought_spot_public_rest_api/models/default_action_config_input_create.rb +83 -0
  176. data/lib/thought_spot_public_rest_api/models/default_action_config_search_input.rb +82 -0
  177. data/lib/thought_spot_public_rest_api/models/default_metadata_type.rb +53 -0
  178. data/lib/thought_spot_public_rest_api/models/delete_collection_request.rb +103 -0
  179. data/lib/thought_spot_public_rest_api/models/delete_config_request.rb +84 -0
  180. data/lib/thought_spot_public_rest_api/models/delete_connection_configuration_request.rb +87 -0
  181. data/lib/thought_spot_public_rest_api/models/delete_connection_request.rb +75 -0
  182. data/lib/thought_spot_public_rest_api/models/delete_metadata_request.rb +96 -0
  183. data/lib/thought_spot_public_rest_api/models/delete_metadata_type_input.rb +89 -0
  184. data/lib/thought_spot_public_rest_api/models/delete_org_email_customization_request.rb +77 -0
  185. data/lib/thought_spot_public_rest_api/models/delete_variables_request.rb +74 -0
  186. data/lib/thought_spot_public_rest_api/models/delete_webhook_configurations_request.rb +75 -0
  187. data/lib/thought_spot_public_rest_api/models/dependent_object_version.rb +36 -0
  188. data/lib/thought_spot_public_rest_api/models/deploy_commit_request.rb +115 -0
  189. data/lib/thought_spot_public_rest_api/models/deploy_policy.rb +44 -0
  190. data/lib/thought_spot_public_rest_api/models/deploy_response.rb +124 -0
  191. data/lib/thought_spot_public_rest_api/models/deploy_type.rb +37 -0
  192. data/lib/thought_spot_public_rest_api/models/edoc_format.rb +40 -0
  193. data/lib/thought_spot_public_rest_api/models/edoc_format1.rb +36 -0
  194. data/lib/thought_spot_public_rest_api/models/entity_header.rb +103 -0
  195. data/lib/thought_spot_public_rest_api/models/eureka_data_source_suggestion_response.rb +87 -0
  196. data/lib/thought_spot_public_rest_api/models/eureka_decompose_query_response.rb +81 -0
  197. data/lib/thought_spot_public_rest_api/models/eureka_get_nl_instructions_response.rb +83 -0
  198. data/lib/thought_spot_public_rest_api/models/eureka_get_relevant_questions_response.rb +88 -0
  199. data/lib/thought_spot_public_rest_api/models/eureka_llm_decompose_query_response.rb +88 -0
  200. data/lib/thought_spot_public_rest_api/models/eureka_llm_suggested_query.rb +101 -0
  201. data/lib/thought_spot_public_rest_api/models/eureka_relevant_question.rb +103 -0
  202. data/lib/thought_spot_public_rest_api/models/eureka_set_nl_instructions_response.rb +73 -0
  203. data/lib/thought_spot_public_rest_api/models/event.rb +26 -0
  204. data/lib/thought_spot_public_rest_api/models/event_channel_config.rb +81 -0
  205. data/lib/thought_spot_public_rest_api/models/event_channel_config_input.rb +81 -0
  206. data/lib/thought_spot_public_rest_api/models/event_type.rb +26 -0
  207. data/lib/thought_spot_public_rest_api/models/event_type1.rb +26 -0
  208. data/lib/thought_spot_public_rest_api/models/exclude_metadata_list_item_input.rb +96 -0
  209. data/lib/thought_spot_public_rest_api/models/export_answer_report_request.rb +159 -0
  210. data/lib/thought_spot_public_rest_api/models/export_liveboard_report_request.rb +273 -0
  211. data/lib/thought_spot_public_rest_api/models/export_metadata_tml_batched_request.rb +133 -0
  212. data/lib/thought_spot_public_rest_api/models/export_metadata_tml_request.rb +196 -0
  213. data/lib/thought_spot_public_rest_api/models/export_metadata_type_input.rb +119 -0
  214. data/lib/thought_spot_public_rest_api/models/export_options.rb +168 -0
  215. data/lib/thought_spot_public_rest_api/models/export_schema_version.rb +40 -0
  216. data/lib/thought_spot_public_rest_api/models/external_table_input.rb +109 -0
  217. data/lib/thought_spot_public_rest_api/models/favorite_metadata_input.rb +91 -0
  218. data/lib/thought_spot_public_rest_api/models/favorite_metadata_item.rb +93 -0
  219. data/lib/thought_spot_public_rest_api/models/favorite_object_options_input.rb +91 -0
  220. data/lib/thought_spot_public_rest_api/models/fetch_answer_data_request.rb +157 -0
  221. data/lib/thought_spot_public_rest_api/models/fetch_answer_sql_query_request.rb +75 -0
  222. data/lib/thought_spot_public_rest_api/models/fetch_async_import_task_status_request.rb +134 -0
  223. data/lib/thought_spot_public_rest_api/models/fetch_column_security_rules_request.rb +82 -0
  224. data/lib/thought_spot_public_rest_api/models/fetch_connection_diff_status_response.rb +77 -0
  225. data/lib/thought_spot_public_rest_api/models/fetch_liveboard_data_request.rb +185 -0
  226. data/lib/thought_spot_public_rest_api/models/fetch_liveboard_sql_query_request.rb +91 -0
  227. data/lib/thought_spot_public_rest_api/models/fetch_logs_request.rb +112 -0
  228. data/lib/thought_spot_public_rest_api/models/fetch_object_privileges_request.rb +128 -0
  229. data/lib/thought_spot_public_rest_api/models/fetch_permissions_of_principals_request.rb +139 -0
  230. data/lib/thought_spot_public_rest_api/models/fetch_permissions_on_metadata_request.rb +159 -0
  231. data/lib/thought_spot_public_rest_api/models/field_name.rb +48 -0
  232. data/lib/thought_spot_public_rest_api/models/field_name1.rb +60 -0
  233. data/lib/thought_spot_public_rest_api/models/field_name2.rb +68 -0
  234. data/lib/thought_spot_public_rest_api/models/field_name3.rb +52 -0
  235. data/lib/thought_spot_public_rest_api/models/field_name4.rb +40 -0
  236. data/lib/thought_spot_public_rest_api/models/field_type.rb +36 -0
  237. data/lib/thought_spot_public_rest_api/models/field_type1.rb +36 -0
  238. data/lib/thought_spot_public_rest_api/models/file_format.rb +44 -0
  239. data/lib/thought_spot_public_rest_api/models/file_format2.rb +40 -0
  240. data/lib/thought_spot_public_rest_api/models/filter_rules.rb +120 -0
  241. data/lib/thought_spot_public_rest_api/models/force_logout_users_request.rb +77 -0
  242. data/lib/thought_spot_public_rest_api/models/frequency.rb +75 -0
  243. data/lib/thought_spot_public_rest_api/models/frequency_input.rb +75 -0
  244. data/lib/thought_spot_public_rest_api/models/gcp_web_identity_setup.rb +144 -0
  245. data/lib/thought_spot_public_rest_api/models/generate_csv_request.rb +140 -0
  246. data/lib/thought_spot_public_rest_api/models/generic_info.rb +88 -0
  247. data/lib/thought_spot_public_rest_api/models/get_async_import_status_response.rb +98 -0
  248. data/lib/thought_spot_public_rest_api/models/get_custom_access_token_request.rb +280 -0
  249. data/lib/thought_spot_public_rest_api/models/get_data_source_suggestions_request.rb +73 -0
  250. data/lib/thought_spot_public_rest_api/models/get_full_access_token_request.rb +170 -0
  251. data/lib/thought_spot_public_rest_api/models/get_nl_instructions_request.rb +75 -0
  252. data/lib/thought_spot_public_rest_api/models/get_object_access_token_request.rb +183 -0
  253. data/lib/thought_spot_public_rest_api/models/get_relevant_questions_request.rb +122 -0
  254. data/lib/thought_spot_public_rest_api/models/get_token_response.rb +117 -0
  255. data/lib/thought_spot_public_rest_api/models/group_info.rb +88 -0
  256. data/lib/thought_spot_public_rest_api/models/group_object.rb +78 -0
  257. data/lib/thought_spot_public_rest_api/models/groups_import_list_input.rb +176 -0
  258. data/lib/thought_spot_public_rest_api/models/header_attribute_input.rb +82 -0
  259. data/lib/thought_spot_public_rest_api/models/header_update_input.rb +118 -0
  260. data/lib/thought_spot_public_rest_api/models/import_e_pack_async_task_status.rb +241 -0
  261. data/lib/thought_spot_public_rest_api/models/import_metadata_tml_async_request.rb +143 -0
  262. data/lib/thought_spot_public_rest_api/models/import_metadata_tml_request.rb +146 -0
  263. data/lib/thought_spot_public_rest_api/models/import_policy.rb +44 -0
  264. data/lib/thought_spot_public_rest_api/models/import_policy1.rb +44 -0
  265. data/lib/thought_spot_public_rest_api/models/import_policy2.rb +46 -0
  266. data/lib/thought_spot_public_rest_api/models/import_type.rb +36 -0
  267. data/lib/thought_spot_public_rest_api/models/import_user.rb +282 -0
  268. data/lib/thought_spot_public_rest_api/models/import_user_groups_request.rb +113 -0
  269. data/lib/thought_spot_public_rest_api/models/import_user_groups_response.rb +119 -0
  270. data/lib/thought_spot_public_rest_api/models/import_user_type.rb +86 -0
  271. data/lib/thought_spot_public_rest_api/models/import_users_request.rb +121 -0
  272. data/lib/thought_spot_public_rest_api/models/import_users_response.rb +127 -0
  273. data/lib/thought_spot_public_rest_api/models/import_worksheets.rb +40 -0
  274. data/lib/thought_spot_public_rest_api/models/input_eureka_nls_request.rb +113 -0
  275. data/lib/thought_spot_public_rest_api/models/jwt_metadata_object.rb +98 -0
  276. data/lib/thought_spot_public_rest_api/models/jwt_parameter.rb +103 -0
  277. data/lib/thought_spot_public_rest_api/models/jwt_user_options.rb +109 -0
  278. data/lib/thought_spot_public_rest_api/models/jwt_user_options_full.rb +88 -0
  279. data/lib/thought_spot_public_rest_api/models/lb_context_input.rb +86 -0
  280. data/lib/thought_spot_public_rest_api/models/liveboard_content.rb +162 -0
  281. data/lib/thought_spot_public_rest_api/models/liveboard_data_response.rb +101 -0
  282. data/lib/thought_spot_public_rest_api/models/liveboard_options.rb +75 -0
  283. data/lib/thought_spot_public_rest_api/models/liveboard_options_input.rb +75 -0
  284. data/lib/thought_spot_public_rest_api/models/liveboard_response_version.rb +36 -0
  285. data/lib/thought_spot_public_rest_api/models/log_response.rb +82 -0
  286. data/lib/thought_spot_public_rest_api/models/login_request.rb +111 -0
  287. data/lib/thought_spot_public_rest_api/models/manage_object_privilege_request.rb +125 -0
  288. data/lib/thought_spot_public_rest_api/models/metadata_association_item.rb +95 -0
  289. data/lib/thought_spot_public_rest_api/models/metadata_context.rb +121 -0
  290. data/lib/thought_spot_public_rest_api/models/metadata_input.rb +88 -0
  291. data/lib/thought_spot_public_rest_api/models/metadata_list_item_input.rb +146 -0
  292. data/lib/thought_spot_public_rest_api/models/metadata_object.rb +89 -0
  293. data/lib/thought_spot_public_rest_api/models/metadata_response.rb +92 -0
  294. data/lib/thought_spot_public_rest_api/models/metadata_search_response.rb +186 -0
  295. data/lib/thought_spot_public_rest_api/models/metadata_search_sort_options.rb +88 -0
  296. data/lib/thought_spot_public_rest_api/models/metadata_type.rb +68 -0
  297. data/lib/thought_spot_public_rest_api/models/metadata_type1.rb +64 -0
  298. data/lib/thought_spot_public_rest_api/models/metadata_type2.rb +40 -0
  299. data/lib/thought_spot_public_rest_api/models/metadata_type3.rb +40 -0
  300. data/lib/thought_spot_public_rest_api/models/metadata_type4.rb +40 -0
  301. data/lib/thought_spot_public_rest_api/models/metadata_type5.rb +26 -0
  302. data/lib/thought_spot_public_rest_api/models/metadata_type6.rb +50 -0
  303. data/lib/thought_spot_public_rest_api/models/metadata_type7.rb +44 -0
  304. data/lib/thought_spot_public_rest_api/models/model_table_list.rb +96 -0
  305. data/lib/thought_spot_public_rest_api/models/month_offset.rb +81 -0
  306. data/lib/thought_spot_public_rest_api/models/month_offset1.rb +76 -0
  307. data/lib/thought_spot_public_rest_api/models/nl_instructions_info.rb +80 -0
  308. data/lib/thought_spot_public_rest_api/models/nl_instructions_info_input.rb +80 -0
  309. data/lib/thought_spot_public_rest_api/models/number_format_locale.rb +136 -0
  310. data/lib/thought_spot_public_rest_api/models/object_id_and_name.rb +88 -0
  311. data/lib/thought_spot_public_rest_api/models/object_privilege_type.rb +26 -0
  312. data/lib/thought_spot_public_rest_api/models/object_privileges_metadata_input.rb +88 -0
  313. data/lib/thought_spot_public_rest_api/models/object_privileges_of_metadata_response.rb +82 -0
  314. data/lib/thought_spot_public_rest_api/models/operation.rb +37 -0
  315. data/lib/thought_spot_public_rest_api/models/operation1.rb +40 -0
  316. data/lib/thought_spot_public_rest_api/models/operation2.rb +44 -0
  317. data/lib/thought_spot_public_rest_api/models/operation3.rb +40 -0
  318. data/lib/thought_spot_public_rest_api/models/operation4.rb +36 -0
  319. data/lib/thought_spot_public_rest_api/models/operation5.rb +40 -0
  320. data/lib/thought_spot_public_rest_api/models/operation6.rb +40 -0
  321. data/lib/thought_spot_public_rest_api/models/operation7.rb +37 -0
  322. data/lib/thought_spot_public_rest_api/models/operator.rb +92 -0
  323. data/lib/thought_spot_public_rest_api/models/operator1.rb +93 -0
  324. data/lib/thought_spot_public_rest_api/models/order.rb +36 -0
  325. data/lib/thought_spot_public_rest_api/models/order4.rb +36 -0
  326. data/lib/thought_spot_public_rest_api/models/order5.rb +36 -0
  327. data/lib/thought_spot_public_rest_api/models/org.rb +82 -0
  328. data/lib/thought_spot_public_rest_api/models/org_channel_config_input.rb +124 -0
  329. data/lib/thought_spot_public_rest_api/models/org_channel_config_response.rb +91 -0
  330. data/lib/thought_spot_public_rest_api/models/org_details.rb +82 -0
  331. data/lib/thought_spot_public_rest_api/models/org_info.rb +86 -0
  332. data/lib/thought_spot_public_rest_api/models/org_non_embed_access.rb +100 -0
  333. data/lib/thought_spot_public_rest_api/models/org_non_embed_access_input.rb +99 -0
  334. data/lib/thought_spot_public_rest_api/models/org_preference_search_criteria_input.rb +89 -0
  335. data/lib/thought_spot_public_rest_api/models/org_response.rb +121 -0
  336. data/lib/thought_spot_public_rest_api/models/org_type.rb +88 -0
  337. data/lib/thought_spot_public_rest_api/models/page_orientation.rb +36 -0
  338. data/lib/thought_spot_public_rest_api/models/page_size.rb +26 -0
  339. data/lib/thought_spot_public_rest_api/models/parameter_values.rb +106 -0
  340. data/lib/thought_spot_public_rest_api/models/parameterize_metadata_request.rb +116 -0
  341. data/lib/thought_spot_public_rest_api/models/parameters_list_item.rb +88 -0
  342. data/lib/thought_spot_public_rest_api/models/parameters_list_item_input.rb +88 -0
  343. data/lib/thought_spot_public_rest_api/models/parent_type.rb +36 -0
  344. data/lib/thought_spot_public_rest_api/models/parent_type1.rb +36 -0
  345. data/lib/thought_spot_public_rest_api/models/pdf_options.rb +179 -0
  346. data/lib/thought_spot_public_rest_api/models/pdf_options_input.rb +151 -0
  347. data/lib/thought_spot_public_rest_api/models/permission.rb +40 -0
  348. data/lib/thought_spot_public_rest_api/models/permission2.rb +40 -0
  349. data/lib/thought_spot_public_rest_api/models/permission_input.rb +82 -0
  350. data/lib/thought_spot_public_rest_api/models/permission_of_metadata_response.rb +83 -0
  351. data/lib/thought_spot_public_rest_api/models/permission_of_principals_response.rb +83 -0
  352. data/lib/thought_spot_public_rest_api/models/permissions_metadata_type_input.rb +89 -0
  353. data/lib/thought_spot_public_rest_api/models/persist_option.rb +45 -0
  354. data/lib/thought_spot_public_rest_api/models/png_options_input.rb +144 -0
  355. data/lib/thought_spot_public_rest_api/models/policy_process.rb +36 -0
  356. data/lib/thought_spot_public_rest_api/models/policy_process_options.rb +79 -0
  357. data/lib/thought_spot_public_rest_api/models/policy_process_options_input.rb +79 -0
  358. data/lib/thought_spot_public_rest_api/models/policy_type.rb +40 -0
  359. data/lib/thought_spot_public_rest_api/models/policy_type1.rb +40 -0
  360. data/lib/thought_spot_public_rest_api/models/position.rb +41 -0
  361. data/lib/thought_spot_public_rest_api/models/preferred_locale.rb +138 -0
  362. data/lib/thought_spot_public_rest_api/models/preferred_locale1.rb +138 -0
  363. data/lib/thought_spot_public_rest_api/models/principal_type.rb +37 -0
  364. data/lib/thought_spot_public_rest_api/models/principal_type1.rb +37 -0
  365. data/lib/thought_spot_public_rest_api/models/principal_type2.rb +37 -0
  366. data/lib/thought_spot_public_rest_api/models/principal_type3.rb +36 -0
  367. data/lib/thought_spot_public_rest_api/models/principals_input.rb +86 -0
  368. data/lib/thought_spot_public_rest_api/models/principals_list_item.rb +82 -0
  369. data/lib/thought_spot_public_rest_api/models/principals_list_item_input.rb +82 -0
  370. data/lib/thought_spot_public_rest_api/models/privilege.rb +236 -0
  371. data/lib/thought_spot_public_rest_api/models/privilege1.rb +160 -0
  372. data/lib/thought_spot_public_rest_api/models/privilege2.rb +188 -0
  373. data/lib/thought_spot_public_rest_api/models/privilege4.rb +200 -0
  374. data/lib/thought_spot_public_rest_api/models/privilege8.rb +180 -0
  375. data/lib/thought_spot_public_rest_api/models/publish_metadata_list_item.rb +86 -0
  376. data/lib/thought_spot_public_rest_api/models/publish_metadata_request.rb +107 -0
  377. data/lib/thought_spot_public_rest_api/models/put_variable_values_request.rb +94 -0
  378. data/lib/thought_spot_public_rest_api/models/query_get_decomposed_query_request.rb +145 -0
  379. data/lib/thought_spot_public_rest_api/models/recipient_details.rb +99 -0
  380. data/lib/thought_spot_public_rest_api/models/recipient_details_input.rb +97 -0
  381. data/lib/thought_spot_public_rest_api/models/regional_settings_input.rb +116 -0
  382. data/lib/thought_spot_public_rest_api/models/repo_config_object.rb +154 -0
  383. data/lib/thought_spot_public_rest_api/models/reset_event.rb +26 -0
  384. data/lib/thought_spot_public_rest_api/models/reset_user_password_request.rb +83 -0
  385. data/lib/thought_spot_public_rest_api/models/response_activation_url.rb +79 -0
  386. data/lib/thought_spot_public_rest_api/models/response_content.rb +36 -0
  387. data/lib/thought_spot_public_rest_api/models/response_copy_object.rb +78 -0
  388. data/lib/thought_spot_public_rest_api/models/response_custom_action.rb +148 -0
  389. data/lib/thought_spot_public_rest_api/models/response_failed_entities.rb +82 -0
  390. data/lib/thought_spot_public_rest_api/models/response_failed_entity.rb +90 -0
  391. data/lib/thought_spot_public_rest_api/models/response_incomplete_entities.rb +82 -0
  392. data/lib/thought_spot_public_rest_api/models/response_incomplete_entity.rb +90 -0
  393. data/lib/thought_spot_public_rest_api/models/response_message.rb +134 -0
  394. data/lib/thought_spot_public_rest_api/models/response_post_upgrade_failed_entities.rb +82 -0
  395. data/lib/thought_spot_public_rest_api/models/response_post_upgrade_failed_entity.rb +90 -0
  396. data/lib/thought_spot_public_rest_api/models/response_schedule.rb +227 -0
  397. data/lib/thought_spot_public_rest_api/models/response_schedule_run.rb +115 -0
  398. data/lib/thought_spot_public_rest_api/models/response_successful_entities.rb +82 -0
  399. data/lib/thought_spot_public_rest_api/models/response_successful_entity.rb +82 -0
  400. data/lib/thought_spot_public_rest_api/models/response_worksheet_to_model_conversion.rb +174 -0
  401. data/lib/thought_spot_public_rest_api/models/result_code.rb +40 -0
  402. data/lib/thought_spot_public_rest_api/models/revert_commit_request.rb +110 -0
  403. data/lib/thought_spot_public_rest_api/models/revert_policy.rb +37 -0
  404. data/lib/thought_spot_public_rest_api/models/revert_response.rb +172 -0
  405. data/lib/thought_spot_public_rest_api/models/reverted_metadata.rb +111 -0
  406. data/lib/thought_spot_public_rest_api/models/revoke_refresh_tokens_request.rb +109 -0
  407. data/lib/thought_spot_public_rest_api/models/revoke_refresh_tokens_response.rb +73 -0
  408. data/lib/thought_spot_public_rest_api/models/revoke_token_request.rb +87 -0
  409. data/lib/thought_spot_public_rest_api/models/rise_gql_arg_wrapper.rb +82 -0
  410. data/lib/thought_spot_public_rest_api/models/rise_setter.rb +82 -0
  411. data/lib/thought_spot_public_rest_api/models/role.rb +88 -0
  412. data/lib/thought_spot_public_rest_api/models/role_response.rb +274 -0
  413. data/lib/thought_spot_public_rest_api/models/runtime_filter.rb +87 -0
  414. data/lib/thought_spot_public_rest_api/models/runtime_filters.rb +125 -0
  415. data/lib/thought_spot_public_rest_api/models/runtime_param_override.rb +87 -0
  416. data/lib/thought_spot_public_rest_api/models/runtime_parameters.rb +116 -0
  417. data/lib/thought_spot_public_rest_api/models/runtime_sort.rb +86 -0
  418. data/lib/thought_spot_public_rest_api/models/runtime_sorts.rb +120 -0
  419. data/lib/thought_spot_public_rest_api/models/schedule_history_runs_options_input.rb +103 -0
  420. data/lib/thought_spot_public_rest_api/models/schedules_pdf_options_input.rb +179 -0
  421. data/lib/thought_spot_public_rest_api/models/schema_object.rb +95 -0
  422. data/lib/thought_spot_public_rest_api/models/scope.rb +97 -0
  423. data/lib/thought_spot_public_rest_api/models/scope1.rb +38 -0
  424. data/lib/thought_spot_public_rest_api/models/script_src_urls.rb +88 -0
  425. data/lib/thought_spot_public_rest_api/models/script_src_urls_input.rb +88 -0
  426. data/lib/thought_spot_public_rest_api/models/search_calendars_request.rb +118 -0
  427. data/lib/thought_spot_public_rest_api/models/search_channel_history_request.rb +139 -0
  428. data/lib/thought_spot_public_rest_api/models/search_channel_history_response.rb +81 -0
  429. data/lib/thought_spot_public_rest_api/models/search_collections_request.rb +150 -0
  430. data/lib/thought_spot_public_rest_api/models/search_commits_request.rb +127 -0
  431. data/lib/thought_spot_public_rest_api/models/search_communication_channel_preferences_request.rb +96 -0
  432. data/lib/thought_spot_public_rest_api/models/search_config_request.rb +84 -0
  433. data/lib/thought_spot_public_rest_api/models/search_connection_request.rb +209 -0
  434. data/lib/thought_spot_public_rest_api/models/search_connection_response.rb +129 -0
  435. data/lib/thought_spot_public_rest_api/models/search_custom_actions_request.rb +166 -0
  436. data/lib/thought_spot_public_rest_api/models/search_data_request.rb +173 -0
  437. data/lib/thought_spot_public_rest_api/models/search_data_response.rb +82 -0
  438. data/lib/thought_spot_public_rest_api/models/search_email_customization_request.rb +78 -0
  439. data/lib/thought_spot_public_rest_api/models/search_metadata_request.rb +446 -0
  440. data/lib/thought_spot_public_rest_api/models/search_orgs_request.rb +119 -0
  441. data/lib/thought_spot_public_rest_api/models/search_role_response.rb +274 -0
  442. data/lib/thought_spot_public_rest_api/models/search_roles_request.rb +158 -0
  443. data/lib/thought_spot_public_rest_api/models/search_schedules_request.rb +139 -0
  444. data/lib/thought_spot_public_rest_api/models/search_security_settings_request.rb +79 -0
  445. data/lib/thought_spot_public_rest_api/models/search_tags_request.rb +97 -0
  446. data/lib/thought_spot_public_rest_api/models/search_user_groups_request.rb +265 -0
  447. data/lib/thought_spot_public_rest_api/models/search_users_request.rb +327 -0
  448. data/lib/thought_spot_public_rest_api/models/search_variables_request.rb +135 -0
  449. data/lib/thought_spot_public_rest_api/models/search_webhook_configurations_request.rb +132 -0
  450. data/lib/thought_spot_public_rest_api/models/security_settings_cluster_preferences.rb +131 -0
  451. data/lib/thought_spot_public_rest_api/models/security_settings_cluster_preferences_input.rb +131 -0
  452. data/lib/thought_spot_public_rest_api/models/security_settings_org_details.rb +88 -0
  453. data/lib/thought_spot_public_rest_api/models/security_settings_org_preferences.rb +100 -0
  454. data/lib/thought_spot_public_rest_api/models/security_settings_org_preferences_input.rb +102 -0
  455. data/lib/thought_spot_public_rest_api/models/security_settings_response.rb +99 -0
  456. data/lib/thought_spot_public_rest_api/models/send_agent_message_request.rb +73 -0
  457. data/lib/thought_spot_public_rest_api/models/send_agent_message_response.rb +86 -0
  458. data/lib/thought_spot_public_rest_api/models/send_agent_message_streaming_request.rb +84 -0
  459. data/lib/thought_spot_public_rest_api/models/send_message_request.rb +84 -0
  460. data/lib/thought_spot_public_rest_api/models/set_nl_instructions_request.rb +94 -0
  461. data/lib/thought_spot_public_rest_api/models/share_metadata_request.rb +207 -0
  462. data/lib/thought_spot_public_rest_api/models/share_metadata_type_input.rb +90 -0
  463. data/lib/thought_spot_public_rest_api/models/share_mode.rb +40 -0
  464. data/lib/thought_spot_public_rest_api/models/share_mode1.rb +40 -0
  465. data/lib/thought_spot_public_rest_api/models/share_permissions_input.rb +82 -0
  466. data/lib/thought_spot_public_rest_api/models/single_answer_request.rb +84 -0
  467. data/lib/thought_spot_public_rest_api/models/sort_option.rb +89 -0
  468. data/lib/thought_spot_public_rest_api/models/sort_option_input.rb +88 -0
  469. data/lib/thought_spot_public_rest_api/models/sort_options.rb +88 -0
  470. data/lib/thought_spot_public_rest_api/models/sorting_options.rb +88 -0
  471. data/lib/thought_spot_public_rest_api/models/sql_query.rb +92 -0
  472. data/lib/thought_spot_public_rest_api/models/sql_query_response.rb +110 -0
  473. data/lib/thought_spot_public_rest_api/models/start_day_of_week.rb +56 -0
  474. data/lib/thought_spot_public_rest_api/models/start_day_of_week2.rb +56 -0
  475. data/lib/thought_spot_public_rest_api/models/status.rb +36 -0
  476. data/lib/thought_spot_public_rest_api/models/status1.rb +44 -0
  477. data/lib/thought_spot_public_rest_api/models/status2.rb +36 -0
  478. data/lib/thought_spot_public_rest_api/models/status3.rb +36 -0
  479. data/lib/thought_spot_public_rest_api/models/status4.rb +36 -0
  480. data/lib/thought_spot_public_rest_api/models/storage_config.rb +76 -0
  481. data/lib/thought_spot_public_rest_api/models/storage_config_input.rb +76 -0
  482. data/lib/thought_spot_public_rest_api/models/storage_destination.rb +80 -0
  483. data/lib/thought_spot_public_rest_api/models/storage_destination_input.rb +82 -0
  484. data/lib/thought_spot_public_rest_api/models/storage_setup_info.rb +175 -0
  485. data/lib/thought_spot_public_rest_api/models/subtype.rb +52 -0
  486. data/lib/thought_spot_public_rest_api/models/system_config.rb +102 -0
  487. data/lib/thought_spot_public_rest_api/models/system_info.rb +344 -0
  488. data/lib/thought_spot_public_rest_api/models/system_override_info.rb +79 -0
  489. data/lib/thought_spot_public_rest_api/models/table.rb +150 -0
  490. data/lib/thought_spot_public_rest_api/models/tag.rb +202 -0
  491. data/lib/thought_spot_public_rest_api/models/tag_metadata_type_input.rb +94 -0
  492. data/lib/thought_spot_public_rest_api/models/task_status.rb +44 -0
  493. data/lib/thought_spot_public_rest_api/models/task_status1.rb +44 -0
  494. data/lib/thought_spot_public_rest_api/models/template_properties_input_create.rb +440 -0
  495. data/lib/thought_spot_public_rest_api/models/time_zone.rb +2548 -0
  496. data/lib/thought_spot_public_rest_api/models/token.rb +125 -0
  497. data/lib/thought_spot_public_rest_api/models/token_access_scope_object.rb +91 -0
  498. data/lib/thought_spot_public_rest_api/models/token_validation_response.rb +114 -0
  499. data/lib/thought_spot_public_rest_api/models/type.rb +66 -0
  500. data/lib/thought_spot_public_rest_api/models/type1.rb +38 -0
  501. data/lib/thought_spot_public_rest_api/models/type10.rb +26 -0
  502. data/lib/thought_spot_public_rest_api/models/type11.rb +28 -0
  503. data/lib/thought_spot_public_rest_api/models/type13.rb +52 -0
  504. data/lib/thought_spot_public_rest_api/models/type15.rb +60 -0
  505. data/lib/thought_spot_public_rest_api/models/type16.rb +60 -0
  506. data/lib/thought_spot_public_rest_api/models/type17.rb +66 -0
  507. data/lib/thought_spot_public_rest_api/models/type18.rb +50 -0
  508. data/lib/thought_spot_public_rest_api/models/type19.rb +40 -0
  509. data/lib/thought_spot_public_rest_api/models/type2.rb +44 -0
  510. data/lib/thought_spot_public_rest_api/models/type20.rb +46 -0
  511. data/lib/thought_spot_public_rest_api/models/type21.rb +50 -0
  512. data/lib/thought_spot_public_rest_api/models/type22.rb +46 -0
  513. data/lib/thought_spot_public_rest_api/models/type23.rb +26 -0
  514. data/lib/thought_spot_public_rest_api/models/type24.rb +42 -0
  515. data/lib/thought_spot_public_rest_api/models/type26.rb +40 -0
  516. data/lib/thought_spot_public_rest_api/models/type27.rb +44 -0
  517. data/lib/thought_spot_public_rest_api/models/type28.rb +36 -0
  518. data/lib/thought_spot_public_rest_api/models/type29.rb +44 -0
  519. data/lib/thought_spot_public_rest_api/models/type3.rb +76 -0
  520. data/lib/thought_spot_public_rest_api/models/type31.rb +44 -0
  521. data/lib/thought_spot_public_rest_api/models/type32.rb +36 -0
  522. data/lib/thought_spot_public_rest_api/models/type4.rb +36 -0
  523. data/lib/thought_spot_public_rest_api/models/type5.rb +76 -0
  524. data/lib/thought_spot_public_rest_api/models/type6.rb +28 -0
  525. data/lib/thought_spot_public_rest_api/models/type7.rb +50 -0
  526. data/lib/thought_spot_public_rest_api/models/type8.rb +42 -0
  527. data/lib/thought_spot_public_rest_api/models/type9.rb +48 -0
  528. data/lib/thought_spot_public_rest_api/models/unassign_tag_request.rb +92 -0
  529. data/lib/thought_spot_public_rest_api/models/unparameterize_metadata_request.rb +113 -0
  530. data/lib/thought_spot_public_rest_api/models/unpublish_metadata_request.rb +119 -0
  531. data/lib/thought_spot_public_rest_api/models/update_calendar_request.rb +173 -0
  532. data/lib/thought_spot_public_rest_api/models/update_collection_request.rb +114 -0
  533. data/lib/thought_spot_public_rest_api/models/update_column_security_rules_request.rb +120 -0
  534. data/lib/thought_spot_public_rest_api/models/update_config_request.rb +161 -0
  535. data/lib/thought_spot_public_rest_api/models/update_connection_configuration_request.rb +200 -0
  536. data/lib/thought_spot_public_rest_api/models/update_connection_request.rb +120 -0
  537. data/lib/thought_spot_public_rest_api/models/update_connection_v2_request.rb +109 -0
  538. data/lib/thought_spot_public_rest_api/models/update_custom_action_request.rb +144 -0
  539. data/lib/thought_spot_public_rest_api/models/update_email_customization_request.rb +87 -0
  540. data/lib/thought_spot_public_rest_api/models/update_metadata_header_request.rb +95 -0
  541. data/lib/thought_spot_public_rest_api/models/update_metadata_obj_id_request.rb +82 -0
  542. data/lib/thought_spot_public_rest_api/models/update_method.rb +36 -0
  543. data/lib/thought_spot_public_rest_api/models/update_obj_id_input.rb +111 -0
  544. data/lib/thought_spot_public_rest_api/models/update_org_request.rb +119 -0
  545. data/lib/thought_spot_public_rest_api/models/update_role_request.rb +96 -0
  546. data/lib/thought_spot_public_rest_api/models/update_schedule_request.rb +194 -0
  547. data/lib/thought_spot_public_rest_api/models/update_system_config_request.rb +75 -0
  548. data/lib/thought_spot_public_rest_api/models/update_tag_request.rb +85 -0
  549. data/lib/thought_spot_public_rest_api/models/update_user_group_request.rb +191 -0
  550. data/lib/thought_spot_public_rest_api/models/update_user_request.rb +305 -0
  551. data/lib/thought_spot_public_rest_api/models/update_variable_request.rb +72 -0
  552. data/lib/thought_spot_public_rest_api/models/update_variable_values_request.rb +106 -0
  553. data/lib/thought_spot_public_rest_api/models/update_webhook_configuration_request.rb +178 -0
  554. data/lib/thought_spot_public_rest_api/models/url.rb +117 -0
  555. data/lib/thought_spot_public_rest_api/models/url_input.rb +119 -0
  556. data/lib/thought_spot_public_rest_api/models/url_input_mandatory.rb +117 -0
  557. data/lib/thought_spot_public_rest_api/models/user.rb +684 -0
  558. data/lib/thought_spot_public_rest_api/models/user_group.rb +88 -0
  559. data/lib/thought_spot_public_rest_api/models/user_group_response.rb +455 -0
  560. data/lib/thought_spot_public_rest_api/models/user_info.rb +86 -0
  561. data/lib/thought_spot_public_rest_api/models/user_locale.rb +136 -0
  562. data/lib/thought_spot_public_rest_api/models/user_object.rb +91 -0
  563. data/lib/thought_spot_public_rest_api/models/user_parameter_options.rb +163 -0
  564. data/lib/thought_spot_public_rest_api/models/user_principal.rb +98 -0
  565. data/lib/thought_spot_public_rest_api/models/validate_communication_channel_request.rb +88 -0
  566. data/lib/thought_spot_public_rest_api/models/validate_merge_request.rb +85 -0
  567. data/lib/thought_spot_public_rest_api/models/validate_token_request.rb +73 -0
  568. data/lib/thought_spot_public_rest_api/models/validation_step.rb +36 -0
  569. data/lib/thought_spot_public_rest_api/models/value_scope_input.rb +119 -0
  570. data/lib/thought_spot_public_rest_api/models/variable.rb +125 -0
  571. data/lib/thought_spot_public_rest_api/models/variable_detail_input.rb +100 -0
  572. data/lib/thought_spot_public_rest_api/models/variable_put_assignment_input.rb +138 -0
  573. data/lib/thought_spot_public_rest_api/models/variable_type.rb +48 -0
  574. data/lib/thought_spot_public_rest_api/models/variable_update_assignment_input.rb +95 -0
  575. data/lib/thought_spot_public_rest_api/models/variable_update_scope_input.rb +130 -0
  576. data/lib/thought_spot_public_rest_api/models/variable_value.rb +151 -0
  577. data/lib/thought_spot_public_rest_api/models/variable_values.rb +106 -0
  578. data/lib/thought_spot_public_rest_api/models/visibility.rb +37 -0
  579. data/lib/thought_spot_public_rest_api/models/visibility1.rb +36 -0
  580. data/lib/thought_spot_public_rest_api/models/visibility10.rb +36 -0
  581. data/lib/thought_spot_public_rest_api/models/visibility2.rb +37 -0
  582. data/lib/thought_spot_public_rest_api/models/visibility3.rb +37 -0
  583. data/lib/thought_spot_public_rest_api/models/visibility5.rb +37 -0
  584. data/lib/thought_spot_public_rest_api/models/visibility7.rb +37 -0
  585. data/lib/thought_spot_public_rest_api/models/visibility8.rb +36 -0
  586. data/lib/thought_spot_public_rest_api/models/visibility9.rb +37 -0
  587. data/lib/thought_spot_public_rest_api/models/visualization_type.rb +40 -0
  588. data/lib/thought_spot_public_rest_api/models/webhook_auth_api_key.rb +82 -0
  589. data/lib/thought_spot_public_rest_api/models/webhook_auth_api_key_input.rb +82 -0
  590. data/lib/thought_spot_public_rest_api/models/webhook_auth_basic_auth.rb +82 -0
  591. data/lib/thought_spot_public_rest_api/models/webhook_auth_basic_auth_input.rb +82 -0
  592. data/lib/thought_spot_public_rest_api/models/webhook_auth_oauth_2.rb +93 -0
  593. data/lib/thought_spot_public_rest_api/models/webhook_auth_oauth_2_input.rb +93 -0
  594. data/lib/thought_spot_public_rest_api/models/webhook_authentication.rb +107 -0
  595. data/lib/thought_spot_public_rest_api/models/webhook_authentication_input.rb +107 -0
  596. data/lib/thought_spot_public_rest_api/models/webhook_delete_failure.rb +90 -0
  597. data/lib/thought_spot_public_rest_api/models/webhook_delete_response.rb +119 -0
  598. data/lib/thought_spot_public_rest_api/models/webhook_key_value_pair.rb +82 -0
  599. data/lib/thought_spot_public_rest_api/models/webhook_key_value_pair_input.rb +82 -0
  600. data/lib/thought_spot_public_rest_api/models/webhook_org.rb +82 -0
  601. data/lib/thought_spot_public_rest_api/models/webhook_pagination.rb +101 -0
  602. data/lib/thought_spot_public_rest_api/models/webhook_response.rb +234 -0
  603. data/lib/thought_spot_public_rest_api/models/webhook_search_response.rb +91 -0
  604. data/lib/thought_spot_public_rest_api/models/webhook_signature_verification.rb +95 -0
  605. data/lib/thought_spot_public_rest_api/models/webhook_signature_verification_input.rb +95 -0
  606. data/lib/thought_spot_public_rest_api/models/webhook_sort_options_input.rb +89 -0
  607. data/lib/thought_spot_public_rest_api/models/webhook_user.rb +82 -0
  608. data/lib/thought_spot_public_rest_api/utilities/date_time_helper.rb +11 -0
  609. data/lib/thought_spot_public_rest_api/utilities/file_wrapper.rb +28 -0
  610. data/lib/thought_spot_public_rest_api/utilities/union_type_lookup.rb +67 -0
  611. data/lib/thought_spot_public_rest_api.rb +801 -0
  612. metadata +695 -0
@@ -0,0 +1,964 @@
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
+ # ISO code to be appended with currency values.
8
+ class CurrencyFormat
9
+ CURRENCY_FORMAT = [
10
+ # TODO: Write general description for ADP
11
+ ADP = 'ADP'.freeze,
12
+
13
+ # TODO: Write general description for AED
14
+ AED = 'AED'.freeze,
15
+
16
+ # TODO: Write general description for AFN
17
+ AFN = 'AFN'.freeze,
18
+
19
+ # TODO: Write general description for ALL
20
+ ALL = 'ALL'.freeze,
21
+
22
+ # TODO: Write general description for AMD
23
+ AMD = 'AMD'.freeze,
24
+
25
+ # TODO: Write general description for ANG
26
+ ANG = 'ANG'.freeze,
27
+
28
+ # TODO: Write general description for AOA
29
+ AOA = 'AOA'.freeze,
30
+
31
+ # TODO: Write general description for ARA
32
+ ARA = 'ARA'.freeze,
33
+
34
+ # TODO: Write general description for ARS
35
+ ARS = 'ARS'.freeze,
36
+
37
+ # TODO: Write general description for ATS
38
+ ATS = 'ATS'.freeze,
39
+
40
+ # TODO: Write general description for AUD
41
+ AUD = 'AUD'.freeze,
42
+
43
+ # TODO: Write general description for AWG
44
+ AWG = 'AWG'.freeze,
45
+
46
+ # TODO: Write general description for AZN
47
+ AZN = 'AZN'.freeze,
48
+
49
+ # TODO: Write general description for BAM
50
+ BAM = 'BAM'.freeze,
51
+
52
+ # TODO: Write general description for BBD
53
+ BBD = 'BBD'.freeze,
54
+
55
+ # TODO: Write general description for BDT
56
+ BDT = 'BDT'.freeze,
57
+
58
+ # TODO: Write general description for BEF
59
+ BEF = 'BEF'.freeze,
60
+
61
+ # TODO: Write general description for BGL
62
+ BGL = 'BGL'.freeze,
63
+
64
+ # TODO: Write general description for BGM
65
+ BGM = 'BGM'.freeze,
66
+
67
+ # TODO: Write general description for BGN
68
+ BGN = 'BGN'.freeze,
69
+
70
+ # TODO: Write general description for BHD
71
+ BHD = 'BHD'.freeze,
72
+
73
+ # TODO: Write general description for BIF
74
+ BIF = 'BIF'.freeze,
75
+
76
+ # TODO: Write general description for BMD
77
+ BMD = 'BMD'.freeze,
78
+
79
+ # TODO: Write general description for BND
80
+ BND = 'BND'.freeze,
81
+
82
+ # TODO: Write general description for BOB
83
+ BOB = 'BOB'.freeze,
84
+
85
+ # TODO: Write general description for BOP
86
+ BOP = 'BOP'.freeze,
87
+
88
+ # TODO: Write general description for BOV
89
+ BOV = 'BOV'.freeze,
90
+
91
+ # TODO: Write general description for BRL
92
+ BRL = 'BRL'.freeze,
93
+
94
+ # TODO: Write general description for BSD
95
+ BSD = 'BSD'.freeze,
96
+
97
+ # TODO: Write general description for BTN
98
+ BTN = 'BTN'.freeze,
99
+
100
+ # TODO: Write general description for BUK
101
+ BUK = 'BUK'.freeze,
102
+
103
+ # TODO: Write general description for BWP
104
+ BWP = 'BWP'.freeze,
105
+
106
+ # TODO: Write general description for BYN
107
+ BYN = 'BYN'.freeze,
108
+
109
+ # TODO: Write general description for BZD
110
+ BZD = 'BZD'.freeze,
111
+
112
+ # TODO: Write general description for CAD
113
+ CAD = 'CAD'.freeze,
114
+
115
+ # TODO: Write general description for CDF
116
+ CDF = 'CDF'.freeze,
117
+
118
+ # TODO: Write general description for CHE
119
+ CHE = 'CHE'.freeze,
120
+
121
+ # TODO: Write general description for CHF
122
+ CHF = 'CHF'.freeze,
123
+
124
+ # TODO: Write general description for CHW
125
+ CHW = 'CHW'.freeze,
126
+
127
+ # TODO: Write general description for CLE
128
+ CLE = 'CLE'.freeze,
129
+
130
+ # TODO: Write general description for CLP
131
+ CLP = 'CLP'.freeze,
132
+
133
+ # TODO: Write general description for CNX
134
+ CNX = 'CNX'.freeze,
135
+
136
+ # TODO: Write general description for CNY
137
+ CNY = 'CNY'.freeze,
138
+
139
+ # TODO: Write general description for COP
140
+ COP = 'COP'.freeze,
141
+
142
+ # TODO: Write general description for COU
143
+ COU = 'COU'.freeze,
144
+
145
+ # TODO: Write general description for CRC
146
+ CRC = 'CRC'.freeze,
147
+
148
+ # TODO: Write general description for CSK
149
+ CSK = 'CSK'.freeze,
150
+
151
+ # TODO: Write general description for CUC
152
+ CUC = 'CUC'.freeze,
153
+
154
+ # TODO: Write general description for CUP
155
+ CUP = 'CUP'.freeze,
156
+
157
+ # TODO: Write general description for CVE
158
+ CVE = 'CVE'.freeze,
159
+
160
+ # TODO: Write general description for CYP
161
+ CYP = 'CYP'.freeze,
162
+
163
+ # TODO: Write general description for CZK
164
+ CZK = 'CZK'.freeze,
165
+
166
+ # TODO: Write general description for DDM
167
+ DDM = 'DDM'.freeze,
168
+
169
+ # TODO: Write general description for DEM
170
+ DEM = 'DEM'.freeze,
171
+
172
+ # TODO: Write general description for DJF
173
+ DJF = 'DJF'.freeze,
174
+
175
+ # TODO: Write general description for DKK
176
+ DKK = 'DKK'.freeze,
177
+
178
+ # TODO: Write general description for DOP
179
+ DOP = 'DOP'.freeze,
180
+
181
+ # TODO: Write general description for DZD
182
+ DZD = 'DZD'.freeze,
183
+
184
+ # TODO: Write general description for ECS
185
+ ECS = 'ECS'.freeze,
186
+
187
+ # TODO: Write general description for ECV
188
+ ECV = 'ECV'.freeze,
189
+
190
+ # TODO: Write general description for EEK
191
+ EEK = 'EEK'.freeze,
192
+
193
+ # TODO: Write general description for EGP
194
+ EGP = 'EGP'.freeze,
195
+
196
+ # TODO: Write general description for ERN
197
+ ERN = 'ERN'.freeze,
198
+
199
+ # TODO: Write general description for ESP
200
+ ESP = 'ESP'.freeze,
201
+
202
+ # TODO: Write general description for ETB
203
+ ETB = 'ETB'.freeze,
204
+
205
+ # TODO: Write general description for EUR
206
+ EUR = 'EUR'.freeze,
207
+
208
+ # TODO: Write general description for FIM
209
+ FIM = 'FIM'.freeze,
210
+
211
+ # TODO: Write general description for FJD
212
+ FJD = 'FJD'.freeze,
213
+
214
+ # TODO: Write general description for FKP
215
+ FKP = 'FKP'.freeze,
216
+
217
+ # TODO: Write general description for FRF
218
+ FRF = 'FRF'.freeze,
219
+
220
+ # TODO: Write general description for GBP
221
+ GBP = 'GBP'.freeze,
222
+
223
+ # TODO: Write general description for GEK
224
+ GEK = 'GEK'.freeze,
225
+
226
+ # TODO: Write general description for GEL
227
+ GEL = 'GEL'.freeze,
228
+
229
+ # TODO: Write general description for GHS
230
+ GHS = 'GHS'.freeze,
231
+
232
+ # TODO: Write general description for GIP
233
+ GIP = 'GIP'.freeze,
234
+
235
+ # TODO: Write general description for GMD
236
+ GMD = 'GMD'.freeze,
237
+
238
+ # TODO: Write general description for GNF
239
+ GNF = 'GNF'.freeze,
240
+
241
+ # TODO: Write general description for GNS
242
+ GNS = 'GNS'.freeze,
243
+
244
+ # TODO: Write general description for GQE
245
+ GQE = 'GQE'.freeze,
246
+
247
+ # TODO: Write general description for GRD
248
+ GRD = 'GRD'.freeze,
249
+
250
+ # TODO: Write general description for GTQ
251
+ GTQ = 'GTQ'.freeze,
252
+
253
+ # TODO: Write general description for GWE
254
+ GWE = 'GWE'.freeze,
255
+
256
+ # TODO: Write general description for GWP
257
+ GWP = 'GWP'.freeze,
258
+
259
+ # TODO: Write general description for GYD
260
+ GYD = 'GYD'.freeze,
261
+
262
+ # TODO: Write general description for HKD
263
+ HKD = 'HKD'.freeze,
264
+
265
+ # TODO: Write general description for HNL
266
+ HNL = 'HNL'.freeze,
267
+
268
+ # TODO: Write general description for HRD
269
+ HRD = 'HRD'.freeze,
270
+
271
+ # TODO: Write general description for HRK
272
+ HRK = 'HRK'.freeze,
273
+
274
+ # TODO: Write general description for HTG
275
+ HTG = 'HTG'.freeze,
276
+
277
+ # TODO: Write general description for HUF
278
+ HUF = 'HUF'.freeze,
279
+
280
+ # TODO: Write general description for IDR
281
+ IDR = 'IDR'.freeze,
282
+
283
+ # TODO: Write general description for IEP
284
+ IEP = 'IEP'.freeze,
285
+
286
+ # TODO: Write general description for ILP
287
+ ILP = 'ILP'.freeze,
288
+
289
+ # TODO: Write general description for ILS
290
+ ILS = 'ILS'.freeze,
291
+
292
+ # TODO: Write general description for INR
293
+ INR = 'INR'.freeze,
294
+
295
+ # TODO: Write general description for IQD
296
+ IQD = 'IQD'.freeze,
297
+
298
+ # TODO: Write general description for IRR
299
+ IRR = 'IRR'.freeze,
300
+
301
+ # TODO: Write general description for ISK
302
+ ISK = 'ISK'.freeze,
303
+
304
+ # TODO: Write general description for ITL
305
+ ITL = 'ITL'.freeze,
306
+
307
+ # TODO: Write general description for JMD
308
+ JMD = 'JMD'.freeze,
309
+
310
+ # TODO: Write general description for JOD
311
+ JOD = 'JOD'.freeze,
312
+
313
+ # TODO: Write general description for JPY
314
+ JPY = 'JPY'.freeze,
315
+
316
+ # TODO: Write general description for KES
317
+ KES = 'KES'.freeze,
318
+
319
+ # TODO: Write general description for KGS
320
+ KGS = 'KGS'.freeze,
321
+
322
+ # TODO: Write general description for KHR
323
+ KHR = 'KHR'.freeze,
324
+
325
+ # TODO: Write general description for KMF
326
+ KMF = 'KMF'.freeze,
327
+
328
+ # TODO: Write general description for KPW
329
+ KPW = 'KPW'.freeze,
330
+
331
+ # TODO: Write general description for KRW
332
+ KRW = 'KRW'.freeze,
333
+
334
+ # TODO: Write general description for KWD
335
+ KWD = 'KWD'.freeze,
336
+
337
+ # TODO: Write general description for KYD
338
+ KYD = 'KYD'.freeze,
339
+
340
+ # TODO: Write general description for KZT
341
+ KZT = 'KZT'.freeze,
342
+
343
+ # TODO: Write general description for LAK
344
+ LAK = 'LAK'.freeze,
345
+
346
+ # TODO: Write general description for LBP
347
+ LBP = 'LBP'.freeze,
348
+
349
+ # TODO: Write general description for LKR
350
+ LKR = 'LKR'.freeze,
351
+
352
+ # TODO: Write general description for LRD
353
+ LRD = 'LRD'.freeze,
354
+
355
+ # TODO: Write general description for LSL
356
+ LSL = 'LSL'.freeze,
357
+
358
+ # TODO: Write general description for LTL
359
+ LTL = 'LTL'.freeze,
360
+
361
+ # TODO: Write general description for LTT
362
+ LTT = 'LTT'.freeze,
363
+
364
+ # TODO: Write general description for LUC
365
+ LUC = 'LUC'.freeze,
366
+
367
+ # TODO: Write general description for LUF
368
+ LUF = 'LUF'.freeze,
369
+
370
+ # TODO: Write general description for LUL
371
+ LUL = 'LUL'.freeze,
372
+
373
+ # TODO: Write general description for LVL
374
+ LVL = 'LVL'.freeze,
375
+
376
+ # TODO: Write general description for LVR
377
+ LVR = 'LVR'.freeze,
378
+
379
+ # TODO: Write general description for LYD
380
+ LYD = 'LYD'.freeze,
381
+
382
+ # TODO: Write general description for MAD
383
+ MAD = 'MAD'.freeze,
384
+
385
+ # TODO: Write general description for MAF
386
+ MAF = 'MAF'.freeze,
387
+
388
+ # TODO: Write general description for MCF
389
+ MCF = 'MCF'.freeze,
390
+
391
+ # TODO: Write general description for MDC
392
+ MDC = 'MDC'.freeze,
393
+
394
+ # TODO: Write general description for MDL
395
+ MDL = 'MDL'.freeze,
396
+
397
+ # TODO: Write general description for MGA
398
+ MGA = 'MGA'.freeze,
399
+
400
+ # TODO: Write general description for MGF
401
+ MGF = 'MGF'.freeze,
402
+
403
+ # TODO: Write general description for MKD
404
+ MKD = 'MKD'.freeze,
405
+
406
+ # TODO: Write general description for MLF
407
+ MLF = 'MLF'.freeze,
408
+
409
+ # TODO: Write general description for MMK
410
+ MMK = 'MMK'.freeze,
411
+
412
+ # TODO: Write general description for MNT
413
+ MNT = 'MNT'.freeze,
414
+
415
+ # TODO: Write general description for MOP
416
+ MOP = 'MOP'.freeze,
417
+
418
+ # TODO: Write general description for MRU
419
+ MRU = 'MRU'.freeze,
420
+
421
+ # TODO: Write general description for MTL
422
+ MTL = 'MTL'.freeze,
423
+
424
+ # TODO: Write general description for MTP
425
+ MTP = 'MTP'.freeze,
426
+
427
+ # TODO: Write general description for MUR
428
+ MUR = 'MUR'.freeze,
429
+
430
+ # TODO: Write general description for MVR
431
+ MVR = 'MVR'.freeze,
432
+
433
+ # TODO: Write general description for MWK
434
+ MWK = 'MWK'.freeze,
435
+
436
+ # TODO: Write general description for MXN
437
+ MXN = 'MXN'.freeze,
438
+
439
+ # TODO: Write general description for MXV
440
+ MXV = 'MXV'.freeze,
441
+
442
+ # TODO: Write general description for MYR
443
+ MYR = 'MYR'.freeze,
444
+
445
+ # TODO: Write general description for MZE
446
+ MZE = 'MZE'.freeze,
447
+
448
+ # TODO: Write general description for MZN
449
+ MZN = 'MZN'.freeze,
450
+
451
+ # TODO: Write general description for NAD
452
+ NAD = 'NAD'.freeze,
453
+
454
+ # TODO: Write general description for NGN
455
+ NGN = 'NGN'.freeze,
456
+
457
+ # TODO: Write general description for NIO
458
+ NIO = 'NIO'.freeze,
459
+
460
+ # TODO: Write general description for NLG
461
+ NLG = 'NLG'.freeze,
462
+
463
+ # TODO: Write general description for NOK
464
+ NOK = 'NOK'.freeze,
465
+
466
+ # TODO: Write general description for NPR
467
+ NPR = 'NPR'.freeze,
468
+
469
+ # TODO: Write general description for NZD
470
+ NZD = 'NZD'.freeze,
471
+
472
+ # TODO: Write general description for OMR
473
+ OMR = 'OMR'.freeze,
474
+
475
+ # TODO: Write general description for PAB
476
+ PAB = 'PAB'.freeze,
477
+
478
+ # TODO: Write general description for PEI
479
+ PEI = 'PEI'.freeze,
480
+
481
+ # TODO: Write general description for PEN
482
+ PEN = 'PEN'.freeze,
483
+
484
+ # TODO: Write general description for PGK
485
+ PGK = 'PGK'.freeze,
486
+
487
+ # TODO: Write general description for PHP
488
+ PHP = 'PHP'.freeze,
489
+
490
+ # TODO: Write general description for PKR
491
+ PKR = 'PKR'.freeze,
492
+
493
+ # TODO: Write general description for PLN
494
+ PLN = 'PLN'.freeze,
495
+
496
+ # TODO: Write general description for PTE
497
+ PTE = 'PTE'.freeze,
498
+
499
+ # TODO: Write general description for PYG
500
+ PYG = 'PYG'.freeze,
501
+
502
+ # TODO: Write general description for QAR
503
+ QAR = 'QAR'.freeze,
504
+
505
+ # TODO: Write general description for RHD
506
+ RHD = 'RHD'.freeze,
507
+
508
+ # TODO: Write general description for RON
509
+ RON = 'RON'.freeze,
510
+
511
+ # TODO: Write general description for RSD
512
+ RSD = 'RSD'.freeze,
513
+
514
+ # TODO: Write general description for RUB
515
+ RUB = 'RUB'.freeze,
516
+
517
+ # TODO: Write general description for RWF
518
+ RWF = 'RWF'.freeze,
519
+
520
+ # TODO: Write general description for SAR
521
+ SAR = 'SAR'.freeze,
522
+
523
+ # TODO: Write general description for SBD
524
+ SBD = 'SBD'.freeze,
525
+
526
+ # TODO: Write general description for SCR
527
+ SCR = 'SCR'.freeze,
528
+
529
+ # TODO: Write general description for SDG
530
+ SDG = 'SDG'.freeze,
531
+
532
+ # TODO: Write general description for SEK
533
+ SEK = 'SEK'.freeze,
534
+
535
+ # TODO: Write general description for SGD
536
+ SGD = 'SGD'.freeze,
537
+
538
+ # TODO: Write general description for SHP
539
+ SHP = 'SHP'.freeze,
540
+
541
+ # TODO: Write general description for SIT
542
+ SIT = 'SIT'.freeze,
543
+
544
+ # TODO: Write general description for SKK
545
+ SKK = 'SKK'.freeze,
546
+
547
+ # TODO: Write general description for SLL
548
+ SLL = 'SLL'.freeze,
549
+
550
+ # TODO: Write general description for SOS
551
+ SOS = 'SOS'.freeze,
552
+
553
+ # TODO: Write general description for SRD
554
+ SRD = 'SRD'.freeze,
555
+
556
+ # TODO: Write general description for SRG
557
+ SRG = 'SRG'.freeze,
558
+
559
+ # TODO: Write general description for SSP
560
+ SSP = 'SSP'.freeze,
561
+
562
+ # TODO: Write general description for STN
563
+ STN = 'STN'.freeze,
564
+
565
+ # TODO: Write general description for SUR
566
+ SUR = 'SUR'.freeze,
567
+
568
+ # TODO: Write general description for SVC
569
+ SVC = 'SVC'.freeze,
570
+
571
+ # TODO: Write general description for SYP
572
+ SYP = 'SYP'.freeze,
573
+
574
+ # TODO: Write general description for SZL
575
+ SZL = 'SZL'.freeze,
576
+
577
+ # TODO: Write general description for THB
578
+ THB = 'THB'.freeze,
579
+
580
+ # TODO: Write general description for TJR
581
+ TJR = 'TJR'.freeze,
582
+
583
+ # TODO: Write general description for TJS
584
+ TJS = 'TJS'.freeze,
585
+
586
+ # TODO: Write general description for TMT
587
+ TMT = 'TMT'.freeze,
588
+
589
+ # TODO: Write general description for TND
590
+ TND = 'TND'.freeze,
591
+
592
+ # TODO: Write general description for TOP
593
+ TOP = 'TOP'.freeze,
594
+
595
+ # TODO: Write general description for TPE
596
+ TPE = 'TPE'.freeze,
597
+
598
+ # TODO: Write general description for TRY
599
+ TRY = 'TRY'.freeze,
600
+
601
+ # TODO: Write general description for TTD
602
+ TTD = 'TTD'.freeze,
603
+
604
+ # TODO: Write general description for TWD
605
+ TWD = 'TWD'.freeze,
606
+
607
+ # TODO: Write general description for TZS
608
+ TZS = 'TZS'.freeze,
609
+
610
+ # TODO: Write general description for UAH
611
+ UAH = 'UAH'.freeze,
612
+
613
+ # TODO: Write general description for UAK
614
+ UAK = 'UAK'.freeze,
615
+
616
+ # TODO: Write general description for UGX
617
+ UGX = 'UGX'.freeze,
618
+
619
+ # TODO: Write general description for USD
620
+ USD = 'USD'.freeze,
621
+
622
+ # TODO: Write general description for UYU
623
+ UYU = 'UYU'.freeze,
624
+
625
+ # TODO: Write general description for UYW
626
+ UYW = 'UYW'.freeze,
627
+
628
+ # TODO: Write general description for UZS
629
+ UZS = 'UZS'.freeze,
630
+
631
+ # TODO: Write general description for VES
632
+ VES = 'VES'.freeze,
633
+
634
+ # TODO: Write general description for VND
635
+ VND = 'VND'.freeze,
636
+
637
+ # TODO: Write general description for VUV
638
+ VUV = 'VUV'.freeze,
639
+
640
+ # TODO: Write general description for WST
641
+ WST = 'WST'.freeze,
642
+
643
+ # TODO: Write general description for XAF
644
+ XAF = 'XAF'.freeze,
645
+
646
+ # TODO: Write general description for XAG
647
+ XAG = 'XAG'.freeze,
648
+
649
+ # TODO: Write general description for XAU
650
+ XAU = 'XAU'.freeze,
651
+
652
+ # TODO: Write general description for XBA
653
+ XBA = 'XBA'.freeze,
654
+
655
+ # TODO: Write general description for XBB
656
+ XBB = 'XBB'.freeze,
657
+
658
+ # TODO: Write general description for XCD
659
+ XCD = 'XCD'.freeze,
660
+
661
+ # TODO: Write general description for XDR
662
+ XDR = 'XDR'.freeze,
663
+
664
+ # TODO: Write general description for XEU
665
+ XEU = 'XEU'.freeze,
666
+
667
+ # TODO: Write general description for XFO
668
+ XFO = 'XFO'.freeze,
669
+
670
+ # TODO: Write general description for XFU
671
+ XFU = 'XFU'.freeze,
672
+
673
+ # TODO: Write general description for XOF
674
+ XOF = 'XOF'.freeze,
675
+
676
+ # TODO: Write general description for XPD
677
+ XPD = 'XPD'.freeze,
678
+
679
+ # TODO: Write general description for XPF
680
+ XPF = 'XPF'.freeze,
681
+
682
+ # TODO: Write general description for XPT
683
+ XPT = 'XPT'.freeze,
684
+
685
+ # TODO: Write general description for XRE
686
+ XRE = 'XRE'.freeze,
687
+
688
+ # TODO: Write general description for XSU
689
+ XSU = 'XSU'.freeze,
690
+
691
+ # TODO: Write general description for XTS
692
+ XTS = 'XTS'.freeze,
693
+
694
+ # TODO: Write general description for XUA
695
+ XUA = 'XUA'.freeze,
696
+
697
+ # TODO: Write general description for XXX
698
+ XXX = 'XXX'.freeze,
699
+
700
+ # TODO: Write general description for YDD
701
+ YDD = 'YDD'.freeze,
702
+
703
+ # TODO: Write general description for YER
704
+ YER = 'YER'.freeze,
705
+
706
+ # TODO: Write general description for ZAR
707
+ ZAR = 'ZAR'.freeze,
708
+
709
+ # TODO: Write general description for ZMW
710
+ ZMW = 'ZMW'.freeze
711
+ ].freeze
712
+
713
+ def self.validate(value)
714
+ return false if value.nil?
715
+
716
+ true
717
+ end
718
+
719
+ def self.from_value(value, default_value = ADP)
720
+ return default_value if value.nil?
721
+
722
+ str = value.to_s.strip
723
+
724
+ case str.downcase
725
+ when 'adp' then ADP
726
+ when 'aed' then AED
727
+ when 'afn' then AFN
728
+ when 'all' then ALL
729
+ when 'amd' then AMD
730
+ when 'ang' then ANG
731
+ when 'aoa' then AOA
732
+ when 'ara' then ARA
733
+ when 'ars' then ARS
734
+ when 'ats' then ATS
735
+ when 'aud' then AUD
736
+ when 'awg' then AWG
737
+ when 'azn' then AZN
738
+ when 'bam' then BAM
739
+ when 'bbd' then BBD
740
+ when 'bdt' then BDT
741
+ when 'bef' then BEF
742
+ when 'bgl' then BGL
743
+ when 'bgm' then BGM
744
+ when 'bgn' then BGN
745
+ when 'bhd' then BHD
746
+ when 'bif' then BIF
747
+ when 'bmd' then BMD
748
+ when 'bnd' then BND
749
+ when 'bob' then BOB
750
+ when 'bop' then BOP
751
+ when 'bov' then BOV
752
+ when 'brl' then BRL
753
+ when 'bsd' then BSD
754
+ when 'btn' then BTN
755
+ when 'buk' then BUK
756
+ when 'bwp' then BWP
757
+ when 'byn' then BYN
758
+ when 'bzd' then BZD
759
+ when 'cad' then CAD
760
+ when 'cdf' then CDF
761
+ when 'che' then CHE
762
+ when 'chf' then CHF
763
+ when 'chw' then CHW
764
+ when 'cle' then CLE
765
+ when 'clp' then CLP
766
+ when 'cnx' then CNX
767
+ when 'cny' then CNY
768
+ when 'cop' then COP
769
+ when 'cou' then COU
770
+ when 'crc' then CRC
771
+ when 'csk' then CSK
772
+ when 'cuc' then CUC
773
+ when 'cup' then CUP
774
+ when 'cve' then CVE
775
+ when 'cyp' then CYP
776
+ when 'czk' then CZK
777
+ when 'ddm' then DDM
778
+ when 'dem' then DEM
779
+ when 'djf' then DJF
780
+ when 'dkk' then DKK
781
+ when 'dop' then DOP
782
+ when 'dzd' then DZD
783
+ when 'ecs' then ECS
784
+ when 'ecv' then ECV
785
+ when 'eek' then EEK
786
+ when 'egp' then EGP
787
+ when 'ern' then ERN
788
+ when 'esp' then ESP
789
+ when 'etb' then ETB
790
+ when 'eur' then EUR
791
+ when 'fim' then FIM
792
+ when 'fjd' then FJD
793
+ when 'fkp' then FKP
794
+ when 'frf' then FRF
795
+ when 'gbp' then GBP
796
+ when 'gek' then GEK
797
+ when 'gel' then GEL
798
+ when 'ghs' then GHS
799
+ when 'gip' then GIP
800
+ when 'gmd' then GMD
801
+ when 'gnf' then GNF
802
+ when 'gns' then GNS
803
+ when 'gqe' then GQE
804
+ when 'grd' then GRD
805
+ when 'gtq' then GTQ
806
+ when 'gwe' then GWE
807
+ when 'gwp' then GWP
808
+ when 'gyd' then GYD
809
+ when 'hkd' then HKD
810
+ when 'hnl' then HNL
811
+ when 'hrd' then HRD
812
+ when 'hrk' then HRK
813
+ when 'htg' then HTG
814
+ when 'huf' then HUF
815
+ when 'idr' then IDR
816
+ when 'iep' then IEP
817
+ when 'ilp' then ILP
818
+ when 'ils' then ILS
819
+ when 'inr' then INR
820
+ when 'iqd' then IQD
821
+ when 'irr' then IRR
822
+ when 'isk' then ISK
823
+ when 'itl' then ITL
824
+ when 'jmd' then JMD
825
+ when 'jod' then JOD
826
+ when 'jpy' then JPY
827
+ when 'kes' then KES
828
+ when 'kgs' then KGS
829
+ when 'khr' then KHR
830
+ when 'kmf' then KMF
831
+ when 'kpw' then KPW
832
+ when 'krw' then KRW
833
+ when 'kwd' then KWD
834
+ when 'kyd' then KYD
835
+ when 'kzt' then KZT
836
+ when 'lak' then LAK
837
+ when 'lbp' then LBP
838
+ when 'lkr' then LKR
839
+ when 'lrd' then LRD
840
+ when 'lsl' then LSL
841
+ when 'ltl' then LTL
842
+ when 'ltt' then LTT
843
+ when 'luc' then LUC
844
+ when 'luf' then LUF
845
+ when 'lul' then LUL
846
+ when 'lvl' then LVL
847
+ when 'lvr' then LVR
848
+ when 'lyd' then LYD
849
+ when 'mad' then MAD
850
+ when 'maf' then MAF
851
+ when 'mcf' then MCF
852
+ when 'mdc' then MDC
853
+ when 'mdl' then MDL
854
+ when 'mga' then MGA
855
+ when 'mgf' then MGF
856
+ when 'mkd' then MKD
857
+ when 'mlf' then MLF
858
+ when 'mmk' then MMK
859
+ when 'mnt' then MNT
860
+ when 'mop' then MOP
861
+ when 'mru' then MRU
862
+ when 'mtl' then MTL
863
+ when 'mtp' then MTP
864
+ when 'mur' then MUR
865
+ when 'mvr' then MVR
866
+ when 'mwk' then MWK
867
+ when 'mxn' then MXN
868
+ when 'mxv' then MXV
869
+ when 'myr' then MYR
870
+ when 'mze' then MZE
871
+ when 'mzn' then MZN
872
+ when 'nad' then NAD
873
+ when 'ngn' then NGN
874
+ when 'nio' then NIO
875
+ when 'nlg' then NLG
876
+ when 'nok' then NOK
877
+ when 'npr' then NPR
878
+ when 'nzd' then NZD
879
+ when 'omr' then OMR
880
+ when 'pab' then PAB
881
+ when 'pei' then PEI
882
+ when 'pen' then PEN
883
+ when 'pgk' then PGK
884
+ when 'php' then PHP
885
+ when 'pkr' then PKR
886
+ when 'pln' then PLN
887
+ when 'pte' then PTE
888
+ when 'pyg' then PYG
889
+ when 'qar' then QAR
890
+ when 'rhd' then RHD
891
+ when 'ron' then RON
892
+ when 'rsd' then RSD
893
+ when 'rub' then RUB
894
+ when 'rwf' then RWF
895
+ when 'sar' then SAR
896
+ when 'sbd' then SBD
897
+ when 'scr' then SCR
898
+ when 'sdg' then SDG
899
+ when 'sek' then SEK
900
+ when 'sgd' then SGD
901
+ when 'shp' then SHP
902
+ when 'sit' then SIT
903
+ when 'skk' then SKK
904
+ when 'sll' then SLL
905
+ when 'sos' then SOS
906
+ when 'srd' then SRD
907
+ when 'srg' then SRG
908
+ when 'ssp' then SSP
909
+ when 'stn' then STN
910
+ when 'sur' then SUR
911
+ when 'svc' then SVC
912
+ when 'syp' then SYP
913
+ when 'szl' then SZL
914
+ when 'thb' then THB
915
+ when 'tjr' then TJR
916
+ when 'tjs' then TJS
917
+ when 'tmt' then TMT
918
+ when 'tnd' then TND
919
+ when 'top' then TOP
920
+ when 'tpe' then TPE
921
+ when 'try' then TRY
922
+ when 'ttd' then TTD
923
+ when 'twd' then TWD
924
+ when 'tzs' then TZS
925
+ when 'uah' then UAH
926
+ when 'uak' then UAK
927
+ when 'ugx' then UGX
928
+ when 'usd' then USD
929
+ when 'uyu' then UYU
930
+ when 'uyw' then UYW
931
+ when 'uzs' then UZS
932
+ when 'ves' then VES
933
+ when 'vnd' then VND
934
+ when 'vuv' then VUV
935
+ when 'wst' then WST
936
+ when 'xaf' then XAF
937
+ when 'xag' then XAG
938
+ when 'xau' then XAU
939
+ when 'xba' then XBA
940
+ when 'xbb' then XBB
941
+ when 'xcd' then XCD
942
+ when 'xdr' then XDR
943
+ when 'xeu' then XEU
944
+ when 'xfo' then XFO
945
+ when 'xfu' then XFU
946
+ when 'xof' then XOF
947
+ when 'xpd' then XPD
948
+ when 'xpf' then XPF
949
+ when 'xpt' then XPT
950
+ when 'xre' then XRE
951
+ when 'xsu' then XSU
952
+ when 'xts' then XTS
953
+ when 'xua' then XUA
954
+ when 'xxx' then XXX
955
+ when 'ydd' then YDD
956
+ when 'yer' then YER
957
+ when 'zar' then ZAR
958
+ when 'zmw' then ZMW
959
+ else
960
+ default_value
961
+ end
962
+ end
963
+ end
964
+ end