volcengine-python-sdk 4.0.21__py2.py3-none-any.whl → 4.0.23__py2.py3-none-any.whl

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.

Potentially problematic release.


This version of volcengine-python-sdk might be problematic. Click here for more details.

Files changed (490) hide show
  1. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.23.dist-info}/METADATA +1 -1
  2. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.23.dist-info}/RECORD +489 -115
  3. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.23.dist-info}/top_level.txt +1 -0
  4. volcenginesdkarkruntime/_utils/_key_agreement.py +23 -0
  5. volcenginesdkarkruntime/resources/chat/completions.py +13 -3
  6. volcenginesdkarkruntime/resources/responses/responses.py +5 -1
  7. volcenginesdkcloudmonitor/__init__.py +309 -0
  8. volcenginesdkcloudmonitor/api/__init__.py +6 -0
  9. volcenginesdkcloudmonitor/api/cloudmonitor_api.py +6048 -0
  10. volcenginesdkcloudmonitor/models/__init__.py +305 -0
  11. volcenginesdkcloudmonitor/models/alert_notification_for_list_preset_alert_templates_output.py +305 -0
  12. volcenginesdkcloudmonitor/models/applied_rule_for_list_alert_templates_output.py +201 -0
  13. volcenginesdkcloudmonitor/models/applied_rule_for_list_preset_alert_templates_output.py +149 -0
  14. volcenginesdkcloudmonitor/models/apply_object_for_apply_object_groups_by_alert_template_input.py +331 -0
  15. volcenginesdkcloudmonitor/models/apply_object_groups_by_alert_template_request.py +177 -0
  16. volcenginesdkcloudmonitor/models/apply_object_groups_by_alert_template_response.py +123 -0
  17. volcenginesdkcloudmonitor/models/condition_for_create_alert_template_input.py +227 -0
  18. volcenginesdkcloudmonitor/models/condition_for_create_rule_input.py +253 -0
  19. volcenginesdkcloudmonitor/models/condition_for_list_alert_templates_output.py +227 -0
  20. volcenginesdkcloudmonitor/models/condition_for_list_preset_alert_templates_output.py +227 -0
  21. volcenginesdkcloudmonitor/models/condition_for_list_rules_by_ids_output.py +279 -0
  22. volcenginesdkcloudmonitor/models/condition_for_list_rules_output.py +279 -0
  23. volcenginesdkcloudmonitor/models/condition_for_update_alert_template_input.py +227 -0
  24. volcenginesdkcloudmonitor/models/condition_for_update_rule_input.py +253 -0
  25. volcenginesdkcloudmonitor/models/contact_for_list_contact_group_by_ids_output.py +201 -0
  26. volcenginesdkcloudmonitor/models/contact_for_list_contact_groups_output.py +201 -0
  27. volcenginesdkcloudmonitor/models/contact_group_for_list_contacts_output.py +253 -0
  28. volcenginesdkcloudmonitor/models/convert_tag_for_create_rule_input.py +149 -0
  29. volcenginesdkcloudmonitor/models/convert_tag_for_list_rules_by_ids_output.py +149 -0
  30. volcenginesdkcloudmonitor/models/convert_tag_for_list_rules_output.py +149 -0
  31. volcenginesdkcloudmonitor/models/convert_tag_for_update_rule_input.py +149 -0
  32. volcenginesdkcloudmonitor/models/create_alert_template_request.py +282 -0
  33. volcenginesdkcloudmonitor/models/create_alert_template_response.py +123 -0
  34. volcenginesdkcloudmonitor/models/create_contact_group_request.py +176 -0
  35. volcenginesdkcloudmonitor/models/create_contact_group_response.py +123 -0
  36. volcenginesdkcloudmonitor/models/create_contacts_request.py +177 -0
  37. volcenginesdkcloudmonitor/models/create_contacts_response.py +123 -0
  38. volcenginesdkcloudmonitor/models/create_event_rule_request.py +537 -0
  39. volcenginesdkcloudmonitor/models/create_event_rule_response.py +123 -0
  40. volcenginesdkcloudmonitor/models/create_notification_request.py +204 -0
  41. volcenginesdkcloudmonitor/models/create_notification_response.py +123 -0
  42. volcenginesdkcloudmonitor/models/create_notify_template_request.py +277 -0
  43. volcenginesdkcloudmonitor/models/create_notify_template_response.py +123 -0
  44. volcenginesdkcloudmonitor/models/create_object_group_request.py +150 -0
  45. volcenginesdkcloudmonitor/models/create_object_group_response.py +123 -0
  46. volcenginesdkcloudmonitor/models/create_rule_request.py +850 -0
  47. volcenginesdkcloudmonitor/models/create_rule_response.py +123 -0
  48. volcenginesdkcloudmonitor/models/create_silence_policy_request.py +256 -0
  49. volcenginesdkcloudmonitor/models/create_silence_policy_response.py +123 -0
  50. volcenginesdkcloudmonitor/models/create_webhook_request.py +191 -0
  51. volcenginesdkcloudmonitor/models/create_webhook_response.py +123 -0
  52. volcenginesdkcloudmonitor/models/data_for_create_event_rule_output.py +123 -0
  53. volcenginesdkcloudmonitor/models/data_for_delete_event_rule_output.py +123 -0
  54. volcenginesdkcloudmonitor/models/data_for_disable_event_rule_output.py +123 -0
  55. volcenginesdkcloudmonitor/models/data_for_enable_event_rule_output.py +123 -0
  56. volcenginesdkcloudmonitor/models/data_for_get_metric_data_output.py +331 -0
  57. volcenginesdkcloudmonitor/models/data_for_get_top_data_output.py +175 -0
  58. volcenginesdkcloudmonitor/models/data_for_list_alert_group_output.py +513 -0
  59. volcenginesdkcloudmonitor/models/data_for_list_alert_templates_output.py +409 -0
  60. volcenginesdkcloudmonitor/models/data_for_list_contact_group_by_ids_output.py +279 -0
  61. volcenginesdkcloudmonitor/models/data_for_list_contact_groups_output.py +279 -0
  62. volcenginesdkcloudmonitor/models/data_for_list_contacts_by_ids_output.py +201 -0
  63. volcenginesdkcloudmonitor/models/data_for_list_contacts_output.py +227 -0
  64. volcenginesdkcloudmonitor/models/data_for_list_default_notify_templates_output.py +227 -0
  65. volcenginesdkcloudmonitor/models/data_for_list_event_rules_output.py +669 -0
  66. volcenginesdkcloudmonitor/models/data_for_list_events_output.py +279 -0
  67. volcenginesdkcloudmonitor/models/data_for_list_notifications_output.py +305 -0
  68. volcenginesdkcloudmonitor/models/data_for_list_notify_templates_output.py +331 -0
  69. volcenginesdkcloudmonitor/models/data_for_list_object_groups_output.py +305 -0
  70. volcenginesdkcloudmonitor/models/data_for_list_preset_alert_templates_output.py +435 -0
  71. volcenginesdkcloudmonitor/models/data_for_list_rules_by_ids_output.py +929 -0
  72. volcenginesdkcloudmonitor/models/data_for_list_rules_output.py +929 -0
  73. volcenginesdkcloudmonitor/models/data_for_list_send_alert_output.py +253 -0
  74. volcenginesdkcloudmonitor/models/data_for_list_silence_policy_output.py +409 -0
  75. volcenginesdkcloudmonitor/models/data_for_list_webhooks_by_ids_output.py +305 -0
  76. volcenginesdkcloudmonitor/models/data_for_list_webhooks_output.py +305 -0
  77. volcenginesdkcloudmonitor/models/data_for_tag_resources_output.py +149 -0
  78. volcenginesdkcloudmonitor/models/data_for_update_event_rule_output.py +123 -0
  79. volcenginesdkcloudmonitor/models/data_point_for_get_metric_data_output.py +149 -0
  80. volcenginesdkcloudmonitor/models/delete_alert_templates_by_ids_request.py +123 -0
  81. volcenginesdkcloudmonitor/models/delete_alert_templates_by_ids_response.py +123 -0
  82. volcenginesdkcloudmonitor/models/delete_contact_group_by_ids_request.py +123 -0
  83. volcenginesdkcloudmonitor/models/delete_contact_group_by_ids_response.py +123 -0
  84. volcenginesdkcloudmonitor/models/delete_contacts_by_ids_request.py +123 -0
  85. volcenginesdkcloudmonitor/models/delete_contacts_by_ids_response.py +123 -0
  86. volcenginesdkcloudmonitor/models/delete_event_rule_request.py +123 -0
  87. volcenginesdkcloudmonitor/models/delete_event_rule_response.py +123 -0
  88. volcenginesdkcloudmonitor/models/delete_notifications_by_ids_request.py +123 -0
  89. volcenginesdkcloudmonitor/models/delete_notifications_by_ids_response.py +123 -0
  90. volcenginesdkcloudmonitor/models/delete_notify_templates_by_ids_request.py +123 -0
  91. volcenginesdkcloudmonitor/models/delete_notify_templates_by_ids_response.py +123 -0
  92. volcenginesdkcloudmonitor/models/delete_object_group_request.py +124 -0
  93. volcenginesdkcloudmonitor/models/delete_object_group_response.py +123 -0
  94. volcenginesdkcloudmonitor/models/delete_rules_by_ids_request.py +123 -0
  95. volcenginesdkcloudmonitor/models/delete_rules_by_ids_response.py +123 -0
  96. volcenginesdkcloudmonitor/models/delete_silence_policy_by_ids_request.py +123 -0
  97. volcenginesdkcloudmonitor/models/delete_silence_policy_by_ids_response.py +123 -0
  98. volcenginesdkcloudmonitor/models/delete_webhooks_by_ids_request.py +123 -0
  99. volcenginesdkcloudmonitor/models/delete_webhooks_by_ids_response.py +123 -0
  100. volcenginesdkcloudmonitor/models/dimension_conditions_for_create_object_group_input.py +201 -0
  101. volcenginesdkcloudmonitor/models/dimension_conditions_for_create_rule_input.py +201 -0
  102. volcenginesdkcloudmonitor/models/dimension_conditions_for_list_rules_by_ids_output.py +201 -0
  103. volcenginesdkcloudmonitor/models/dimension_conditions_for_list_rules_output.py +201 -0
  104. volcenginesdkcloudmonitor/models/dimension_conditions_for_update_object_group_input.py +201 -0
  105. volcenginesdkcloudmonitor/models/dimension_conditions_for_update_rule_input.py +201 -0
  106. volcenginesdkcloudmonitor/models/dimension_for_get_metric_data_input.py +149 -0
  107. volcenginesdkcloudmonitor/models/dimension_for_get_metric_data_output.py +149 -0
  108. volcenginesdkcloudmonitor/models/dimension_for_get_top_data_input.py +149 -0
  109. volcenginesdkcloudmonitor/models/disable_event_rule_request.py +123 -0
  110. volcenginesdkcloudmonitor/models/disable_event_rule_response.py +123 -0
  111. volcenginesdktransitrouter/models/accept_shared_transit_router_request.py → volcenginesdkcloudmonitor/models/disable_preset_alert_template_request.py +22 -22
  112. volcenginesdkcloudmonitor/models/disable_preset_alert_template_response.py +123 -0
  113. volcenginesdkcloudmonitor/models/effect_time_for_create_silence_policy_input.py +149 -0
  114. volcenginesdkcloudmonitor/models/effect_time_for_list_silence_policy_output.py +149 -0
  115. volcenginesdkcloudmonitor/models/effect_time_for_update_silence_policy_input.py +149 -0
  116. volcenginesdkcloudmonitor/models/effective_time_for_create_event_rule_input.py +149 -0
  117. volcenginesdkcloudmonitor/models/effective_time_for_update_event_rule_input.py +149 -0
  118. volcenginesdkcloudmonitor/models/enable_event_rule_request.py +123 -0
  119. volcenginesdkcloudmonitor/models/enable_event_rule_response.py +123 -0
  120. volcenginesdkcloudmonitor/models/enable_preset_alert_template_request.py +387 -0
  121. volcenginesdkcloudmonitor/models/enable_preset_alert_template_response.py +123 -0
  122. volcenginesdkcloudmonitor/models/get_metric_data_request.py +308 -0
  123. volcenginesdkcloudmonitor/models/get_metric_data_response.py +123 -0
  124. volcenginesdkcloudmonitor/models/get_top_data_request.py +357 -0
  125. volcenginesdkcloudmonitor/models/get_top_data_response.py +123 -0
  126. volcenginesdkcloudmonitor/models/instance_for_get_metric_data_input.py +123 -0
  127. volcenginesdkcloudmonitor/models/instance_for_get_top_data_input.py +123 -0
  128. volcenginesdkcloudmonitor/models/level_condition_for_create_alert_template_input.py +156 -0
  129. volcenginesdkcloudmonitor/models/level_condition_for_create_rule_input.py +149 -0
  130. volcenginesdkcloudmonitor/models/level_condition_for_list_alert_templates_output.py +149 -0
  131. volcenginesdkcloudmonitor/models/level_condition_for_list_preset_alert_templates_output.py +149 -0
  132. volcenginesdkcloudmonitor/models/level_condition_for_list_rules_by_ids_output.py +149 -0
  133. volcenginesdkcloudmonitor/models/level_condition_for_list_rules_output.py +149 -0
  134. volcenginesdkcloudmonitor/models/level_condition_for_update_alert_template_input.py +156 -0
  135. volcenginesdkcloudmonitor/models/level_condition_for_update_rule_input.py +149 -0
  136. volcenginesdkcloudmonitor/models/list_alert_group_request.py +357 -0
  137. volcenginesdkcloudmonitor/models/list_alert_group_response.py +253 -0
  138. volcenginesdkcloudmonitor/models/list_alert_templates_request.py +253 -0
  139. volcenginesdkcloudmonitor/models/list_alert_templates_response.py +201 -0
  140. volcenginesdkcloudmonitor/models/list_contact_group_by_ids_request.py +123 -0
  141. volcenginesdkcloudmonitor/models/list_contact_group_by_ids_response.py +123 -0
  142. volcenginesdkcloudmonitor/models/list_contact_groups_request.py +175 -0
  143. volcenginesdkcloudmonitor/models/list_contact_groups_response.py +201 -0
  144. volcenginesdkcloudmonitor/models/list_contacts_by_ids_request.py +123 -0
  145. volcenginesdkcloudmonitor/models/list_contacts_by_ids_response.py +123 -0
  146. volcenginesdktransitrouter/models/describe_transit_router_grant_rules_request.py → volcenginesdkcloudmonitor/models/list_contacts_request.py +69 -44
  147. volcenginesdkcloudmonitor/models/list_contacts_response.py +201 -0
  148. volcenginesdkcloudmonitor/models/list_default_notify_templates_request.py +198 -0
  149. volcenginesdkcloudmonitor/models/list_default_notify_templates_response.py +123 -0
  150. volcenginesdkcloudmonitor/models/list_event_rules_request.py +279 -0
  151. volcenginesdkcloudmonitor/models/list_event_rules_response.py +253 -0
  152. volcenginesdkcloudmonitor/models/list_events_request.py +364 -0
  153. volcenginesdkcloudmonitor/models/list_events_response.py +253 -0
  154. volcenginesdkcloudmonitor/models/list_notifications_request.py +261 -0
  155. volcenginesdkcloudmonitor/models/list_notifications_response.py +201 -0
  156. volcenginesdkcloudmonitor/models/list_notify_templates_request.py +275 -0
  157. volcenginesdkcloudmonitor/models/list_notify_templates_response.py +201 -0
  158. volcenginesdkcloudmonitor/models/list_object_groups_request.py +227 -0
  159. volcenginesdktransitrouter/models/describe_transit_router_grant_rules_response.py → volcenginesdkcloudmonitor/models/list_object_groups_response.py +47 -47
  160. volcenginesdkcloudmonitor/models/list_preset_alert_templates_request.py +227 -0
  161. volcenginesdkcloudmonitor/models/list_preset_alert_templates_response.py +201 -0
  162. volcenginesdkcloudmonitor/models/list_rules_by_ids_request.py +123 -0
  163. volcenginesdkcloudmonitor/models/list_rules_by_ids_response.py +123 -0
  164. volcenginesdkcloudmonitor/models/list_rules_request.py +357 -0
  165. volcenginesdkcloudmonitor/models/list_rules_response.py +201 -0
  166. volcenginesdkcloudmonitor/models/list_send_alert_request.py +176 -0
  167. volcenginesdkcloudmonitor/models/list_send_alert_response.py +201 -0
  168. volcenginesdkcloudmonitor/models/list_silence_policy_request.py +305 -0
  169. volcenginesdkcloudmonitor/models/list_silence_policy_response.py +201 -0
  170. volcenginesdkcloudmonitor/models/list_webhooks_by_ids_request.py +123 -0
  171. volcenginesdkcloudmonitor/models/list_webhooks_by_ids_response.py +123 -0
  172. volcenginesdkcloudmonitor/models/list_webhooks_request.py +331 -0
  173. volcenginesdkcloudmonitor/models/list_webhooks_response.py +253 -0
  174. volcenginesdkcloudmonitor/models/message_queue_for_create_event_rule_input.py +331 -0
  175. volcenginesdkcloudmonitor/models/message_queue_for_list_event_rules_output.py +227 -0
  176. volcenginesdkcloudmonitor/models/message_queue_for_update_event_rule_input.py +331 -0
  177. volcenginesdkcloudmonitor/models/meta_condition_for_create_object_group_input.py +175 -0
  178. volcenginesdkcloudmonitor/models/meta_condition_for_create_rule_input.py +175 -0
  179. volcenginesdkcloudmonitor/models/meta_condition_for_create_silence_policy_input.py +149 -0
  180. volcenginesdkcloudmonitor/models/meta_condition_for_list_rules_by_ids_output.py +175 -0
  181. volcenginesdkcloudmonitor/models/meta_condition_for_list_rules_output.py +175 -0
  182. volcenginesdkcloudmonitor/models/meta_condition_for_list_silence_policy_output.py +149 -0
  183. volcenginesdkcloudmonitor/models/meta_condition_for_update_object_group_input.py +175 -0
  184. volcenginesdkcloudmonitor/models/meta_condition_for_update_rule_input.py +175 -0
  185. volcenginesdkcloudmonitor/models/meta_condition_for_update_silence_policy_input.py +149 -0
  186. volcenginesdkcloudmonitor/models/meta_for_create_object_group_input.py +175 -0
  187. volcenginesdkcloudmonitor/models/meta_for_create_rule_input.py +175 -0
  188. volcenginesdkcloudmonitor/models/meta_for_create_silence_policy_input.py +175 -0
  189. volcenginesdkcloudmonitor/models/meta_for_list_rules_by_ids_output.py +175 -0
  190. volcenginesdkcloudmonitor/models/meta_for_list_rules_output.py +175 -0
  191. volcenginesdktransitrouter/models/delete_transit_router_grant_rule_request.py → volcenginesdkcloudmonitor/models/meta_for_list_silence_policy_output.py +61 -37
  192. volcenginesdkcloudmonitor/models/meta_for_update_object_group_input.py +175 -0
  193. volcenginesdkcloudmonitor/models/meta_for_update_rule_input.py +175 -0
  194. volcenginesdkcloudmonitor/models/meta_for_update_silence_policy_input.py +175 -0
  195. volcenginesdkcloudmonitor/models/metric_data_result_for_get_metric_data_output.py +175 -0
  196. volcenginesdkcloudmonitor/models/modify_state_of_silence_policy_by_ids_request.py +157 -0
  197. volcenginesdkcloudmonitor/models/modify_state_of_silence_policy_by_ids_response.py +123 -0
  198. volcenginesdkcloudmonitor/models/no_data_for_create_alert_template_input.py +175 -0
  199. volcenginesdkcloudmonitor/models/no_data_for_create_rule_input.py +149 -0
  200. volcenginesdkcloudmonitor/models/no_data_for_list_alert_templates_output.py +175 -0
  201. volcenginesdkcloudmonitor/models/no_data_for_list_preset_alert_templates_output.py +175 -0
  202. volcenginesdkcloudmonitor/models/no_data_for_update_alert_template_input.py +175 -0
  203. volcenginesdkcloudmonitor/models/no_data_for_update_rule_input.py +149 -0
  204. volcenginesdkcloudmonitor/models/notification_for_create_notification_input.py +242 -0
  205. volcenginesdkcloudmonitor/models/notification_for_list_notifications_output.py +227 -0
  206. volcenginesdkcloudmonitor/models/notification_for_update_notification_input.py +242 -0
  207. volcenginesdkcloudmonitor/models/notify_template_for_apply_object_groups_by_alert_template_input.py +156 -0
  208. volcenginesdkcloudmonitor/models/notify_template_for_create_event_rule_input.py +156 -0
  209. volcenginesdkcloudmonitor/models/notify_template_for_create_notification_input.py +156 -0
  210. volcenginesdkcloudmonitor/models/notify_template_for_create_rule_input.py +156 -0
  211. volcenginesdkcloudmonitor/models/notify_template_for_enable_preset_alert_template_input.py +156 -0
  212. volcenginesdkcloudmonitor/models/notify_template_for_list_alert_templates_output.py +149 -0
  213. volcenginesdkcloudmonitor/models/notify_template_for_list_event_rules_output.py +149 -0
  214. volcenginesdkcloudmonitor/models/notify_template_for_list_notifications_output.py +149 -0
  215. volcenginesdkcloudmonitor/models/notify_template_for_list_preset_alert_templates_output.py +149 -0
  216. volcenginesdkcloudmonitor/models/notify_template_for_list_rules_by_ids_output.py +149 -0
  217. volcenginesdkcloudmonitor/models/notify_template_for_list_rules_output.py +149 -0
  218. volcenginesdkcloudmonitor/models/notify_template_for_update_event_rule_input.py +156 -0
  219. volcenginesdkcloudmonitor/models/notify_template_for_update_notification_input.py +156 -0
  220. volcenginesdkcloudmonitor/models/notify_template_for_update_rule_input.py +156 -0
  221. volcenginesdkcloudmonitor/models/object_for_create_object_group_input.py +227 -0
  222. volcenginesdkcloudmonitor/models/object_for_list_object_groups_output.py +279 -0
  223. volcenginesdkcloudmonitor/models/object_for_update_object_group_input.py +227 -0
  224. volcenginesdkcloudmonitor/models/object_group_for_list_alert_templates_output.py +357 -0
  225. volcenginesdkcloudmonitor/models/project_condition_for_create_object_group_input.py +123 -0
  226. volcenginesdkcloudmonitor/models/project_condition_for_create_rule_input.py +123 -0
  227. volcenginesdkcloudmonitor/models/project_condition_for_list_rules_by_ids_output.py +123 -0
  228. volcenginesdkcloudmonitor/models/project_condition_for_list_rules_output.py +123 -0
  229. volcenginesdkcloudmonitor/models/project_condition_for_update_object_group_input.py +123 -0
  230. volcenginesdkcloudmonitor/models/project_condition_for_update_rule_input.py +123 -0
  231. volcenginesdkcloudmonitor/models/range_for_create_silence_policy_input.py +201 -0
  232. volcenginesdkcloudmonitor/models/range_for_list_silence_policy_output.py +201 -0
  233. volcenginesdkcloudmonitor/models/range_for_update_silence_policy_input.py +201 -0
  234. volcenginesdkcloudmonitor/models/recovery_notify_for_create_alert_template_input.py +123 -0
  235. volcenginesdkcloudmonitor/models/recovery_notify_for_create_rule_input.py +123 -0
  236. volcenginesdkcloudmonitor/models/recovery_notify_for_list_alert_templates_output.py +123 -0
  237. volcenginesdkcloudmonitor/models/recovery_notify_for_list_preset_alert_templates_output.py +123 -0
  238. volcenginesdkcloudmonitor/models/recovery_notify_for_list_rules_by_ids_output.py +123 -0
  239. volcenginesdkcloudmonitor/models/recovery_notify_for_list_rules_output.py +123 -0
  240. volcenginesdkcloudmonitor/models/recovery_notify_for_update_alert_template_input.py +123 -0
  241. volcenginesdkcloudmonitor/models/recovery_notify_for_update_rule_input.py +123 -0
  242. volcenginesdkcloudmonitor/models/rule_for_list_object_groups_output.py +201 -0
  243. volcenginesdkcloudmonitor/models/send_result_for_list_send_alert_output.py +227 -0
  244. volcenginesdkcloudmonitor/models/set_state_of_rules_by_ids_request.py +157 -0
  245. volcenginesdkcloudmonitor/models/set_state_of_rules_by_ids_response.py +123 -0
  246. volcenginesdkcloudmonitor/models/silence_conditions_for_create_silence_policy_input.py +175 -0
  247. volcenginesdkcloudmonitor/models/silence_conditions_for_list_silence_policy_output.py +201 -0
  248. volcenginesdkcloudmonitor/models/silence_conditions_for_update_silence_policy_input.py +175 -0
  249. volcenginesdkcloudmonitor/models/tag_condition_for_create_object_group_input.py +149 -0
  250. volcenginesdkcloudmonitor/models/tag_condition_for_create_rule_input.py +149 -0
  251. volcenginesdkcloudmonitor/models/tag_condition_for_list_rules_by_ids_output.py +149 -0
  252. volcenginesdkcloudmonitor/models/tag_condition_for_list_rules_output.py +149 -0
  253. volcenginesdkcloudmonitor/models/tag_condition_for_update_object_group_input.py +149 -0
  254. volcenginesdkcloudmonitor/models/tag_condition_for_update_rule_input.py +149 -0
  255. volcenginesdkcloudmonitor/models/tag_for_create_object_group_input.py +175 -0
  256. volcenginesdkcloudmonitor/models/tag_for_create_rule_input.py +175 -0
  257. volcenginesdkcloudmonitor/models/tag_for_list_rules_by_ids_output.py +175 -0
  258. volcenginesdkcloudmonitor/models/tag_for_list_rules_output.py +175 -0
  259. volcenginesdkcloudmonitor/models/tag_for_tag_resources_input.py +149 -0
  260. volcenginesdkcloudmonitor/models/tag_for_update_object_group_input.py +175 -0
  261. volcenginesdkcloudmonitor/models/tag_for_update_rule_input.py +175 -0
  262. volcenginesdkcloudmonitor/models/tag_resources_request.py +176 -0
  263. volcenginesdkcloudmonitor/models/tag_resources_response.py +123 -0
  264. volcenginesdkcloudmonitor/models/template_detail_for_list_object_groups_output.py +149 -0
  265. volcenginesdkcloudmonitor/models/template_rule_for_create_alert_template_input.py +279 -0
  266. volcenginesdkcloudmonitor/models/template_rule_for_list_alert_templates_output.py +331 -0
  267. volcenginesdkcloudmonitor/models/template_rule_for_list_preset_alert_templates_output.py +331 -0
  268. volcenginesdkcloudmonitor/models/template_rule_for_update_alert_template_input.py +279 -0
  269. volcenginesdkcloudmonitor/models/tls_target_for_create_event_rule_input.py +227 -0
  270. volcenginesdkcloudmonitor/models/tls_target_for_list_event_rules_output.py +227 -0
  271. volcenginesdkcloudmonitor/models/tls_target_for_update_event_rule_input.py +227 -0
  272. volcenginesdkcloudmonitor/models/top_data_result_for_get_top_data_output.py +149 -0
  273. volcenginesdkcloudmonitor/models/untag_resources_request.py +176 -0
  274. volcenginesdkcloudmonitor/models/untag_resources_response.py +123 -0
  275. volcenginesdkcloudmonitor/models/update_alert_template_request.py +309 -0
  276. volcenginesdkcloudmonitor/models/update_alert_template_response.py +123 -0
  277. volcenginesdktransitrouter/models/create_transit_router_grant_rule_request.py → volcenginesdkcloudmonitor/models/update_contact_group_request.py +40 -41
  278. volcenginesdkcloudmonitor/models/update_contact_group_response.py +123 -0
  279. volcenginesdkcloudmonitor/models/update_contact_group_with_contacts_request.py +150 -0
  280. volcenginesdkcloudmonitor/models/update_contact_group_with_contacts_response.py +123 -0
  281. volcenginesdkcloudmonitor/models/update_contacts_request.py +204 -0
  282. volcenginesdkcloudmonitor/models/update_contacts_response.py +123 -0
  283. volcenginesdkcloudmonitor/models/update_contacts_with_contact_groups_request.py +150 -0
  284. volcenginesdkcloudmonitor/models/update_contacts_with_contact_groups_response.py +123 -0
  285. volcenginesdkcloudmonitor/models/update_event_rule_request.py +564 -0
  286. volcenginesdkcloudmonitor/models/update_event_rule_response.py +123 -0
  287. volcenginesdkcloudmonitor/models/update_notification_request.py +231 -0
  288. volcenginesdkcloudmonitor/models/update_notification_response.py +123 -0
  289. volcenginesdkcloudmonitor/models/update_notify_template_request.py +304 -0
  290. volcenginesdkcloudmonitor/models/update_notify_template_response.py +123 -0
  291. volcenginesdkcloudmonitor/models/update_object_group_request.py +177 -0
  292. volcenginesdkcloudmonitor/models/update_object_group_response.py +123 -0
  293. volcenginesdkcloudmonitor/models/update_rule_request.py +851 -0
  294. volcenginesdkcloudmonitor/models/update_rule_response.py +123 -0
  295. volcenginesdkcloudmonitor/models/update_silence_policy_request.py +283 -0
  296. volcenginesdkcloudmonitor/models/update_silence_policy_response.py +123 -0
  297. volcenginesdkcloudmonitor/models/update_webhook_request.py +205 -0
  298. volcenginesdkcloudmonitor/models/update_webhook_response.py +123 -0
  299. volcenginesdkcore/api_client.py +74 -7
  300. volcenginesdkcore/auth/__init__.py +1 -1
  301. volcenginesdkcore/auth/providers/__init__.py +2 -0
  302. volcenginesdkcore/auth/providers/provider.py +4 -0
  303. volcenginesdkcore/auth/providers/sts_oidc_provider.py +96 -0
  304. volcenginesdkcore/auth/providers/sts_provider.py +9 -4
  305. volcenginesdkcore/auth/providers/sts_saml_provider.py +100 -0
  306. volcenginesdkcore/configuration.py +17 -4
  307. volcenginesdkcore/endpoint/providers/default_provider.py +59 -4
  308. volcenginesdkcore/interceptor/interceptors/request.py +1 -0
  309. volcenginesdkcore/interceptor/interceptors/sign_request_interceptor.py +7 -0
  310. volcenginesdkcore/observability/__init__.py +0 -0
  311. volcenginesdkcore/observability/debugger.py +235 -0
  312. volcenginesdkcore/rest.py +67 -1
  313. volcenginesdkcore/retryer/retry_condition.py +8 -3
  314. volcenginesdkcore/signv4.py +8 -0
  315. volcenginesdkecs/__init__.py +12 -0
  316. volcenginesdkecs/api/ecs_api.py +291 -0
  317. volcenginesdkecs/models/__init__.py +12 -0
  318. volcenginesdkecs/models/create_hpc_cluster_request.py +53 -1
  319. volcenginesdkecs/models/describe_hpc_clusters_request.py +53 -1
  320. volcenginesdkecs/models/describe_system_event_default_action_request.py +124 -0
  321. volcenginesdkecs/models/describe_system_event_default_action_response.py +175 -0
  322. volcenginesdkecs/models/extra_info_for_describe_system_event_default_action_output.py +95 -0
  323. volcenginesdkecs/models/hpc_cluster_for_describe_hpc_clusters_output.py +53 -1
  324. volcenginesdkecs/models/instance_for_describe_instances_output.py +27 -1
  325. volcenginesdkecs/models/modify_system_event_default_action_request.py +210 -0
  326. volcenginesdkecs/models/modify_system_event_default_action_response.py +149 -0
  327. volcenginesdkecs/models/rdma_network_interface_detail_for_describe_instances_output.py +227 -0
  328. volcenginesdkecs/models/related_system_event_for_describe_system_event_default_action_output.py +383 -0
  329. volcenginesdkecs/models/report_instances_status_request.py +280 -0
  330. volcenginesdktransitrouter/models/reject_shared_transit_router_response.py → volcenginesdkecs/models/report_instances_status_response.py +6 -6
  331. volcenginesdkecs/models/tag_filter_for_describe_hpc_clusters_input.py +149 -0
  332. volcenginesdkecs/models/tag_for_create_hpc_cluster_input.py +149 -0
  333. volcenginesdkecs/models/tag_for_describe_hpc_clusters_output.py +149 -0
  334. volcenginesdkprivatezone/__init__.py +1 -1
  335. volcenginesdkprivatezone/models/__init__.py +1 -1
  336. volcenginesdkprivatezone/models/{ip_configs_for_update_resolver_endpoint_input.py → ip_config_for_update_resolver_endpoint_input.py} +21 -21
  337. volcenginesdkprivatezone/models/update_resolver_endpoint_request.py +3 -3
  338. volcenginesdkredis/__init__.py +2 -0
  339. volcenginesdkredis/api/redis_api.py +97 -0
  340. volcenginesdkredis/models/__init__.py +2 -0
  341. volcenginesdkredis/models/instance_for_describe_db_instances_output.py +27 -1
  342. volcenginesdkredis/models/modify_db_instance_private_dns_visibility_request.py +177 -0
  343. volcenginesdkredis/models/modify_db_instance_private_dns_visibility_response.py +95 -0
  344. volcenginesdkredis/models/visit_addr_for_describe_db_instance_detail_output.py +29 -3
  345. volcenginesdktag/models/get_tag_keys_request.py +60 -1
  346. volcenginesdktag/models/get_tag_values_request.py +62 -3
  347. volcenginesdktag/models/get_tags_request.py +34 -1
  348. volcenginesdktransitrouter/__init__.py +1 -13
  349. volcenginesdktransitrouter/api/transitrouter_api.py +0 -582
  350. volcenginesdktransitrouter/models/__init__.py +1 -13
  351. volcenginesdktransitrouter/models/create_transit_router_vpc_attachment_request.py +27 -1
  352. volcenginesdktransitrouter/models/describe_transit_router_flow_logs_response.py +79 -1
  353. volcenginesdktransitrouter/models/describe_transit_router_multicast_groups_response.py +79 -1
  354. volcenginesdktransitrouter/models/describe_transit_router_route_entries_request.py +27 -1
  355. volcenginesdktransitrouter/models/describe_transit_router_route_entries_response.py +3 -55
  356. volcenginesdktransitrouter/models/models.py +1960 -1935
  357. volcenginesdktransitrouter/models/modify_transit_router_vpc_attachment_attributes_request.py +27 -1
  358. volcenginesdktransitrouter/models/modify_transit_router_vpn_attachment_attributes_request.py +27 -1
  359. volcenginesdktransitrouter/models/tag_for_describe_transit_router_flow_logs_output.py +149 -0
  360. volcenginesdktransitrouter/models/transit_router_attachment_for_describe_transit_router_peer_attachments_output.py +3 -3
  361. volcenginesdktransitrouter/models/transit_router_attachment_for_describe_transit_router_vpc_attachments_output.py +53 -1
  362. volcenginesdktransitrouter/models/transit_router_attachment_for_describe_transit_router_vpn_attachments_output.py +30 -4
  363. volcenginesdktransitrouter/models/transit_router_flow_log_for_describe_transit_router_flow_logs_output.py +27 -1
  364. volcenginesdktransitrouter/models/transit_router_for_describe_transit_routers_output.py +27 -1
  365. volcenginesdktransitrouter/models/transit_router_route_entry_for_describe_transit_router_route_entries_output.py +53 -1
  366. volcenginesdkvedbm/__init__.py +54 -0
  367. volcenginesdkvedbm/api/vedbm_api.py +2193 -253
  368. volcenginesdkvedbm/models/__init__.py +54 -0
  369. volcenginesdkvedbm/models/authorized_allow_list_for_describe_instance_allow_lists_output.py +279 -0
  370. volcenginesdkvedbm/models/cancel_schedule_events_request.py +149 -0
  371. volcenginesdktransitrouter/models/accept_shared_transit_router_response.py → volcenginesdkvedbm/models/cancel_schedule_events_response.py +6 -6
  372. volcenginesdkvedbm/models/change_master_request.py +151 -0
  373. volcenginesdkvedbm/models/change_master_response.py +95 -0
  374. volcenginesdkvedbm/models/charge_item_price_for_describe_db_instance_price_detail_output.py +227 -0
  375. volcenginesdkvedbm/models/charge_item_price_for_describe_exist_db_instance_price_output.py +227 -0
  376. volcenginesdkvedbm/models/charge_item_price_for_describe_storage_payable_price_output.py +227 -0
  377. volcenginesdkvedbm/models/config_item_price_for_describe_db_instance_price_detail_output.py +331 -0
  378. volcenginesdkvedbm/models/config_item_price_for_describe_exist_db_instance_price_output.py +331 -0
  379. volcenginesdkvedbm/models/create_db_instance_request.py +1 -1
  380. volcenginesdkvedbm/models/describe_availability_zones_request.py +123 -0
  381. volcenginesdkvedbm/models/describe_availability_zones_response.py +149 -0
  382. volcenginesdkvedbm/models/describe_db_instance_parameter_change_history_request.py +256 -0
  383. volcenginesdkvedbm/models/describe_db_instance_parameter_change_history_response.py +149 -0
  384. volcenginesdkvedbm/models/describe_db_instance_price_detail_request.py +328 -0
  385. volcenginesdkvedbm/models/describe_db_instance_price_detail_response.py +279 -0
  386. volcenginesdkvedbm/models/describe_db_instance_specs_request.py +95 -0
  387. volcenginesdkvedbm/models/describe_db_instance_specs_response.py +149 -0
  388. volcenginesdktransitrouter/models/reject_shared_transit_router_request.py → volcenginesdkvedbm/models/describe_db_instance_version_request.py +22 -22
  389. volcenginesdkvedbm/models/describe_db_instance_version_response.py +175 -0
  390. volcenginesdkvedbm/models/describe_exist_db_instance_price_request.py +248 -0
  391. volcenginesdkvedbm/models/describe_exist_db_instance_price_response.py +279 -0
  392. volcenginesdkvedbm/models/describe_instance_allow_lists_request.py +124 -0
  393. volcenginesdkvedbm/models/describe_instance_allow_lists_response.py +149 -0
  394. volcenginesdkvedbm/models/describe_modifiable_parameters_request.py +199 -0
  395. volcenginesdkvedbm/models/describe_modifiable_parameters_response.py +123 -0
  396. volcenginesdkvedbm/models/describe_regions_request.py +95 -0
  397. volcenginesdkvedbm/models/describe_regions_response.py +123 -0
  398. volcenginesdkvedbm/models/describe_schedule_events_request.py +347 -0
  399. volcenginesdkvedbm/models/describe_schedule_events_response.py +149 -0
  400. volcenginesdkvedbm/models/describe_storage_payable_price_request.py +131 -0
  401. volcenginesdkvedbm/models/describe_storage_payable_price_response.py +123 -0
  402. volcenginesdkvedbm/models/instance_for_describe_exist_db_instance_price_input.py +208 -0
  403. volcenginesdkvedbm/models/modify_allow_list_request.py +1 -1
  404. volcenginesdkvedbm/models/modify_db_endpoint_address_request.py +237 -0
  405. volcenginesdktransitrouter/models/create_transit_router_grant_rule_response.py → volcenginesdkvedbm/models/modify_db_endpoint_address_response.py +6 -6
  406. volcenginesdkvedbm/models/modify_db_endpoint_dns_request.py +95 -0
  407. volcenginesdkvedbm/models/modify_db_endpoint_dns_response.py +95 -0
  408. volcenginesdkvedbm/models/modify_db_instance_charge_type_request.py +295 -0
  409. volcenginesdkvedbm/models/modify_db_instance_charge_type_response.py +149 -0
  410. volcenginesdkvedbm/models/modify_db_instance_deletion_protection_policy_request.py +158 -0
  411. volcenginesdktransitrouter/models/modify_transit_router_grant_rule_attributes_response.py → volcenginesdkvedbm/models/modify_db_instance_deletion_protection_policy_response.py +6 -6
  412. volcenginesdkvedbm/models/modify_db_instance_maintenance_window_request.py +151 -0
  413. volcenginesdkvedbm/models/modify_db_instance_maintenance_window_response.py +95 -0
  414. volcenginesdkvedbm/models/modify_db_node_config_request.py +176 -0
  415. volcenginesdkvedbm/models/modify_db_node_config_response.py +95 -0
  416. volcenginesdkvedbm/models/modify_schedule_events_request.py +182 -0
  417. volcenginesdkvedbm/models/modify_schedule_events_response.py +95 -0
  418. volcenginesdkvedbm/models/node_for_describe_db_instance_detail_output.py +27 -1
  419. volcenginesdkvedbm/models/node_for_describe_db_instances_output.py +27 -1
  420. volcenginesdkvedbm/models/node_spec_for_describe_db_instance_specs_output.py +305 -0
  421. volcenginesdkvedbm/models/node_spec_for_describe_exist_db_instance_price_input.py +182 -0
  422. volcenginesdkvedbm/models/parameter_change_history_for_describe_db_instance_parameter_change_history_output.py +227 -0
  423. volcenginesdkvedbm/models/parameter_for_describe_modifiable_parameters_output.py +357 -0
  424. volcenginesdkvedbm/models/region_for_describe_regions_output.py +149 -0
  425. volcenginesdkvedbm/models/restart_db_instance_request.py +29 -3
  426. volcenginesdkvedbm/models/restore_to_new_instance_request.py +1 -1
  427. volcenginesdkvedbm/models/schedule_tasks_info_for_describe_schedule_events_output.py +435 -0
  428. volcenginesdktransitrouter/models/modify_transit_router_grant_rule_attributes_request.py → volcenginesdkvedbm/models/zone_for_describe_availability_zones_output.py +39 -41
  429. volcenginesdkvod20250101/__init__.py +18 -0
  430. volcenginesdkvod20250101/api/vod20250101_api.py +194 -0
  431. volcenginesdkvod20250101/models/__init__.py +18 -0
  432. volcenginesdkvod20250101/models/bilingual_subtitle_for_get_ai_translation_project_output.py +253 -0
  433. volcenginesdkvod20250101/models/clip_audio_for_create_ai_translation_utterance_output.py +253 -0
  434. volcenginesdkvod20250101/models/clip_video_for_create_ai_translation_utterance_output.py +253 -0
  435. volcenginesdkvod20250101/models/convert_highlight_cuts_for_get_execution_output.py +149 -0
  436. volcenginesdkvod20250101/models/convert_highlight_for_get_execution_output.py +27 -1
  437. volcenginesdkvod20250101/models/create_ai_translation_utterance_request.py +232 -0
  438. volcenginesdkvod20250101/models/create_ai_translation_utterance_response.py +201 -0
  439. volcenginesdkvod20250101/models/highlight_cuts_for_get_execution_output.py +201 -0
  440. volcenginesdkvod20250101/models/highlight_cuts_for_start_execution_input.py +201 -0
  441. volcenginesdkvod20250101/models/highlight_for_get_execution_output.py +53 -1
  442. volcenginesdkvod20250101/models/highlight_for_start_execution_input.py +53 -1
  443. volcenginesdkvod20250101/models/opening_hook_for_get_execution_output.py +227 -0
  444. volcenginesdkvod20250101/models/opening_hook_for_start_execution_input.py +227 -0
  445. volcenginesdkvod20250101/models/project_info_for_get_ai_translation_project_output.py +27 -1
  446. volcenginesdkvod20250101/models/remove_ai_translation_utterance_request.py +178 -0
  447. volcenginesdktransitrouter/models/delete_transit_router_grant_rule_response.py → volcenginesdkvod20250101/models/remove_ai_translation_utterance_response.py +6 -6
  448. volcenginesdkvod20250101/models/source_clip_for_create_ai_translation_utterance_output.py +279 -0
  449. volcenginesdkvod20250101/models/source_utterance_for_create_ai_translation_utterance_output.py +357 -0
  450. volcenginesdkvod20250101/models/storyboard_for_get_execution_output.py +253 -0
  451. volcenginesdkvod20250101/models/subtitle_recognition_config_for_get_ai_translation_project_output.py +81 -3
  452. volcenginesdkvod20250101/models/subtitle_recognition_config_for_list_ai_translation_project_output.py +81 -3
  453. volcenginesdkvod20250101/models/subtitle_recognition_config_for_submit_ai_translation_workflow_input.py +81 -3
  454. volcenginesdkvod20250101/models/target_clip_for_create_ai_translation_utterance_output.py +279 -0
  455. volcenginesdkvod20250101/models/target_utterance_for_create_ai_translation_utterance_output.py +357 -0
  456. volcenginesdkvod20250101/models/trim_for_create_ai_translation_utterance_output.py +149 -0
  457. volcenginesdkvod20250101/models/update_ai_translation_utterances_request.py +27 -1
  458. volcenginesdkvod20250101/models/vision_for_get_execution_output.py +53 -1
  459. volcenginesdkvod20250101/models/vision_for_start_execution_input.py +53 -1
  460. volcenginesdkvpn/__init__.py +4 -0
  461. volcenginesdkvpn/models/__init__.py +4 -0
  462. volcenginesdkvpn/models/bgp_config_for_modify_vpn_connection_tunnel_attributes_input.py +149 -0
  463. volcenginesdkvpn/models/bgp_info_for_describe_vpn_connection_attributes_output.py +3 -3
  464. volcenginesdkvpn/models/bgp_info_for_describe_vpn_connections_output.py +3 -3
  465. volcenginesdkvpn/models/convert_bgp_config_for_create_vpn_connection_input.py +149 -0
  466. volcenginesdkvpn/models/convert_bgp_config_for_modify_vpn_connection_attributes_input.py +149 -0
  467. volcenginesdkvpn/models/create_customer_gateway_request.py +34 -1
  468. volcenginesdkvpn/models/create_ssl_vpn_server_request.py +34 -1
  469. volcenginesdkvpn/models/create_vpn_connection_request.py +27 -1
  470. volcenginesdkvpn/models/create_vpn_gateway_request.py +53 -1
  471. volcenginesdkvpn/models/customer_gateway_for_describe_customer_gateways_output.py +27 -1
  472. volcenginesdkvpn/models/describe_customer_gateways_request.py +27 -1
  473. volcenginesdkvpn/models/describe_vpn_connection_attributes_response.py +27 -1
  474. volcenginesdkvpn/models/describe_vpn_gateway_attributes_response.py +53 -1
  475. volcenginesdkvpn/models/describe_vpn_gateways_request.py +79 -1
  476. volcenginesdkvpn/models/modify_ssl_vpn_server_request.py +34 -1
  477. volcenginesdkvpn/models/modify_vpn_connection_attributes_request.py +53 -1
  478. volcenginesdkvpn/models/modify_vpn_connection_tunnel_attributes_request.py +27 -1
  479. volcenginesdkvpn/models/ssl_vpn_server_for_describe_ssl_vpn_servers_output.py +27 -1
  480. volcenginesdkvpn/models/tunnel_bgp_info_for_describe_vpn_connection_attributes_output.py +279 -0
  481. volcenginesdkvpn/models/tunnel_option_for_create_vpn_connection_input.py +27 -1
  482. volcenginesdkvpn/models/tunnel_option_for_describe_vpn_connection_attributes_output.py +27 -1
  483. volcenginesdkvpn/models/tunnel_option_for_describe_vpn_connections_output.py +27 -1
  484. volcenginesdkvpn/models/tunnel_option_for_modify_vpn_connection_attributes_input.py +27 -1
  485. volcenginesdkvpn/models/vpn_gateway_for_describe_vpn_gateways_billing_output.py +53 -1
  486. volcenginesdkvpn/models/vpn_gateway_for_describe_vpn_gateways_output.py +53 -1
  487. volcenginesdktransitrouter/models/transit_router_grant_rule_for_describe_transit_router_grant_rules_output.py +0 -253
  488. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.23.dist-info}/WHEEL +0 -0
  489. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.23.dist-info}/licenses/LICENSE.txt +0 -0
  490. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.23.dist-info}/licenses/NOTICE.md +0 -0
