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,2548 @@
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
+ # Time zone
8
+ class TimeZone
9
+ TIME_ZONE = [
10
+ # TODO: Write general description for ENUM_AFRICAABIDJAN
11
+ ENUM_AFRICAABIDJAN = 'Africa/Abidjan'.freeze,
12
+
13
+ # TODO: Write general description for ENUM_AFRICAACCRA
14
+ ENUM_AFRICAACCRA = 'Africa/Accra'.freeze,
15
+
16
+ # TODO: Write general description for ENUM_AFRICAADDIS_ABABA
17
+ ENUM_AFRICAADDIS_ABABA = 'Africa/Addis_Ababa'.freeze,
18
+
19
+ # TODO: Write general description for ENUM_AFRICAALGIERS
20
+ ENUM_AFRICAALGIERS = 'Africa/Algiers'.freeze,
21
+
22
+ # TODO: Write general description for ENUM_AFRICAASMARA
23
+ ENUM_AFRICAASMARA = 'Africa/Asmara'.freeze,
24
+
25
+ # TODO: Write general description for ENUM_AFRICAASMERA
26
+ ENUM_AFRICAASMERA = 'Africa/Asmera'.freeze,
27
+
28
+ # TODO: Write general description for ENUM_AFRICABAMAKO
29
+ ENUM_AFRICABAMAKO = 'Africa/Bamako'.freeze,
30
+
31
+ # TODO: Write general description for ENUM_AFRICABANGUI
32
+ ENUM_AFRICABANGUI = 'Africa/Bangui'.freeze,
33
+
34
+ # TODO: Write general description for ENUM_AFRICABANJUL
35
+ ENUM_AFRICABANJUL = 'Africa/Banjul'.freeze,
36
+
37
+ # TODO: Write general description for ENUM_AFRICABISSAU
38
+ ENUM_AFRICABISSAU = 'Africa/Bissau'.freeze,
39
+
40
+ # TODO: Write general description for ENUM_AFRICABLANTYRE
41
+ ENUM_AFRICABLANTYRE = 'Africa/Blantyre'.freeze,
42
+
43
+ # TODO: Write general description for ENUM_AFRICABRAZZAVILLE
44
+ ENUM_AFRICABRAZZAVILLE = 'Africa/Brazzaville'.freeze,
45
+
46
+ # TODO: Write general description for ENUM_AFRICABUJUMBURA
47
+ ENUM_AFRICABUJUMBURA = 'Africa/Bujumbura'.freeze,
48
+
49
+ # TODO: Write general description for ENUM_AFRICACAIRO
50
+ ENUM_AFRICACAIRO = 'Africa/Cairo'.freeze,
51
+
52
+ # TODO: Write general description for ENUM_AFRICACASABLANCA
53
+ ENUM_AFRICACASABLANCA = 'Africa/Casablanca'.freeze,
54
+
55
+ # TODO: Write general description for ENUM_AFRICACEUTA
56
+ ENUM_AFRICACEUTA = 'Africa/Ceuta'.freeze,
57
+
58
+ # TODO: Write general description for ENUM_AFRICACONAKRY
59
+ ENUM_AFRICACONAKRY = 'Africa/Conakry'.freeze,
60
+
61
+ # TODO: Write general description for ENUM_AFRICADAKAR
62
+ ENUM_AFRICADAKAR = 'Africa/Dakar'.freeze,
63
+
64
+ # TODO: Write general description for ENUM_AFRICADAR_ES_SALAAM
65
+ ENUM_AFRICADAR_ES_SALAAM = 'Africa/Dar_es_Salaam'.freeze,
66
+
67
+ # TODO: Write general description for ENUM_AFRICADJIBOUTI
68
+ ENUM_AFRICADJIBOUTI = 'Africa/Djibouti'.freeze,
69
+
70
+ # TODO: Write general description for ENUM_AFRICADOUALA
71
+ ENUM_AFRICADOUALA = 'Africa/Douala'.freeze,
72
+
73
+ # TODO: Write general description for ENUM_AFRICAEL_AAIUN
74
+ ENUM_AFRICAEL_AAIUN = 'Africa/El_Aaiun'.freeze,
75
+
76
+ # TODO: Write general description for ENUM_AFRICAFREETOWN
77
+ ENUM_AFRICAFREETOWN = 'Africa/Freetown'.freeze,
78
+
79
+ # TODO: Write general description for ENUM_AFRICAGABORONE
80
+ ENUM_AFRICAGABORONE = 'Africa/Gaborone'.freeze,
81
+
82
+ # TODO: Write general description for ENUM_AFRICAHARARE
83
+ ENUM_AFRICAHARARE = 'Africa/Harare'.freeze,
84
+
85
+ # TODO: Write general description for ENUM_AFRICAJOHANNESBURG
86
+ ENUM_AFRICAJOHANNESBURG = 'Africa/Johannesburg'.freeze,
87
+
88
+ # TODO: Write general description for ENUM_AFRICAJUBA
89
+ ENUM_AFRICAJUBA = 'Africa/Juba'.freeze,
90
+
91
+ # TODO: Write general description for ENUM_AFRICAKAMPALA
92
+ ENUM_AFRICAKAMPALA = 'Africa/Kampala'.freeze,
93
+
94
+ # TODO: Write general description for ENUM_AFRICAKHARTOUM
95
+ ENUM_AFRICAKHARTOUM = 'Africa/Khartoum'.freeze,
96
+
97
+ # TODO: Write general description for ENUM_AFRICAKIGALI
98
+ ENUM_AFRICAKIGALI = 'Africa/Kigali'.freeze,
99
+
100
+ # TODO: Write general description for ENUM_AFRICAKINSHASA
101
+ ENUM_AFRICAKINSHASA = 'Africa/Kinshasa'.freeze,
102
+
103
+ # TODO: Write general description for ENUM_AFRICALAGOS
104
+ ENUM_AFRICALAGOS = 'Africa/Lagos'.freeze,
105
+
106
+ # TODO: Write general description for ENUM_AFRICALIBREVILLE
107
+ ENUM_AFRICALIBREVILLE = 'Africa/Libreville'.freeze,
108
+
109
+ # TODO: Write general description for ENUM_AFRICALOME
110
+ ENUM_AFRICALOME = 'Africa/Lome'.freeze,
111
+
112
+ # TODO: Write general description for ENUM_AFRICALUANDA
113
+ ENUM_AFRICALUANDA = 'Africa/Luanda'.freeze,
114
+
115
+ # TODO: Write general description for ENUM_AFRICALUBUMBASHI
116
+ ENUM_AFRICALUBUMBASHI = 'Africa/Lubumbashi'.freeze,
117
+
118
+ # TODO: Write general description for ENUM_AFRICALUSAKA
119
+ ENUM_AFRICALUSAKA = 'Africa/Lusaka'.freeze,
120
+
121
+ # TODO: Write general description for ENUM_AFRICAMALABO
122
+ ENUM_AFRICAMALABO = 'Africa/Malabo'.freeze,
123
+
124
+ # TODO: Write general description for ENUM_AFRICAMAPUTO
125
+ ENUM_AFRICAMAPUTO = 'Africa/Maputo'.freeze,
126
+
127
+ # TODO: Write general description for ENUM_AFRICAMASERU
128
+ ENUM_AFRICAMASERU = 'Africa/Maseru'.freeze,
129
+
130
+ # TODO: Write general description for ENUM_AFRICAMBABANE
131
+ ENUM_AFRICAMBABANE = 'Africa/Mbabane'.freeze,
132
+
133
+ # TODO: Write general description for ENUM_AFRICAMOGADISHU
134
+ ENUM_AFRICAMOGADISHU = 'Africa/Mogadishu'.freeze,
135
+
136
+ # TODO: Write general description for ENUM_AFRICAMONROVIA
137
+ ENUM_AFRICAMONROVIA = 'Africa/Monrovia'.freeze,
138
+
139
+ # TODO: Write general description for ENUM_AFRICANAIROBI
140
+ ENUM_AFRICANAIROBI = 'Africa/Nairobi'.freeze,
141
+
142
+ # TODO: Write general description for ENUM_AFRICANDJAMENA
143
+ ENUM_AFRICANDJAMENA = 'Africa/Ndjamena'.freeze,
144
+
145
+ # TODO: Write general description for ENUM_AFRICANIAMEY
146
+ ENUM_AFRICANIAMEY = 'Africa/Niamey'.freeze,
147
+
148
+ # TODO: Write general description for ENUM_AFRICANOUAKCHOTT
149
+ ENUM_AFRICANOUAKCHOTT = 'Africa/Nouakchott'.freeze,
150
+
151
+ # TODO: Write general description for ENUM_AFRICAOUAGADOUGOU
152
+ ENUM_AFRICAOUAGADOUGOU = 'Africa/Ouagadougou'.freeze,
153
+
154
+ # TODO: Write general description for ENUM_AFRICAPORTONOVO
155
+ ENUM_AFRICAPORTONOVO = 'Africa/Porto-Novo'.freeze,
156
+
157
+ # TODO: Write general description for ENUM_AFRICASAO_TOME
158
+ ENUM_AFRICASAO_TOME = 'Africa/Sao_Tome'.freeze,
159
+
160
+ # TODO: Write general description for ENUM_AFRICATIMBUKTU
161
+ ENUM_AFRICATIMBUKTU = 'Africa/Timbuktu'.freeze,
162
+
163
+ # TODO: Write general description for ENUM_AFRICATRIPOLI
164
+ ENUM_AFRICATRIPOLI = 'Africa/Tripoli'.freeze,
165
+
166
+ # TODO: Write general description for ENUM_AFRICATUNIS
167
+ ENUM_AFRICATUNIS = 'Africa/Tunis'.freeze,
168
+
169
+ # TODO: Write general description for ENUM_AFRICAWINDHOEK
170
+ ENUM_AFRICAWINDHOEK = 'Africa/Windhoek'.freeze,
171
+
172
+ # TODO: Write general description for ENUM_AMERICAADAK
173
+ ENUM_AMERICAADAK = 'America/Adak'.freeze,
174
+
175
+ # TODO: Write general description for ENUM_AMERICAANCHORAGE
176
+ ENUM_AMERICAANCHORAGE = 'America/Anchorage'.freeze,
177
+
178
+ # TODO: Write general description for ENUM_AMERICAANGUILLA
179
+ ENUM_AMERICAANGUILLA = 'America/Anguilla'.freeze,
180
+
181
+ # TODO: Write general description for ENUM_AMERICAANTIGUA
182
+ ENUM_AMERICAANTIGUA = 'America/Antigua'.freeze,
183
+
184
+ # TODO: Write general description for ENUM_AMERICAARAGUAINA
185
+ ENUM_AMERICAARAGUAINA = 'America/Araguaina'.freeze,
186
+
187
+ # TODO: Write general description for ENUM_AMERICAARGENTINABUENOS_AIRES
188
+ ENUM_AMERICAARGENTINABUENOS_AIRES = 'America/Argentina/Buenos_Aires'.freeze,
189
+
190
+ # TODO: Write general description for ENUM_AMERICAARGENTINACATAMARCA
191
+ ENUM_AMERICAARGENTINACATAMARCA = 'America/Argentina/Catamarca'.freeze,
192
+
193
+ # TODO: Write general description for ENUM_AMERICAARGENTINACOMODRIVADAVIA
194
+ ENUM_AMERICAARGENTINACOMODRIVADAVIA = 'America/Argentina/ComodRivadavia'.freeze,
195
+
196
+ # TODO: Write general description for ENUM_AMERICAARGENTINACORDOBA
197
+ ENUM_AMERICAARGENTINACORDOBA = 'America/Argentina/Cordoba'.freeze,
198
+
199
+ # TODO: Write general description for ENUM_AMERICAARGENTINAJUJUY
200
+ ENUM_AMERICAARGENTINAJUJUY = 'America/Argentina/Jujuy'.freeze,
201
+
202
+ # TODO: Write general description for ENUM_AMERICAARGENTINALA_RIOJA
203
+ ENUM_AMERICAARGENTINALA_RIOJA = 'America/Argentina/La_Rioja'.freeze,
204
+
205
+ # TODO: Write general description for ENUM_AMERICAARGENTINAMENDOZA
206
+ ENUM_AMERICAARGENTINAMENDOZA = 'America/Argentina/Mendoza'.freeze,
207
+
208
+ # TODO: Write general description for ENUM_AMERICAARGENTINARIO_GALLEGOS
209
+ ENUM_AMERICAARGENTINARIO_GALLEGOS = 'America/Argentina/Rio_Gallegos'.freeze,
210
+
211
+ # TODO: Write general description for ENUM_AMERICAARGENTINASALTA
212
+ ENUM_AMERICAARGENTINASALTA = 'America/Argentina/Salta'.freeze,
213
+
214
+ # TODO: Write general description for ENUM_AMERICAARGENTINASAN_JUAN
215
+ ENUM_AMERICAARGENTINASAN_JUAN = 'America/Argentina/San_Juan'.freeze,
216
+
217
+ # TODO: Write general description for ENUM_AMERICAARGENTINASAN_LUIS
218
+ ENUM_AMERICAARGENTINASAN_LUIS = 'America/Argentina/San_Luis'.freeze,
219
+
220
+ # TODO: Write general description for ENUM_AMERICAARGENTINATUCUMAN
221
+ ENUM_AMERICAARGENTINATUCUMAN = 'America/Argentina/Tucuman'.freeze,
222
+
223
+ # TODO: Write general description for ENUM_AMERICAARGENTINAUSHUAIA
224
+ ENUM_AMERICAARGENTINAUSHUAIA = 'America/Argentina/Ushuaia'.freeze,
225
+
226
+ # TODO: Write general description for ENUM_AMERICAARUBA
227
+ ENUM_AMERICAARUBA = 'America/Aruba'.freeze,
228
+
229
+ # TODO: Write general description for ENUM_AMERICAASUNCION
230
+ ENUM_AMERICAASUNCION = 'America/Asuncion'.freeze,
231
+
232
+ # TODO: Write general description for ENUM_AMERICAATIKOKAN
233
+ ENUM_AMERICAATIKOKAN = 'America/Atikokan'.freeze,
234
+
235
+ # TODO: Write general description for ENUM_AMERICAATKA
236
+ ENUM_AMERICAATKA = 'America/Atka'.freeze,
237
+
238
+ # TODO: Write general description for ENUM_AMERICABAHIA
239
+ ENUM_AMERICABAHIA = 'America/Bahia'.freeze,
240
+
241
+ # TODO: Write general description for ENUM_AMERICABAHIA_BANDERAS
242
+ ENUM_AMERICABAHIA_BANDERAS = 'America/Bahia_Banderas'.freeze,
243
+
244
+ # TODO: Write general description for ENUM_AMERICABARBADOS
245
+ ENUM_AMERICABARBADOS = 'America/Barbados'.freeze,
246
+
247
+ # TODO: Write general description for ENUM_AMERICABELEM
248
+ ENUM_AMERICABELEM = 'America/Belem'.freeze,
249
+
250
+ # TODO: Write general description for ENUM_AMERICABELIZE
251
+ ENUM_AMERICABELIZE = 'America/Belize'.freeze,
252
+
253
+ # TODO: Write general description for ENUM_AMERICABLANCSABLON
254
+ ENUM_AMERICABLANCSABLON = 'America/Blanc-Sablon'.freeze,
255
+
256
+ # TODO: Write general description for ENUM_AMERICABOA_VISTA
257
+ ENUM_AMERICABOA_VISTA = 'America/Boa_Vista'.freeze,
258
+
259
+ # TODO: Write general description for ENUM_AMERICABOGOTA
260
+ ENUM_AMERICABOGOTA = 'America/Bogota'.freeze,
261
+
262
+ # TODO: Write general description for ENUM_AMERICABOISE
263
+ ENUM_AMERICABOISE = 'America/Boise'.freeze,
264
+
265
+ # TODO: Write general description for ENUM_AMERICABUENOS_AIRES
266
+ ENUM_AMERICABUENOS_AIRES = 'America/Buenos_Aires'.freeze,
267
+
268
+ # TODO: Write general description for ENUM_AMERICACAMBRIDGE_BAY
269
+ ENUM_AMERICACAMBRIDGE_BAY = 'America/Cambridge_Bay'.freeze,
270
+
271
+ # TODO: Write general description for ENUM_AMERICACAMPO_GRANDE
272
+ ENUM_AMERICACAMPO_GRANDE = 'America/Campo_Grande'.freeze,
273
+
274
+ # TODO: Write general description for ENUM_AMERICACANCUN
275
+ ENUM_AMERICACANCUN = 'America/Cancun'.freeze,
276
+
277
+ # TODO: Write general description for ENUM_AMERICACARACAS
278
+ ENUM_AMERICACARACAS = 'America/Caracas'.freeze,
279
+
280
+ # TODO: Write general description for ENUM_AMERICACATAMARCA
281
+ ENUM_AMERICACATAMARCA = 'America/Catamarca'.freeze,
282
+
283
+ # TODO: Write general description for ENUM_AMERICACAYENNE
284
+ ENUM_AMERICACAYENNE = 'America/Cayenne'.freeze,
285
+
286
+ # TODO: Write general description for ENUM_AMERICACAYMAN
287
+ ENUM_AMERICACAYMAN = 'America/Cayman'.freeze,
288
+
289
+ # TODO: Write general description for ENUM_AMERICACHICAGO
290
+ ENUM_AMERICACHICAGO = 'America/Chicago'.freeze,
291
+
292
+ # TODO: Write general description for ENUM_AMERICACHIHUAHUA
293
+ ENUM_AMERICACHIHUAHUA = 'America/Chihuahua'.freeze,
294
+
295
+ # TODO: Write general description for ENUM_AMERICACORAL_HARBOUR
296
+ ENUM_AMERICACORAL_HARBOUR = 'America/Coral_Harbour'.freeze,
297
+
298
+ # TODO: Write general description for ENUM_AMERICACORDOBA
299
+ ENUM_AMERICACORDOBA = 'America/Cordoba'.freeze,
300
+
301
+ # TODO: Write general description for ENUM_AMERICACOSTA_RICA
302
+ ENUM_AMERICACOSTA_RICA = 'America/Costa_Rica'.freeze,
303
+
304
+ # TODO: Write general description for ENUM_AMERICACRESTON
305
+ ENUM_AMERICACRESTON = 'America/Creston'.freeze,
306
+
307
+ # TODO: Write general description for ENUM_AMERICACUIABA
308
+ ENUM_AMERICACUIABA = 'America/Cuiaba'.freeze,
309
+
310
+ # TODO: Write general description for ENUM_AMERICACURACAO
311
+ ENUM_AMERICACURACAO = 'America/Curacao'.freeze,
312
+
313
+ # TODO: Write general description for ENUM_AMERICADANMARKSHAVN
314
+ ENUM_AMERICADANMARKSHAVN = 'America/Danmarkshavn'.freeze,
315
+
316
+ # TODO: Write general description for ENUM_AMERICADAWSON
317
+ ENUM_AMERICADAWSON = 'America/Dawson'.freeze,
318
+
319
+ # TODO: Write general description for ENUM_AMERICADAWSON_CREEK
320
+ ENUM_AMERICADAWSON_CREEK = 'America/Dawson_Creek'.freeze,
321
+
322
+ # TODO: Write general description for ENUM_AMERICADENVER
323
+ ENUM_AMERICADENVER = 'America/Denver'.freeze,
324
+
325
+ # TODO: Write general description for ENUM_AMERICADETROIT
326
+ ENUM_AMERICADETROIT = 'America/Detroit'.freeze,
327
+
328
+ # TODO: Write general description for ENUM_AMERICADOMINICA
329
+ ENUM_AMERICADOMINICA = 'America/Dominica'.freeze,
330
+
331
+ # TODO: Write general description for ENUM_AMERICAEDMONTON
332
+ ENUM_AMERICAEDMONTON = 'America/Edmonton'.freeze,
333
+
334
+ # TODO: Write general description for ENUM_AMERICAEIRUNEPE
335
+ ENUM_AMERICAEIRUNEPE = 'America/Eirunepe'.freeze,
336
+
337
+ # TODO: Write general description for ENUM_AMERICAEL_SALVADOR
338
+ ENUM_AMERICAEL_SALVADOR = 'America/El_Salvador'.freeze,
339
+
340
+ # TODO: Write general description for ENUM_AMERICAENSENADA
341
+ ENUM_AMERICAENSENADA = 'America/Ensenada'.freeze,
342
+
343
+ # TODO: Write general description for ENUM_AMERICAFORT_NELSON
344
+ ENUM_AMERICAFORT_NELSON = 'America/Fort_Nelson'.freeze,
345
+
346
+ # TODO: Write general description for ENUM_AMERICAFORT_WAYNE
347
+ ENUM_AMERICAFORT_WAYNE = 'America/Fort_Wayne'.freeze,
348
+
349
+ # TODO: Write general description for ENUM_AMERICAFORTALEZA
350
+ ENUM_AMERICAFORTALEZA = 'America/Fortaleza'.freeze,
351
+
352
+ # TODO: Write general description for ENUM_AMERICAGLACE_BAY
353
+ ENUM_AMERICAGLACE_BAY = 'America/Glace_Bay'.freeze,
354
+
355
+ # TODO: Write general description for ENUM_AMERICAGODTHAB
356
+ ENUM_AMERICAGODTHAB = 'America/Godthab'.freeze,
357
+
358
+ # TODO: Write general description for ENUM_AMERICAGOOSE_BAY
359
+ ENUM_AMERICAGOOSE_BAY = 'America/Goose_Bay'.freeze,
360
+
361
+ # TODO: Write general description for ENUM_AMERICAGRAND_TURK
362
+ ENUM_AMERICAGRAND_TURK = 'America/Grand_Turk'.freeze,
363
+
364
+ # TODO: Write general description for ENUM_AMERICAGRENADA
365
+ ENUM_AMERICAGRENADA = 'America/Grenada'.freeze,
366
+
367
+ # TODO: Write general description for ENUM_AMERICAGUADELOUPE
368
+ ENUM_AMERICAGUADELOUPE = 'America/Guadeloupe'.freeze,
369
+
370
+ # TODO: Write general description for ENUM_AMERICAGUATEMALA
371
+ ENUM_AMERICAGUATEMALA = 'America/Guatemala'.freeze,
372
+
373
+ # TODO: Write general description for ENUM_AMERICAGUAYAQUIL
374
+ ENUM_AMERICAGUAYAQUIL = 'America/Guayaquil'.freeze,
375
+
376
+ # TODO: Write general description for ENUM_AMERICAGUYANA
377
+ ENUM_AMERICAGUYANA = 'America/Guyana'.freeze,
378
+
379
+ # TODO: Write general description for ENUM_AMERICAHALIFAX
380
+ ENUM_AMERICAHALIFAX = 'America/Halifax'.freeze,
381
+
382
+ # TODO: Write general description for ENUM_AMERICAHAVANA
383
+ ENUM_AMERICAHAVANA = 'America/Havana'.freeze,
384
+
385
+ # TODO: Write general description for ENUM_AMERICAHERMOSILLO
386
+ ENUM_AMERICAHERMOSILLO = 'America/Hermosillo'.freeze,
387
+
388
+ # TODO: Write general description for ENUM_AMERICAINDIANAINDIANAPOLIS
389
+ ENUM_AMERICAINDIANAINDIANAPOLIS = 'America/Indiana/Indianapolis'.freeze,
390
+
391
+ # TODO: Write general description for ENUM_AMERICAINDIANAKNOX
392
+ ENUM_AMERICAINDIANAKNOX = 'America/Indiana/Knox'.freeze,
393
+
394
+ # TODO: Write general description for ENUM_AMERICAINDIANAMARENGO
395
+ ENUM_AMERICAINDIANAMARENGO = 'America/Indiana/Marengo'.freeze,
396
+
397
+ # TODO: Write general description for ENUM_AMERICAINDIANAPETERSBURG
398
+ ENUM_AMERICAINDIANAPETERSBURG = 'America/Indiana/Petersburg'.freeze,
399
+
400
+ # TODO: Write general description for ENUM_AMERICAINDIANATELL_CITY
401
+ ENUM_AMERICAINDIANATELL_CITY = 'America/Indiana/Tell_City'.freeze,
402
+
403
+ # TODO: Write general description for ENUM_AMERICAINDIANAVEVAY
404
+ ENUM_AMERICAINDIANAVEVAY = 'America/Indiana/Vevay'.freeze,
405
+
406
+ # TODO: Write general description for ENUM_AMERICAINDIANAVINCENNES
407
+ ENUM_AMERICAINDIANAVINCENNES = 'America/Indiana/Vincennes'.freeze,
408
+
409
+ # TODO: Write general description for ENUM_AMERICAINDIANAWINAMAC
410
+ ENUM_AMERICAINDIANAWINAMAC = 'America/Indiana/Winamac'.freeze,
411
+
412
+ # TODO: Write general description for ENUM_AMERICAINDIANAPOLIS
413
+ ENUM_AMERICAINDIANAPOLIS = 'America/Indianapolis'.freeze,
414
+
415
+ # TODO: Write general description for ENUM_AMERICAINUVIK
416
+ ENUM_AMERICAINUVIK = 'America/Inuvik'.freeze,
417
+
418
+ # TODO: Write general description for ENUM_AMERICAIQALUIT
419
+ ENUM_AMERICAIQALUIT = 'America/Iqaluit'.freeze,
420
+
421
+ # TODO: Write general description for ENUM_AMERICAJAMAICA
422
+ ENUM_AMERICAJAMAICA = 'America/Jamaica'.freeze,
423
+
424
+ # TODO: Write general description for ENUM_AMERICAJUJUY
425
+ ENUM_AMERICAJUJUY = 'America/Jujuy'.freeze,
426
+
427
+ # TODO: Write general description for ENUM_AMERICAJUNEAU
428
+ ENUM_AMERICAJUNEAU = 'America/Juneau'.freeze,
429
+
430
+ # TODO: Write general description for ENUM_AMERICAKENTUCKYLOUISVILLE
431
+ ENUM_AMERICAKENTUCKYLOUISVILLE = 'America/Kentucky/Louisville'.freeze,
432
+
433
+ # TODO: Write general description for ENUM_AMERICAKENTUCKYMONTICELLO
434
+ ENUM_AMERICAKENTUCKYMONTICELLO = 'America/Kentucky/Monticello'.freeze,
435
+
436
+ # TODO: Write general description for ENUM_AMERICAKNOX_IN
437
+ ENUM_AMERICAKNOX_IN = 'America/Knox_IN'.freeze,
438
+
439
+ # TODO: Write general description for ENUM_AMERICAKRALENDIJK
440
+ ENUM_AMERICAKRALENDIJK = 'America/Kralendijk'.freeze,
441
+
442
+ # TODO: Write general description for ENUM_AMERICALA_PAZ
443
+ ENUM_AMERICALA_PAZ = 'America/La_Paz'.freeze,
444
+
445
+ # TODO: Write general description for ENUM_AMERICALIMA
446
+ ENUM_AMERICALIMA = 'America/Lima'.freeze,
447
+
448
+ # TODO: Write general description for ENUM_AMERICALOS_ANGELES
449
+ ENUM_AMERICALOS_ANGELES = 'America/Los_Angeles'.freeze,
450
+
451
+ # TODO: Write general description for ENUM_AMERICALOUISVILLE
452
+ ENUM_AMERICALOUISVILLE = 'America/Louisville'.freeze,
453
+
454
+ # TODO: Write general description for ENUM_AMERICALOWER_PRINCES
455
+ ENUM_AMERICALOWER_PRINCES = 'America/Lower_Princes'.freeze,
456
+
457
+ # TODO: Write general description for ENUM_AMERICAMACEIO
458
+ ENUM_AMERICAMACEIO = 'America/Maceio'.freeze,
459
+
460
+ # TODO: Write general description for ENUM_AMERICAMANAGUA
461
+ ENUM_AMERICAMANAGUA = 'America/Managua'.freeze,
462
+
463
+ # TODO: Write general description for ENUM_AMERICAMANAUS
464
+ ENUM_AMERICAMANAUS = 'America/Manaus'.freeze,
465
+
466
+ # TODO: Write general description for ENUM_AMERICAMARIGOT
467
+ ENUM_AMERICAMARIGOT = 'America/Marigot'.freeze,
468
+
469
+ # TODO: Write general description for ENUM_AMERICAMARTINIQUE
470
+ ENUM_AMERICAMARTINIQUE = 'America/Martinique'.freeze,
471
+
472
+ # TODO: Write general description for ENUM_AMERICAMATAMOROS
473
+ ENUM_AMERICAMATAMOROS = 'America/Matamoros'.freeze,
474
+
475
+ # TODO: Write general description for ENUM_AMERICAMAZATLAN
476
+ ENUM_AMERICAMAZATLAN = 'America/Mazatlan'.freeze,
477
+
478
+ # TODO: Write general description for ENUM_AMERICAMENDOZA
479
+ ENUM_AMERICAMENDOZA = 'America/Mendoza'.freeze,
480
+
481
+ # TODO: Write general description for ENUM_AMERICAMENOMINEE
482
+ ENUM_AMERICAMENOMINEE = 'America/Menominee'.freeze,
483
+
484
+ # TODO: Write general description for ENUM_AMERICAMERIDA
485
+ ENUM_AMERICAMERIDA = 'America/Merida'.freeze,
486
+
487
+ # TODO: Write general description for ENUM_AMERICAMETLAKATLA
488
+ ENUM_AMERICAMETLAKATLA = 'America/Metlakatla'.freeze,
489
+
490
+ # TODO: Write general description for ENUM_AMERICAMEXICO_CITY
491
+ ENUM_AMERICAMEXICO_CITY = 'America/Mexico_City'.freeze,
492
+
493
+ # TODO: Write general description for ENUM_AMERICAMIQUELON
494
+ ENUM_AMERICAMIQUELON = 'America/Miquelon'.freeze,
495
+
496
+ # TODO: Write general description for ENUM_AMERICAMONCTON
497
+ ENUM_AMERICAMONCTON = 'America/Moncton'.freeze,
498
+
499
+ # TODO: Write general description for ENUM_AMERICAMONTERREY
500
+ ENUM_AMERICAMONTERREY = 'America/Monterrey'.freeze,
501
+
502
+ # TODO: Write general description for ENUM_AMERICAMONTEVIDEO
503
+ ENUM_AMERICAMONTEVIDEO = 'America/Montevideo'.freeze,
504
+
505
+ # TODO: Write general description for ENUM_AMERICAMONTREAL
506
+ ENUM_AMERICAMONTREAL = 'America/Montreal'.freeze,
507
+
508
+ # TODO: Write general description for ENUM_AMERICAMONTSERRAT
509
+ ENUM_AMERICAMONTSERRAT = 'America/Montserrat'.freeze,
510
+
511
+ # TODO: Write general description for ENUM_AMERICANASSAU
512
+ ENUM_AMERICANASSAU = 'America/Nassau'.freeze,
513
+
514
+ # TODO: Write general description for ENUM_AMERICANEW_YORK
515
+ ENUM_AMERICANEW_YORK = 'America/New_York'.freeze,
516
+
517
+ # TODO: Write general description for ENUM_AMERICANIPIGON
518
+ ENUM_AMERICANIPIGON = 'America/Nipigon'.freeze,
519
+
520
+ # TODO: Write general description for ENUM_AMERICANOME
521
+ ENUM_AMERICANOME = 'America/Nome'.freeze,
522
+
523
+ # TODO: Write general description for ENUM_AMERICANORONHA
524
+ ENUM_AMERICANORONHA = 'America/Noronha'.freeze,
525
+
526
+ # TODO: Write general description for ENUM_AMERICANORTH_DAKOTABEULAH
527
+ ENUM_AMERICANORTH_DAKOTABEULAH = 'America/North_Dakota/Beulah'.freeze,
528
+
529
+ # TODO: Write general description for ENUM_AMERICANORTH_DAKOTACENTER
530
+ ENUM_AMERICANORTH_DAKOTACENTER = 'America/North_Dakota/Center'.freeze,
531
+
532
+ # TODO: Write general description for ENUM_AMERICANORTH_DAKOTANEW_SALEM
533
+ ENUM_AMERICANORTH_DAKOTANEW_SALEM = 'America/North_Dakota/New_Salem'.freeze,
534
+
535
+ # TODO: Write general description for ENUM_AMERICANUUK
536
+ ENUM_AMERICANUUK = 'America/Nuuk'.freeze,
537
+
538
+ # TODO: Write general description for ENUM_AMERICAOJINAGA
539
+ ENUM_AMERICAOJINAGA = 'America/Ojinaga'.freeze,
540
+
541
+ # TODO: Write general description for ENUM_AMERICAPANAMA
542
+ ENUM_AMERICAPANAMA = 'America/Panama'.freeze,
543
+
544
+ # TODO: Write general description for ENUM_AMERICAPANGNIRTUNG
545
+ ENUM_AMERICAPANGNIRTUNG = 'America/Pangnirtung'.freeze,
546
+
547
+ # TODO: Write general description for ENUM_AMERICAPARAMARIBO
548
+ ENUM_AMERICAPARAMARIBO = 'America/Paramaribo'.freeze,
549
+
550
+ # TODO: Write general description for ENUM_AMERICAPHOENIX
551
+ ENUM_AMERICAPHOENIX = 'America/Phoenix'.freeze,
552
+
553
+ # TODO: Write general description for ENUM_AMERICAPORTAUPRINCE
554
+ ENUM_AMERICAPORTAUPRINCE = 'America/Port-au-Prince'.freeze,
555
+
556
+ # TODO: Write general description for ENUM_AMERICAPORT_OF_SPAIN
557
+ ENUM_AMERICAPORT_OF_SPAIN = 'America/Port_of_Spain'.freeze,
558
+
559
+ # TODO: Write general description for ENUM_AMERICAPORTO_ACRE
560
+ ENUM_AMERICAPORTO_ACRE = 'America/Porto_Acre'.freeze,
561
+
562
+ # TODO: Write general description for ENUM_AMERICAPORTO_VELHO
563
+ ENUM_AMERICAPORTO_VELHO = 'America/Porto_Velho'.freeze,
564
+
565
+ # TODO: Write general description for ENUM_AMERICAPUERTO_RICO
566
+ ENUM_AMERICAPUERTO_RICO = 'America/Puerto_Rico'.freeze,
567
+
568
+ # TODO: Write general description for ENUM_AMERICAPUNTA_ARENAS
569
+ ENUM_AMERICAPUNTA_ARENAS = 'America/Punta_Arenas'.freeze,
570
+
571
+ # TODO: Write general description for ENUM_AMERICARAINY_RIVER
572
+ ENUM_AMERICARAINY_RIVER = 'America/Rainy_River'.freeze,
573
+
574
+ # TODO: Write general description for ENUM_AMERICARANKIN_INLET
575
+ ENUM_AMERICARANKIN_INLET = 'America/Rankin_Inlet'.freeze,
576
+
577
+ # TODO: Write general description for ENUM_AMERICARECIFE
578
+ ENUM_AMERICARECIFE = 'America/Recife'.freeze,
579
+
580
+ # TODO: Write general description for ENUM_AMERICAREGINA
581
+ ENUM_AMERICAREGINA = 'America/Regina'.freeze,
582
+
583
+ # TODO: Write general description for ENUM_AMERICARESOLUTE
584
+ ENUM_AMERICARESOLUTE = 'America/Resolute'.freeze,
585
+
586
+ # TODO: Write general description for ENUM_AMERICARIO_BRANCO
587
+ ENUM_AMERICARIO_BRANCO = 'America/Rio_Branco'.freeze,
588
+
589
+ # TODO: Write general description for ENUM_AMERICAROSARIO
590
+ ENUM_AMERICAROSARIO = 'America/Rosario'.freeze,
591
+
592
+ # TODO: Write general description for ENUM_AMERICASANTA_ISABEL
593
+ ENUM_AMERICASANTA_ISABEL = 'America/Santa_Isabel'.freeze,
594
+
595
+ # TODO: Write general description for ENUM_AMERICASANTAREM
596
+ ENUM_AMERICASANTAREM = 'America/Santarem'.freeze,
597
+
598
+ # TODO: Write general description for ENUM_AMERICASANTIAGO
599
+ ENUM_AMERICASANTIAGO = 'America/Santiago'.freeze,
600
+
601
+ # TODO: Write general description for ENUM_AMERICASANTO_DOMINGO
602
+ ENUM_AMERICASANTO_DOMINGO = 'America/Santo_Domingo'.freeze,
603
+
604
+ # TODO: Write general description for ENUM_AMERICASAO_PAULO
605
+ ENUM_AMERICASAO_PAULO = 'America/Sao_Paulo'.freeze,
606
+
607
+ # TODO: Write general description for ENUM_AMERICASCORESBYSUND
608
+ ENUM_AMERICASCORESBYSUND = 'America/Scoresbysund'.freeze,
609
+
610
+ # TODO: Write general description for ENUM_AMERICASHIPROCK
611
+ ENUM_AMERICASHIPROCK = 'America/Shiprock'.freeze,
612
+
613
+ # TODO: Write general description for ENUM_AMERICASITKA
614
+ ENUM_AMERICASITKA = 'America/Sitka'.freeze,
615
+
616
+ # TODO: Write general description for ENUM_AMERICAST_BARTHELEMY
617
+ ENUM_AMERICAST_BARTHELEMY = 'America/St_Barthelemy'.freeze,
618
+
619
+ # TODO: Write general description for ENUM_AMERICAST_JOHNS
620
+ ENUM_AMERICAST_JOHNS = 'America/St_Johns'.freeze,
621
+
622
+ # TODO: Write general description for ENUM_AMERICAST_KITTS
623
+ ENUM_AMERICAST_KITTS = 'America/St_Kitts'.freeze,
624
+
625
+ # TODO: Write general description for ENUM_AMERICAST_LUCIA
626
+ ENUM_AMERICAST_LUCIA = 'America/St_Lucia'.freeze,
627
+
628
+ # TODO: Write general description for ENUM_AMERICAST_THOMAS
629
+ ENUM_AMERICAST_THOMAS = 'America/St_Thomas'.freeze,
630
+
631
+ # TODO: Write general description for ENUM_AMERICAST_VINCENT
632
+ ENUM_AMERICAST_VINCENT = 'America/St_Vincent'.freeze,
633
+
634
+ # TODO: Write general description for ENUM_AMERICASWIFT_CURRENT
635
+ ENUM_AMERICASWIFT_CURRENT = 'America/Swift_Current'.freeze,
636
+
637
+ # TODO: Write general description for ENUM_AMERICATEGUCIGALPA
638
+ ENUM_AMERICATEGUCIGALPA = 'America/Tegucigalpa'.freeze,
639
+
640
+ # TODO: Write general description for ENUM_AMERICATHULE
641
+ ENUM_AMERICATHULE = 'America/Thule'.freeze,
642
+
643
+ # TODO: Write general description for ENUM_AMERICATHUNDER_BAY
644
+ ENUM_AMERICATHUNDER_BAY = 'America/Thunder_Bay'.freeze,
645
+
646
+ # TODO: Write general description for ENUM_AMERICATIJUANA
647
+ ENUM_AMERICATIJUANA = 'America/Tijuana'.freeze,
648
+
649
+ # TODO: Write general description for ENUM_AMERICATORONTO
650
+ ENUM_AMERICATORONTO = 'America/Toronto'.freeze,
651
+
652
+ # TODO: Write general description for ENUM_AMERICATORTOLA
653
+ ENUM_AMERICATORTOLA = 'America/Tortola'.freeze,
654
+
655
+ # TODO: Write general description for ENUM_AMERICAVANCOUVER
656
+ ENUM_AMERICAVANCOUVER = 'America/Vancouver'.freeze,
657
+
658
+ # TODO: Write general description for ENUM_AMERICAVIRGIN
659
+ ENUM_AMERICAVIRGIN = 'America/Virgin'.freeze,
660
+
661
+ # TODO: Write general description for ENUM_AMERICAWHITEHORSE
662
+ ENUM_AMERICAWHITEHORSE = 'America/Whitehorse'.freeze,
663
+
664
+ # TODO: Write general description for ENUM_AMERICAWINNIPEG
665
+ ENUM_AMERICAWINNIPEG = 'America/Winnipeg'.freeze,
666
+
667
+ # TODO: Write general description for ENUM_AMERICAYAKUTAT
668
+ ENUM_AMERICAYAKUTAT = 'America/Yakutat'.freeze,
669
+
670
+ # TODO: Write general description for ENUM_AMERICAYELLOWKNIFE
671
+ ENUM_AMERICAYELLOWKNIFE = 'America/Yellowknife'.freeze,
672
+
673
+ # TODO: Write general description for ENUM_ANTARCTICACASEY
674
+ ENUM_ANTARCTICACASEY = 'Antarctica/Casey'.freeze,
675
+
676
+ # TODO: Write general description for ENUM_ANTARCTICADAVIS
677
+ ENUM_ANTARCTICADAVIS = 'Antarctica/Davis'.freeze,
678
+
679
+ # TODO: Write general description for ENUM_ANTARCTICADUMONTDURVILLE
680
+ ENUM_ANTARCTICADUMONTDURVILLE = 'Antarctica/DumontDUrville'.freeze,
681
+
682
+ # TODO: Write general description for ENUM_ANTARCTICAMACQUARIE
683
+ ENUM_ANTARCTICAMACQUARIE = 'Antarctica/Macquarie'.freeze,
684
+
685
+ # TODO: Write general description for ENUM_ANTARCTICAMAWSON
686
+ ENUM_ANTARCTICAMAWSON = 'Antarctica/Mawson'.freeze,
687
+
688
+ # TODO: Write general description for ENUM_ANTARCTICAMCMURDO
689
+ ENUM_ANTARCTICAMCMURDO = 'Antarctica/McMurdo'.freeze,
690
+
691
+ # TODO: Write general description for ENUM_ANTARCTICAPALMER
692
+ ENUM_ANTARCTICAPALMER = 'Antarctica/Palmer'.freeze,
693
+
694
+ # TODO: Write general description for ENUM_ANTARCTICAROTHERA
695
+ ENUM_ANTARCTICAROTHERA = 'Antarctica/Rothera'.freeze,
696
+
697
+ # TODO: Write general description for ENUM_ANTARCTICASOUTH_POLE
698
+ ENUM_ANTARCTICASOUTH_POLE = 'Antarctica/South_Pole'.freeze,
699
+
700
+ # TODO: Write general description for ENUM_ANTARCTICASYOWA
701
+ ENUM_ANTARCTICASYOWA = 'Antarctica/Syowa'.freeze,
702
+
703
+ # TODO: Write general description for ENUM_ANTARCTICATROLL
704
+ ENUM_ANTARCTICATROLL = 'Antarctica/Troll'.freeze,
705
+
706
+ # TODO: Write general description for ENUM_ANTARCTICAVOSTOK
707
+ ENUM_ANTARCTICAVOSTOK = 'Antarctica/Vostok'.freeze,
708
+
709
+ # TODO: Write general description for ENUM_ARCTICLONGYEARBYEN
710
+ ENUM_ARCTICLONGYEARBYEN = 'Arctic/Longyearbyen'.freeze,
711
+
712
+ # TODO: Write general description for ENUM_ASIAADEN
713
+ ENUM_ASIAADEN = 'Asia/Aden'.freeze,
714
+
715
+ # TODO: Write general description for ENUM_ASIAALMATY
716
+ ENUM_ASIAALMATY = 'Asia/Almaty'.freeze,
717
+
718
+ # TODO: Write general description for ENUM_ASIAAMMAN
719
+ ENUM_ASIAAMMAN = 'Asia/Amman'.freeze,
720
+
721
+ # TODO: Write general description for ENUM_ASIAANADYR
722
+ ENUM_ASIAANADYR = 'Asia/Anadyr'.freeze,
723
+
724
+ # TODO: Write general description for ENUM_ASIAAQTAU
725
+ ENUM_ASIAAQTAU = 'Asia/Aqtau'.freeze,
726
+
727
+ # TODO: Write general description for ENUM_ASIAAQTOBE
728
+ ENUM_ASIAAQTOBE = 'Asia/Aqtobe'.freeze,
729
+
730
+ # TODO: Write general description for ENUM_ASIAASHGABAT
731
+ ENUM_ASIAASHGABAT = 'Asia/Ashgabat'.freeze,
732
+
733
+ # TODO: Write general description for ENUM_ASIAASHKHABAD
734
+ ENUM_ASIAASHKHABAD = 'Asia/Ashkhabad'.freeze,
735
+
736
+ # TODO: Write general description for ENUM_ASIAATYRAU
737
+ ENUM_ASIAATYRAU = 'Asia/Atyrau'.freeze,
738
+
739
+ # TODO: Write general description for ENUM_ASIABAGHDAD
740
+ ENUM_ASIABAGHDAD = 'Asia/Baghdad'.freeze,
741
+
742
+ # TODO: Write general description for ENUM_ASIABAHRAIN
743
+ ENUM_ASIABAHRAIN = 'Asia/Bahrain'.freeze,
744
+
745
+ # TODO: Write general description for ENUM_ASIABAKU
746
+ ENUM_ASIABAKU = 'Asia/Baku'.freeze,
747
+
748
+ # TODO: Write general description for ENUM_ASIABANGKOK
749
+ ENUM_ASIABANGKOK = 'Asia/Bangkok'.freeze,
750
+
751
+ # TODO: Write general description for ENUM_ASIABARNAUL
752
+ ENUM_ASIABARNAUL = 'Asia/Barnaul'.freeze,
753
+
754
+ # TODO: Write general description for ENUM_ASIABEIRUT
755
+ ENUM_ASIABEIRUT = 'Asia/Beirut'.freeze,
756
+
757
+ # TODO: Write general description for ENUM_ASIABISHKEK
758
+ ENUM_ASIABISHKEK = 'Asia/Bishkek'.freeze,
759
+
760
+ # TODO: Write general description for ENUM_ASIABRUNEI
761
+ ENUM_ASIABRUNEI = 'Asia/Brunei'.freeze,
762
+
763
+ # TODO: Write general description for ENUM_ASIACALCUTTA
764
+ ENUM_ASIACALCUTTA = 'Asia/Calcutta'.freeze,
765
+
766
+ # TODO: Write general description for ENUM_ASIACHITA
767
+ ENUM_ASIACHITA = 'Asia/Chita'.freeze,
768
+
769
+ # TODO: Write general description for ENUM_ASIACHOIBALSAN
770
+ ENUM_ASIACHOIBALSAN = 'Asia/Choibalsan'.freeze,
771
+
772
+ # TODO: Write general description for ENUM_ASIACHONGQING
773
+ ENUM_ASIACHONGQING = 'Asia/Chongqing'.freeze,
774
+
775
+ # TODO: Write general description for ENUM_ASIACHUNGKING
776
+ ENUM_ASIACHUNGKING = 'Asia/Chungking'.freeze,
777
+
778
+ # TODO: Write general description for ENUM_ASIACOLOMBO
779
+ ENUM_ASIACOLOMBO = 'Asia/Colombo'.freeze,
780
+
781
+ # TODO: Write general description for ENUM_ASIADACCA
782
+ ENUM_ASIADACCA = 'Asia/Dacca'.freeze,
783
+
784
+ # TODO: Write general description for ENUM_ASIADAMASCUS
785
+ ENUM_ASIADAMASCUS = 'Asia/Damascus'.freeze,
786
+
787
+ # TODO: Write general description for ENUM_ASIADHAKA
788
+ ENUM_ASIADHAKA = 'Asia/Dhaka'.freeze,
789
+
790
+ # TODO: Write general description for ENUM_ASIADILI
791
+ ENUM_ASIADILI = 'Asia/Dili'.freeze,
792
+
793
+ # TODO: Write general description for ENUM_ASIADUBAI
794
+ ENUM_ASIADUBAI = 'Asia/Dubai'.freeze,
795
+
796
+ # TODO: Write general description for ENUM_ASIADUSHANBE
797
+ ENUM_ASIADUSHANBE = 'Asia/Dushanbe'.freeze,
798
+
799
+ # TODO: Write general description for ENUM_ASIAFAMAGUSTA
800
+ ENUM_ASIAFAMAGUSTA = 'Asia/Famagusta'.freeze,
801
+
802
+ # TODO: Write general description for ENUM_ASIAGAZA
803
+ ENUM_ASIAGAZA = 'Asia/Gaza'.freeze,
804
+
805
+ # TODO: Write general description for ENUM_ASIAHARBIN
806
+ ENUM_ASIAHARBIN = 'Asia/Harbin'.freeze,
807
+
808
+ # TODO: Write general description for ENUM_ASIAHEBRON
809
+ ENUM_ASIAHEBRON = 'Asia/Hebron'.freeze,
810
+
811
+ # TODO: Write general description for ENUM_ASIAHO_CHI_MINH
812
+ ENUM_ASIAHO_CHI_MINH = 'Asia/Ho_Chi_Minh'.freeze,
813
+
814
+ # TODO: Write general description for ENUM_ASIAHONG_KONG
815
+ ENUM_ASIAHONG_KONG = 'Asia/Hong_Kong'.freeze,
816
+
817
+ # TODO: Write general description for ENUM_ASIAHOVD
818
+ ENUM_ASIAHOVD = 'Asia/Hovd'.freeze,
819
+
820
+ # TODO: Write general description for ENUM_ASIAIRKUTSK
821
+ ENUM_ASIAIRKUTSK = 'Asia/Irkutsk'.freeze,
822
+
823
+ # TODO: Write general description for ENUM_ASIAISTANBUL
824
+ ENUM_ASIAISTANBUL = 'Asia/Istanbul'.freeze,
825
+
826
+ # TODO: Write general description for ENUM_ASIAJAKARTA
827
+ ENUM_ASIAJAKARTA = 'Asia/Jakarta'.freeze,
828
+
829
+ # TODO: Write general description for ENUM_ASIAJAYAPURA
830
+ ENUM_ASIAJAYAPURA = 'Asia/Jayapura'.freeze,
831
+
832
+ # TODO: Write general description for ENUM_ASIAJERUSALEM
833
+ ENUM_ASIAJERUSALEM = 'Asia/Jerusalem'.freeze,
834
+
835
+ # TODO: Write general description for ENUM_ASIAKABUL
836
+ ENUM_ASIAKABUL = 'Asia/Kabul'.freeze,
837
+
838
+ # TODO: Write general description for ENUM_ASIAKAMCHATKA
839
+ ENUM_ASIAKAMCHATKA = 'Asia/Kamchatka'.freeze,
840
+
841
+ # TODO: Write general description for ENUM_ASIAKARACHI
842
+ ENUM_ASIAKARACHI = 'Asia/Karachi'.freeze,
843
+
844
+ # TODO: Write general description for ENUM_ASIAKASHGAR
845
+ ENUM_ASIAKASHGAR = 'Asia/Kashgar'.freeze,
846
+
847
+ # TODO: Write general description for ENUM_ASIAKATHMANDU
848
+ ENUM_ASIAKATHMANDU = 'Asia/Kathmandu'.freeze,
849
+
850
+ # TODO: Write general description for ENUM_ASIAKATMANDU
851
+ ENUM_ASIAKATMANDU = 'Asia/Katmandu'.freeze,
852
+
853
+ # TODO: Write general description for ENUM_ASIAKHANDYGA
854
+ ENUM_ASIAKHANDYGA = 'Asia/Khandyga'.freeze,
855
+
856
+ # TODO: Write general description for ENUM_ASIAKOLKATA
857
+ ENUM_ASIAKOLKATA = 'Asia/Kolkata'.freeze,
858
+
859
+ # TODO: Write general description for ENUM_ASIAKRASNOYARSK
860
+ ENUM_ASIAKRASNOYARSK = 'Asia/Krasnoyarsk'.freeze,
861
+
862
+ # TODO: Write general description for ENUM_ASIAKUALA_LUMPUR
863
+ ENUM_ASIAKUALA_LUMPUR = 'Asia/Kuala_Lumpur'.freeze,
864
+
865
+ # TODO: Write general description for ENUM_ASIAKUCHING
866
+ ENUM_ASIAKUCHING = 'Asia/Kuching'.freeze,
867
+
868
+ # TODO: Write general description for ENUM_ASIAKUWAIT
869
+ ENUM_ASIAKUWAIT = 'Asia/Kuwait'.freeze,
870
+
871
+ # TODO: Write general description for ENUM_ASIAMACAO
872
+ ENUM_ASIAMACAO = 'Asia/Macao'.freeze,
873
+
874
+ # TODO: Write general description for ENUM_ASIAMACAU
875
+ ENUM_ASIAMACAU = 'Asia/Macau'.freeze,
876
+
877
+ # TODO: Write general description for ENUM_ASIAMAGADAN
878
+ ENUM_ASIAMAGADAN = 'Asia/Magadan'.freeze,
879
+
880
+ # TODO: Write general description for ENUM_ASIAMAKASSAR
881
+ ENUM_ASIAMAKASSAR = 'Asia/Makassar'.freeze,
882
+
883
+ # TODO: Write general description for ENUM_ASIAMANILA
884
+ ENUM_ASIAMANILA = 'Asia/Manila'.freeze,
885
+
886
+ # TODO: Write general description for ENUM_ASIAMUSCAT
887
+ ENUM_ASIAMUSCAT = 'Asia/Muscat'.freeze,
888
+
889
+ # TODO: Write general description for ENUM_ASIANICOSIA
890
+ ENUM_ASIANICOSIA = 'Asia/Nicosia'.freeze,
891
+
892
+ # TODO: Write general description for ENUM_ASIANOVOKUZNETSK
893
+ ENUM_ASIANOVOKUZNETSK = 'Asia/Novokuznetsk'.freeze,
894
+
895
+ # TODO: Write general description for ENUM_ASIANOVOSIBIRSK
896
+ ENUM_ASIANOVOSIBIRSK = 'Asia/Novosibirsk'.freeze,
897
+
898
+ # TODO: Write general description for ENUM_ASIAOMSK
899
+ ENUM_ASIAOMSK = 'Asia/Omsk'.freeze,
900
+
901
+ # TODO: Write general description for ENUM_ASIAORAL
902
+ ENUM_ASIAORAL = 'Asia/Oral'.freeze,
903
+
904
+ # TODO: Write general description for ENUM_ASIAPHNOM_PENH
905
+ ENUM_ASIAPHNOM_PENH = 'Asia/Phnom_Penh'.freeze,
906
+
907
+ # TODO: Write general description for ENUM_ASIAPONTIANAK
908
+ ENUM_ASIAPONTIANAK = 'Asia/Pontianak'.freeze,
909
+
910
+ # TODO: Write general description for ENUM_ASIAPYONGYANG
911
+ ENUM_ASIAPYONGYANG = 'Asia/Pyongyang'.freeze,
912
+
913
+ # TODO: Write general description for ENUM_ASIAQATAR
914
+ ENUM_ASIAQATAR = 'Asia/Qatar'.freeze,
915
+
916
+ # TODO: Write general description for ENUM_ASIAQOSTANAY
917
+ ENUM_ASIAQOSTANAY = 'Asia/Qostanay'.freeze,
918
+
919
+ # TODO: Write general description for ENUM_ASIAQYZYLORDA
920
+ ENUM_ASIAQYZYLORDA = 'Asia/Qyzylorda'.freeze,
921
+
922
+ # TODO: Write general description for ENUM_ASIARANGOON
923
+ ENUM_ASIARANGOON = 'Asia/Rangoon'.freeze,
924
+
925
+ # TODO: Write general description for ENUM_ASIARIYADH
926
+ ENUM_ASIARIYADH = 'Asia/Riyadh'.freeze,
927
+
928
+ # TODO: Write general description for ENUM_ASIASAIGON
929
+ ENUM_ASIASAIGON = 'Asia/Saigon'.freeze,
930
+
931
+ # TODO: Write general description for ENUM_ASIASAKHALIN
932
+ ENUM_ASIASAKHALIN = 'Asia/Sakhalin'.freeze,
933
+
934
+ # TODO: Write general description for ENUM_ASIASAMARKAND
935
+ ENUM_ASIASAMARKAND = 'Asia/Samarkand'.freeze,
936
+
937
+ # TODO: Write general description for ENUM_ASIASEOUL
938
+ ENUM_ASIASEOUL = 'Asia/Seoul'.freeze,
939
+
940
+ # TODO: Write general description for ENUM_ASIASHANGHAI
941
+ ENUM_ASIASHANGHAI = 'Asia/Shanghai'.freeze,
942
+
943
+ # TODO: Write general description for ENUM_ASIASINGAPORE
944
+ ENUM_ASIASINGAPORE = 'Asia/Singapore'.freeze,
945
+
946
+ # TODO: Write general description for ENUM_ASIASREDNEKOLYMSK
947
+ ENUM_ASIASREDNEKOLYMSK = 'Asia/Srednekolymsk'.freeze,
948
+
949
+ # TODO: Write general description for ENUM_ASIATAIPEI
950
+ ENUM_ASIATAIPEI = 'Asia/Taipei'.freeze,
951
+
952
+ # TODO: Write general description for ENUM_ASIATASHKENT
953
+ ENUM_ASIATASHKENT = 'Asia/Tashkent'.freeze,
954
+
955
+ # TODO: Write general description for ENUM_ASIATBILISI
956
+ ENUM_ASIATBILISI = 'Asia/Tbilisi'.freeze,
957
+
958
+ # TODO: Write general description for ENUM_ASIATEHRAN
959
+ ENUM_ASIATEHRAN = 'Asia/Tehran'.freeze,
960
+
961
+ # TODO: Write general description for ENUM_ASIATEL_AVIV
962
+ ENUM_ASIATEL_AVIV = 'Asia/Tel_Aviv'.freeze,
963
+
964
+ # TODO: Write general description for ENUM_ASIATHIMBU
965
+ ENUM_ASIATHIMBU = 'Asia/Thimbu'.freeze,
966
+
967
+ # TODO: Write general description for ENUM_ASIATHIMPHU
968
+ ENUM_ASIATHIMPHU = 'Asia/Thimphu'.freeze,
969
+
970
+ # TODO: Write general description for ENUM_ASIATOKYO
971
+ ENUM_ASIATOKYO = 'Asia/Tokyo'.freeze,
972
+
973
+ # TODO: Write general description for ENUM_ASIATOMSK
974
+ ENUM_ASIATOMSK = 'Asia/Tomsk'.freeze,
975
+
976
+ # TODO: Write general description for ENUM_ASIAUJUNG_PANDANG
977
+ ENUM_ASIAUJUNG_PANDANG = 'Asia/Ujung_Pandang'.freeze,
978
+
979
+ # TODO: Write general description for ENUM_ASIAULAANBAATAR
980
+ ENUM_ASIAULAANBAATAR = 'Asia/Ulaanbaatar'.freeze,
981
+
982
+ # TODO: Write general description for ENUM_ASIAULAN_BATOR
983
+ ENUM_ASIAULAN_BATOR = 'Asia/Ulan_Bator'.freeze,
984
+
985
+ # TODO: Write general description for ENUM_ASIAURUMQI
986
+ ENUM_ASIAURUMQI = 'Asia/Urumqi'.freeze,
987
+
988
+ # TODO: Write general description for ENUM_ASIAUSTNERA
989
+ ENUM_ASIAUSTNERA = 'Asia/Ust-Nera'.freeze,
990
+
991
+ # TODO: Write general description for ENUM_ASIAVIENTIANE
992
+ ENUM_ASIAVIENTIANE = 'Asia/Vientiane'.freeze,
993
+
994
+ # TODO: Write general description for ENUM_ASIAVLADIVOSTOK
995
+ ENUM_ASIAVLADIVOSTOK = 'Asia/Vladivostok'.freeze,
996
+
997
+ # TODO: Write general description for ENUM_ASIAYAKUTSK
998
+ ENUM_ASIAYAKUTSK = 'Asia/Yakutsk'.freeze,
999
+
1000
+ # TODO: Write general description for ENUM_ASIAYANGON
1001
+ ENUM_ASIAYANGON = 'Asia/Yangon'.freeze,
1002
+
1003
+ # TODO: Write general description for ENUM_ASIAYEKATERINBURG
1004
+ ENUM_ASIAYEKATERINBURG = 'Asia/Yekaterinburg'.freeze,
1005
+
1006
+ # TODO: Write general description for ENUM_ASIAYEREVAN
1007
+ ENUM_ASIAYEREVAN = 'Asia/Yerevan'.freeze,
1008
+
1009
+ # TODO: Write general description for ENUM_ATLANTICAZORES
1010
+ ENUM_ATLANTICAZORES = 'Atlantic/Azores'.freeze,
1011
+
1012
+ # TODO: Write general description for ENUM_ATLANTICBERMUDA
1013
+ ENUM_ATLANTICBERMUDA = 'Atlantic/Bermuda'.freeze,
1014
+
1015
+ # TODO: Write general description for ENUM_ATLANTICCANARY
1016
+ ENUM_ATLANTICCANARY = 'Atlantic/Canary'.freeze,
1017
+
1018
+ # TODO: Write general description for ENUM_ATLANTICCAPE_VERDE
1019
+ ENUM_ATLANTICCAPE_VERDE = 'Atlantic/Cape_Verde'.freeze,
1020
+
1021
+ # TODO: Write general description for ENUM_ATLANTICFAEROE
1022
+ ENUM_ATLANTICFAEROE = 'Atlantic/Faeroe'.freeze,
1023
+
1024
+ # TODO: Write general description for ENUM_ATLANTICFAROE
1025
+ ENUM_ATLANTICFAROE = 'Atlantic/Faroe'.freeze,
1026
+
1027
+ # TODO: Write general description for ENUM_ATLANTICJAN_MAYEN
1028
+ ENUM_ATLANTICJAN_MAYEN = 'Atlantic/Jan_Mayen'.freeze,
1029
+
1030
+ # TODO: Write general description for ENUM_ATLANTICMADEIRA
1031
+ ENUM_ATLANTICMADEIRA = 'Atlantic/Madeira'.freeze,
1032
+
1033
+ # TODO: Write general description for ENUM_ATLANTICREYKJAVIK
1034
+ ENUM_ATLANTICREYKJAVIK = 'Atlantic/Reykjavik'.freeze,
1035
+
1036
+ # TODO: Write general description for ENUM_ATLANTICSOUTH_GEORGIA
1037
+ ENUM_ATLANTICSOUTH_GEORGIA = 'Atlantic/South_Georgia'.freeze,
1038
+
1039
+ # TODO: Write general description for ENUM_ATLANTICST_HELENA
1040
+ ENUM_ATLANTICST_HELENA = 'Atlantic/St_Helena'.freeze,
1041
+
1042
+ # TODO: Write general description for ENUM_ATLANTICSTANLEY
1043
+ ENUM_ATLANTICSTANLEY = 'Atlantic/Stanley'.freeze,
1044
+
1045
+ # TODO: Write general description for ENUM_AUSTRALIAACT
1046
+ ENUM_AUSTRALIAACT = 'Australia/ACT'.freeze,
1047
+
1048
+ # TODO: Write general description for ENUM_AUSTRALIAADELAIDE
1049
+ ENUM_AUSTRALIAADELAIDE = 'Australia/Adelaide'.freeze,
1050
+
1051
+ # TODO: Write general description for ENUM_AUSTRALIABRISBANE
1052
+ ENUM_AUSTRALIABRISBANE = 'Australia/Brisbane'.freeze,
1053
+
1054
+ # TODO: Write general description for ENUM_AUSTRALIABROKEN_HILL
1055
+ ENUM_AUSTRALIABROKEN_HILL = 'Australia/Broken_Hill'.freeze,
1056
+
1057
+ # TODO: Write general description for ENUM_AUSTRALIACANBERRA
1058
+ ENUM_AUSTRALIACANBERRA = 'Australia/Canberra'.freeze,
1059
+
1060
+ # TODO: Write general description for ENUM_AUSTRALIACURRIE
1061
+ ENUM_AUSTRALIACURRIE = 'Australia/Currie'.freeze,
1062
+
1063
+ # TODO: Write general description for ENUM_AUSTRALIADARWIN
1064
+ ENUM_AUSTRALIADARWIN = 'Australia/Darwin'.freeze,
1065
+
1066
+ # TODO: Write general description for ENUM_AUSTRALIAEUCLA
1067
+ ENUM_AUSTRALIAEUCLA = 'Australia/Eucla'.freeze,
1068
+
1069
+ # TODO: Write general description for ENUM_AUSTRALIAHOBART
1070
+ ENUM_AUSTRALIAHOBART = 'Australia/Hobart'.freeze,
1071
+
1072
+ # TODO: Write general description for ENUM_AUSTRALIALHI
1073
+ ENUM_AUSTRALIALHI = 'Australia/LHI'.freeze,
1074
+
1075
+ # TODO: Write general description for ENUM_AUSTRALIALINDEMAN
1076
+ ENUM_AUSTRALIALINDEMAN = 'Australia/Lindeman'.freeze,
1077
+
1078
+ # TODO: Write general description for ENUM_AUSTRALIALORD_HOWE
1079
+ ENUM_AUSTRALIALORD_HOWE = 'Australia/Lord_Howe'.freeze,
1080
+
1081
+ # TODO: Write general description for ENUM_AUSTRALIAMELBOURNE
1082
+ ENUM_AUSTRALIAMELBOURNE = 'Australia/Melbourne'.freeze,
1083
+
1084
+ # TODO: Write general description for ENUM_AUSTRALIANSW
1085
+ ENUM_AUSTRALIANSW = 'Australia/NSW'.freeze,
1086
+
1087
+ # TODO: Write general description for ENUM_AUSTRALIANORTH
1088
+ ENUM_AUSTRALIANORTH = 'Australia/North'.freeze,
1089
+
1090
+ # TODO: Write general description for ENUM_AUSTRALIAPERTH
1091
+ ENUM_AUSTRALIAPERTH = 'Australia/Perth'.freeze,
1092
+
1093
+ # TODO: Write general description for ENUM_AUSTRALIAQUEENSLAND
1094
+ ENUM_AUSTRALIAQUEENSLAND = 'Australia/Queensland'.freeze,
1095
+
1096
+ # TODO: Write general description for ENUM_AUSTRALIASOUTH
1097
+ ENUM_AUSTRALIASOUTH = 'Australia/South'.freeze,
1098
+
1099
+ # TODO: Write general description for ENUM_AUSTRALIASYDNEY
1100
+ ENUM_AUSTRALIASYDNEY = 'Australia/Sydney'.freeze,
1101
+
1102
+ # TODO: Write general description for ENUM_AUSTRALIATASMANIA
1103
+ ENUM_AUSTRALIATASMANIA = 'Australia/Tasmania'.freeze,
1104
+
1105
+ # TODO: Write general description for ENUM_AUSTRALIAVICTORIA
1106
+ ENUM_AUSTRALIAVICTORIA = 'Australia/Victoria'.freeze,
1107
+
1108
+ # TODO: Write general description for ENUM_AUSTRALIAWEST
1109
+ ENUM_AUSTRALIAWEST = 'Australia/West'.freeze,
1110
+
1111
+ # TODO: Write general description for ENUM_AUSTRALIAYANCOWINNA
1112
+ ENUM_AUSTRALIAYANCOWINNA = 'Australia/Yancowinna'.freeze,
1113
+
1114
+ # TODO: Write general description for ENUM_BRAZILACRE
1115
+ ENUM_BRAZILACRE = 'Brazil/Acre'.freeze,
1116
+
1117
+ # TODO: Write general description for ENUM_BRAZILDENORONHA
1118
+ ENUM_BRAZILDENORONHA = 'Brazil/DeNoronha'.freeze,
1119
+
1120
+ # TODO: Write general description for ENUM_BRAZILEAST
1121
+ ENUM_BRAZILEAST = 'Brazil/East'.freeze,
1122
+
1123
+ # TODO: Write general description for ENUM_BRAZILWEST
1124
+ ENUM_BRAZILWEST = 'Brazil/West'.freeze,
1125
+
1126
+ # TODO: Write general description for CET
1127
+ CET = 'CET'.freeze,
1128
+
1129
+ # TODO: Write general description for CST6CDT
1130
+ CST6CDT = 'CST6CDT'.freeze,
1131
+
1132
+ # TODO: Write general description for ENUM_CANADAATLANTIC
1133
+ ENUM_CANADAATLANTIC = 'Canada/Atlantic'.freeze,
1134
+
1135
+ # TODO: Write general description for ENUM_CANADACENTRAL
1136
+ ENUM_CANADACENTRAL = 'Canada/Central'.freeze,
1137
+
1138
+ # TODO: Write general description for ENUM_CANADAEASTERN
1139
+ ENUM_CANADAEASTERN = 'Canada/Eastern'.freeze,
1140
+
1141
+ # TODO: Write general description for ENUM_CANADAMOUNTAIN
1142
+ ENUM_CANADAMOUNTAIN = 'Canada/Mountain'.freeze,
1143
+
1144
+ # TODO: Write general description for ENUM_CANADANEWFOUNDLAND
1145
+ ENUM_CANADANEWFOUNDLAND = 'Canada/Newfoundland'.freeze,
1146
+
1147
+ # TODO: Write general description for ENUM_CANADAPACIFIC
1148
+ ENUM_CANADAPACIFIC = 'Canada/Pacific'.freeze,
1149
+
1150
+ # TODO: Write general description for ENUM_CANADASASKATCHEWAN
1151
+ ENUM_CANADASASKATCHEWAN = 'Canada/Saskatchewan'.freeze,
1152
+
1153
+ # TODO: Write general description for ENUM_CANADAYUKON
1154
+ ENUM_CANADAYUKON = 'Canada/Yukon'.freeze,
1155
+
1156
+ # TODO: Write general description for ENUM_CHILECONTINENTAL
1157
+ ENUM_CHILECONTINENTAL = 'Chile/Continental'.freeze,
1158
+
1159
+ # TODO: Write general description for ENUM_CHILEEASTERISLAND
1160
+ ENUM_CHILEEASTERISLAND = 'Chile/EasterIsland'.freeze,
1161
+
1162
+ # TODO: Write general description for CUBA
1163
+ CUBA = 'Cuba'.freeze,
1164
+
1165
+ # TODO: Write general description for EET
1166
+ EET = 'EET'.freeze,
1167
+
1168
+ # TODO: Write general description for EST5EDT
1169
+ EST5EDT = 'EST5EDT'.freeze,
1170
+
1171
+ # TODO: Write general description for EGYPT
1172
+ EGYPT = 'Egypt'.freeze,
1173
+
1174
+ # TODO: Write general description for EIRE
1175
+ EIRE = 'Eire'.freeze,
1176
+
1177
+ # TODO: Write general description for ENUM_ETCGMT
1178
+ ENUM_ETCGMT = 'Etc/GMT'.freeze,
1179
+
1180
+ # TODO: Write general description for ENUM_ETCGMT0
1181
+ ENUM_ETCGMT0 = 'Etc/GMT+0'.freeze,
1182
+
1183
+ # TODO: Write general description for ENUM_ETCGMT1
1184
+ ENUM_ETCGMT1 = 'Etc/GMT+1'.freeze,
1185
+
1186
+ # TODO: Write general description for ENUM_ETCGMT10
1187
+ ENUM_ETCGMT10 = 'Etc/GMT+10'.freeze,
1188
+
1189
+ # TODO: Write general description for ENUM_ETCGMT11
1190
+ ENUM_ETCGMT11 = 'Etc/GMT+11'.freeze,
1191
+
1192
+ # TODO: Write general description for ENUM_ETCGMT12
1193
+ ENUM_ETCGMT12 = 'Etc/GMT+12'.freeze,
1194
+
1195
+ # TODO: Write general description for ENUM_ETCGMT2
1196
+ ENUM_ETCGMT2 = 'Etc/GMT+2'.freeze,
1197
+
1198
+ # TODO: Write general description for ENUM_ETCGMT3
1199
+ ENUM_ETCGMT3 = 'Etc/GMT+3'.freeze,
1200
+
1201
+ # TODO: Write general description for ENUM_ETCGMT4
1202
+ ENUM_ETCGMT4 = 'Etc/GMT+4'.freeze,
1203
+
1204
+ # TODO: Write general description for ENUM_ETCGMT5
1205
+ ENUM_ETCGMT5 = 'Etc/GMT+5'.freeze,
1206
+
1207
+ # TODO: Write general description for ENUM_ETCGMT6
1208
+ ENUM_ETCGMT6 = 'Etc/GMT+6'.freeze,
1209
+
1210
+ # TODO: Write general description for ENUM_ETCGMT7
1211
+ ENUM_ETCGMT7 = 'Etc/GMT+7'.freeze,
1212
+
1213
+ # TODO: Write general description for ENUM_ETCGMT8
1214
+ ENUM_ETCGMT8 = 'Etc/GMT+8'.freeze,
1215
+
1216
+ # TODO: Write general description for ENUM_ETCGMT9
1217
+ ENUM_ETCGMT9 = 'Etc/GMT+9'.freeze,
1218
+
1219
+ # TODO: Write general description for ENUM_ETCGMT01
1220
+ ENUM_ETCGMT01 = 'Etc/GMT-0'.freeze,
1221
+
1222
+ # TODO: Write general description for ENUM_ETCGMT13
1223
+ ENUM_ETCGMT13 = 'Etc/GMT-1'.freeze,
1224
+
1225
+ # TODO: Write general description for ENUM_ETCGMT101
1226
+ ENUM_ETCGMT101 = 'Etc/GMT-10'.freeze,
1227
+
1228
+ # TODO: Write general description for ENUM_ETCGMT111
1229
+ ENUM_ETCGMT111 = 'Etc/GMT-11'.freeze,
1230
+
1231
+ # TODO: Write general description for ENUM_ETCGMT121
1232
+ ENUM_ETCGMT121 = 'Etc/GMT-12'.freeze,
1233
+
1234
+ # TODO: Write general description for ENUM_ETCGMT131
1235
+ ENUM_ETCGMT131 = 'Etc/GMT-13'.freeze,
1236
+
1237
+ # TODO: Write general description for ENUM_ETCGMT14
1238
+ ENUM_ETCGMT14 = 'Etc/GMT-14'.freeze,
1239
+
1240
+ # TODO: Write general description for ENUM_ETCGMT21
1241
+ ENUM_ETCGMT21 = 'Etc/GMT-2'.freeze,
1242
+
1243
+ # TODO: Write general description for ENUM_ETCGMT31
1244
+ ENUM_ETCGMT31 = 'Etc/GMT-3'.freeze,
1245
+
1246
+ # TODO: Write general description for ENUM_ETCGMT41
1247
+ ENUM_ETCGMT41 = 'Etc/GMT-4'.freeze,
1248
+
1249
+ # TODO: Write general description for ENUM_ETCGMT51
1250
+ ENUM_ETCGMT51 = 'Etc/GMT-5'.freeze,
1251
+
1252
+ # TODO: Write general description for ENUM_ETCGMT61
1253
+ ENUM_ETCGMT61 = 'Etc/GMT-6'.freeze,
1254
+
1255
+ # TODO: Write general description for ENUM_ETCGMT71
1256
+ ENUM_ETCGMT71 = 'Etc/GMT-7'.freeze,
1257
+
1258
+ # TODO: Write general description for ENUM_ETCGMT81
1259
+ ENUM_ETCGMT81 = 'Etc/GMT-8'.freeze,
1260
+
1261
+ # TODO: Write general description for ENUM_ETCGMT91
1262
+ ENUM_ETCGMT91 = 'Etc/GMT-9'.freeze,
1263
+
1264
+ # TODO: Write general description for ENUM_ETCGMT02
1265
+ ENUM_ETCGMT02 = 'Etc/GMT0'.freeze,
1266
+
1267
+ # TODO: Write general description for ENUM_ETCGREENWICH
1268
+ ENUM_ETCGREENWICH = 'Etc/Greenwich'.freeze,
1269
+
1270
+ # TODO: Write general description for ENUM_ETCUCT
1271
+ ENUM_ETCUCT = 'Etc/UCT'.freeze,
1272
+
1273
+ # TODO: Write general description for ENUM_ETCUTC
1274
+ ENUM_ETCUTC = 'Etc/UTC'.freeze,
1275
+
1276
+ # TODO: Write general description for ENUM_ETCUNIVERSAL
1277
+ ENUM_ETCUNIVERSAL = 'Etc/Universal'.freeze,
1278
+
1279
+ # TODO: Write general description for ENUM_ETCZULU
1280
+ ENUM_ETCZULU = 'Etc/Zulu'.freeze,
1281
+
1282
+ # TODO: Write general description for ENUM_EUROPEAMSTERDAM
1283
+ ENUM_EUROPEAMSTERDAM = 'Europe/Amsterdam'.freeze,
1284
+
1285
+ # TODO: Write general description for ENUM_EUROPEANDORRA
1286
+ ENUM_EUROPEANDORRA = 'Europe/Andorra'.freeze,
1287
+
1288
+ # TODO: Write general description for ENUM_EUROPEASTRAKHAN
1289
+ ENUM_EUROPEASTRAKHAN = 'Europe/Astrakhan'.freeze,
1290
+
1291
+ # TODO: Write general description for ENUM_EUROPEATHENS
1292
+ ENUM_EUROPEATHENS = 'Europe/Athens'.freeze,
1293
+
1294
+ # TODO: Write general description for ENUM_EUROPEBELFAST
1295
+ ENUM_EUROPEBELFAST = 'Europe/Belfast'.freeze,
1296
+
1297
+ # TODO: Write general description for ENUM_EUROPEBELGRADE
1298
+ ENUM_EUROPEBELGRADE = 'Europe/Belgrade'.freeze,
1299
+
1300
+ # TODO: Write general description for ENUM_EUROPEBERLIN
1301
+ ENUM_EUROPEBERLIN = 'Europe/Berlin'.freeze,
1302
+
1303
+ # TODO: Write general description for ENUM_EUROPEBRATISLAVA
1304
+ ENUM_EUROPEBRATISLAVA = 'Europe/Bratislava'.freeze,
1305
+
1306
+ # TODO: Write general description for ENUM_EUROPEBRUSSELS
1307
+ ENUM_EUROPEBRUSSELS = 'Europe/Brussels'.freeze,
1308
+
1309
+ # TODO: Write general description for ENUM_EUROPEBUCHAREST
1310
+ ENUM_EUROPEBUCHAREST = 'Europe/Bucharest'.freeze,
1311
+
1312
+ # TODO: Write general description for ENUM_EUROPEBUDAPEST
1313
+ ENUM_EUROPEBUDAPEST = 'Europe/Budapest'.freeze,
1314
+
1315
+ # TODO: Write general description for ENUM_EUROPEBUSINGEN
1316
+ ENUM_EUROPEBUSINGEN = 'Europe/Busingen'.freeze,
1317
+
1318
+ # TODO: Write general description for ENUM_EUROPECHISINAU
1319
+ ENUM_EUROPECHISINAU = 'Europe/Chisinau'.freeze,
1320
+
1321
+ # TODO: Write general description for ENUM_EUROPECOPENHAGEN
1322
+ ENUM_EUROPECOPENHAGEN = 'Europe/Copenhagen'.freeze,
1323
+
1324
+ # TODO: Write general description for ENUM_EUROPEDUBLIN
1325
+ ENUM_EUROPEDUBLIN = 'Europe/Dublin'.freeze,
1326
+
1327
+ # TODO: Write general description for ENUM_EUROPEGIBRALTAR
1328
+ ENUM_EUROPEGIBRALTAR = 'Europe/Gibraltar'.freeze,
1329
+
1330
+ # TODO: Write general description for ENUM_EUROPEGUERNSEY
1331
+ ENUM_EUROPEGUERNSEY = 'Europe/Guernsey'.freeze,
1332
+
1333
+ # TODO: Write general description for ENUM_EUROPEHELSINKI
1334
+ ENUM_EUROPEHELSINKI = 'Europe/Helsinki'.freeze,
1335
+
1336
+ # TODO: Write general description for ENUM_EUROPEISLE_OF_MAN
1337
+ ENUM_EUROPEISLE_OF_MAN = 'Europe/Isle_of_Man'.freeze,
1338
+
1339
+ # TODO: Write general description for ENUM_EUROPEISTANBUL
1340
+ ENUM_EUROPEISTANBUL = 'Europe/Istanbul'.freeze,
1341
+
1342
+ # TODO: Write general description for ENUM_EUROPEJERSEY
1343
+ ENUM_EUROPEJERSEY = 'Europe/Jersey'.freeze,
1344
+
1345
+ # TODO: Write general description for ENUM_EUROPEKALININGRAD
1346
+ ENUM_EUROPEKALININGRAD = 'Europe/Kaliningrad'.freeze,
1347
+
1348
+ # TODO: Write general description for ENUM_EUROPEKIEV
1349
+ ENUM_EUROPEKIEV = 'Europe/Kiev'.freeze,
1350
+
1351
+ # TODO: Write general description for ENUM_EUROPEKIROV
1352
+ ENUM_EUROPEKIROV = 'Europe/Kirov'.freeze,
1353
+
1354
+ # TODO: Write general description for ENUM_EUROPEKYIV
1355
+ ENUM_EUROPEKYIV = 'Europe/Kyiv'.freeze,
1356
+
1357
+ # TODO: Write general description for ENUM_EUROPELISBON
1358
+ ENUM_EUROPELISBON = 'Europe/Lisbon'.freeze,
1359
+
1360
+ # TODO: Write general description for ENUM_EUROPELJUBLJANA
1361
+ ENUM_EUROPELJUBLJANA = 'Europe/Ljubljana'.freeze,
1362
+
1363
+ # TODO: Write general description for ENUM_EUROPELONDON
1364
+ ENUM_EUROPELONDON = 'Europe/London'.freeze,
1365
+
1366
+ # TODO: Write general description for ENUM_EUROPELUXEMBOURG
1367
+ ENUM_EUROPELUXEMBOURG = 'Europe/Luxembourg'.freeze,
1368
+
1369
+ # TODO: Write general description for ENUM_EUROPEMADRID
1370
+ ENUM_EUROPEMADRID = 'Europe/Madrid'.freeze,
1371
+
1372
+ # TODO: Write general description for ENUM_EUROPEMALTA
1373
+ ENUM_EUROPEMALTA = 'Europe/Malta'.freeze,
1374
+
1375
+ # TODO: Write general description for ENUM_EUROPEMARIEHAMN
1376
+ ENUM_EUROPEMARIEHAMN = 'Europe/Mariehamn'.freeze,
1377
+
1378
+ # TODO: Write general description for ENUM_EUROPEMINSK
1379
+ ENUM_EUROPEMINSK = 'Europe/Minsk'.freeze,
1380
+
1381
+ # TODO: Write general description for ENUM_EUROPEMONACO
1382
+ ENUM_EUROPEMONACO = 'Europe/Monaco'.freeze,
1383
+
1384
+ # TODO: Write general description for ENUM_EUROPEMOSCOW
1385
+ ENUM_EUROPEMOSCOW = 'Europe/Moscow'.freeze,
1386
+
1387
+ # TODO: Write general description for ENUM_EUROPENICOSIA
1388
+ ENUM_EUROPENICOSIA = 'Europe/Nicosia'.freeze,
1389
+
1390
+ # TODO: Write general description for ENUM_EUROPEOSLO
1391
+ ENUM_EUROPEOSLO = 'Europe/Oslo'.freeze,
1392
+
1393
+ # TODO: Write general description for ENUM_EUROPEPARIS
1394
+ ENUM_EUROPEPARIS = 'Europe/Paris'.freeze,
1395
+
1396
+ # TODO: Write general description for ENUM_EUROPEPODGORICA
1397
+ ENUM_EUROPEPODGORICA = 'Europe/Podgorica'.freeze,
1398
+
1399
+ # TODO: Write general description for ENUM_EUROPEPRAGUE
1400
+ ENUM_EUROPEPRAGUE = 'Europe/Prague'.freeze,
1401
+
1402
+ # TODO: Write general description for ENUM_EUROPERIGA
1403
+ ENUM_EUROPERIGA = 'Europe/Riga'.freeze,
1404
+
1405
+ # TODO: Write general description for ENUM_EUROPEROME
1406
+ ENUM_EUROPEROME = 'Europe/Rome'.freeze,
1407
+
1408
+ # TODO: Write general description for ENUM_EUROPESAMARA
1409
+ ENUM_EUROPESAMARA = 'Europe/Samara'.freeze,
1410
+
1411
+ # TODO: Write general description for ENUM_EUROPESAN_MARINO
1412
+ ENUM_EUROPESAN_MARINO = 'Europe/San_Marino'.freeze,
1413
+
1414
+ # TODO: Write general description for ENUM_EUROPESARAJEVO
1415
+ ENUM_EUROPESARAJEVO = 'Europe/Sarajevo'.freeze,
1416
+
1417
+ # TODO: Write general description for ENUM_EUROPESARATOV
1418
+ ENUM_EUROPESARATOV = 'Europe/Saratov'.freeze,
1419
+
1420
+ # TODO: Write general description for ENUM_EUROPESIMFEROPOL
1421
+ ENUM_EUROPESIMFEROPOL = 'Europe/Simferopol'.freeze,
1422
+
1423
+ # TODO: Write general description for ENUM_EUROPESKOPJE
1424
+ ENUM_EUROPESKOPJE = 'Europe/Skopje'.freeze,
1425
+
1426
+ # TODO: Write general description for ENUM_EUROPESOFIA
1427
+ ENUM_EUROPESOFIA = 'Europe/Sofia'.freeze,
1428
+
1429
+ # TODO: Write general description for ENUM_EUROPESTOCKHOLM
1430
+ ENUM_EUROPESTOCKHOLM = 'Europe/Stockholm'.freeze,
1431
+
1432
+ # TODO: Write general description for ENUM_EUROPETALLINN
1433
+ ENUM_EUROPETALLINN = 'Europe/Tallinn'.freeze,
1434
+
1435
+ # TODO: Write general description for ENUM_EUROPETIRANE
1436
+ ENUM_EUROPETIRANE = 'Europe/Tirane'.freeze,
1437
+
1438
+ # TODO: Write general description for ENUM_EUROPETIRASPOL
1439
+ ENUM_EUROPETIRASPOL = 'Europe/Tiraspol'.freeze,
1440
+
1441
+ # TODO: Write general description for ENUM_EUROPEULYANOVSK
1442
+ ENUM_EUROPEULYANOVSK = 'Europe/Ulyanovsk'.freeze,
1443
+
1444
+ # TODO: Write general description for ENUM_EUROPEUZHGOROD
1445
+ ENUM_EUROPEUZHGOROD = 'Europe/Uzhgorod'.freeze,
1446
+
1447
+ # TODO: Write general description for ENUM_EUROPEVADUZ
1448
+ ENUM_EUROPEVADUZ = 'Europe/Vaduz'.freeze,
1449
+
1450
+ # TODO: Write general description for ENUM_EUROPEVATICAN
1451
+ ENUM_EUROPEVATICAN = 'Europe/Vatican'.freeze,
1452
+
1453
+ # TODO: Write general description for ENUM_EUROPEVIENNA
1454
+ ENUM_EUROPEVIENNA = 'Europe/Vienna'.freeze,
1455
+
1456
+ # TODO: Write general description for ENUM_EUROPEVILNIUS
1457
+ ENUM_EUROPEVILNIUS = 'Europe/Vilnius'.freeze,
1458
+
1459
+ # TODO: Write general description for ENUM_EUROPEVOLGOGRAD
1460
+ ENUM_EUROPEVOLGOGRAD = 'Europe/Volgograd'.freeze,
1461
+
1462
+ # TODO: Write general description for ENUM_EUROPEWARSAW
1463
+ ENUM_EUROPEWARSAW = 'Europe/Warsaw'.freeze,
1464
+
1465
+ # TODO: Write general description for ENUM_EUROPEZAGREB
1466
+ ENUM_EUROPEZAGREB = 'Europe/Zagreb'.freeze,
1467
+
1468
+ # TODO: Write general description for ENUM_EUROPEZAPOROZHYE
1469
+ ENUM_EUROPEZAPOROZHYE = 'Europe/Zaporozhye'.freeze,
1470
+
1471
+ # TODO: Write general description for ENUM_EUROPEZURICH
1472
+ ENUM_EUROPEZURICH = 'Europe/Zurich'.freeze,
1473
+
1474
+ # TODO: Write general description for GB
1475
+ GB = 'GB'.freeze,
1476
+
1477
+ # TODO: Write general description for GBEIRE
1478
+ GBEIRE = 'GB-Eire'.freeze,
1479
+
1480
+ # TODO: Write general description for GMT
1481
+ GMT = 'GMT'.freeze,
1482
+
1483
+ # TODO: Write general description for GMT0
1484
+ GMT0 = 'GMT0'.freeze,
1485
+
1486
+ # TODO: Write general description for GREENWICH
1487
+ GREENWICH = 'Greenwich'.freeze,
1488
+
1489
+ # TODO: Write general description for HONGKONG
1490
+ HONGKONG = 'Hongkong'.freeze,
1491
+
1492
+ # TODO: Write general description for ICELAND
1493
+ ICELAND = 'Iceland'.freeze,
1494
+
1495
+ # TODO: Write general description for ENUM_INDIANANTANANARIVO
1496
+ ENUM_INDIANANTANANARIVO = 'Indian/Antananarivo'.freeze,
1497
+
1498
+ # TODO: Write general description for ENUM_INDIANCHAGOS
1499
+ ENUM_INDIANCHAGOS = 'Indian/Chagos'.freeze,
1500
+
1501
+ # TODO: Write general description for ENUM_INDIANCHRISTMAS
1502
+ ENUM_INDIANCHRISTMAS = 'Indian/Christmas'.freeze,
1503
+
1504
+ # TODO: Write general description for ENUM_INDIANCOCOS
1505
+ ENUM_INDIANCOCOS = 'Indian/Cocos'.freeze,
1506
+
1507
+ # TODO: Write general description for ENUM_INDIANCOMORO
1508
+ ENUM_INDIANCOMORO = 'Indian/Comoro'.freeze,
1509
+
1510
+ # TODO: Write general description for ENUM_INDIANKERGUELEN
1511
+ ENUM_INDIANKERGUELEN = 'Indian/Kerguelen'.freeze,
1512
+
1513
+ # TODO: Write general description for ENUM_INDIANMAHE
1514
+ ENUM_INDIANMAHE = 'Indian/Mahe'.freeze,
1515
+
1516
+ # TODO: Write general description for ENUM_INDIANMALDIVES
1517
+ ENUM_INDIANMALDIVES = 'Indian/Maldives'.freeze,
1518
+
1519
+ # TODO: Write general description for ENUM_INDIANMAURITIUS
1520
+ ENUM_INDIANMAURITIUS = 'Indian/Mauritius'.freeze,
1521
+
1522
+ # TODO: Write general description for ENUM_INDIANMAYOTTE
1523
+ ENUM_INDIANMAYOTTE = 'Indian/Mayotte'.freeze,
1524
+
1525
+ # TODO: Write general description for ENUM_INDIANREUNION
1526
+ ENUM_INDIANREUNION = 'Indian/Reunion'.freeze,
1527
+
1528
+ # TODO: Write general description for IRAN
1529
+ IRAN = 'Iran'.freeze,
1530
+
1531
+ # TODO: Write general description for ISRAEL
1532
+ ISRAEL = 'Israel'.freeze,
1533
+
1534
+ # TODO: Write general description for JAMAICA
1535
+ JAMAICA = 'Jamaica'.freeze,
1536
+
1537
+ # TODO: Write general description for JAPAN
1538
+ JAPAN = 'Japan'.freeze,
1539
+
1540
+ # TODO: Write general description for KWAJALEIN
1541
+ KWAJALEIN = 'Kwajalein'.freeze,
1542
+
1543
+ # TODO: Write general description for LIBYA
1544
+ LIBYA = 'Libya'.freeze,
1545
+
1546
+ # TODO: Write general description for MET
1547
+ MET = 'MET'.freeze,
1548
+
1549
+ # TODO: Write general description for MST7MDT
1550
+ MST7MDT = 'MST7MDT'.freeze,
1551
+
1552
+ # TODO: Write general description for ENUM_MEXICOBAJANORTE
1553
+ ENUM_MEXICOBAJANORTE = 'Mexico/BajaNorte'.freeze,
1554
+
1555
+ # TODO: Write general description for ENUM_MEXICOBAJASUR
1556
+ ENUM_MEXICOBAJASUR = 'Mexico/BajaSur'.freeze,
1557
+
1558
+ # TODO: Write general description for ENUM_MEXICOGENERAL
1559
+ ENUM_MEXICOGENERAL = 'Mexico/General'.freeze,
1560
+
1561
+ # TODO: Write general description for NZ
1562
+ NZ = 'NZ'.freeze,
1563
+
1564
+ # TODO: Write general description for NZCHAT
1565
+ NZCHAT = 'NZ-CHAT'.freeze,
1566
+
1567
+ # TODO: Write general description for NAVAJO
1568
+ NAVAJO = 'Navajo'.freeze,
1569
+
1570
+ # TODO: Write general description for PRC
1571
+ PRC = 'PRC'.freeze,
1572
+
1573
+ # TODO: Write general description for PST8PDT
1574
+ PST8PDT = 'PST8PDT'.freeze,
1575
+
1576
+ # TODO: Write general description for ENUM_PACIFICAPIA
1577
+ ENUM_PACIFICAPIA = 'Pacific/Apia'.freeze,
1578
+
1579
+ # TODO: Write general description for ENUM_PACIFICAUCKLAND
1580
+ ENUM_PACIFICAUCKLAND = 'Pacific/Auckland'.freeze,
1581
+
1582
+ # TODO: Write general description for ENUM_PACIFICBOUGAINVILLE
1583
+ ENUM_PACIFICBOUGAINVILLE = 'Pacific/Bougainville'.freeze,
1584
+
1585
+ # TODO: Write general description for ENUM_PACIFICCHATHAM
1586
+ ENUM_PACIFICCHATHAM = 'Pacific/Chatham'.freeze,
1587
+
1588
+ # TODO: Write general description for ENUM_PACIFICCHUUK
1589
+ ENUM_PACIFICCHUUK = 'Pacific/Chuuk'.freeze,
1590
+
1591
+ # TODO: Write general description for ENUM_PACIFICEASTER
1592
+ ENUM_PACIFICEASTER = 'Pacific/Easter'.freeze,
1593
+
1594
+ # TODO: Write general description for ENUM_PACIFICEFATE
1595
+ ENUM_PACIFICEFATE = 'Pacific/Efate'.freeze,
1596
+
1597
+ # TODO: Write general description for ENUM_PACIFICENDERBURY
1598
+ ENUM_PACIFICENDERBURY = 'Pacific/Enderbury'.freeze,
1599
+
1600
+ # TODO: Write general description for ENUM_PACIFICFAKAOFO
1601
+ ENUM_PACIFICFAKAOFO = 'Pacific/Fakaofo'.freeze,
1602
+
1603
+ # TODO: Write general description for ENUM_PACIFICFIJI
1604
+ ENUM_PACIFICFIJI = 'Pacific/Fiji'.freeze,
1605
+
1606
+ # TODO: Write general description for ENUM_PACIFICFUNAFUTI
1607
+ ENUM_PACIFICFUNAFUTI = 'Pacific/Funafuti'.freeze,
1608
+
1609
+ # TODO: Write general description for ENUM_PACIFICGALAPAGOS
1610
+ ENUM_PACIFICGALAPAGOS = 'Pacific/Galapagos'.freeze,
1611
+
1612
+ # TODO: Write general description for ENUM_PACIFICGAMBIER
1613
+ ENUM_PACIFICGAMBIER = 'Pacific/Gambier'.freeze,
1614
+
1615
+ # TODO: Write general description for ENUM_PACIFICGUADALCANAL
1616
+ ENUM_PACIFICGUADALCANAL = 'Pacific/Guadalcanal'.freeze,
1617
+
1618
+ # TODO: Write general description for ENUM_PACIFICGUAM
1619
+ ENUM_PACIFICGUAM = 'Pacific/Guam'.freeze,
1620
+
1621
+ # TODO: Write general description for ENUM_PACIFICHONOLULU
1622
+ ENUM_PACIFICHONOLULU = 'Pacific/Honolulu'.freeze,
1623
+
1624
+ # TODO: Write general description for ENUM_PACIFICJOHNSTON
1625
+ ENUM_PACIFICJOHNSTON = 'Pacific/Johnston'.freeze,
1626
+
1627
+ # TODO: Write general description for ENUM_PACIFICKANTON
1628
+ ENUM_PACIFICKANTON = 'Pacific/Kanton'.freeze,
1629
+
1630
+ # TODO: Write general description for ENUM_PACIFICKIRITIMATI
1631
+ ENUM_PACIFICKIRITIMATI = 'Pacific/Kiritimati'.freeze,
1632
+
1633
+ # TODO: Write general description for ENUM_PACIFICKOSRAE
1634
+ ENUM_PACIFICKOSRAE = 'Pacific/Kosrae'.freeze,
1635
+
1636
+ # TODO: Write general description for ENUM_PACIFICKWAJALEIN
1637
+ ENUM_PACIFICKWAJALEIN = 'Pacific/Kwajalein'.freeze,
1638
+
1639
+ # TODO: Write general description for ENUM_PACIFICMAJURO
1640
+ ENUM_PACIFICMAJURO = 'Pacific/Majuro'.freeze,
1641
+
1642
+ # TODO: Write general description for ENUM_PACIFICMARQUESAS
1643
+ ENUM_PACIFICMARQUESAS = 'Pacific/Marquesas'.freeze,
1644
+
1645
+ # TODO: Write general description for ENUM_PACIFICMIDWAY
1646
+ ENUM_PACIFICMIDWAY = 'Pacific/Midway'.freeze,
1647
+
1648
+ # TODO: Write general description for ENUM_PACIFICNAURU
1649
+ ENUM_PACIFICNAURU = 'Pacific/Nauru'.freeze,
1650
+
1651
+ # TODO: Write general description for ENUM_PACIFICNIUE
1652
+ ENUM_PACIFICNIUE = 'Pacific/Niue'.freeze,
1653
+
1654
+ # TODO: Write general description for ENUM_PACIFICNORFOLK
1655
+ ENUM_PACIFICNORFOLK = 'Pacific/Norfolk'.freeze,
1656
+
1657
+ # TODO: Write general description for ENUM_PACIFICNOUMEA
1658
+ ENUM_PACIFICNOUMEA = 'Pacific/Noumea'.freeze,
1659
+
1660
+ # TODO: Write general description for ENUM_PACIFICPAGO_PAGO
1661
+ ENUM_PACIFICPAGO_PAGO = 'Pacific/Pago_Pago'.freeze,
1662
+
1663
+ # TODO: Write general description for ENUM_PACIFICPALAU
1664
+ ENUM_PACIFICPALAU = 'Pacific/Palau'.freeze,
1665
+
1666
+ # TODO: Write general description for ENUM_PACIFICPITCAIRN
1667
+ ENUM_PACIFICPITCAIRN = 'Pacific/Pitcairn'.freeze,
1668
+
1669
+ # TODO: Write general description for ENUM_PACIFICPOHNPEI
1670
+ ENUM_PACIFICPOHNPEI = 'Pacific/Pohnpei'.freeze,
1671
+
1672
+ # TODO: Write general description for ENUM_PACIFICPONAPE
1673
+ ENUM_PACIFICPONAPE = 'Pacific/Ponape'.freeze,
1674
+
1675
+ # TODO: Write general description for ENUM_PACIFICPORT_MORESBY
1676
+ ENUM_PACIFICPORT_MORESBY = 'Pacific/Port_Moresby'.freeze,
1677
+
1678
+ # TODO: Write general description for ENUM_PACIFICRAROTONGA
1679
+ ENUM_PACIFICRAROTONGA = 'Pacific/Rarotonga'.freeze,
1680
+
1681
+ # TODO: Write general description for ENUM_PACIFICSAIPAN
1682
+ ENUM_PACIFICSAIPAN = 'Pacific/Saipan'.freeze,
1683
+
1684
+ # TODO: Write general description for ENUM_PACIFICSAMOA
1685
+ ENUM_PACIFICSAMOA = 'Pacific/Samoa'.freeze,
1686
+
1687
+ # TODO: Write general description for ENUM_PACIFICTAHITI
1688
+ ENUM_PACIFICTAHITI = 'Pacific/Tahiti'.freeze,
1689
+
1690
+ # TODO: Write general description for ENUM_PACIFICTARAWA
1691
+ ENUM_PACIFICTARAWA = 'Pacific/Tarawa'.freeze,
1692
+
1693
+ # TODO: Write general description for ENUM_PACIFICTONGATAPU
1694
+ ENUM_PACIFICTONGATAPU = 'Pacific/Tongatapu'.freeze,
1695
+
1696
+ # TODO: Write general description for ENUM_PACIFICTRUK
1697
+ ENUM_PACIFICTRUK = 'Pacific/Truk'.freeze,
1698
+
1699
+ # TODO: Write general description for ENUM_PACIFICWAKE
1700
+ ENUM_PACIFICWAKE = 'Pacific/Wake'.freeze,
1701
+
1702
+ # TODO: Write general description for ENUM_PACIFICWALLIS
1703
+ ENUM_PACIFICWALLIS = 'Pacific/Wallis'.freeze,
1704
+
1705
+ # TODO: Write general description for ENUM_PACIFICYAP
1706
+ ENUM_PACIFICYAP = 'Pacific/Yap'.freeze,
1707
+
1708
+ # TODO: Write general description for POLAND
1709
+ POLAND = 'Poland'.freeze,
1710
+
1711
+ # TODO: Write general description for PORTUGAL
1712
+ PORTUGAL = 'Portugal'.freeze,
1713
+
1714
+ # TODO: Write general description for ROK
1715
+ ROK = 'ROK'.freeze,
1716
+
1717
+ # TODO: Write general description for SINGAPORE
1718
+ SINGAPORE = 'Singapore'.freeze,
1719
+
1720
+ # TODO: Write general description for ENUM_SYSTEMVAST4
1721
+ ENUM_SYSTEMVAST4 = 'SystemV/AST4'.freeze,
1722
+
1723
+ # TODO: Write general description for ENUM_SYSTEMVAST4ADT
1724
+ ENUM_SYSTEMVAST4ADT = 'SystemV/AST4ADT'.freeze,
1725
+
1726
+ # TODO: Write general description for ENUM_SYSTEMVCST6
1727
+ ENUM_SYSTEMVCST6 = 'SystemV/CST6'.freeze,
1728
+
1729
+ # TODO: Write general description for ENUM_SYSTEMVCST6CDT
1730
+ ENUM_SYSTEMVCST6CDT = 'SystemV/CST6CDT'.freeze,
1731
+
1732
+ # TODO: Write general description for ENUM_SYSTEMVEST5
1733
+ ENUM_SYSTEMVEST5 = 'SystemV/EST5'.freeze,
1734
+
1735
+ # TODO: Write general description for ENUM_SYSTEMVEST5EDT
1736
+ ENUM_SYSTEMVEST5EDT = 'SystemV/EST5EDT'.freeze,
1737
+
1738
+ # TODO: Write general description for ENUM_SYSTEMVHST10
1739
+ ENUM_SYSTEMVHST10 = 'SystemV/HST10'.freeze,
1740
+
1741
+ # TODO: Write general description for ENUM_SYSTEMVMST7
1742
+ ENUM_SYSTEMVMST7 = 'SystemV/MST7'.freeze,
1743
+
1744
+ # TODO: Write general description for ENUM_SYSTEMVMST7MDT
1745
+ ENUM_SYSTEMVMST7MDT = 'SystemV/MST7MDT'.freeze,
1746
+
1747
+ # TODO: Write general description for ENUM_SYSTEMVPST8
1748
+ ENUM_SYSTEMVPST8 = 'SystemV/PST8'.freeze,
1749
+
1750
+ # TODO: Write general description for ENUM_SYSTEMVPST8PDT
1751
+ ENUM_SYSTEMVPST8PDT = 'SystemV/PST8PDT'.freeze,
1752
+
1753
+ # TODO: Write general description for ENUM_SYSTEMVYST9
1754
+ ENUM_SYSTEMVYST9 = 'SystemV/YST9'.freeze,
1755
+
1756
+ # TODO: Write general description for ENUM_SYSTEMVYST9YDT
1757
+ ENUM_SYSTEMVYST9YDT = 'SystemV/YST9YDT'.freeze,
1758
+
1759
+ # TODO: Write general description for TURKEY
1760
+ TURKEY = 'Turkey'.freeze,
1761
+
1762
+ # TODO: Write general description for UCT
1763
+ UCT = 'UCT'.freeze,
1764
+
1765
+ # TODO: Write general description for ENUM_USALASKA
1766
+ ENUM_USALASKA = 'US/Alaska'.freeze,
1767
+
1768
+ # TODO: Write general description for ENUM_USALEUTIAN
1769
+ ENUM_USALEUTIAN = 'US/Aleutian'.freeze,
1770
+
1771
+ # TODO: Write general description for ENUM_USARIZONA
1772
+ ENUM_USARIZONA = 'US/Arizona'.freeze,
1773
+
1774
+ # TODO: Write general description for ENUM_USCENTRAL
1775
+ ENUM_USCENTRAL = 'US/Central'.freeze,
1776
+
1777
+ # TODO: Write general description for ENUM_USEASTINDIANA
1778
+ ENUM_USEASTINDIANA = 'US/East-Indiana'.freeze,
1779
+
1780
+ # TODO: Write general description for ENUM_USEASTERN
1781
+ ENUM_USEASTERN = 'US/Eastern'.freeze,
1782
+
1783
+ # TODO: Write general description for ENUM_USHAWAII
1784
+ ENUM_USHAWAII = 'US/Hawaii'.freeze,
1785
+
1786
+ # TODO: Write general description for ENUM_USINDIANASTARKE
1787
+ ENUM_USINDIANASTARKE = 'US/Indiana-Starke'.freeze,
1788
+
1789
+ # TODO: Write general description for ENUM_USMICHIGAN
1790
+ ENUM_USMICHIGAN = 'US/Michigan'.freeze,
1791
+
1792
+ # TODO: Write general description for ENUM_USMOUNTAIN
1793
+ ENUM_USMOUNTAIN = 'US/Mountain'.freeze,
1794
+
1795
+ # TODO: Write general description for ENUM_USPACIFIC
1796
+ ENUM_USPACIFIC = 'US/Pacific'.freeze,
1797
+
1798
+ # TODO: Write general description for ENUM_USSAMOA
1799
+ ENUM_USSAMOA = 'US/Samoa'.freeze,
1800
+
1801
+ # TODO: Write general description for UTC
1802
+ UTC = 'UTC'.freeze,
1803
+
1804
+ # TODO: Write general description for UNIVERSAL
1805
+ UNIVERSAL = 'Universal'.freeze,
1806
+
1807
+ # TODO: Write general description for WSU
1808
+ WSU = 'W-SU'.freeze,
1809
+
1810
+ # TODO: Write general description for WET
1811
+ WET = 'WET'.freeze,
1812
+
1813
+ # TODO: Write general description for ZULU
1814
+ ZULU = 'Zulu'.freeze,
1815
+
1816
+ # TODO: Write general description for EST
1817
+ EST = 'EST'.freeze,
1818
+
1819
+ # TODO: Write general description for HST
1820
+ HST = 'HST'.freeze,
1821
+
1822
+ # TODO: Write general description for MST
1823
+ MST = 'MST'.freeze,
1824
+
1825
+ # TODO: Write general description for ACT
1826
+ ACT = 'ACT'.freeze,
1827
+
1828
+ # TODO: Write general description for AET
1829
+ AET = 'AET'.freeze,
1830
+
1831
+ # TODO: Write general description for AGT
1832
+ AGT = 'AGT'.freeze,
1833
+
1834
+ # TODO: Write general description for ART
1835
+ ART = 'ART'.freeze,
1836
+
1837
+ # TODO: Write general description for AST
1838
+ AST = 'AST'.freeze,
1839
+
1840
+ # TODO: Write general description for BET
1841
+ BET = 'BET'.freeze,
1842
+
1843
+ # TODO: Write general description for BST
1844
+ BST = 'BST'.freeze,
1845
+
1846
+ # TODO: Write general description for CAT
1847
+ CAT = 'CAT'.freeze,
1848
+
1849
+ # TODO: Write general description for CNT
1850
+ CNT = 'CNT'.freeze,
1851
+
1852
+ # TODO: Write general description for CST
1853
+ CST = 'CST'.freeze,
1854
+
1855
+ # TODO: Write general description for CTT
1856
+ CTT = 'CTT'.freeze,
1857
+
1858
+ # TODO: Write general description for EAT
1859
+ EAT = 'EAT'.freeze,
1860
+
1861
+ # TODO: Write general description for ECT
1862
+ ECT = 'ECT'.freeze,
1863
+
1864
+ # TODO: Write general description for IET
1865
+ IET = 'IET'.freeze,
1866
+
1867
+ # TODO: Write general description for IST
1868
+ IST = 'IST'.freeze,
1869
+
1870
+ # TODO: Write general description for JST
1871
+ JST = 'JST'.freeze,
1872
+
1873
+ # TODO: Write general description for MIT
1874
+ MIT = 'MIT'.freeze,
1875
+
1876
+ # TODO: Write general description for NET
1877
+ NET = 'NET'.freeze,
1878
+
1879
+ # TODO: Write general description for NST
1880
+ NST = 'NST'.freeze,
1881
+
1882
+ # TODO: Write general description for PLT
1883
+ PLT = 'PLT'.freeze,
1884
+
1885
+ # TODO: Write general description for PNT
1886
+ PNT = 'PNT'.freeze,
1887
+
1888
+ # TODO: Write general description for PRT
1889
+ PRT = 'PRT'.freeze,
1890
+
1891
+ # TODO: Write general description for PST
1892
+ PST = 'PST'.freeze,
1893
+
1894
+ # TODO: Write general description for SST
1895
+ SST = 'SST'.freeze,
1896
+
1897
+ # TODO: Write general description for VST
1898
+ VST = 'VST'.freeze
1899
+ ].freeze
1900
+
1901
+ def self.validate(value)
1902
+ return false if value.nil?
1903
+
1904
+ true
1905
+ end
1906
+
1907
+ def self.from_value(value, default_value = ENUM_AFRICAABIDJAN)
1908
+ return default_value if value.nil?
1909
+
1910
+ str = value.to_s.strip
1911
+
1912
+ case str.downcase
1913
+ when 'enum_africaabidjan' then ENUM_AFRICAABIDJAN
1914
+ when 'enum_africaaccra' then ENUM_AFRICAACCRA
1915
+ when 'enum_africaaddis_ababa' then ENUM_AFRICAADDIS_ABABA
1916
+ when 'enum_africaalgiers' then ENUM_AFRICAALGIERS
1917
+ when 'enum_africaasmara' then ENUM_AFRICAASMARA
1918
+ when 'enum_africaasmera' then ENUM_AFRICAASMERA
1919
+ when 'enum_africabamako' then ENUM_AFRICABAMAKO
1920
+ when 'enum_africabangui' then ENUM_AFRICABANGUI
1921
+ when 'enum_africabanjul' then ENUM_AFRICABANJUL
1922
+ when 'enum_africabissau' then ENUM_AFRICABISSAU
1923
+ when 'enum_africablantyre' then ENUM_AFRICABLANTYRE
1924
+ when 'enum_africabrazzaville' then ENUM_AFRICABRAZZAVILLE
1925
+ when 'enum_africabujumbura' then ENUM_AFRICABUJUMBURA
1926
+ when 'enum_africacairo' then ENUM_AFRICACAIRO
1927
+ when 'enum_africacasablanca' then ENUM_AFRICACASABLANCA
1928
+ when 'enum_africaceuta' then ENUM_AFRICACEUTA
1929
+ when 'enum_africaconakry' then ENUM_AFRICACONAKRY
1930
+ when 'enum_africadakar' then ENUM_AFRICADAKAR
1931
+ when 'enum_africadar_es_salaam' then ENUM_AFRICADAR_ES_SALAAM
1932
+ when 'enum_africadjibouti' then ENUM_AFRICADJIBOUTI
1933
+ when 'enum_africadouala' then ENUM_AFRICADOUALA
1934
+ when 'enum_africael_aaiun' then ENUM_AFRICAEL_AAIUN
1935
+ when 'enum_africafreetown' then ENUM_AFRICAFREETOWN
1936
+ when 'enum_africagaborone' then ENUM_AFRICAGABORONE
1937
+ when 'enum_africaharare' then ENUM_AFRICAHARARE
1938
+ when 'enum_africajohannesburg' then ENUM_AFRICAJOHANNESBURG
1939
+ when 'enum_africajuba' then ENUM_AFRICAJUBA
1940
+ when 'enum_africakampala' then ENUM_AFRICAKAMPALA
1941
+ when 'enum_africakhartoum' then ENUM_AFRICAKHARTOUM
1942
+ when 'enum_africakigali' then ENUM_AFRICAKIGALI
1943
+ when 'enum_africakinshasa' then ENUM_AFRICAKINSHASA
1944
+ when 'enum_africalagos' then ENUM_AFRICALAGOS
1945
+ when 'enum_africalibreville' then ENUM_AFRICALIBREVILLE
1946
+ when 'enum_africalome' then ENUM_AFRICALOME
1947
+ when 'enum_africaluanda' then ENUM_AFRICALUANDA
1948
+ when 'enum_africalubumbashi' then ENUM_AFRICALUBUMBASHI
1949
+ when 'enum_africalusaka' then ENUM_AFRICALUSAKA
1950
+ when 'enum_africamalabo' then ENUM_AFRICAMALABO
1951
+ when 'enum_africamaputo' then ENUM_AFRICAMAPUTO
1952
+ when 'enum_africamaseru' then ENUM_AFRICAMASERU
1953
+ when 'enum_africambabane' then ENUM_AFRICAMBABANE
1954
+ when 'enum_africamogadishu' then ENUM_AFRICAMOGADISHU
1955
+ when 'enum_africamonrovia' then ENUM_AFRICAMONROVIA
1956
+ when 'enum_africanairobi' then ENUM_AFRICANAIROBI
1957
+ when 'enum_africandjamena' then ENUM_AFRICANDJAMENA
1958
+ when 'enum_africaniamey' then ENUM_AFRICANIAMEY
1959
+ when 'enum_africanouakchott' then ENUM_AFRICANOUAKCHOTT
1960
+ when 'enum_africaouagadougou' then ENUM_AFRICAOUAGADOUGOU
1961
+ when 'enum_africaportonovo' then ENUM_AFRICAPORTONOVO
1962
+ when 'enum_africasao_tome' then ENUM_AFRICASAO_TOME
1963
+ when 'enum_africatimbuktu' then ENUM_AFRICATIMBUKTU
1964
+ when 'enum_africatripoli' then ENUM_AFRICATRIPOLI
1965
+ when 'enum_africatunis' then ENUM_AFRICATUNIS
1966
+ when 'enum_africawindhoek' then ENUM_AFRICAWINDHOEK
1967
+ when 'enum_americaadak' then ENUM_AMERICAADAK
1968
+ when 'enum_americaanchorage' then ENUM_AMERICAANCHORAGE
1969
+ when 'enum_americaanguilla' then ENUM_AMERICAANGUILLA
1970
+ when 'enum_americaantigua' then ENUM_AMERICAANTIGUA
1971
+ when 'enum_americaaraguaina' then ENUM_AMERICAARAGUAINA
1972
+ when 'enum_americaargentinabuenos_aires' then ENUM_AMERICAARGENTINABUENOS_AIRES
1973
+ when 'enum_americaargentinacatamarca' then ENUM_AMERICAARGENTINACATAMARCA
1974
+ when 'enum_americaargentinacomodrivadavia' then ENUM_AMERICAARGENTINACOMODRIVADAVIA
1975
+ when 'enum_americaargentinacordoba' then ENUM_AMERICAARGENTINACORDOBA
1976
+ when 'enum_americaargentinajujuy' then ENUM_AMERICAARGENTINAJUJUY
1977
+ when 'enum_americaargentinala_rioja' then ENUM_AMERICAARGENTINALA_RIOJA
1978
+ when 'enum_americaargentinamendoza' then ENUM_AMERICAARGENTINAMENDOZA
1979
+ when 'enum_americaargentinario_gallegos' then ENUM_AMERICAARGENTINARIO_GALLEGOS
1980
+ when 'enum_americaargentinasalta' then ENUM_AMERICAARGENTINASALTA
1981
+ when 'enum_americaargentinasan_juan' then ENUM_AMERICAARGENTINASAN_JUAN
1982
+ when 'enum_americaargentinasan_luis' then ENUM_AMERICAARGENTINASAN_LUIS
1983
+ when 'enum_americaargentinatucuman' then ENUM_AMERICAARGENTINATUCUMAN
1984
+ when 'enum_americaargentinaushuaia' then ENUM_AMERICAARGENTINAUSHUAIA
1985
+ when 'enum_americaaruba' then ENUM_AMERICAARUBA
1986
+ when 'enum_americaasuncion' then ENUM_AMERICAASUNCION
1987
+ when 'enum_americaatikokan' then ENUM_AMERICAATIKOKAN
1988
+ when 'enum_americaatka' then ENUM_AMERICAATKA
1989
+ when 'enum_americabahia' then ENUM_AMERICABAHIA
1990
+ when 'enum_americabahia_banderas' then ENUM_AMERICABAHIA_BANDERAS
1991
+ when 'enum_americabarbados' then ENUM_AMERICABARBADOS
1992
+ when 'enum_americabelem' then ENUM_AMERICABELEM
1993
+ when 'enum_americabelize' then ENUM_AMERICABELIZE
1994
+ when 'enum_americablancsablon' then ENUM_AMERICABLANCSABLON
1995
+ when 'enum_americaboa_vista' then ENUM_AMERICABOA_VISTA
1996
+ when 'enum_americabogota' then ENUM_AMERICABOGOTA
1997
+ when 'enum_americaboise' then ENUM_AMERICABOISE
1998
+ when 'enum_americabuenos_aires' then ENUM_AMERICABUENOS_AIRES
1999
+ when 'enum_americacambridge_bay' then ENUM_AMERICACAMBRIDGE_BAY
2000
+ when 'enum_americacampo_grande' then ENUM_AMERICACAMPO_GRANDE
2001
+ when 'enum_americacancun' then ENUM_AMERICACANCUN
2002
+ when 'enum_americacaracas' then ENUM_AMERICACARACAS
2003
+ when 'enum_americacatamarca' then ENUM_AMERICACATAMARCA
2004
+ when 'enum_americacayenne' then ENUM_AMERICACAYENNE
2005
+ when 'enum_americacayman' then ENUM_AMERICACAYMAN
2006
+ when 'enum_americachicago' then ENUM_AMERICACHICAGO
2007
+ when 'enum_americachihuahua' then ENUM_AMERICACHIHUAHUA
2008
+ when 'enum_americacoral_harbour' then ENUM_AMERICACORAL_HARBOUR
2009
+ when 'enum_americacordoba' then ENUM_AMERICACORDOBA
2010
+ when 'enum_americacosta_rica' then ENUM_AMERICACOSTA_RICA
2011
+ when 'enum_americacreston' then ENUM_AMERICACRESTON
2012
+ when 'enum_americacuiaba' then ENUM_AMERICACUIABA
2013
+ when 'enum_americacuracao' then ENUM_AMERICACURACAO
2014
+ when 'enum_americadanmarkshavn' then ENUM_AMERICADANMARKSHAVN
2015
+ when 'enum_americadawson' then ENUM_AMERICADAWSON
2016
+ when 'enum_americadawson_creek' then ENUM_AMERICADAWSON_CREEK
2017
+ when 'enum_americadenver' then ENUM_AMERICADENVER
2018
+ when 'enum_americadetroit' then ENUM_AMERICADETROIT
2019
+ when 'enum_americadominica' then ENUM_AMERICADOMINICA
2020
+ when 'enum_americaedmonton' then ENUM_AMERICAEDMONTON
2021
+ when 'enum_americaeirunepe' then ENUM_AMERICAEIRUNEPE
2022
+ when 'enum_americael_salvador' then ENUM_AMERICAEL_SALVADOR
2023
+ when 'enum_americaensenada' then ENUM_AMERICAENSENADA
2024
+ when 'enum_americafort_nelson' then ENUM_AMERICAFORT_NELSON
2025
+ when 'enum_americafort_wayne' then ENUM_AMERICAFORT_WAYNE
2026
+ when 'enum_americafortaleza' then ENUM_AMERICAFORTALEZA
2027
+ when 'enum_americaglace_bay' then ENUM_AMERICAGLACE_BAY
2028
+ when 'enum_americagodthab' then ENUM_AMERICAGODTHAB
2029
+ when 'enum_americagoose_bay' then ENUM_AMERICAGOOSE_BAY
2030
+ when 'enum_americagrand_turk' then ENUM_AMERICAGRAND_TURK
2031
+ when 'enum_americagrenada' then ENUM_AMERICAGRENADA
2032
+ when 'enum_americaguadeloupe' then ENUM_AMERICAGUADELOUPE
2033
+ when 'enum_americaguatemala' then ENUM_AMERICAGUATEMALA
2034
+ when 'enum_americaguayaquil' then ENUM_AMERICAGUAYAQUIL
2035
+ when 'enum_americaguyana' then ENUM_AMERICAGUYANA
2036
+ when 'enum_americahalifax' then ENUM_AMERICAHALIFAX
2037
+ when 'enum_americahavana' then ENUM_AMERICAHAVANA
2038
+ when 'enum_americahermosillo' then ENUM_AMERICAHERMOSILLO
2039
+ when 'enum_americaindianaindianapolis' then ENUM_AMERICAINDIANAINDIANAPOLIS
2040
+ when 'enum_americaindianaknox' then ENUM_AMERICAINDIANAKNOX
2041
+ when 'enum_americaindianamarengo' then ENUM_AMERICAINDIANAMARENGO
2042
+ when 'enum_americaindianapetersburg' then ENUM_AMERICAINDIANAPETERSBURG
2043
+ when 'enum_americaindianatell_city' then ENUM_AMERICAINDIANATELL_CITY
2044
+ when 'enum_americaindianavevay' then ENUM_AMERICAINDIANAVEVAY
2045
+ when 'enum_americaindianavincennes' then ENUM_AMERICAINDIANAVINCENNES
2046
+ when 'enum_americaindianawinamac' then ENUM_AMERICAINDIANAWINAMAC
2047
+ when 'enum_americaindianapolis' then ENUM_AMERICAINDIANAPOLIS
2048
+ when 'enum_americainuvik' then ENUM_AMERICAINUVIK
2049
+ when 'enum_americaiqaluit' then ENUM_AMERICAIQALUIT
2050
+ when 'enum_americajamaica' then ENUM_AMERICAJAMAICA
2051
+ when 'enum_americajujuy' then ENUM_AMERICAJUJUY
2052
+ when 'enum_americajuneau' then ENUM_AMERICAJUNEAU
2053
+ when 'enum_americakentuckylouisville' then ENUM_AMERICAKENTUCKYLOUISVILLE
2054
+ when 'enum_americakentuckymonticello' then ENUM_AMERICAKENTUCKYMONTICELLO
2055
+ when 'enum_americaknox_in' then ENUM_AMERICAKNOX_IN
2056
+ when 'enum_americakralendijk' then ENUM_AMERICAKRALENDIJK
2057
+ when 'enum_americala_paz' then ENUM_AMERICALA_PAZ
2058
+ when 'enum_americalima' then ENUM_AMERICALIMA
2059
+ when 'enum_americalos_angeles' then ENUM_AMERICALOS_ANGELES
2060
+ when 'enum_americalouisville' then ENUM_AMERICALOUISVILLE
2061
+ when 'enum_americalower_princes' then ENUM_AMERICALOWER_PRINCES
2062
+ when 'enum_americamaceio' then ENUM_AMERICAMACEIO
2063
+ when 'enum_americamanagua' then ENUM_AMERICAMANAGUA
2064
+ when 'enum_americamanaus' then ENUM_AMERICAMANAUS
2065
+ when 'enum_americamarigot' then ENUM_AMERICAMARIGOT
2066
+ when 'enum_americamartinique' then ENUM_AMERICAMARTINIQUE
2067
+ when 'enum_americamatamoros' then ENUM_AMERICAMATAMOROS
2068
+ when 'enum_americamazatlan' then ENUM_AMERICAMAZATLAN
2069
+ when 'enum_americamendoza' then ENUM_AMERICAMENDOZA
2070
+ when 'enum_americamenominee' then ENUM_AMERICAMENOMINEE
2071
+ when 'enum_americamerida' then ENUM_AMERICAMERIDA
2072
+ when 'enum_americametlakatla' then ENUM_AMERICAMETLAKATLA
2073
+ when 'enum_americamexico_city' then ENUM_AMERICAMEXICO_CITY
2074
+ when 'enum_americamiquelon' then ENUM_AMERICAMIQUELON
2075
+ when 'enum_americamoncton' then ENUM_AMERICAMONCTON
2076
+ when 'enum_americamonterrey' then ENUM_AMERICAMONTERREY
2077
+ when 'enum_americamontevideo' then ENUM_AMERICAMONTEVIDEO
2078
+ when 'enum_americamontreal' then ENUM_AMERICAMONTREAL
2079
+ when 'enum_americamontserrat' then ENUM_AMERICAMONTSERRAT
2080
+ when 'enum_americanassau' then ENUM_AMERICANASSAU
2081
+ when 'enum_americanew_york' then ENUM_AMERICANEW_YORK
2082
+ when 'enum_americanipigon' then ENUM_AMERICANIPIGON
2083
+ when 'enum_americanome' then ENUM_AMERICANOME
2084
+ when 'enum_americanoronha' then ENUM_AMERICANORONHA
2085
+ when 'enum_americanorth_dakotabeulah' then ENUM_AMERICANORTH_DAKOTABEULAH
2086
+ when 'enum_americanorth_dakotacenter' then ENUM_AMERICANORTH_DAKOTACENTER
2087
+ when 'enum_americanorth_dakotanew_salem' then ENUM_AMERICANORTH_DAKOTANEW_SALEM
2088
+ when 'enum_americanuuk' then ENUM_AMERICANUUK
2089
+ when 'enum_americaojinaga' then ENUM_AMERICAOJINAGA
2090
+ when 'enum_americapanama' then ENUM_AMERICAPANAMA
2091
+ when 'enum_americapangnirtung' then ENUM_AMERICAPANGNIRTUNG
2092
+ when 'enum_americaparamaribo' then ENUM_AMERICAPARAMARIBO
2093
+ when 'enum_americaphoenix' then ENUM_AMERICAPHOENIX
2094
+ when 'enum_americaportauprince' then ENUM_AMERICAPORTAUPRINCE
2095
+ when 'enum_americaport_of_spain' then ENUM_AMERICAPORT_OF_SPAIN
2096
+ when 'enum_americaporto_acre' then ENUM_AMERICAPORTO_ACRE
2097
+ when 'enum_americaporto_velho' then ENUM_AMERICAPORTO_VELHO
2098
+ when 'enum_americapuerto_rico' then ENUM_AMERICAPUERTO_RICO
2099
+ when 'enum_americapunta_arenas' then ENUM_AMERICAPUNTA_ARENAS
2100
+ when 'enum_americarainy_river' then ENUM_AMERICARAINY_RIVER
2101
+ when 'enum_americarankin_inlet' then ENUM_AMERICARANKIN_INLET
2102
+ when 'enum_americarecife' then ENUM_AMERICARECIFE
2103
+ when 'enum_americaregina' then ENUM_AMERICAREGINA
2104
+ when 'enum_americaresolute' then ENUM_AMERICARESOLUTE
2105
+ when 'enum_americario_branco' then ENUM_AMERICARIO_BRANCO
2106
+ when 'enum_americarosario' then ENUM_AMERICAROSARIO
2107
+ when 'enum_americasanta_isabel' then ENUM_AMERICASANTA_ISABEL
2108
+ when 'enum_americasantarem' then ENUM_AMERICASANTAREM
2109
+ when 'enum_americasantiago' then ENUM_AMERICASANTIAGO
2110
+ when 'enum_americasanto_domingo' then ENUM_AMERICASANTO_DOMINGO
2111
+ when 'enum_americasao_paulo' then ENUM_AMERICASAO_PAULO
2112
+ when 'enum_americascoresbysund' then ENUM_AMERICASCORESBYSUND
2113
+ when 'enum_americashiprock' then ENUM_AMERICASHIPROCK
2114
+ when 'enum_americasitka' then ENUM_AMERICASITKA
2115
+ when 'enum_americast_barthelemy' then ENUM_AMERICAST_BARTHELEMY
2116
+ when 'enum_americast_johns' then ENUM_AMERICAST_JOHNS
2117
+ when 'enum_americast_kitts' then ENUM_AMERICAST_KITTS
2118
+ when 'enum_americast_lucia' then ENUM_AMERICAST_LUCIA
2119
+ when 'enum_americast_thomas' then ENUM_AMERICAST_THOMAS
2120
+ when 'enum_americast_vincent' then ENUM_AMERICAST_VINCENT
2121
+ when 'enum_americaswift_current' then ENUM_AMERICASWIFT_CURRENT
2122
+ when 'enum_americategucigalpa' then ENUM_AMERICATEGUCIGALPA
2123
+ when 'enum_americathule' then ENUM_AMERICATHULE
2124
+ when 'enum_americathunder_bay' then ENUM_AMERICATHUNDER_BAY
2125
+ when 'enum_americatijuana' then ENUM_AMERICATIJUANA
2126
+ when 'enum_americatoronto' then ENUM_AMERICATORONTO
2127
+ when 'enum_americatortola' then ENUM_AMERICATORTOLA
2128
+ when 'enum_americavancouver' then ENUM_AMERICAVANCOUVER
2129
+ when 'enum_americavirgin' then ENUM_AMERICAVIRGIN
2130
+ when 'enum_americawhitehorse' then ENUM_AMERICAWHITEHORSE
2131
+ when 'enum_americawinnipeg' then ENUM_AMERICAWINNIPEG
2132
+ when 'enum_americayakutat' then ENUM_AMERICAYAKUTAT
2133
+ when 'enum_americayellowknife' then ENUM_AMERICAYELLOWKNIFE
2134
+ when 'enum_antarcticacasey' then ENUM_ANTARCTICACASEY
2135
+ when 'enum_antarcticadavis' then ENUM_ANTARCTICADAVIS
2136
+ when 'enum_antarcticadumontdurville' then ENUM_ANTARCTICADUMONTDURVILLE
2137
+ when 'enum_antarcticamacquarie' then ENUM_ANTARCTICAMACQUARIE
2138
+ when 'enum_antarcticamawson' then ENUM_ANTARCTICAMAWSON
2139
+ when 'enum_antarcticamcmurdo' then ENUM_ANTARCTICAMCMURDO
2140
+ when 'enum_antarcticapalmer' then ENUM_ANTARCTICAPALMER
2141
+ when 'enum_antarcticarothera' then ENUM_ANTARCTICAROTHERA
2142
+ when 'enum_antarcticasouth_pole' then ENUM_ANTARCTICASOUTH_POLE
2143
+ when 'enum_antarcticasyowa' then ENUM_ANTARCTICASYOWA
2144
+ when 'enum_antarcticatroll' then ENUM_ANTARCTICATROLL
2145
+ when 'enum_antarcticavostok' then ENUM_ANTARCTICAVOSTOK
2146
+ when 'enum_arcticlongyearbyen' then ENUM_ARCTICLONGYEARBYEN
2147
+ when 'enum_asiaaden' then ENUM_ASIAADEN
2148
+ when 'enum_asiaalmaty' then ENUM_ASIAALMATY
2149
+ when 'enum_asiaamman' then ENUM_ASIAAMMAN
2150
+ when 'enum_asiaanadyr' then ENUM_ASIAANADYR
2151
+ when 'enum_asiaaqtau' then ENUM_ASIAAQTAU
2152
+ when 'enum_asiaaqtobe' then ENUM_ASIAAQTOBE
2153
+ when 'enum_asiaashgabat' then ENUM_ASIAASHGABAT
2154
+ when 'enum_asiaashkhabad' then ENUM_ASIAASHKHABAD
2155
+ when 'enum_asiaatyrau' then ENUM_ASIAATYRAU
2156
+ when 'enum_asiabaghdad' then ENUM_ASIABAGHDAD
2157
+ when 'enum_asiabahrain' then ENUM_ASIABAHRAIN
2158
+ when 'enum_asiabaku' then ENUM_ASIABAKU
2159
+ when 'enum_asiabangkok' then ENUM_ASIABANGKOK
2160
+ when 'enum_asiabarnaul' then ENUM_ASIABARNAUL
2161
+ when 'enum_asiabeirut' then ENUM_ASIABEIRUT
2162
+ when 'enum_asiabishkek' then ENUM_ASIABISHKEK
2163
+ when 'enum_asiabrunei' then ENUM_ASIABRUNEI
2164
+ when 'enum_asiacalcutta' then ENUM_ASIACALCUTTA
2165
+ when 'enum_asiachita' then ENUM_ASIACHITA
2166
+ when 'enum_asiachoibalsan' then ENUM_ASIACHOIBALSAN
2167
+ when 'enum_asiachongqing' then ENUM_ASIACHONGQING
2168
+ when 'enum_asiachungking' then ENUM_ASIACHUNGKING
2169
+ when 'enum_asiacolombo' then ENUM_ASIACOLOMBO
2170
+ when 'enum_asiadacca' then ENUM_ASIADACCA
2171
+ when 'enum_asiadamascus' then ENUM_ASIADAMASCUS
2172
+ when 'enum_asiadhaka' then ENUM_ASIADHAKA
2173
+ when 'enum_asiadili' then ENUM_ASIADILI
2174
+ when 'enum_asiadubai' then ENUM_ASIADUBAI
2175
+ when 'enum_asiadushanbe' then ENUM_ASIADUSHANBE
2176
+ when 'enum_asiafamagusta' then ENUM_ASIAFAMAGUSTA
2177
+ when 'enum_asiagaza' then ENUM_ASIAGAZA
2178
+ when 'enum_asiaharbin' then ENUM_ASIAHARBIN
2179
+ when 'enum_asiahebron' then ENUM_ASIAHEBRON
2180
+ when 'enum_asiaho_chi_minh' then ENUM_ASIAHO_CHI_MINH
2181
+ when 'enum_asiahong_kong' then ENUM_ASIAHONG_KONG
2182
+ when 'enum_asiahovd' then ENUM_ASIAHOVD
2183
+ when 'enum_asiairkutsk' then ENUM_ASIAIRKUTSK
2184
+ when 'enum_asiaistanbul' then ENUM_ASIAISTANBUL
2185
+ when 'enum_asiajakarta' then ENUM_ASIAJAKARTA
2186
+ when 'enum_asiajayapura' then ENUM_ASIAJAYAPURA
2187
+ when 'enum_asiajerusalem' then ENUM_ASIAJERUSALEM
2188
+ when 'enum_asiakabul' then ENUM_ASIAKABUL
2189
+ when 'enum_asiakamchatka' then ENUM_ASIAKAMCHATKA
2190
+ when 'enum_asiakarachi' then ENUM_ASIAKARACHI
2191
+ when 'enum_asiakashgar' then ENUM_ASIAKASHGAR
2192
+ when 'enum_asiakathmandu' then ENUM_ASIAKATHMANDU
2193
+ when 'enum_asiakatmandu' then ENUM_ASIAKATMANDU
2194
+ when 'enum_asiakhandyga' then ENUM_ASIAKHANDYGA
2195
+ when 'enum_asiakolkata' then ENUM_ASIAKOLKATA
2196
+ when 'enum_asiakrasnoyarsk' then ENUM_ASIAKRASNOYARSK
2197
+ when 'enum_asiakuala_lumpur' then ENUM_ASIAKUALA_LUMPUR
2198
+ when 'enum_asiakuching' then ENUM_ASIAKUCHING
2199
+ when 'enum_asiakuwait' then ENUM_ASIAKUWAIT
2200
+ when 'enum_asiamacao' then ENUM_ASIAMACAO
2201
+ when 'enum_asiamacau' then ENUM_ASIAMACAU
2202
+ when 'enum_asiamagadan' then ENUM_ASIAMAGADAN
2203
+ when 'enum_asiamakassar' then ENUM_ASIAMAKASSAR
2204
+ when 'enum_asiamanila' then ENUM_ASIAMANILA
2205
+ when 'enum_asiamuscat' then ENUM_ASIAMUSCAT
2206
+ when 'enum_asianicosia' then ENUM_ASIANICOSIA
2207
+ when 'enum_asianovokuznetsk' then ENUM_ASIANOVOKUZNETSK
2208
+ when 'enum_asianovosibirsk' then ENUM_ASIANOVOSIBIRSK
2209
+ when 'enum_asiaomsk' then ENUM_ASIAOMSK
2210
+ when 'enum_asiaoral' then ENUM_ASIAORAL
2211
+ when 'enum_asiaphnom_penh' then ENUM_ASIAPHNOM_PENH
2212
+ when 'enum_asiapontianak' then ENUM_ASIAPONTIANAK
2213
+ when 'enum_asiapyongyang' then ENUM_ASIAPYONGYANG
2214
+ when 'enum_asiaqatar' then ENUM_ASIAQATAR
2215
+ when 'enum_asiaqostanay' then ENUM_ASIAQOSTANAY
2216
+ when 'enum_asiaqyzylorda' then ENUM_ASIAQYZYLORDA
2217
+ when 'enum_asiarangoon' then ENUM_ASIARANGOON
2218
+ when 'enum_asiariyadh' then ENUM_ASIARIYADH
2219
+ when 'enum_asiasaigon' then ENUM_ASIASAIGON
2220
+ when 'enum_asiasakhalin' then ENUM_ASIASAKHALIN
2221
+ when 'enum_asiasamarkand' then ENUM_ASIASAMARKAND
2222
+ when 'enum_asiaseoul' then ENUM_ASIASEOUL
2223
+ when 'enum_asiashanghai' then ENUM_ASIASHANGHAI
2224
+ when 'enum_asiasingapore' then ENUM_ASIASINGAPORE
2225
+ when 'enum_asiasrednekolymsk' then ENUM_ASIASREDNEKOLYMSK
2226
+ when 'enum_asiataipei' then ENUM_ASIATAIPEI
2227
+ when 'enum_asiatashkent' then ENUM_ASIATASHKENT
2228
+ when 'enum_asiatbilisi' then ENUM_ASIATBILISI
2229
+ when 'enum_asiatehran' then ENUM_ASIATEHRAN
2230
+ when 'enum_asiatel_aviv' then ENUM_ASIATEL_AVIV
2231
+ when 'enum_asiathimbu' then ENUM_ASIATHIMBU
2232
+ when 'enum_asiathimphu' then ENUM_ASIATHIMPHU
2233
+ when 'enum_asiatokyo' then ENUM_ASIATOKYO
2234
+ when 'enum_asiatomsk' then ENUM_ASIATOMSK
2235
+ when 'enum_asiaujung_pandang' then ENUM_ASIAUJUNG_PANDANG
2236
+ when 'enum_asiaulaanbaatar' then ENUM_ASIAULAANBAATAR
2237
+ when 'enum_asiaulan_bator' then ENUM_ASIAULAN_BATOR
2238
+ when 'enum_asiaurumqi' then ENUM_ASIAURUMQI
2239
+ when 'enum_asiaustnera' then ENUM_ASIAUSTNERA
2240
+ when 'enum_asiavientiane' then ENUM_ASIAVIENTIANE
2241
+ when 'enum_asiavladivostok' then ENUM_ASIAVLADIVOSTOK
2242
+ when 'enum_asiayakutsk' then ENUM_ASIAYAKUTSK
2243
+ when 'enum_asiayangon' then ENUM_ASIAYANGON
2244
+ when 'enum_asiayekaterinburg' then ENUM_ASIAYEKATERINBURG
2245
+ when 'enum_asiayerevan' then ENUM_ASIAYEREVAN
2246
+ when 'enum_atlanticazores' then ENUM_ATLANTICAZORES
2247
+ when 'enum_atlanticbermuda' then ENUM_ATLANTICBERMUDA
2248
+ when 'enum_atlanticcanary' then ENUM_ATLANTICCANARY
2249
+ when 'enum_atlanticcape_verde' then ENUM_ATLANTICCAPE_VERDE
2250
+ when 'enum_atlanticfaeroe' then ENUM_ATLANTICFAEROE
2251
+ when 'enum_atlanticfaroe' then ENUM_ATLANTICFAROE
2252
+ when 'enum_atlanticjan_mayen' then ENUM_ATLANTICJAN_MAYEN
2253
+ when 'enum_atlanticmadeira' then ENUM_ATLANTICMADEIRA
2254
+ when 'enum_atlanticreykjavik' then ENUM_ATLANTICREYKJAVIK
2255
+ when 'enum_atlanticsouth_georgia' then ENUM_ATLANTICSOUTH_GEORGIA
2256
+ when 'enum_atlanticst_helena' then ENUM_ATLANTICST_HELENA
2257
+ when 'enum_atlanticstanley' then ENUM_ATLANTICSTANLEY
2258
+ when 'enum_australiaact' then ENUM_AUSTRALIAACT
2259
+ when 'enum_australiaadelaide' then ENUM_AUSTRALIAADELAIDE
2260
+ when 'enum_australiabrisbane' then ENUM_AUSTRALIABRISBANE
2261
+ when 'enum_australiabroken_hill' then ENUM_AUSTRALIABROKEN_HILL
2262
+ when 'enum_australiacanberra' then ENUM_AUSTRALIACANBERRA
2263
+ when 'enum_australiacurrie' then ENUM_AUSTRALIACURRIE
2264
+ when 'enum_australiadarwin' then ENUM_AUSTRALIADARWIN
2265
+ when 'enum_australiaeucla' then ENUM_AUSTRALIAEUCLA
2266
+ when 'enum_australiahobart' then ENUM_AUSTRALIAHOBART
2267
+ when 'enum_australialhi' then ENUM_AUSTRALIALHI
2268
+ when 'enum_australialindeman' then ENUM_AUSTRALIALINDEMAN
2269
+ when 'enum_australialord_howe' then ENUM_AUSTRALIALORD_HOWE
2270
+ when 'enum_australiamelbourne' then ENUM_AUSTRALIAMELBOURNE
2271
+ when 'enum_australiansw' then ENUM_AUSTRALIANSW
2272
+ when 'enum_australianorth' then ENUM_AUSTRALIANORTH
2273
+ when 'enum_australiaperth' then ENUM_AUSTRALIAPERTH
2274
+ when 'enum_australiaqueensland' then ENUM_AUSTRALIAQUEENSLAND
2275
+ when 'enum_australiasouth' then ENUM_AUSTRALIASOUTH
2276
+ when 'enum_australiasydney' then ENUM_AUSTRALIASYDNEY
2277
+ when 'enum_australiatasmania' then ENUM_AUSTRALIATASMANIA
2278
+ when 'enum_australiavictoria' then ENUM_AUSTRALIAVICTORIA
2279
+ when 'enum_australiawest' then ENUM_AUSTRALIAWEST
2280
+ when 'enum_australiayancowinna' then ENUM_AUSTRALIAYANCOWINNA
2281
+ when 'enum_brazilacre' then ENUM_BRAZILACRE
2282
+ when 'enum_brazildenoronha' then ENUM_BRAZILDENORONHA
2283
+ when 'enum_brazileast' then ENUM_BRAZILEAST
2284
+ when 'enum_brazilwest' then ENUM_BRAZILWEST
2285
+ when 'cet' then CET
2286
+ when 'cst6cdt' then CST6CDT
2287
+ when 'enum_canadaatlantic' then ENUM_CANADAATLANTIC
2288
+ when 'enum_canadacentral' then ENUM_CANADACENTRAL
2289
+ when 'enum_canadaeastern' then ENUM_CANADAEASTERN
2290
+ when 'enum_canadamountain' then ENUM_CANADAMOUNTAIN
2291
+ when 'enum_canadanewfoundland' then ENUM_CANADANEWFOUNDLAND
2292
+ when 'enum_canadapacific' then ENUM_CANADAPACIFIC
2293
+ when 'enum_canadasaskatchewan' then ENUM_CANADASASKATCHEWAN
2294
+ when 'enum_canadayukon' then ENUM_CANADAYUKON
2295
+ when 'enum_chilecontinental' then ENUM_CHILECONTINENTAL
2296
+ when 'enum_chileeasterisland' then ENUM_CHILEEASTERISLAND
2297
+ when 'cuba' then CUBA
2298
+ when 'eet' then EET
2299
+ when 'est5edt' then EST5EDT
2300
+ when 'egypt' then EGYPT
2301
+ when 'eire' then EIRE
2302
+ when 'enum_etcgmt' then ENUM_ETCGMT
2303
+ when 'enum_etcgmt0' then ENUM_ETCGMT0
2304
+ when 'enum_etcgmt1' then ENUM_ETCGMT1
2305
+ when 'enum_etcgmt10' then ENUM_ETCGMT10
2306
+ when 'enum_etcgmt11' then ENUM_ETCGMT11
2307
+ when 'enum_etcgmt12' then ENUM_ETCGMT12
2308
+ when 'enum_etcgmt2' then ENUM_ETCGMT2
2309
+ when 'enum_etcgmt3' then ENUM_ETCGMT3
2310
+ when 'enum_etcgmt4' then ENUM_ETCGMT4
2311
+ when 'enum_etcgmt5' then ENUM_ETCGMT5
2312
+ when 'enum_etcgmt6' then ENUM_ETCGMT6
2313
+ when 'enum_etcgmt7' then ENUM_ETCGMT7
2314
+ when 'enum_etcgmt8' then ENUM_ETCGMT8
2315
+ when 'enum_etcgmt9' then ENUM_ETCGMT9
2316
+ when 'enum_etcgmt01' then ENUM_ETCGMT01
2317
+ when 'enum_etcgmt13' then ENUM_ETCGMT13
2318
+ when 'enum_etcgmt101' then ENUM_ETCGMT101
2319
+ when 'enum_etcgmt111' then ENUM_ETCGMT111
2320
+ when 'enum_etcgmt121' then ENUM_ETCGMT121
2321
+ when 'enum_etcgmt131' then ENUM_ETCGMT131
2322
+ when 'enum_etcgmt14' then ENUM_ETCGMT14
2323
+ when 'enum_etcgmt21' then ENUM_ETCGMT21
2324
+ when 'enum_etcgmt31' then ENUM_ETCGMT31
2325
+ when 'enum_etcgmt41' then ENUM_ETCGMT41
2326
+ when 'enum_etcgmt51' then ENUM_ETCGMT51
2327
+ when 'enum_etcgmt61' then ENUM_ETCGMT61
2328
+ when 'enum_etcgmt71' then ENUM_ETCGMT71
2329
+ when 'enum_etcgmt81' then ENUM_ETCGMT81
2330
+ when 'enum_etcgmt91' then ENUM_ETCGMT91
2331
+ when 'enum_etcgmt02' then ENUM_ETCGMT02
2332
+ when 'enum_etcgreenwich' then ENUM_ETCGREENWICH
2333
+ when 'enum_etcuct' then ENUM_ETCUCT
2334
+ when 'enum_etcutc' then ENUM_ETCUTC
2335
+ when 'enum_etcuniversal' then ENUM_ETCUNIVERSAL
2336
+ when 'enum_etczulu' then ENUM_ETCZULU
2337
+ when 'enum_europeamsterdam' then ENUM_EUROPEAMSTERDAM
2338
+ when 'enum_europeandorra' then ENUM_EUROPEANDORRA
2339
+ when 'enum_europeastrakhan' then ENUM_EUROPEASTRAKHAN
2340
+ when 'enum_europeathens' then ENUM_EUROPEATHENS
2341
+ when 'enum_europebelfast' then ENUM_EUROPEBELFAST
2342
+ when 'enum_europebelgrade' then ENUM_EUROPEBELGRADE
2343
+ when 'enum_europeberlin' then ENUM_EUROPEBERLIN
2344
+ when 'enum_europebratislava' then ENUM_EUROPEBRATISLAVA
2345
+ when 'enum_europebrussels' then ENUM_EUROPEBRUSSELS
2346
+ when 'enum_europebucharest' then ENUM_EUROPEBUCHAREST
2347
+ when 'enum_europebudapest' then ENUM_EUROPEBUDAPEST
2348
+ when 'enum_europebusingen' then ENUM_EUROPEBUSINGEN
2349
+ when 'enum_europechisinau' then ENUM_EUROPECHISINAU
2350
+ when 'enum_europecopenhagen' then ENUM_EUROPECOPENHAGEN
2351
+ when 'enum_europedublin' then ENUM_EUROPEDUBLIN
2352
+ when 'enum_europegibraltar' then ENUM_EUROPEGIBRALTAR
2353
+ when 'enum_europeguernsey' then ENUM_EUROPEGUERNSEY
2354
+ when 'enum_europehelsinki' then ENUM_EUROPEHELSINKI
2355
+ when 'enum_europeisle_of_man' then ENUM_EUROPEISLE_OF_MAN
2356
+ when 'enum_europeistanbul' then ENUM_EUROPEISTANBUL
2357
+ when 'enum_europejersey' then ENUM_EUROPEJERSEY
2358
+ when 'enum_europekaliningrad' then ENUM_EUROPEKALININGRAD
2359
+ when 'enum_europekiev' then ENUM_EUROPEKIEV
2360
+ when 'enum_europekirov' then ENUM_EUROPEKIROV
2361
+ when 'enum_europekyiv' then ENUM_EUROPEKYIV
2362
+ when 'enum_europelisbon' then ENUM_EUROPELISBON
2363
+ when 'enum_europeljubljana' then ENUM_EUROPELJUBLJANA
2364
+ when 'enum_europelondon' then ENUM_EUROPELONDON
2365
+ when 'enum_europeluxembourg' then ENUM_EUROPELUXEMBOURG
2366
+ when 'enum_europemadrid' then ENUM_EUROPEMADRID
2367
+ when 'enum_europemalta' then ENUM_EUROPEMALTA
2368
+ when 'enum_europemariehamn' then ENUM_EUROPEMARIEHAMN
2369
+ when 'enum_europeminsk' then ENUM_EUROPEMINSK
2370
+ when 'enum_europemonaco' then ENUM_EUROPEMONACO
2371
+ when 'enum_europemoscow' then ENUM_EUROPEMOSCOW
2372
+ when 'enum_europenicosia' then ENUM_EUROPENICOSIA
2373
+ when 'enum_europeoslo' then ENUM_EUROPEOSLO
2374
+ when 'enum_europeparis' then ENUM_EUROPEPARIS
2375
+ when 'enum_europepodgorica' then ENUM_EUROPEPODGORICA
2376
+ when 'enum_europeprague' then ENUM_EUROPEPRAGUE
2377
+ when 'enum_europeriga' then ENUM_EUROPERIGA
2378
+ when 'enum_europerome' then ENUM_EUROPEROME
2379
+ when 'enum_europesamara' then ENUM_EUROPESAMARA
2380
+ when 'enum_europesan_marino' then ENUM_EUROPESAN_MARINO
2381
+ when 'enum_europesarajevo' then ENUM_EUROPESARAJEVO
2382
+ when 'enum_europesaratov' then ENUM_EUROPESARATOV
2383
+ when 'enum_europesimferopol' then ENUM_EUROPESIMFEROPOL
2384
+ when 'enum_europeskopje' then ENUM_EUROPESKOPJE
2385
+ when 'enum_europesofia' then ENUM_EUROPESOFIA
2386
+ when 'enum_europestockholm' then ENUM_EUROPESTOCKHOLM
2387
+ when 'enum_europetallinn' then ENUM_EUROPETALLINN
2388
+ when 'enum_europetirane' then ENUM_EUROPETIRANE
2389
+ when 'enum_europetiraspol' then ENUM_EUROPETIRASPOL
2390
+ when 'enum_europeulyanovsk' then ENUM_EUROPEULYANOVSK
2391
+ when 'enum_europeuzhgorod' then ENUM_EUROPEUZHGOROD
2392
+ when 'enum_europevaduz' then ENUM_EUROPEVADUZ
2393
+ when 'enum_europevatican' then ENUM_EUROPEVATICAN
2394
+ when 'enum_europevienna' then ENUM_EUROPEVIENNA
2395
+ when 'enum_europevilnius' then ENUM_EUROPEVILNIUS
2396
+ when 'enum_europevolgograd' then ENUM_EUROPEVOLGOGRAD
2397
+ when 'enum_europewarsaw' then ENUM_EUROPEWARSAW
2398
+ when 'enum_europezagreb' then ENUM_EUROPEZAGREB
2399
+ when 'enum_europezaporozhye' then ENUM_EUROPEZAPOROZHYE
2400
+ when 'enum_europezurich' then ENUM_EUROPEZURICH
2401
+ when 'gb' then GB
2402
+ when 'gbeire' then GBEIRE
2403
+ when 'gmt' then GMT
2404
+ when 'gmt0' then GMT0
2405
+ when 'greenwich' then GREENWICH
2406
+ when 'hongkong' then HONGKONG
2407
+ when 'iceland' then ICELAND
2408
+ when 'enum_indianantananarivo' then ENUM_INDIANANTANANARIVO
2409
+ when 'enum_indianchagos' then ENUM_INDIANCHAGOS
2410
+ when 'enum_indianchristmas' then ENUM_INDIANCHRISTMAS
2411
+ when 'enum_indiancocos' then ENUM_INDIANCOCOS
2412
+ when 'enum_indiancomoro' then ENUM_INDIANCOMORO
2413
+ when 'enum_indiankerguelen' then ENUM_INDIANKERGUELEN
2414
+ when 'enum_indianmahe' then ENUM_INDIANMAHE
2415
+ when 'enum_indianmaldives' then ENUM_INDIANMALDIVES
2416
+ when 'enum_indianmauritius' then ENUM_INDIANMAURITIUS
2417
+ when 'enum_indianmayotte' then ENUM_INDIANMAYOTTE
2418
+ when 'enum_indianreunion' then ENUM_INDIANREUNION
2419
+ when 'iran' then IRAN
2420
+ when 'israel' then ISRAEL
2421
+ when 'jamaica' then JAMAICA
2422
+ when 'japan' then JAPAN
2423
+ when 'kwajalein' then KWAJALEIN
2424
+ when 'libya' then LIBYA
2425
+ when 'met' then MET
2426
+ when 'mst7mdt' then MST7MDT
2427
+ when 'enum_mexicobajanorte' then ENUM_MEXICOBAJANORTE
2428
+ when 'enum_mexicobajasur' then ENUM_MEXICOBAJASUR
2429
+ when 'enum_mexicogeneral' then ENUM_MEXICOGENERAL
2430
+ when 'nz' then NZ
2431
+ when 'nzchat' then NZCHAT
2432
+ when 'navajo' then NAVAJO
2433
+ when 'prc' then PRC
2434
+ when 'pst8pdt' then PST8PDT
2435
+ when 'enum_pacificapia' then ENUM_PACIFICAPIA
2436
+ when 'enum_pacificauckland' then ENUM_PACIFICAUCKLAND
2437
+ when 'enum_pacificbougainville' then ENUM_PACIFICBOUGAINVILLE
2438
+ when 'enum_pacificchatham' then ENUM_PACIFICCHATHAM
2439
+ when 'enum_pacificchuuk' then ENUM_PACIFICCHUUK
2440
+ when 'enum_pacificeaster' then ENUM_PACIFICEASTER
2441
+ when 'enum_pacificefate' then ENUM_PACIFICEFATE
2442
+ when 'enum_pacificenderbury' then ENUM_PACIFICENDERBURY
2443
+ when 'enum_pacificfakaofo' then ENUM_PACIFICFAKAOFO
2444
+ when 'enum_pacificfiji' then ENUM_PACIFICFIJI
2445
+ when 'enum_pacificfunafuti' then ENUM_PACIFICFUNAFUTI
2446
+ when 'enum_pacificgalapagos' then ENUM_PACIFICGALAPAGOS
2447
+ when 'enum_pacificgambier' then ENUM_PACIFICGAMBIER
2448
+ when 'enum_pacificguadalcanal' then ENUM_PACIFICGUADALCANAL
2449
+ when 'enum_pacificguam' then ENUM_PACIFICGUAM
2450
+ when 'enum_pacifichonolulu' then ENUM_PACIFICHONOLULU
2451
+ when 'enum_pacificjohnston' then ENUM_PACIFICJOHNSTON
2452
+ when 'enum_pacifickanton' then ENUM_PACIFICKANTON
2453
+ when 'enum_pacifickiritimati' then ENUM_PACIFICKIRITIMATI
2454
+ when 'enum_pacifickosrae' then ENUM_PACIFICKOSRAE
2455
+ when 'enum_pacifickwajalein' then ENUM_PACIFICKWAJALEIN
2456
+ when 'enum_pacificmajuro' then ENUM_PACIFICMAJURO
2457
+ when 'enum_pacificmarquesas' then ENUM_PACIFICMARQUESAS
2458
+ when 'enum_pacificmidway' then ENUM_PACIFICMIDWAY
2459
+ when 'enum_pacificnauru' then ENUM_PACIFICNAURU
2460
+ when 'enum_pacificniue' then ENUM_PACIFICNIUE
2461
+ when 'enum_pacificnorfolk' then ENUM_PACIFICNORFOLK
2462
+ when 'enum_pacificnoumea' then ENUM_PACIFICNOUMEA
2463
+ when 'enum_pacificpago_pago' then ENUM_PACIFICPAGO_PAGO
2464
+ when 'enum_pacificpalau' then ENUM_PACIFICPALAU
2465
+ when 'enum_pacificpitcairn' then ENUM_PACIFICPITCAIRN
2466
+ when 'enum_pacificpohnpei' then ENUM_PACIFICPOHNPEI
2467
+ when 'enum_pacificponape' then ENUM_PACIFICPONAPE
2468
+ when 'enum_pacificport_moresby' then ENUM_PACIFICPORT_MORESBY
2469
+ when 'enum_pacificrarotonga' then ENUM_PACIFICRAROTONGA
2470
+ when 'enum_pacificsaipan' then ENUM_PACIFICSAIPAN
2471
+ when 'enum_pacificsamoa' then ENUM_PACIFICSAMOA
2472
+ when 'enum_pacifictahiti' then ENUM_PACIFICTAHITI
2473
+ when 'enum_pacifictarawa' then ENUM_PACIFICTARAWA
2474
+ when 'enum_pacifictongatapu' then ENUM_PACIFICTONGATAPU
2475
+ when 'enum_pacifictruk' then ENUM_PACIFICTRUK
2476
+ when 'enum_pacificwake' then ENUM_PACIFICWAKE
2477
+ when 'enum_pacificwallis' then ENUM_PACIFICWALLIS
2478
+ when 'enum_pacificyap' then ENUM_PACIFICYAP
2479
+ when 'poland' then POLAND
2480
+ when 'portugal' then PORTUGAL
2481
+ when 'rok' then ROK
2482
+ when 'singapore' then SINGAPORE
2483
+ when 'enum_systemvast4' then ENUM_SYSTEMVAST4
2484
+ when 'enum_systemvast4adt' then ENUM_SYSTEMVAST4ADT
2485
+ when 'enum_systemvcst6' then ENUM_SYSTEMVCST6
2486
+ when 'enum_systemvcst6cdt' then ENUM_SYSTEMVCST6CDT
2487
+ when 'enum_systemvest5' then ENUM_SYSTEMVEST5
2488
+ when 'enum_systemvest5edt' then ENUM_SYSTEMVEST5EDT
2489
+ when 'enum_systemvhst10' then ENUM_SYSTEMVHST10
2490
+ when 'enum_systemvmst7' then ENUM_SYSTEMVMST7
2491
+ when 'enum_systemvmst7mdt' then ENUM_SYSTEMVMST7MDT
2492
+ when 'enum_systemvpst8' then ENUM_SYSTEMVPST8
2493
+ when 'enum_systemvpst8pdt' then ENUM_SYSTEMVPST8PDT
2494
+ when 'enum_systemvyst9' then ENUM_SYSTEMVYST9
2495
+ when 'enum_systemvyst9ydt' then ENUM_SYSTEMVYST9YDT
2496
+ when 'turkey' then TURKEY
2497
+ when 'uct' then UCT
2498
+ when 'enum_usalaska' then ENUM_USALASKA
2499
+ when 'enum_usaleutian' then ENUM_USALEUTIAN
2500
+ when 'enum_usarizona' then ENUM_USARIZONA
2501
+ when 'enum_uscentral' then ENUM_USCENTRAL
2502
+ when 'enum_useastindiana' then ENUM_USEASTINDIANA
2503
+ when 'enum_useastern' then ENUM_USEASTERN
2504
+ when 'enum_ushawaii' then ENUM_USHAWAII
2505
+ when 'enum_usindianastarke' then ENUM_USINDIANASTARKE
2506
+ when 'enum_usmichigan' then ENUM_USMICHIGAN
2507
+ when 'enum_usmountain' then ENUM_USMOUNTAIN
2508
+ when 'enum_uspacific' then ENUM_USPACIFIC
2509
+ when 'enum_ussamoa' then ENUM_USSAMOA
2510
+ when 'utc' then UTC
2511
+ when 'universal' then UNIVERSAL
2512
+ when 'wsu' then WSU
2513
+ when 'wet' then WET
2514
+ when 'zulu' then ZULU
2515
+ when 'est' then EST
2516
+ when 'hst' then HST
2517
+ when 'mst' then MST
2518
+ when 'act' then ACT
2519
+ when 'aet' then AET
2520
+ when 'agt' then AGT
2521
+ when 'art' then ART
2522
+ when 'ast' then AST
2523
+ when 'bet' then BET
2524
+ when 'bst' then BST
2525
+ when 'cat' then CAT
2526
+ when 'cnt' then CNT
2527
+ when 'cst' then CST
2528
+ when 'ctt' then CTT
2529
+ when 'eat' then EAT
2530
+ when 'ect' then ECT
2531
+ when 'iet' then IET
2532
+ when 'ist' then IST
2533
+ when 'jst' then JST
2534
+ when 'mit' then MIT
2535
+ when 'net' then NET
2536
+ when 'nst' then NST
2537
+ when 'plt' then PLT
2538
+ when 'pnt' then PNT
2539
+ when 'prt' then PRT
2540
+ when 'pst' then PST
2541
+ when 'sst' then SST
2542
+ when 'vst' then VST
2543
+ else
2544
+ default_value
2545
+ end
2546
+ end
2547
+ end
2548
+ end