volcengine-python-sdk 4.0.21__py2.py3-none-any.whl → 4.0.22__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 (483) hide show
  1. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.22.dist-info}/METADATA +1 -1
  2. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.22.dist-info}/RECORD +482 -110
  3. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.22.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. volcenginesdktag/models/get_tag_keys_request.py +60 -1
  339. volcenginesdktag/models/get_tag_values_request.py +62 -3
  340. volcenginesdktag/models/get_tags_request.py +34 -1
  341. volcenginesdktransitrouter/__init__.py +1 -13
  342. volcenginesdktransitrouter/api/transitrouter_api.py +0 -582
  343. volcenginesdktransitrouter/models/__init__.py +1 -13
  344. volcenginesdktransitrouter/models/create_transit_router_vpc_attachment_request.py +27 -1
  345. volcenginesdktransitrouter/models/describe_transit_router_flow_logs_response.py +79 -1
  346. volcenginesdktransitrouter/models/describe_transit_router_multicast_groups_response.py +79 -1
  347. volcenginesdktransitrouter/models/describe_transit_router_route_entries_request.py +27 -1
  348. volcenginesdktransitrouter/models/describe_transit_router_route_entries_response.py +3 -55
  349. volcenginesdktransitrouter/models/models.py +1960 -1935
  350. volcenginesdktransitrouter/models/modify_transit_router_vpc_attachment_attributes_request.py +27 -1
  351. volcenginesdktransitrouter/models/modify_transit_router_vpn_attachment_attributes_request.py +27 -1
  352. volcenginesdktransitrouter/models/tag_for_describe_transit_router_flow_logs_output.py +149 -0
  353. volcenginesdktransitrouter/models/transit_router_attachment_for_describe_transit_router_peer_attachments_output.py +3 -3
  354. volcenginesdktransitrouter/models/transit_router_attachment_for_describe_transit_router_vpc_attachments_output.py +53 -1
  355. volcenginesdktransitrouter/models/transit_router_attachment_for_describe_transit_router_vpn_attachments_output.py +30 -4
  356. volcenginesdktransitrouter/models/transit_router_flow_log_for_describe_transit_router_flow_logs_output.py +27 -1
  357. volcenginesdktransitrouter/models/transit_router_for_describe_transit_routers_output.py +27 -1
  358. volcenginesdktransitrouter/models/transit_router_route_entry_for_describe_transit_router_route_entries_output.py +53 -1
  359. volcenginesdkvedbm/__init__.py +54 -0
  360. volcenginesdkvedbm/api/vedbm_api.py +2193 -253
  361. volcenginesdkvedbm/models/__init__.py +54 -0
  362. volcenginesdkvedbm/models/authorized_allow_list_for_describe_instance_allow_lists_output.py +279 -0
  363. volcenginesdkvedbm/models/cancel_schedule_events_request.py +149 -0
  364. volcenginesdktransitrouter/models/accept_shared_transit_router_response.py → volcenginesdkvedbm/models/cancel_schedule_events_response.py +6 -6
  365. volcenginesdkvedbm/models/change_master_request.py +151 -0
  366. volcenginesdkvedbm/models/change_master_response.py +95 -0
  367. volcenginesdkvedbm/models/charge_item_price_for_describe_db_instance_price_detail_output.py +227 -0
  368. volcenginesdkvedbm/models/charge_item_price_for_describe_exist_db_instance_price_output.py +227 -0
  369. volcenginesdkvedbm/models/charge_item_price_for_describe_storage_payable_price_output.py +227 -0
  370. volcenginesdkvedbm/models/config_item_price_for_describe_db_instance_price_detail_output.py +331 -0
  371. volcenginesdkvedbm/models/config_item_price_for_describe_exist_db_instance_price_output.py +331 -0
  372. volcenginesdkvedbm/models/create_db_instance_request.py +1 -1
  373. volcenginesdkvedbm/models/describe_availability_zones_request.py +123 -0
  374. volcenginesdkvedbm/models/describe_availability_zones_response.py +149 -0
  375. volcenginesdkvedbm/models/describe_db_instance_parameter_change_history_request.py +256 -0
  376. volcenginesdkvedbm/models/describe_db_instance_parameter_change_history_response.py +149 -0
  377. volcenginesdkvedbm/models/describe_db_instance_price_detail_request.py +328 -0
  378. volcenginesdkvedbm/models/describe_db_instance_price_detail_response.py +279 -0
  379. volcenginesdkvedbm/models/describe_db_instance_specs_request.py +95 -0
  380. volcenginesdkvedbm/models/describe_db_instance_specs_response.py +149 -0
  381. volcenginesdktransitrouter/models/reject_shared_transit_router_request.py → volcenginesdkvedbm/models/describe_db_instance_version_request.py +22 -22
  382. volcenginesdkvedbm/models/describe_db_instance_version_response.py +175 -0
  383. volcenginesdkvedbm/models/describe_exist_db_instance_price_request.py +248 -0
  384. volcenginesdkvedbm/models/describe_exist_db_instance_price_response.py +279 -0
  385. volcenginesdkvedbm/models/describe_instance_allow_lists_request.py +124 -0
  386. volcenginesdkvedbm/models/describe_instance_allow_lists_response.py +149 -0
  387. volcenginesdkvedbm/models/describe_modifiable_parameters_request.py +199 -0
  388. volcenginesdkvedbm/models/describe_modifiable_parameters_response.py +123 -0
  389. volcenginesdkvedbm/models/describe_regions_request.py +95 -0
  390. volcenginesdkvedbm/models/describe_regions_response.py +123 -0
  391. volcenginesdkvedbm/models/describe_schedule_events_request.py +347 -0
  392. volcenginesdkvedbm/models/describe_schedule_events_response.py +149 -0
  393. volcenginesdkvedbm/models/describe_storage_payable_price_request.py +131 -0
  394. volcenginesdkvedbm/models/describe_storage_payable_price_response.py +123 -0
  395. volcenginesdkvedbm/models/instance_for_describe_exist_db_instance_price_input.py +208 -0
  396. volcenginesdkvedbm/models/modify_allow_list_request.py +1 -1
  397. volcenginesdkvedbm/models/modify_db_endpoint_address_request.py +237 -0
  398. volcenginesdktransitrouter/models/create_transit_router_grant_rule_response.py → volcenginesdkvedbm/models/modify_db_endpoint_address_response.py +6 -6
  399. volcenginesdkvedbm/models/modify_db_endpoint_dns_request.py +95 -0
  400. volcenginesdkvedbm/models/modify_db_endpoint_dns_response.py +95 -0
  401. volcenginesdkvedbm/models/modify_db_instance_charge_type_request.py +295 -0
  402. volcenginesdkvedbm/models/modify_db_instance_charge_type_response.py +149 -0
  403. volcenginesdkvedbm/models/modify_db_instance_deletion_protection_policy_request.py +158 -0
  404. volcenginesdktransitrouter/models/modify_transit_router_grant_rule_attributes_response.py → volcenginesdkvedbm/models/modify_db_instance_deletion_protection_policy_response.py +6 -6
  405. volcenginesdkvedbm/models/modify_db_instance_maintenance_window_request.py +151 -0
  406. volcenginesdkvedbm/models/modify_db_instance_maintenance_window_response.py +95 -0
  407. volcenginesdkvedbm/models/modify_db_node_config_request.py +176 -0
  408. volcenginesdkvedbm/models/modify_db_node_config_response.py +95 -0
  409. volcenginesdkvedbm/models/modify_schedule_events_request.py +182 -0
  410. volcenginesdkvedbm/models/modify_schedule_events_response.py +95 -0
  411. volcenginesdkvedbm/models/node_for_describe_db_instance_detail_output.py +27 -1
  412. volcenginesdkvedbm/models/node_for_describe_db_instances_output.py +27 -1
  413. volcenginesdkvedbm/models/node_spec_for_describe_db_instance_specs_output.py +305 -0
  414. volcenginesdkvedbm/models/node_spec_for_describe_exist_db_instance_price_input.py +182 -0
  415. volcenginesdkvedbm/models/parameter_change_history_for_describe_db_instance_parameter_change_history_output.py +227 -0
  416. volcenginesdkvedbm/models/parameter_for_describe_modifiable_parameters_output.py +357 -0
  417. volcenginesdkvedbm/models/region_for_describe_regions_output.py +149 -0
  418. volcenginesdkvedbm/models/restart_db_instance_request.py +29 -3
  419. volcenginesdkvedbm/models/restore_to_new_instance_request.py +1 -1
  420. volcenginesdkvedbm/models/schedule_tasks_info_for_describe_schedule_events_output.py +435 -0
  421. volcenginesdktransitrouter/models/modify_transit_router_grant_rule_attributes_request.py → volcenginesdkvedbm/models/zone_for_describe_availability_zones_output.py +39 -41
  422. volcenginesdkvod20250101/__init__.py +18 -0
  423. volcenginesdkvod20250101/api/vod20250101_api.py +194 -0
  424. volcenginesdkvod20250101/models/__init__.py +18 -0
  425. volcenginesdkvod20250101/models/bilingual_subtitle_for_get_ai_translation_project_output.py +253 -0
  426. volcenginesdkvod20250101/models/clip_audio_for_create_ai_translation_utterance_output.py +253 -0
  427. volcenginesdkvod20250101/models/clip_video_for_create_ai_translation_utterance_output.py +253 -0
  428. volcenginesdkvod20250101/models/convert_highlight_cuts_for_get_execution_output.py +149 -0
  429. volcenginesdkvod20250101/models/convert_highlight_for_get_execution_output.py +27 -1
  430. volcenginesdkvod20250101/models/create_ai_translation_utterance_request.py +232 -0
  431. volcenginesdkvod20250101/models/create_ai_translation_utterance_response.py +201 -0
  432. volcenginesdkvod20250101/models/highlight_cuts_for_get_execution_output.py +201 -0
  433. volcenginesdkvod20250101/models/highlight_cuts_for_start_execution_input.py +201 -0
  434. volcenginesdkvod20250101/models/highlight_for_get_execution_output.py +53 -1
  435. volcenginesdkvod20250101/models/highlight_for_start_execution_input.py +53 -1
  436. volcenginesdkvod20250101/models/opening_hook_for_get_execution_output.py +227 -0
  437. volcenginesdkvod20250101/models/opening_hook_for_start_execution_input.py +227 -0
  438. volcenginesdkvod20250101/models/project_info_for_get_ai_translation_project_output.py +27 -1
  439. volcenginesdkvod20250101/models/remove_ai_translation_utterance_request.py +178 -0
  440. volcenginesdktransitrouter/models/delete_transit_router_grant_rule_response.py → volcenginesdkvod20250101/models/remove_ai_translation_utterance_response.py +6 -6
  441. volcenginesdkvod20250101/models/source_clip_for_create_ai_translation_utterance_output.py +279 -0
  442. volcenginesdkvod20250101/models/source_utterance_for_create_ai_translation_utterance_output.py +357 -0
  443. volcenginesdkvod20250101/models/storyboard_for_get_execution_output.py +253 -0
  444. volcenginesdkvod20250101/models/subtitle_recognition_config_for_get_ai_translation_project_output.py +81 -3
  445. volcenginesdkvod20250101/models/subtitle_recognition_config_for_list_ai_translation_project_output.py +81 -3
  446. volcenginesdkvod20250101/models/subtitle_recognition_config_for_submit_ai_translation_workflow_input.py +81 -3
  447. volcenginesdkvod20250101/models/target_clip_for_create_ai_translation_utterance_output.py +279 -0
  448. volcenginesdkvod20250101/models/target_utterance_for_create_ai_translation_utterance_output.py +357 -0
  449. volcenginesdkvod20250101/models/trim_for_create_ai_translation_utterance_output.py +149 -0
  450. volcenginesdkvod20250101/models/update_ai_translation_utterances_request.py +27 -1
  451. volcenginesdkvod20250101/models/vision_for_get_execution_output.py +53 -1
  452. volcenginesdkvod20250101/models/vision_for_start_execution_input.py +53 -1
  453. volcenginesdkvpn/__init__.py +4 -0
  454. volcenginesdkvpn/models/__init__.py +4 -0
  455. volcenginesdkvpn/models/bgp_config_for_modify_vpn_connection_tunnel_attributes_input.py +149 -0
  456. volcenginesdkvpn/models/bgp_info_for_describe_vpn_connection_attributes_output.py +3 -3
  457. volcenginesdkvpn/models/bgp_info_for_describe_vpn_connections_output.py +3 -3
  458. volcenginesdkvpn/models/convert_bgp_config_for_create_vpn_connection_input.py +149 -0
  459. volcenginesdkvpn/models/convert_bgp_config_for_modify_vpn_connection_attributes_input.py +149 -0
  460. volcenginesdkvpn/models/create_customer_gateway_request.py +34 -1
  461. volcenginesdkvpn/models/create_ssl_vpn_server_request.py +34 -1
  462. volcenginesdkvpn/models/create_vpn_connection_request.py +27 -1
  463. volcenginesdkvpn/models/create_vpn_gateway_request.py +53 -1
  464. volcenginesdkvpn/models/customer_gateway_for_describe_customer_gateways_output.py +27 -1
  465. volcenginesdkvpn/models/describe_customer_gateways_request.py +27 -1
  466. volcenginesdkvpn/models/describe_vpn_connection_attributes_response.py +27 -1
  467. volcenginesdkvpn/models/describe_vpn_gateway_attributes_response.py +53 -1
  468. volcenginesdkvpn/models/describe_vpn_gateways_request.py +79 -1
  469. volcenginesdkvpn/models/modify_ssl_vpn_server_request.py +34 -1
  470. volcenginesdkvpn/models/modify_vpn_connection_attributes_request.py +53 -1
  471. volcenginesdkvpn/models/modify_vpn_connection_tunnel_attributes_request.py +27 -1
  472. volcenginesdkvpn/models/ssl_vpn_server_for_describe_ssl_vpn_servers_output.py +27 -1
  473. volcenginesdkvpn/models/tunnel_bgp_info_for_describe_vpn_connection_attributes_output.py +279 -0
  474. volcenginesdkvpn/models/tunnel_option_for_create_vpn_connection_input.py +27 -1
  475. volcenginesdkvpn/models/tunnel_option_for_describe_vpn_connection_attributes_output.py +27 -1
  476. volcenginesdkvpn/models/tunnel_option_for_describe_vpn_connections_output.py +27 -1
  477. volcenginesdkvpn/models/tunnel_option_for_modify_vpn_connection_attributes_input.py +27 -1
  478. volcenginesdkvpn/models/vpn_gateway_for_describe_vpn_gateways_billing_output.py +53 -1
  479. volcenginesdkvpn/models/vpn_gateway_for_describe_vpn_gateways_output.py +53 -1
  480. volcenginesdktransitrouter/models/transit_router_grant_rule_for_describe_transit_router_grant_rules_output.py +0 -253
  481. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.22.dist-info}/WHEEL +0 -0
  482. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.22.dist-info}/licenses/LICENSE.txt +0 -0
  483. {volcengine_python_sdk-4.0.21.dist-info → volcengine_python_sdk-4.0.22.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 TargetUtteranceForCreateAITranslationUtteranceOutput(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
+ """TargetUtteranceForCreateAITranslationUtteranceOutput - 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 TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
103
+
104
+
105
+ :return: The blueprint_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
113
+
114
+
115
+ :param blueprint_id: The blueprint_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
124
+
125
+
126
+ :return: The clip_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
134
+
135
+
136
+ :param clip_id: The clip_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
145
+
146
+
147
+ :return: The id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
155
+
156
+
157
+ :param id: The id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
166
+
167
+
168
+ :return: The is_facial_translation of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
176
+
177
+
178
+ :param is_facial_translation: The is_facial_translation of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
187
+
188
+
189
+ :return: The project_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
197
+
198
+
199
+ :param project_id: The project_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
208
+
209
+
210
+ :return: The source_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
218
+
219
+
220
+ :param source_id: The source_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
229
+
230
+
231
+ :return: The speaker_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
239
+
240
+
241
+ :param speaker_id: The speaker_id of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
250
+
251
+
252
+ :return: The status of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
260
+
261
+
262
+ :param status: The status of this TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
263
+ :type: str
264
+ """
265
+
266
+ self._status = status
267
+
268
+ @property
269
+ def text(self):
270
+ """Gets the text of this TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
271
+
272
+
273
+ :return: The text of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
281
+
282
+
283
+ :param text: The text of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput. # noqa: E501
292
+
293
+
294
+ :return: The translation_type of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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 TargetUtteranceForCreateAITranslationUtteranceOutput.
302
+
303
+
304
+ :param translation_type: The translation_type of this TargetUtteranceForCreateAITranslationUtteranceOutput. # 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(TargetUtteranceForCreateAITranslationUtteranceOutput, 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, TargetUtteranceForCreateAITranslationUtteranceOutput):
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, TargetUtteranceForCreateAITranslationUtteranceOutput):
355
+ return True
356
+
357
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,149 @@
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 TrimForCreateAITranslationUtteranceOutput(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
+ 'end': 'int',
37
+ 'start': 'int'
38
+ }
39
+
40
+ attribute_map = {
41
+ 'end': 'End',
42
+ 'start': 'Start'
43
+ }
44
+
45
+ def __init__(self, end=None, start=None, _configuration=None): # noqa: E501
46
+ """TrimForCreateAITranslationUtteranceOutput - a model defined in Swagger""" # noqa: E501
47
+ if _configuration is None:
48
+ _configuration = Configuration()
49
+ self._configuration = _configuration
50
+
51
+ self._end = None
52
+ self._start = None
53
+ self.discriminator = None
54
+
55
+ if end is not None:
56
+ self.end = end
57
+ if start is not None:
58
+ self.start = start
59
+
60
+ @property
61
+ def end(self):
62
+ """Gets the end of this TrimForCreateAITranslationUtteranceOutput. # noqa: E501
63
+
64
+
65
+ :return: The end of this TrimForCreateAITranslationUtteranceOutput. # noqa: E501
66
+ :rtype: int
67
+ """
68
+ return self._end
69
+
70
+ @end.setter
71
+ def end(self, end):
72
+ """Sets the end of this TrimForCreateAITranslationUtteranceOutput.
73
+
74
+
75
+ :param end: The end of this TrimForCreateAITranslationUtteranceOutput. # noqa: E501
76
+ :type: int
77
+ """
78
+
79
+ self._end = end
80
+
81
+ @property
82
+ def start(self):
83
+ """Gets the start of this TrimForCreateAITranslationUtteranceOutput. # noqa: E501
84
+
85
+
86
+ :return: The start of this TrimForCreateAITranslationUtteranceOutput. # noqa: E501
87
+ :rtype: int
88
+ """
89
+ return self._start
90
+
91
+ @start.setter
92
+ def start(self, start):
93
+ """Sets the start of this TrimForCreateAITranslationUtteranceOutput.
94
+
95
+
96
+ :param start: The start of this TrimForCreateAITranslationUtteranceOutput. # noqa: E501
97
+ :type: int
98
+ """
99
+
100
+ self._start = start
101
+
102
+ def to_dict(self):
103
+ """Returns the model properties as a dict"""
104
+ result = {}
105
+
106
+ for attr, _ in six.iteritems(self.swagger_types):
107
+ value = getattr(self, attr)
108
+ if isinstance(value, list):
109
+ result[attr] = list(map(
110
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
111
+ value
112
+ ))
113
+ elif hasattr(value, "to_dict"):
114
+ result[attr] = value.to_dict()
115
+ elif isinstance(value, dict):
116
+ result[attr] = dict(map(
117
+ lambda item: (item[0], item[1].to_dict())
118
+ if hasattr(item[1], "to_dict") else item,
119
+ value.items()
120
+ ))
121
+ else:
122
+ result[attr] = value
123
+ if issubclass(TrimForCreateAITranslationUtteranceOutput, dict):
124
+ for key, value in self.items():
125
+ result[key] = value
126
+
127
+ return result
128
+
129
+ def to_str(self):
130
+ """Returns the string representation of the model"""
131
+ return pprint.pformat(self.to_dict())
132
+
133
+ def __repr__(self):
134
+ """For `print` and `pprint`"""
135
+ return self.to_str()
136
+
137
+ def __eq__(self, other):
138
+ """Returns true if both objects are equal"""
139
+ if not isinstance(other, TrimForCreateAITranslationUtteranceOutput):
140
+ return False
141
+
142
+ return self.to_dict() == other.to_dict()
143
+
144
+ def __ne__(self, other):
145
+ """Returns true if both objects are not equal"""
146
+ if not isinstance(other, TrimForCreateAITranslationUtteranceOutput):
147
+ return True
148
+
149
+ return self.to_dict() != other.to_dict()
@@ -33,6 +33,7 @@ class UpdateAITranslationUtterancesRequest(object):
33
33
  and the value is json key in definition.
34
34
  """
35
35
  swagger_types = {
36
+ 'bilingual_subtitle_file_name': 'str',
36
37
  'input_subtitle_file_name': 'str',
37
38
  'output_subtitle_file_name': 'str',
38
39
  'project_id': 'str',
@@ -42,6 +43,7 @@ class UpdateAITranslationUtterancesRequest(object):
42
43
  }
43
44
 
44
45
  attribute_map = {
46
+ 'bilingual_subtitle_file_name': 'BilingualSubtitleFileName',
45
47
  'input_subtitle_file_name': 'InputSubtitleFileName',
46
48
  'output_subtitle_file_name': 'OutputSubtitleFileName',
47
49
  'project_id': 'ProjectId',
@@ -50,12 +52,13 @@ class UpdateAITranslationUtterancesRequest(object):
50
52
  'utterances': 'Utterances'
51
53
  }
52
54
 
53
- def __init__(self, input_subtitle_file_name=None, output_subtitle_file_name=None, project_id=None, space_name=None, update_type=None, utterances=None, _configuration=None): # noqa: E501
55
+ def __init__(self, bilingual_subtitle_file_name=None, input_subtitle_file_name=None, output_subtitle_file_name=None, project_id=None, space_name=None, update_type=None, utterances=None, _configuration=None): # noqa: E501
54
56
  """UpdateAITranslationUtterancesRequest - a model defined in Swagger""" # noqa: E501
55
57
  if _configuration is None:
56
58
  _configuration = Configuration()
57
59
  self._configuration = _configuration
58
60
 
61
+ self._bilingual_subtitle_file_name = None
59
62
  self._input_subtitle_file_name = None
60
63
  self._output_subtitle_file_name = None
61
64
  self._project_id = None
@@ -64,6 +67,8 @@ class UpdateAITranslationUtterancesRequest(object):
64
67
  self._utterances = None
65
68
  self.discriminator = None
66
69
 
70
+ if bilingual_subtitle_file_name is not None:
71
+ self.bilingual_subtitle_file_name = bilingual_subtitle_file_name
67
72
  if input_subtitle_file_name is not None:
68
73
  self.input_subtitle_file_name = input_subtitle_file_name
69
74
  if output_subtitle_file_name is not None:
@@ -74,6 +79,27 @@ class UpdateAITranslationUtterancesRequest(object):
74
79
  if utterances is not None:
75
80
  self.utterances = utterances
76
81
 
82
+ @property
83
+ def bilingual_subtitle_file_name(self):
84
+ """Gets the bilingual_subtitle_file_name of this UpdateAITranslationUtterancesRequest. # noqa: E501
85
+
86
+
87
+ :return: The bilingual_subtitle_file_name of this UpdateAITranslationUtterancesRequest. # noqa: E501
88
+ :rtype: str
89
+ """
90
+ return self._bilingual_subtitle_file_name
91
+
92
+ @bilingual_subtitle_file_name.setter
93
+ def bilingual_subtitle_file_name(self, bilingual_subtitle_file_name):
94
+ """Sets the bilingual_subtitle_file_name of this UpdateAITranslationUtterancesRequest.
95
+
96
+
97
+ :param bilingual_subtitle_file_name: The bilingual_subtitle_file_name of this UpdateAITranslationUtterancesRequest. # noqa: E501
98
+ :type: str
99
+ """
100
+
101
+ self._bilingual_subtitle_file_name = bilingual_subtitle_file_name
102
+
77
103
  @property
78
104
  def input_subtitle_file_name(self):
79
105
  """Gets the input_subtitle_file_name of this UpdateAITranslationUtterancesRequest. # noqa: E501
@@ -34,34 +34,44 @@ class VisionForGetExecutionOutput(object):
34
34
  """
35
35
  swagger_types = {
36
36
  'model': 'ModelForGetExecutionOutput',
37
+ 'need_asr_speaker': 'bool',
37
38
  'prompt': 'str',
39
+ 'response_format_type': 'str',
38
40
  'segment': 'ConvertSegmentForGetExecutionOutput',
39
41
  'snapshot_param': 'SnapshotParamForGetExecutionOutput'
40
42
  }
41
43
 
42
44
  attribute_map = {
43
45
  'model': 'Model',
46
+ 'need_asr_speaker': 'NeedAsrSpeaker',
44
47
  'prompt': 'Prompt',
48
+ 'response_format_type': 'ResponseFormatType',
45
49
  'segment': 'Segment',
46
50
  'snapshot_param': 'SnapshotParam'
47
51
  }
48
52
 
49
- def __init__(self, model=None, prompt=None, segment=None, snapshot_param=None, _configuration=None): # noqa: E501
53
+ def __init__(self, model=None, need_asr_speaker=None, prompt=None, response_format_type=None, segment=None, snapshot_param=None, _configuration=None): # noqa: E501
50
54
  """VisionForGetExecutionOutput - a model defined in Swagger""" # noqa: E501
51
55
  if _configuration is None:
52
56
  _configuration = Configuration()
53
57
  self._configuration = _configuration
54
58
 
55
59
  self._model = None
60
+ self._need_asr_speaker = None
56
61
  self._prompt = None
62
+ self._response_format_type = None
57
63
  self._segment = None
58
64
  self._snapshot_param = None
59
65
  self.discriminator = None
60
66
 
61
67
  if model is not None:
62
68
  self.model = model
69
+ if need_asr_speaker is not None:
70
+ self.need_asr_speaker = need_asr_speaker
63
71
  if prompt is not None:
64
72
  self.prompt = prompt
73
+ if response_format_type is not None:
74
+ self.response_format_type = response_format_type
65
75
  if segment is not None:
66
76
  self.segment = segment
67
77
  if snapshot_param is not None:
@@ -88,6 +98,27 @@ class VisionForGetExecutionOutput(object):
88
98
 
89
99
  self._model = model
90
100
 
101
+ @property
102
+ def need_asr_speaker(self):
103
+ """Gets the need_asr_speaker of this VisionForGetExecutionOutput. # noqa: E501
104
+
105
+
106
+ :return: The need_asr_speaker of this VisionForGetExecutionOutput. # noqa: E501
107
+ :rtype: bool
108
+ """
109
+ return self._need_asr_speaker
110
+
111
+ @need_asr_speaker.setter
112
+ def need_asr_speaker(self, need_asr_speaker):
113
+ """Sets the need_asr_speaker of this VisionForGetExecutionOutput.
114
+
115
+
116
+ :param need_asr_speaker: The need_asr_speaker of this VisionForGetExecutionOutput. # noqa: E501
117
+ :type: bool
118
+ """
119
+
120
+ self._need_asr_speaker = need_asr_speaker
121
+
91
122
  @property
92
123
  def prompt(self):
93
124
  """Gets the prompt of this VisionForGetExecutionOutput. # noqa: E501
@@ -109,6 +140,27 @@ class VisionForGetExecutionOutput(object):
109
140
 
110
141
  self._prompt = prompt
111
142
 
143
+ @property
144
+ def response_format_type(self):
145
+ """Gets the response_format_type of this VisionForGetExecutionOutput. # noqa: E501
146
+
147
+
148
+ :return: The response_format_type of this VisionForGetExecutionOutput. # noqa: E501
149
+ :rtype: str
150
+ """
151
+ return self._response_format_type
152
+
153
+ @response_format_type.setter
154
+ def response_format_type(self, response_format_type):
155
+ """Sets the response_format_type of this VisionForGetExecutionOutput.
156
+
157
+
158
+ :param response_format_type: The response_format_type of this VisionForGetExecutionOutput. # noqa: E501
159
+ :type: str
160
+ """
161
+
162
+ self._response_format_type = response_format_type
163
+
112
164
  @property
113
165
  def segment(self):
114
166
  """Gets the segment of this VisionForGetExecutionOutput. # noqa: E501