@@ -0,0 +1,357 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ vod20250101
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class SourceUtteranceForCreateAITranslationUtteranceOutput(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'blueprint_id': 'str',
37
+ 'clip_id': 'str',
38
+ 'id': 'str',
39
+ 'is_facial_translation': 'bool',
40
+ 'project_id': 'str',
41
+ 'source_id': 'str',
42
+ 'speaker_id': 'str',
43
+ 'status': 'str',
44
+ 'text': 'str',
45
+ 'translation_type': 'str'
46
+ }
47
+
48
+ attribute_map = {
49
+ 'blueprint_id': 'BlueprintId',
50
+ 'clip_id': 'ClipId',
51
+ 'id': 'Id',
52
+ 'is_facial_translation': 'IsFacialTranslation',
53
+ 'project_id': 'ProjectId',
54
+ 'source_id': 'SourceId',
55
+ 'speaker_id': 'SpeakerId',
56
+ 'status': 'Status',
57
+ 'text': 'Text',
58
+ 'translation_type': 'TranslationType'
59
+ }
60
+
61
+ def __init__(self, blueprint_id=None, clip_id=None, id=None, is_facial_translation=None, project_id=None, source_id=None, speaker_id=None, status=None, text=None, translation_type=None, _configuration=None): # noqa: E501
62
+ """SourceUtteranceForCreateAITranslationUtteranceOutput - a model defined in Swagger""" # noqa: E501
63
+ if _configuration is None:
64
+ _configuration = Configuration()
65
+ self._configuration = _configuration
66
+
67
+ self._blueprint_id = None
68
+ self._clip_id = None
69
+ self._id = None
70
+ self._is_facial_translation = None
71
+ self._project_id = None
72
+ self._source_id = None
73
+ self._speaker_id = None
74
+ self._status = None
75
+ self._text = None
76
+ self._translation_type = None
77
+ self.discriminator = None
78
+
79
+ if blueprint_id is not None:
80
+ self.blueprint_id = blueprint_id
81
+ if clip_id is not None:
82
+ self.clip_id = clip_id
83
+ if id is not None:
84
+ self.id = id
85
+ if is_facial_translation is not None:
86
+ self.is_facial_translation = is_facial_translation
87
+ if project_id is not None:
88
+ self.project_id = project_id
89
+ if source_id is not None:
90
+ self.source_id = source_id
91
+ if speaker_id is not None:
92
+ self.speaker_id = speaker_id
93
+ if status is not None:
94
+ self.status = status
95
+ if text is not None:
96
+ self.text = text
97
+ if translation_type is not None:
98
+ self.translation_type = translation_type
99
+
100
+ @property
101
+ def blueprint_id(self):
102
+ """Gets the blueprint_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
103
+
104
+
105
+ :return: The blueprint_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
106
+ :rtype: str
107
+ """
108
+ return self._blueprint_id
109
+
110
+ @blueprint_id.setter
111
+ def blueprint_id(self, blueprint_id):
112
+ """Sets the blueprint_id of this SourceUtteranceForCreateAITranslationUtteranceOutput.
113
+
114
+
115
+ :param blueprint_id: The blueprint_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
116
+ :type: str
117
+ """
118
+
119
+ self._blueprint_id = blueprint_id
120
+
121
+ @property
122
+ def clip_id(self):
123
+ """Gets the clip_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
124
+
125
+
126
+ :return: The clip_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
127
+ :rtype: str
128
+ """
129
+ return self._clip_id
130
+
131
+ @clip_id.setter
132
+ def clip_id(self, clip_id):
133
+ """Sets the clip_id of this SourceUtteranceForCreateAITranslationUtteranceOutput.
134
+
135
+
136
+ :param clip_id: The clip_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
137
+ :type: str
138
+ """
139
+
140
+ self._clip_id = clip_id
141
+
142
+ @property
143
+ def id(self):
144
+ """Gets the id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
145
+
146
+
147
+ :return: The id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
148
+ :rtype: str
149
+ """
150
+ return self._id
151
+
152
+ @id.setter
153
+ def id(self, id):
154
+ """Sets the id of this SourceUtteranceForCreateAITranslationUtteranceOutput.
155
+
156
+
157
+ :param id: The id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
158
+ :type: str
159
+ """
160
+
161
+ self._id = id
162
+
163
+ @property
164
+ def is_facial_translation(self):
165
+ """Gets the is_facial_translation of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
166
+
167
+
168
+ :return: The is_facial_translation of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
169
+ :rtype: bool
170
+ """
171
+ return self._is_facial_translation
172
+
173
+ @is_facial_translation.setter
174
+ def is_facial_translation(self, is_facial_translation):
175
+ """Sets the is_facial_translation of this SourceUtteranceForCreateAITranslationUtteranceOutput.
176
+
177
+
178
+ :param is_facial_translation: The is_facial_translation of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
179
+ :type: bool
180
+ """
181
+
182
+ self._is_facial_translation = is_facial_translation
183
+
184
+ @property
185
+ def project_id(self):
186
+ """Gets the project_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
187
+
188
+
189
+ :return: The project_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
190
+ :rtype: str
191
+ """
192
+ return self._project_id
193
+
194
+ @project_id.setter
195
+ def project_id(self, project_id):
196
+ """Sets the project_id of this SourceUtteranceForCreateAITranslationUtteranceOutput.
197
+
198
+
199
+ :param project_id: The project_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
200
+ :type: str
201
+ """
202
+
203
+ self._project_id = project_id
204
+
205
+ @property
206
+ def source_id(self):
207
+ """Gets the source_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
208
+
209
+
210
+ :return: The source_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
211
+ :rtype: str
212
+ """
213
+ return self._source_id
214
+
215
+ @source_id.setter
216
+ def source_id(self, source_id):
217
+ """Sets the source_id of this SourceUtteranceForCreateAITranslationUtteranceOutput.
218
+
219
+
220
+ :param source_id: The source_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
221
+ :type: str
222
+ """
223
+
224
+ self._source_id = source_id
225
+
226
+ @property
227
+ def speaker_id(self):
228
+ """Gets the speaker_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
229
+
230
+
231
+ :return: The speaker_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
232
+ :rtype: str
233
+ """
234
+ return self._speaker_id
235
+
236
+ @speaker_id.setter
237
+ def speaker_id(self, speaker_id):
238
+ """Sets the speaker_id of this SourceUtteranceForCreateAITranslationUtteranceOutput.
239
+
240
+
241
+ :param speaker_id: The speaker_id of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
242
+ :type: str
243
+ """
244
+
245
+ self._speaker_id = speaker_id
246
+
247
+ @property
248
+ def status(self):
249
+ """Gets the status of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
250
+
251
+
252
+ :return: The status of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
253
+ :rtype: str
254
+ """
255
+ return self._status
256
+
257
+ @status.setter
258
+ def status(self, status):
259
+ """Sets the status of this SourceUtteranceForCreateAITranslationUtteranceOutput.
260
+
261
+
262
+ :param status: The status of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
263
+ :type: str
264
+ """
265
+
266
+ self._status = status
267
+
268
+ @property
269
+ def text(self):
270
+ """Gets the text of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
271
+
272
+
273
+ :return: The text of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
274
+ :rtype: str
275
+ """
276
+ return self._text
277
+
278
+ @text.setter
279
+ def text(self, text):
280
+ """Sets the text of this SourceUtteranceForCreateAITranslationUtteranceOutput.
281
+
282
+
283
+ :param text: The text of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
284
+ :type: str
285
+ """
286
+
287
+ self._text = text
288
+
289
+ @property
290
+ def translation_type(self):
291
+ """Gets the translation_type of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
292
+
293
+
294
+ :return: The translation_type of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
295
+ :rtype: str
296
+ """
297
+ return self._translation_type
298
+
299
+ @translation_type.setter
300
+ def translation_type(self, translation_type):
301
+ """Sets the translation_type of this SourceUtteranceForCreateAITranslationUtteranceOutput.
302
+
303
+
304
+ :param translation_type: The translation_type of this SourceUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
305
+ :type: str
306
+ """
307
+
308
+ self._translation_type = translation_type
309
+
310
+ def to_dict(self):
311
+ """Returns the model properties as a dict"""
312
+ result = {}
313
+
314
+ for attr, _ in six.iteritems(self.swagger_types):
315
+ value = getattr(self, attr)
316
+ if isinstance(value, list):
317
+ result[attr] = list(map(
318
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
319
+ value
320
+ ))
321
+ elif hasattr(value, "to_dict"):
322
+ result[attr] = value.to_dict()
323
+ elif isinstance(value, dict):
324
+ result[attr] = dict(map(
325
+ lambda item: (item[0], item[1].to_dict())
326
+ if hasattr(item[1], "to_dict") else item,
327
+ value.items()
328
+ ))
329
+ else:
330
+ result[attr] = value
331
+ if issubclass(SourceUtteranceForCreateAITranslationUtteranceOutput, dict):
332
+ for key, value in self.items():
333
+ result[key] = value
334
+
335
+ return result
336
+
337
+ def to_str(self):
338
+ """Returns the string representation of the model"""
339
+ return pprint.pformat(self.to_dict())
340
+
341
+ def __repr__(self):
342
+ """For `print` and `pprint`"""
343
+ return self.to_str()
344
+
345
+ def __eq__(self, other):
346
+ """Returns true if both objects are equal"""
347
+ if not isinstance(other, SourceUtteranceForCreateAITranslationUtteranceOutput):
348
+ return False
349
+
350
+ return self.to_dict() == other.to_dict()
351
+
352
+ def __ne__(self, other):
353
+ """Returns true if both objects are not equal"""
354
+ if not isinstance(other, SourceUtteranceForCreateAITranslationUtteranceOutput):
355
+ return True
356
+
357
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,253 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ vod20250101
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class StoryboardForGetExecutionOutput(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'description': 'str',
37
+ 'end': 'float',
38
+ 'ocr': 'str',
39
+ 'score': 'float',
40
+ 'start': 'float',
41
+ 'video_index': 'int'
42
+ }
43
+
44
+ attribute_map = {
45
+ 'description': 'Description',
46
+ 'end': 'End',
47
+ 'ocr': 'Ocr',
48
+ 'score': 'Score',
49
+ 'start': 'Start',
50
+ 'video_index': 'VideoIndex'
51
+ }
52
+
53
+ def __init__(self, description=None, end=None, ocr=None, score=None, start=None, video_index=None, _configuration=None): # noqa: E501
54
+ """StoryboardForGetExecutionOutput - a model defined in Swagger""" # noqa: E501
55
+ if _configuration is None:
56
+ _configuration = Configuration()
57
+ self._configuration = _configuration
58
+
59
+ self._description = None
60
+ self._end = None
61
+ self._ocr = None
62
+ self._score = None
63
+ self._start = None
64
+ self._video_index = None
65
+ self.discriminator = None
66
+
67
+ if description is not None:
68
+ self.description = description
69
+ if end is not None:
70
+ self.end = end
71
+ if ocr is not None:
72
+ self.ocr = ocr
73
+ if score is not None:
74
+ self.score = score
75
+ if start is not None:
76
+ self.start = start
77
+ if video_index is not None:
78
+ self.video_index = video_index
79
+
80
+ @property
81
+ def description(self):
82
+ """Gets the description of this StoryboardForGetExecutionOutput. # noqa: E501
83
+
84
+
85
+ :return: The description of this StoryboardForGetExecutionOutput. # noqa: E501
86
+ :rtype: str
87
+ """
88
+ return self._description
89
+
90
+ @description.setter
91
+ def description(self, description):
92
+ """Sets the description of this StoryboardForGetExecutionOutput.
93
+
94
+
95
+ :param description: The description of this StoryboardForGetExecutionOutput. # noqa: E501
96
+ :type: str
97
+ """
98
+
99
+ self._description = description
100
+
101
+ @property
102
+ def end(self):
103
+ """Gets the end of this StoryboardForGetExecutionOutput. # noqa: E501
104
+
105
+
106
+ :return: The end of this StoryboardForGetExecutionOutput. # noqa: E501
107
+ :rtype: float
108
+ """
109
+ return self._end
110
+
111
+ @end.setter
112
+ def end(self, end):
113
+ """Sets the end of this StoryboardForGetExecutionOutput.
114
+
115
+
116
+ :param end: The end of this StoryboardForGetExecutionOutput. # noqa: E501
117
+ :type: float
118
+ """
119
+
120
+ self._end = end
121
+
122
+ @property
123
+ def ocr(self):
124
+ """Gets the ocr of this StoryboardForGetExecutionOutput. # noqa: E501
125
+
126
+
127
+ :return: The ocr of this StoryboardForGetExecutionOutput. # noqa: E501
128
+ :rtype: str
129
+ """
130
+ return self._ocr
131
+
132
+ @ocr.setter
133
+ def ocr(self, ocr):
134
+ """Sets the ocr of this StoryboardForGetExecutionOutput.
135
+
136
+
137
+ :param ocr: The ocr of this StoryboardForGetExecutionOutput. # noqa: E501
138
+ :type: str
139
+ """
140
+
141
+ self._ocr = ocr
142
+
143
+ @property
144
+ def score(self):
145
+ """Gets the score of this StoryboardForGetExecutionOutput. # noqa: E501
146
+
147
+
148
+ :return: The score of this StoryboardForGetExecutionOutput. # noqa: E501
149
+ :rtype: float
150
+ """
151
+ return self._score
152
+
153
+ @score.setter
154
+ def score(self, score):
155
+ """Sets the score of this StoryboardForGetExecutionOutput.
156
+
157
+
158
+ :param score: The score of this StoryboardForGetExecutionOutput. # noqa: E501
159
+ :type: float
160
+ """
161
+
162
+ self._score = score
163
+
164
+ @property
165
+ def start(self):
166
+ """Gets the start of this StoryboardForGetExecutionOutput. # noqa: E501
167
+
168
+
169
+ :return: The start of this StoryboardForGetExecutionOutput. # noqa: E501
170
+ :rtype: float
171
+ """
172
+ return self._start
173
+
174
+ @start.setter
175
+ def start(self, start):
176
+ """Sets the start of this StoryboardForGetExecutionOutput.
177
+
178
+
179
+ :param start: The start of this StoryboardForGetExecutionOutput. # noqa: E501
180
+ :type: float
181
+ """
182
+
183
+ self._start = start
184
+
185
+ @property
186
+ def video_index(self):
187
+ """Gets the video_index of this StoryboardForGetExecutionOutput. # noqa: E501
188
+
189
+
190
+ :return: The video_index of this StoryboardForGetExecutionOutput. # noqa: E501
191
+ :rtype: int
192
+ """
193
+ return self._video_index
194
+
195
+ @video_index.setter
196
+ def video_index(self, video_index):
197
+ """Sets the video_index of this StoryboardForGetExecutionOutput.
198
+
199
+
200
+ :param video_index: The video_index of this StoryboardForGetExecutionOutput. # noqa: E501
201
+ :type: int
202
+ """
203
+
204
+ self._video_index = video_index
205
+
206
+ def to_dict(self):
207
+ """Returns the model properties as a dict"""
208
+ result = {}
209
+
210
+ for attr, _ in six.iteritems(self.swagger_types):
211
+ value = getattr(self, attr)
212
+ if isinstance(value, list):
213
+ result[attr] = list(map(
214
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
215
+ value
216
+ ))
217
+ elif hasattr(value, "to_dict"):
218
+ result[attr] = value.to_dict()
219
+ elif isinstance(value, dict):
220
+ result[attr] = dict(map(
221
+ lambda item: (item[0], item[1].to_dict())
222
+ if hasattr(item[1], "to_dict") else item,
223
+ value.items()
224
+ ))
225
+ else:
226
+ result[attr] = value
227
+ if issubclass(StoryboardForGetExecutionOutput, dict):
228
+ for key, value in self.items():
229
+ result[key] = value
230
+
231
+ return result
232
+
233
+ def to_str(self):
234
+ """Returns the string representation of the model"""
235
+ return pprint.pformat(self.to_dict())
236
+
237
+ def __repr__(self):
238
+ """For `print` and `pprint`"""
239
+ return self.to_str()
240
+
241
+ def __eq__(self, other):
242
+ """Returns true if both objects are equal"""
243
+ if not isinstance(other, StoryboardForGetExecutionOutput):
244
+ return False
245
+
246
+ return self.to_dict() == other.to_dict()
247
+
248
+ def __ne__(self, other):
249
+ """Returns true if both objects are not equal"""
250
+ if not isinstance(other, StoryboardForGetExecutionOutput):
251
+ return True
252
+
253
+ return self.to_dict() != other.to_dict()