volcengine-python-sdk 4.0.20__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 (574) hide show
  1. volcengine_python_sdk-4.0.22.dist-info/METADATA +214 -0
  2. {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.22.dist-info}/RECORD +561 -163
  3. {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.22.dist-info}/WHEEL +1 -1
  4. {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.22.dist-info}/top_level.txt +1 -0
  5. volcenginesdkarkruntime/_utils/_key_agreement.py +23 -0
  6. volcenginesdkarkruntime/resources/chat/completions.py +13 -3
  7. volcenginesdkarkruntime/resources/images/images.py +1 -1
  8. volcenginesdkarkruntime/resources/responses/input_items.py +2 -2
  9. volcenginesdkarkruntime/resources/responses/responses.py +9 -2
  10. volcenginesdkarkruntime/types/images/images.py +3 -0
  11. volcenginesdkcloudmonitor/__init__.py +309 -0
  12. volcenginesdkcloudmonitor/api/__init__.py +6 -0
  13. volcenginesdkcloudmonitor/api/cloudmonitor_api.py +6048 -0
  14. volcenginesdkcloudmonitor/models/__init__.py +305 -0
  15. volcenginesdkcloudmonitor/models/alert_notification_for_list_preset_alert_templates_output.py +305 -0
  16. volcenginesdkcloudmonitor/models/applied_rule_for_list_alert_templates_output.py +201 -0
  17. volcenginesdkcloudmonitor/models/applied_rule_for_list_preset_alert_templates_output.py +149 -0
  18. volcenginesdkcloudmonitor/models/apply_object_for_apply_object_groups_by_alert_template_input.py +331 -0
  19. volcenginesdkcloudmonitor/models/apply_object_groups_by_alert_template_request.py +177 -0
  20. volcenginesdkcloudmonitor/models/apply_object_groups_by_alert_template_response.py +123 -0
  21. volcenginesdkcloudmonitor/models/condition_for_create_alert_template_input.py +227 -0
  22. volcenginesdkcloudmonitor/models/condition_for_create_rule_input.py +253 -0
  23. volcenginesdkcloudmonitor/models/condition_for_list_alert_templates_output.py +227 -0
  24. volcenginesdkcloudmonitor/models/condition_for_list_preset_alert_templates_output.py +227 -0
  25. volcenginesdkcloudmonitor/models/condition_for_list_rules_by_ids_output.py +279 -0
  26. volcenginesdkcloudmonitor/models/condition_for_list_rules_output.py +279 -0
  27. volcenginesdkcloudmonitor/models/condition_for_update_alert_template_input.py +227 -0
  28. volcenginesdkcloudmonitor/models/condition_for_update_rule_input.py +253 -0
  29. volcenginesdkcloudmonitor/models/contact_for_list_contact_group_by_ids_output.py +201 -0
  30. volcenginesdkcloudmonitor/models/contact_for_list_contact_groups_output.py +201 -0
  31. volcenginesdkcloudmonitor/models/contact_group_for_list_contacts_output.py +253 -0
  32. volcenginesdkcloudmonitor/models/convert_tag_for_create_rule_input.py +149 -0
  33. volcenginesdkcloudmonitor/models/convert_tag_for_list_rules_by_ids_output.py +149 -0
  34. volcenginesdkcloudmonitor/models/convert_tag_for_list_rules_output.py +149 -0
  35. volcenginesdkcloudmonitor/models/convert_tag_for_update_rule_input.py +149 -0
  36. volcenginesdkcloudmonitor/models/create_alert_template_request.py +282 -0
  37. volcenginesdkcloudmonitor/models/create_alert_template_response.py +123 -0
  38. volcenginesdkcloudmonitor/models/create_contact_group_request.py +176 -0
  39. volcenginesdkcloudmonitor/models/create_contact_group_response.py +123 -0
  40. volcenginesdkcloudmonitor/models/create_contacts_request.py +177 -0
  41. volcenginesdkcloudmonitor/models/create_contacts_response.py +123 -0
  42. volcenginesdkcloudmonitor/models/create_event_rule_request.py +537 -0
  43. volcenginesdkcloudmonitor/models/create_event_rule_response.py +123 -0
  44. volcenginesdkcloudmonitor/models/create_notification_request.py +204 -0
  45. volcenginesdkcloudmonitor/models/create_notification_response.py +123 -0
  46. volcenginesdkcloudmonitor/models/create_notify_template_request.py +277 -0
  47. volcenginesdkcloudmonitor/models/create_notify_template_response.py +123 -0
  48. volcenginesdkcloudmonitor/models/create_object_group_request.py +150 -0
  49. volcenginesdkcloudmonitor/models/create_object_group_response.py +123 -0
  50. volcenginesdkcloudmonitor/models/create_rule_request.py +850 -0
  51. volcenginesdkcloudmonitor/models/create_rule_response.py +123 -0
  52. volcenginesdkcloudmonitor/models/create_silence_policy_request.py +256 -0
  53. volcenginesdkcloudmonitor/models/create_silence_policy_response.py +123 -0
  54. volcenginesdkcloudmonitor/models/create_webhook_request.py +191 -0
  55. volcenginesdkcloudmonitor/models/create_webhook_response.py +123 -0
  56. volcenginesdkcloudmonitor/models/data_for_create_event_rule_output.py +123 -0
  57. volcenginesdkcloudmonitor/models/data_for_delete_event_rule_output.py +123 -0
  58. volcenginesdkcloudmonitor/models/data_for_disable_event_rule_output.py +123 -0
  59. volcenginesdkcloudmonitor/models/data_for_enable_event_rule_output.py +123 -0
  60. volcenginesdkcloudmonitor/models/data_for_get_metric_data_output.py +331 -0
  61. volcenginesdkcloudmonitor/models/data_for_get_top_data_output.py +175 -0
  62. volcenginesdkcloudmonitor/models/data_for_list_alert_group_output.py +513 -0
  63. volcenginesdkcloudmonitor/models/data_for_list_alert_templates_output.py +409 -0
  64. volcenginesdkcloudmonitor/models/data_for_list_contact_group_by_ids_output.py +279 -0
  65. volcenginesdkcloudmonitor/models/data_for_list_contact_groups_output.py +279 -0
  66. volcenginesdkcloudmonitor/models/data_for_list_contacts_by_ids_output.py +201 -0
  67. volcenginesdkcloudmonitor/models/data_for_list_contacts_output.py +227 -0
  68. volcenginesdkcloudmonitor/models/data_for_list_default_notify_templates_output.py +227 -0
  69. volcenginesdkcloudmonitor/models/data_for_list_event_rules_output.py +669 -0
  70. volcenginesdkcloudmonitor/models/data_for_list_events_output.py +279 -0
  71. volcenginesdkcloudmonitor/models/data_for_list_notifications_output.py +305 -0
  72. volcenginesdkcloudmonitor/models/data_for_list_notify_templates_output.py +331 -0
  73. volcenginesdkcloudmonitor/models/data_for_list_object_groups_output.py +305 -0
  74. volcenginesdkcloudmonitor/models/data_for_list_preset_alert_templates_output.py +435 -0
  75. volcenginesdkcloudmonitor/models/data_for_list_rules_by_ids_output.py +929 -0
  76. volcenginesdkcloudmonitor/models/data_for_list_rules_output.py +929 -0
  77. volcenginesdkcloudmonitor/models/data_for_list_send_alert_output.py +253 -0
  78. volcenginesdkcloudmonitor/models/data_for_list_silence_policy_output.py +409 -0
  79. volcenginesdkcloudmonitor/models/data_for_list_webhooks_by_ids_output.py +305 -0
  80. volcenginesdkcloudmonitor/models/data_for_list_webhooks_output.py +305 -0
  81. volcenginesdkcloudmonitor/models/data_for_tag_resources_output.py +149 -0
  82. volcenginesdkcloudmonitor/models/data_for_update_event_rule_output.py +123 -0
  83. volcenginesdkcloudmonitor/models/data_point_for_get_metric_data_output.py +149 -0
  84. volcenginesdkcloudmonitor/models/delete_alert_templates_by_ids_request.py +123 -0
  85. volcenginesdkcloudmonitor/models/delete_alert_templates_by_ids_response.py +123 -0
  86. volcenginesdkcloudmonitor/models/delete_contact_group_by_ids_request.py +123 -0
  87. volcenginesdkcloudmonitor/models/delete_contact_group_by_ids_response.py +123 -0
  88. volcenginesdkcloudmonitor/models/delete_contacts_by_ids_request.py +123 -0
  89. volcenginesdkcloudmonitor/models/delete_contacts_by_ids_response.py +123 -0
  90. volcenginesdkcloudmonitor/models/delete_event_rule_request.py +123 -0
  91. volcenginesdkcloudmonitor/models/delete_event_rule_response.py +123 -0
  92. volcenginesdkcloudmonitor/models/delete_notifications_by_ids_request.py +123 -0
  93. volcenginesdkcloudmonitor/models/delete_notifications_by_ids_response.py +123 -0
  94. volcenginesdkcloudmonitor/models/delete_notify_templates_by_ids_request.py +123 -0
  95. volcenginesdkcloudmonitor/models/delete_notify_templates_by_ids_response.py +123 -0
  96. volcenginesdkcloudmonitor/models/delete_object_group_request.py +124 -0
  97. volcenginesdkcloudmonitor/models/delete_object_group_response.py +123 -0
  98. volcenginesdkcloudmonitor/models/delete_rules_by_ids_request.py +123 -0
  99. volcenginesdkcloudmonitor/models/delete_rules_by_ids_response.py +123 -0
  100. volcenginesdkcloudmonitor/models/delete_silence_policy_by_ids_request.py +123 -0
  101. volcenginesdkcloudmonitor/models/delete_silence_policy_by_ids_response.py +123 -0
  102. volcenginesdkcloudmonitor/models/delete_webhooks_by_ids_request.py +123 -0
  103. volcenginesdkcloudmonitor/models/delete_webhooks_by_ids_response.py +123 -0
  104. volcenginesdkcloudmonitor/models/dimension_conditions_for_create_object_group_input.py +201 -0
  105. volcenginesdkcloudmonitor/models/dimension_conditions_for_create_rule_input.py +201 -0
  106. volcenginesdkcloudmonitor/models/dimension_conditions_for_list_rules_by_ids_output.py +201 -0
  107. volcenginesdkcloudmonitor/models/dimension_conditions_for_list_rules_output.py +201 -0
  108. volcenginesdkcloudmonitor/models/dimension_conditions_for_update_object_group_input.py +201 -0
  109. volcenginesdkcloudmonitor/models/dimension_conditions_for_update_rule_input.py +201 -0
  110. volcenginesdkcloudmonitor/models/dimension_for_get_metric_data_input.py +149 -0
  111. volcenginesdkcloudmonitor/models/dimension_for_get_metric_data_output.py +149 -0
  112. volcenginesdkcloudmonitor/models/dimension_for_get_top_data_input.py +149 -0
  113. volcenginesdkcloudmonitor/models/disable_event_rule_request.py +123 -0
  114. volcenginesdkcloudmonitor/models/disable_event_rule_response.py +123 -0
  115. volcenginesdkcloudmonitor/models/disable_preset_alert_template_request.py +124 -0
  116. volcenginesdkcloudmonitor/models/disable_preset_alert_template_response.py +123 -0
  117. volcenginesdkcloudmonitor/models/effect_time_for_create_silence_policy_input.py +149 -0
  118. volcenginesdkcloudmonitor/models/effect_time_for_list_silence_policy_output.py +149 -0
  119. volcenginesdkcloudmonitor/models/effect_time_for_update_silence_policy_input.py +149 -0
  120. volcenginesdkcloudmonitor/models/effective_time_for_create_event_rule_input.py +149 -0
  121. volcenginesdkcloudmonitor/models/effective_time_for_update_event_rule_input.py +149 -0
  122. volcenginesdkcloudmonitor/models/enable_event_rule_request.py +123 -0
  123. volcenginesdkcloudmonitor/models/enable_event_rule_response.py +123 -0
  124. volcenginesdkcloudmonitor/models/enable_preset_alert_template_request.py +387 -0
  125. volcenginesdkcloudmonitor/models/enable_preset_alert_template_response.py +123 -0
  126. volcenginesdkcloudmonitor/models/get_metric_data_request.py +308 -0
  127. volcenginesdkcloudmonitor/models/get_metric_data_response.py +123 -0
  128. volcenginesdkcloudmonitor/models/get_top_data_request.py +357 -0
  129. volcenginesdkcloudmonitor/models/get_top_data_response.py +123 -0
  130. volcenginesdkcloudmonitor/models/instance_for_get_metric_data_input.py +123 -0
  131. volcenginesdkcloudmonitor/models/instance_for_get_top_data_input.py +123 -0
  132. volcenginesdkcloudmonitor/models/level_condition_for_create_alert_template_input.py +156 -0
  133. volcenginesdkcloudmonitor/models/level_condition_for_create_rule_input.py +149 -0
  134. volcenginesdkcloudmonitor/models/level_condition_for_list_alert_templates_output.py +149 -0
  135. volcenginesdkcloudmonitor/models/level_condition_for_list_preset_alert_templates_output.py +149 -0
  136. volcenginesdkcloudmonitor/models/level_condition_for_list_rules_by_ids_output.py +149 -0
  137. volcenginesdkcloudmonitor/models/level_condition_for_list_rules_output.py +149 -0
  138. volcenginesdkcloudmonitor/models/level_condition_for_update_alert_template_input.py +156 -0
  139. volcenginesdkcloudmonitor/models/level_condition_for_update_rule_input.py +149 -0
  140. volcenginesdkcloudmonitor/models/list_alert_group_request.py +357 -0
  141. volcenginesdkcloudmonitor/models/list_alert_group_response.py +253 -0
  142. volcenginesdkcloudmonitor/models/list_alert_templates_request.py +253 -0
  143. volcenginesdkcloudmonitor/models/list_alert_templates_response.py +201 -0
  144. volcenginesdkcloudmonitor/models/list_contact_group_by_ids_request.py +123 -0
  145. volcenginesdkcloudmonitor/models/list_contact_group_by_ids_response.py +123 -0
  146. volcenginesdkcloudmonitor/models/list_contact_groups_request.py +175 -0
  147. volcenginesdkcloudmonitor/models/list_contact_groups_response.py +201 -0
  148. volcenginesdkcloudmonitor/models/list_contacts_by_ids_request.py +123 -0
  149. volcenginesdkcloudmonitor/models/list_contacts_by_ids_response.py +123 -0
  150. volcenginesdktransitrouter/models/describe_transit_router_grant_rules_request.py → volcenginesdkcloudmonitor/models/list_contacts_request.py +69 -44
  151. volcenginesdkcloudmonitor/models/list_contacts_response.py +201 -0
  152. volcenginesdkcloudmonitor/models/list_default_notify_templates_request.py +198 -0
  153. volcenginesdkcloudmonitor/models/list_default_notify_templates_response.py +123 -0
  154. volcenginesdkcloudmonitor/models/list_event_rules_request.py +279 -0
  155. volcenginesdkcloudmonitor/models/list_event_rules_response.py +253 -0
  156. volcenginesdkcloudmonitor/models/list_events_request.py +364 -0
  157. volcenginesdkcloudmonitor/models/list_events_response.py +253 -0
  158. volcenginesdkcloudmonitor/models/list_notifications_request.py +261 -0
  159. volcenginesdkcloudmonitor/models/list_notifications_response.py +201 -0
  160. volcenginesdkcloudmonitor/models/list_notify_templates_request.py +275 -0
  161. volcenginesdkcloudmonitor/models/list_notify_templates_response.py +201 -0
  162. volcenginesdkcloudmonitor/models/list_object_groups_request.py +227 -0
  163. volcenginesdktransitrouter/models/describe_transit_router_grant_rules_response.py → volcenginesdkcloudmonitor/models/list_object_groups_response.py +47 -47
  164. volcenginesdkcloudmonitor/models/list_preset_alert_templates_request.py +227 -0
  165. volcenginesdkcloudmonitor/models/list_preset_alert_templates_response.py +201 -0
  166. volcenginesdkcloudmonitor/models/list_rules_by_ids_request.py +123 -0
  167. volcenginesdkcloudmonitor/models/list_rules_by_ids_response.py +123 -0
  168. volcenginesdkcloudmonitor/models/list_rules_request.py +357 -0
  169. volcenginesdkcloudmonitor/models/list_rules_response.py +201 -0
  170. volcenginesdkcloudmonitor/models/list_send_alert_request.py +176 -0
  171. volcenginesdkcloudmonitor/models/list_send_alert_response.py +201 -0
  172. volcenginesdkcloudmonitor/models/list_silence_policy_request.py +305 -0
  173. volcenginesdkcloudmonitor/models/list_silence_policy_response.py +201 -0
  174. volcenginesdkcloudmonitor/models/list_webhooks_by_ids_request.py +123 -0
  175. volcenginesdkcloudmonitor/models/list_webhooks_by_ids_response.py +123 -0
  176. volcenginesdkcloudmonitor/models/list_webhooks_request.py +331 -0
  177. volcenginesdkcloudmonitor/models/list_webhooks_response.py +253 -0
  178. volcenginesdkcloudmonitor/models/message_queue_for_create_event_rule_input.py +331 -0
  179. volcenginesdkcloudmonitor/models/message_queue_for_list_event_rules_output.py +227 -0
  180. volcenginesdkcloudmonitor/models/message_queue_for_update_event_rule_input.py +331 -0
  181. volcenginesdkcloudmonitor/models/meta_condition_for_create_object_group_input.py +175 -0
  182. volcenginesdkcloudmonitor/models/meta_condition_for_create_rule_input.py +175 -0
  183. volcenginesdkcloudmonitor/models/meta_condition_for_create_silence_policy_input.py +149 -0
  184. volcenginesdkcloudmonitor/models/meta_condition_for_list_rules_by_ids_output.py +175 -0
  185. volcenginesdkcloudmonitor/models/meta_condition_for_list_rules_output.py +175 -0
  186. volcenginesdkcloudmonitor/models/meta_condition_for_list_silence_policy_output.py +149 -0
  187. volcenginesdkcloudmonitor/models/meta_condition_for_update_object_group_input.py +175 -0
  188. volcenginesdkcloudmonitor/models/meta_condition_for_update_rule_input.py +175 -0
  189. volcenginesdkcloudmonitor/models/meta_condition_for_update_silence_policy_input.py +149 -0
  190. volcenginesdkcloudmonitor/models/meta_for_create_object_group_input.py +175 -0
  191. volcenginesdkcloudmonitor/models/meta_for_create_rule_input.py +175 -0
  192. volcenginesdkcloudmonitor/models/meta_for_create_silence_policy_input.py +175 -0
  193. volcenginesdkcloudmonitor/models/meta_for_list_rules_by_ids_output.py +175 -0
  194. volcenginesdkcloudmonitor/models/meta_for_list_rules_output.py +175 -0
  195. volcenginesdktransitrouter/models/delete_transit_router_grant_rule_request.py → volcenginesdkcloudmonitor/models/meta_for_list_silence_policy_output.py +61 -37
  196. volcenginesdkcloudmonitor/models/meta_for_update_object_group_input.py +175 -0
  197. volcenginesdkcloudmonitor/models/meta_for_update_rule_input.py +175 -0
  198. volcenginesdkcloudmonitor/models/meta_for_update_silence_policy_input.py +175 -0
  199. volcenginesdkcloudmonitor/models/metric_data_result_for_get_metric_data_output.py +175 -0
  200. volcenginesdkcloudmonitor/models/modify_state_of_silence_policy_by_ids_request.py +157 -0
  201. volcenginesdkcloudmonitor/models/modify_state_of_silence_policy_by_ids_response.py +123 -0
  202. volcenginesdkcloudmonitor/models/no_data_for_create_alert_template_input.py +175 -0
  203. volcenginesdkcloudmonitor/models/no_data_for_create_rule_input.py +149 -0
  204. volcenginesdkcloudmonitor/models/no_data_for_list_alert_templates_output.py +175 -0
  205. volcenginesdkcloudmonitor/models/no_data_for_list_preset_alert_templates_output.py +175 -0
  206. volcenginesdkcloudmonitor/models/no_data_for_update_alert_template_input.py +175 -0
  207. volcenginesdkcloudmonitor/models/no_data_for_update_rule_input.py +149 -0
  208. volcenginesdkcloudmonitor/models/notification_for_create_notification_input.py +242 -0
  209. volcenginesdkcloudmonitor/models/notification_for_list_notifications_output.py +227 -0
  210. volcenginesdkcloudmonitor/models/notification_for_update_notification_input.py +242 -0
  211. volcenginesdkcloudmonitor/models/notify_template_for_apply_object_groups_by_alert_template_input.py +156 -0
  212. volcenginesdkcloudmonitor/models/notify_template_for_create_event_rule_input.py +156 -0
  213. volcenginesdkcloudmonitor/models/notify_template_for_create_notification_input.py +156 -0
  214. volcenginesdkcloudmonitor/models/notify_template_for_create_rule_input.py +156 -0
  215. volcenginesdkcloudmonitor/models/notify_template_for_enable_preset_alert_template_input.py +156 -0
  216. volcenginesdkcloudmonitor/models/notify_template_for_list_alert_templates_output.py +149 -0
  217. volcenginesdkcloudmonitor/models/notify_template_for_list_event_rules_output.py +149 -0
  218. volcenginesdkcloudmonitor/models/notify_template_for_list_notifications_output.py +149 -0
  219. volcenginesdkcloudmonitor/models/notify_template_for_list_preset_alert_templates_output.py +149 -0
  220. volcenginesdkcloudmonitor/models/notify_template_for_list_rules_by_ids_output.py +149 -0
  221. volcenginesdkcloudmonitor/models/notify_template_for_list_rules_output.py +149 -0
  222. volcenginesdkcloudmonitor/models/notify_template_for_update_event_rule_input.py +156 -0
  223. volcenginesdkcloudmonitor/models/notify_template_for_update_notification_input.py +156 -0
  224. volcenginesdkcloudmonitor/models/notify_template_for_update_rule_input.py +156 -0
  225. volcenginesdkcloudmonitor/models/object_for_create_object_group_input.py +227 -0
  226. volcenginesdkcloudmonitor/models/object_for_list_object_groups_output.py +279 -0
  227. volcenginesdkcloudmonitor/models/object_for_update_object_group_input.py +227 -0
  228. volcenginesdkcloudmonitor/models/object_group_for_list_alert_templates_output.py +357 -0
  229. volcenginesdkcloudmonitor/models/project_condition_for_create_object_group_input.py +123 -0
  230. volcenginesdkcloudmonitor/models/project_condition_for_create_rule_input.py +123 -0
  231. volcenginesdkcloudmonitor/models/project_condition_for_list_rules_by_ids_output.py +123 -0
  232. volcenginesdkcloudmonitor/models/project_condition_for_list_rules_output.py +123 -0
  233. volcenginesdkcloudmonitor/models/project_condition_for_update_object_group_input.py +123 -0
  234. volcenginesdkcloudmonitor/models/project_condition_for_update_rule_input.py +123 -0
  235. volcenginesdkcloudmonitor/models/range_for_create_silence_policy_input.py +201 -0
  236. volcenginesdkcloudmonitor/models/range_for_list_silence_policy_output.py +201 -0
  237. volcenginesdkcloudmonitor/models/range_for_update_silence_policy_input.py +201 -0
  238. volcenginesdkcloudmonitor/models/recovery_notify_for_create_alert_template_input.py +123 -0
  239. volcenginesdkcloudmonitor/models/recovery_notify_for_create_rule_input.py +123 -0
  240. volcenginesdkcloudmonitor/models/recovery_notify_for_list_alert_templates_output.py +123 -0
  241. volcenginesdkcloudmonitor/models/recovery_notify_for_list_preset_alert_templates_output.py +123 -0
  242. volcenginesdkcloudmonitor/models/recovery_notify_for_list_rules_by_ids_output.py +123 -0
  243. volcenginesdkcloudmonitor/models/recovery_notify_for_list_rules_output.py +123 -0
  244. volcenginesdkcloudmonitor/models/recovery_notify_for_update_alert_template_input.py +123 -0
  245. volcenginesdkcloudmonitor/models/recovery_notify_for_update_rule_input.py +123 -0
  246. volcenginesdkcloudmonitor/models/rule_for_list_object_groups_output.py +201 -0
  247. volcenginesdkcloudmonitor/models/send_result_for_list_send_alert_output.py +227 -0
  248. volcenginesdkcloudmonitor/models/set_state_of_rules_by_ids_request.py +157 -0
  249. volcenginesdkcloudmonitor/models/set_state_of_rules_by_ids_response.py +123 -0
  250. volcenginesdkcloudmonitor/models/silence_conditions_for_create_silence_policy_input.py +175 -0
  251. volcenginesdkcloudmonitor/models/silence_conditions_for_list_silence_policy_output.py +201 -0
  252. volcenginesdkcloudmonitor/models/silence_conditions_for_update_silence_policy_input.py +175 -0
  253. volcenginesdkcloudmonitor/models/tag_condition_for_create_object_group_input.py +149 -0
  254. volcenginesdkcloudmonitor/models/tag_condition_for_create_rule_input.py +149 -0
  255. volcenginesdkcloudmonitor/models/tag_condition_for_list_rules_by_ids_output.py +149 -0
  256. volcenginesdkcloudmonitor/models/tag_condition_for_list_rules_output.py +149 -0
  257. volcenginesdkcloudmonitor/models/tag_condition_for_update_object_group_input.py +149 -0
  258. volcenginesdkcloudmonitor/models/tag_condition_for_update_rule_input.py +149 -0
  259. volcenginesdkcloudmonitor/models/tag_for_create_object_group_input.py +175 -0
  260. volcenginesdkcloudmonitor/models/tag_for_create_rule_input.py +175 -0
  261. volcenginesdkcloudmonitor/models/tag_for_list_rules_by_ids_output.py +175 -0
  262. volcenginesdkcloudmonitor/models/tag_for_list_rules_output.py +175 -0
  263. volcenginesdkcloudmonitor/models/tag_for_tag_resources_input.py +149 -0
  264. volcenginesdkcloudmonitor/models/tag_for_update_object_group_input.py +175 -0
  265. volcenginesdkcloudmonitor/models/tag_for_update_rule_input.py +175 -0
  266. volcenginesdkcloudmonitor/models/tag_resources_request.py +176 -0
  267. volcenginesdkcloudmonitor/models/tag_resources_response.py +123 -0
  268. volcenginesdkcloudmonitor/models/template_detail_for_list_object_groups_output.py +149 -0
  269. volcenginesdkcloudmonitor/models/template_rule_for_create_alert_template_input.py +279 -0
  270. volcenginesdkcloudmonitor/models/template_rule_for_list_alert_templates_output.py +331 -0
  271. volcenginesdkcloudmonitor/models/template_rule_for_list_preset_alert_templates_output.py +331 -0
  272. volcenginesdkcloudmonitor/models/template_rule_for_update_alert_template_input.py +279 -0
  273. volcenginesdkcloudmonitor/models/tls_target_for_create_event_rule_input.py +227 -0
  274. volcenginesdkcloudmonitor/models/tls_target_for_list_event_rules_output.py +227 -0
  275. volcenginesdkcloudmonitor/models/tls_target_for_update_event_rule_input.py +227 -0
  276. volcenginesdkcloudmonitor/models/top_data_result_for_get_top_data_output.py +149 -0
  277. volcenginesdkcloudmonitor/models/untag_resources_request.py +176 -0
  278. volcenginesdktransitrouter/models/modify_transit_router_grant_rule_attributes_response.py → volcenginesdkcloudmonitor/models/untag_resources_response.py +35 -7
  279. volcenginesdkcloudmonitor/models/update_alert_template_request.py +309 -0
  280. volcenginesdkcloudmonitor/models/update_alert_template_response.py +123 -0
  281. volcenginesdktransitrouter/models/create_transit_router_grant_rule_request.py → volcenginesdkcloudmonitor/models/update_contact_group_request.py +40 -41
  282. volcenginesdkcloudmonitor/models/update_contact_group_response.py +123 -0
  283. volcenginesdkcloudmonitor/models/update_contact_group_with_contacts_request.py +150 -0
  284. volcenginesdkcloudmonitor/models/update_contact_group_with_contacts_response.py +123 -0
  285. volcenginesdkcloudmonitor/models/update_contacts_request.py +204 -0
  286. volcenginesdkcloudmonitor/models/update_contacts_response.py +123 -0
  287. volcenginesdkcloudmonitor/models/update_contacts_with_contact_groups_request.py +150 -0
  288. volcenginesdkcloudmonitor/models/update_contacts_with_contact_groups_response.py +123 -0
  289. volcenginesdkcloudmonitor/models/update_event_rule_request.py +564 -0
  290. volcenginesdkcloudmonitor/models/update_event_rule_response.py +123 -0
  291. volcenginesdkcloudmonitor/models/update_notification_request.py +231 -0
  292. volcenginesdkcloudmonitor/models/update_notification_response.py +123 -0
  293. volcenginesdkcloudmonitor/models/update_notify_template_request.py +304 -0
  294. volcenginesdkcloudmonitor/models/update_notify_template_response.py +123 -0
  295. volcenginesdkcloudmonitor/models/update_object_group_request.py +177 -0
  296. volcenginesdkcloudmonitor/models/update_object_group_response.py +123 -0
  297. volcenginesdkcloudmonitor/models/update_rule_request.py +851 -0
  298. volcenginesdkcloudmonitor/models/update_rule_response.py +123 -0
  299. volcenginesdkcloudmonitor/models/update_silence_policy_request.py +283 -0
  300. volcenginesdkcloudmonitor/models/update_silence_policy_response.py +123 -0
  301. volcenginesdkcloudmonitor/models/update_webhook_request.py +205 -0
  302. volcenginesdkcloudmonitor/models/update_webhook_response.py +123 -0
  303. volcenginesdkcore/api_client.py +74 -7
  304. volcenginesdkcore/auth/__init__.py +1 -1
  305. volcenginesdkcore/auth/providers/__init__.py +2 -0
  306. volcenginesdkcore/auth/providers/provider.py +4 -0
  307. volcenginesdkcore/auth/providers/sts_oidc_provider.py +96 -0
  308. volcenginesdkcore/auth/providers/sts_provider.py +9 -4
  309. volcenginesdkcore/auth/providers/sts_saml_provider.py +100 -0
  310. volcenginesdkcore/configuration.py +17 -4
  311. volcenginesdkcore/endpoint/providers/default_provider.py +59 -4
  312. volcenginesdkcore/interceptor/interceptors/request.py +1 -0
  313. volcenginesdkcore/interceptor/interceptors/sign_request_interceptor.py +7 -0
  314. volcenginesdkcore/observability/__init__.py +0 -0
  315. volcenginesdkcore/observability/debugger.py +235 -0
  316. volcenginesdkcore/rest.py +67 -1
  317. volcenginesdkcore/retryer/retry_condition.py +8 -3
  318. volcenginesdkcore/signv4.py +8 -0
  319. volcenginesdkecs/__init__.py +12 -0
  320. volcenginesdkecs/api/ecs_api.py +291 -0
  321. volcenginesdkecs/models/__init__.py +12 -0
  322. volcenginesdkecs/models/create_hpc_cluster_request.py +53 -1
  323. volcenginesdkecs/models/describe_hpc_clusters_request.py +53 -1
  324. volcenginesdkecs/models/describe_system_event_default_action_request.py +124 -0
  325. volcenginesdkecs/models/describe_system_event_default_action_response.py +175 -0
  326. volcenginesdkrdsmysqlv2/models/modify_db_instance_auto_upgrade_minor_version_response.py → volcenginesdkecs/models/extra_info_for_describe_system_event_default_action_output.py +6 -6
  327. volcenginesdkecs/models/hpc_cluster_for_describe_hpc_clusters_output.py +53 -1
  328. volcenginesdkecs/models/instance_for_describe_instances_output.py +27 -1
  329. volcenginesdkecs/models/modify_system_event_default_action_request.py +210 -0
  330. volcenginesdkecs/models/modify_system_event_default_action_response.py +149 -0
  331. volcenginesdkecs/models/rdma_network_interface_detail_for_describe_instances_output.py +227 -0
  332. volcenginesdkecs/models/related_system_event_for_describe_system_event_default_action_output.py +383 -0
  333. volcenginesdkecs/models/report_instances_status_request.py +280 -0
  334. volcenginesdktransitrouter/models/reject_shared_transit_router_response.py → volcenginesdkecs/models/report_instances_status_response.py +6 -6
  335. volcenginesdkecs/models/tag_filter_for_describe_hpc_clusters_input.py +149 -0
  336. volcenginesdkecs/models/tag_for_create_hpc_cluster_input.py +149 -0
  337. volcenginesdkecs/models/tag_for_describe_hpc_clusters_output.py +149 -0
  338. volcenginesdkprivatezone/__init__.py +1 -1
  339. volcenginesdkprivatezone/models/__init__.py +1 -1
  340. volcenginesdkprivatezone/models/{ip_configs_for_update_resolver_endpoint_input.py → ip_config_for_update_resolver_endpoint_input.py} +21 -21
  341. volcenginesdkprivatezone/models/update_resolver_endpoint_request.py +3 -3
  342. volcenginesdkrdsmysqlv2/__init__.py +39 -25
  343. volcenginesdkrdsmysqlv2/api/rds_mysql_v2_api.py +1347 -1153
  344. volcenginesdkrdsmysqlv2/models/__init__.py +39 -25
  345. volcenginesdkrdsmysqlv2/models/address_for_describe_db_instance_endpoints_output.py +305 -0
  346. volcenginesdkrdsmysqlv2/models/allow_list_for_describe_allow_lists_output.py +27 -1
  347. volcenginesdkrdsmysqlv2/models/basic_info_for_describe_db_instance_detail_output.py +1 -105
  348. volcenginesdkrdsmysqlv2/models/change_object_for_sync_allow_list_output.py +331 -0
  349. volcenginesdkrdsmysqlv2/models/charge_detail_for_describe_db_instance_charge_detail_output.py +383 -0
  350. volcenginesdkrdsmysqlv2/models/create_db_endpoint_request.py +27 -1
  351. volcenginesdkrdsmysqlv2/models/create_db_instance_request.py +27 -1
  352. volcenginesdkrdsmysqlv2/models/create_dr_db_instance_request.py +27 -1
  353. volcenginesdkrdsmysqlv2/models/db_instance_attribute_for_describe_db_instance_attribute_output.py +825 -0
  354. volcenginesdkrdsmysqlv2/models/describe_allow_lists_request.py +29 -3
  355. volcenginesdkrdsmysqlv2/models/describe_backup_policy_response.py +53 -1
  356. volcenginesdkrdsmysqlv2/models/describe_db_disaster_recovery_instances_request.py +124 -0
  357. volcenginesdkrdsmysqlv2/models/describe_db_disaster_recovery_instances_response.py +305 -0
  358. volcenginesdkrdsmysqlv2/models/{describe_db_auto_scaling_config_request.py → describe_db_instance_attribute_request.py} +9 -9
  359. volcenginesdkrdsmysqlv2/models/describe_db_instance_attribute_response.py +123 -0
  360. volcenginesdktransitrouter/models/accept_shared_transit_router_request.py → volcenginesdkrdsmysqlv2/models/describe_db_instance_charge_detail_request.py +22 -22
  361. volcenginesdkrdsmysqlv2/models/describe_db_instance_charge_detail_response.py +123 -0
  362. volcenginesdkrdsmysqlv2/models/describe_db_instance_endpoints_request.py +124 -0
  363. volcenginesdkrdsmysqlv2/models/describe_db_instance_endpoints_response.py +123 -0
  364. volcenginesdkrdsmysqlv2/models/describe_db_instance_ha_config_request.py +124 -0
  365. volcenginesdkrdsmysqlv2/models/describe_db_instance_ha_config_response.py +149 -0
  366. volcenginesdkrdsmysqlv2/models/describe_db_instance_price_detail_response.py +29 -3
  367. volcenginesdkrdsmysqlv2/models/describe_db_instance_tde_request.py +124 -0
  368. volcenginesdkrdsmysqlv2/models/describe_db_instance_tde_response.py +123 -0
  369. volcenginesdkrdsmysqlv2/models/describe_db_proxy_price_detail_response.py +27 -1
  370. volcenginesdkrdsmysqlv2/models/describe_db_proxy_request.py +124 -0
  371. volcenginesdkrdsmysqlv2/models/describe_db_proxy_response.py +123 -0
  372. volcenginesdkrdsmysqlv2/models/describe_resource_usage_request.py +124 -0
  373. volcenginesdkrdsmysqlv2/models/describe_resource_usage_response.py +565 -0
  374. volcenginesdkrdsmysqlv2/models/disaster_recovery_instance_for_describe_db_disaster_recovery_instances_output.py +279 -0
  375. volcenginesdkrdsmysqlv2/models/endpoint_for_describe_db_instance_detail_output.py +27 -1
  376. volcenginesdkrdsmysqlv2/models/endpoint_for_describe_db_instance_endpoints_output.py +669 -0
  377. volcenginesdkrdsmysqlv2/models/maintenance_window_for_describe_db_instance_attribute_output.py +175 -0
  378. volcenginesdkrdsmysqlv2/models/modify_backup_policy_request.py +53 -1
  379. volcenginesdkrdsmysqlv2/models/modify_backup_policy_response.py +53 -1
  380. volcenginesdkrdsmysqlv2/models/modify_db_endpoint_request.py +53 -1
  381. volcenginesdkrdsmysqlv2/models/modify_db_instance_tde_request.py +281 -0
  382. volcenginesdkrdsmysqlv2/models/{modify_db_auto_scaling_config_response.py → modify_db_instance_tde_response.py} +5 -5
  383. volcenginesdkrdsmysqlv2/models/{upgrade_db_instance_kernel_version_request.py → modify_db_instance_type_request.py} +55 -29
  384. volcenginesdkrdsmysqlv2/models/{restore_to_cross_region_instance_response.py → modify_db_instance_type_response.py} +13 -13
  385. volcenginesdkrdsmysqlv2/models/node_for_describe_db_instance_ha_config_output.py +435 -0
  386. volcenginesdkrdsmysqlv2/models/{node_info_for_restore_to_cross_region_instance_input.py → node_info_for_modify_db_instance_type_input.py} +25 -25
  387. volcenginesdkrdsmysqlv2/models/proxy_detail_for_describe_db_proxy_output.py +149 -0
  388. volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_create_db_instance_input.py +123 -0
  389. volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_create_dr_db_instance_input.py +123 -0
  390. volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_rebuild_db_instance_input.py +123 -0
  391. volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_restore_to_new_instance_input.py +123 -0
  392. volcenginesdkrdsmysqlv2/models/proxy_resource_info_for_describe_db_proxy_output.py +175 -0
  393. volcenginesdkrdsmysqlv2/models/read_only_node_weight_for_describe_db_instance_endpoints_output.py +175 -0
  394. volcenginesdkrdsmysqlv2/models/rebuild_db_instance_request.py +27 -1
  395. volcenginesdkrdsmysqlv2/models/restore_to_new_instance_request.py +27 -1
  396. volcenginesdkrdsmysqlv2/models/sync_allow_list_request.py +150 -0
  397. volcenginesdkrdsmysqlv2/models/sync_allow_list_response.py +123 -0
  398. volcenginesdkrdsmysqlv2/models/{instance_tag_for_restore_to_cross_region_instance_input.py → tag_for_describe_db_instance_attribute_output.py} +13 -13
  399. volcenginesdkresourceshare/__init__.py +12 -0
  400. volcenginesdkresourceshare/api/resource_share_api.py +291 -0
  401. volcenginesdkresourceshare/models/__init__.py +12 -0
  402. volcenginesdkresourceshare/models/create_resource_share_request.py +29 -3
  403. volcenginesdkresourceshare/models/create_resource_share_response.py +29 -1
  404. volcenginesdkresourceshare/models/describe_resource_shares_request.py +31 -6
  405. volcenginesdkresourceshare/models/list_tags_for_resources_request.py +228 -0
  406. volcenginesdkresourceshare/models/list_tags_for_resources_response.py +175 -0
  407. volcenginesdkresourceshare/models/resource_share_for_describe_resource_shares_output.py +27 -1
  408. volcenginesdkresourceshare/models/resource_tag_for_list_tags_for_resources_output.py +201 -0
  409. volcenginesdkresourceshare/models/tag_filter_for_describe_resource_shares_input.py +149 -0
  410. volcenginesdkresourceshare/models/tag_filter_for_list_tags_for_resources_input.py +149 -0
  411. volcenginesdkresourceshare/models/tag_for_create_resource_share_input.py +149 -0
  412. volcenginesdkresourceshare/models/tag_for_describe_resource_shares_output.py +149 -0
  413. volcenginesdkresourceshare/models/tag_for_tag_resources_input.py +151 -0
  414. volcenginesdkresourceshare/models/tag_resources_request.py +176 -0
  415. volcenginesdktransitrouter/models/accept_shared_transit_router_response.py → volcenginesdkresourceshare/models/tag_resources_response.py +6 -6
  416. volcenginesdkresourceshare/models/untag_resources_request.py +176 -0
  417. volcenginesdkresourceshare/models/untag_resources_response.py +95 -0
  418. volcenginesdktag/models/get_tag_keys_request.py +60 -1
  419. volcenginesdktag/models/get_tag_values_request.py +62 -3
  420. volcenginesdktag/models/get_tags_request.py +34 -1
  421. volcenginesdktransitrouter/__init__.py +1 -13
  422. volcenginesdktransitrouter/api/transitrouter_api.py +0 -582
  423. volcenginesdktransitrouter/models/__init__.py +1 -13
  424. volcenginesdktransitrouter/models/create_transit_router_vpc_attachment_request.py +27 -1
  425. volcenginesdktransitrouter/models/describe_transit_router_flow_logs_response.py +79 -1
  426. volcenginesdktransitrouter/models/describe_transit_router_multicast_groups_response.py +79 -1
  427. volcenginesdktransitrouter/models/describe_transit_router_route_entries_request.py +27 -1
  428. volcenginesdktransitrouter/models/describe_transit_router_route_entries_response.py +3 -55
  429. volcenginesdktransitrouter/models/models.py +1960 -1935
  430. volcenginesdktransitrouter/models/modify_transit_router_vpc_attachment_attributes_request.py +27 -1
  431. volcenginesdktransitrouter/models/modify_transit_router_vpn_attachment_attributes_request.py +27 -1
  432. volcenginesdktransitrouter/models/{reject_shared_transit_router_request.py → tag_for_describe_transit_router_flow_logs_output.py} +46 -21
  433. volcenginesdktransitrouter/models/transit_router_attachment_for_describe_transit_router_peer_attachments_output.py +3 -3
  434. volcenginesdktransitrouter/models/transit_router_attachment_for_describe_transit_router_vpc_attachments_output.py +53 -1
  435. volcenginesdktransitrouter/models/transit_router_attachment_for_describe_transit_router_vpn_attachments_output.py +30 -4
  436. volcenginesdktransitrouter/models/transit_router_flow_log_for_describe_transit_router_flow_logs_output.py +27 -1
  437. volcenginesdktransitrouter/models/transit_router_for_describe_transit_routers_output.py +27 -1
  438. volcenginesdktransitrouter/models/transit_router_route_entry_for_describe_transit_router_route_entries_output.py +53 -1
  439. volcenginesdkvedbm/__init__.py +54 -0
  440. volcenginesdkvedbm/api/vedbm_api.py +2193 -253
  441. volcenginesdkvedbm/models/__init__.py +54 -0
  442. volcenginesdkvedbm/models/authorized_allow_list_for_describe_instance_allow_lists_output.py +279 -0
  443. volcenginesdkvedbm/models/cancel_schedule_events_request.py +149 -0
  444. volcenginesdkvedbm/models/cancel_schedule_events_response.py +95 -0
  445. volcenginesdkvedbm/models/change_master_request.py +151 -0
  446. volcenginesdkvedbm/models/change_master_response.py +95 -0
  447. volcenginesdkvedbm/models/charge_item_price_for_describe_db_instance_price_detail_output.py +227 -0
  448. volcenginesdkvedbm/models/charge_item_price_for_describe_exist_db_instance_price_output.py +227 -0
  449. volcenginesdkvedbm/models/charge_item_price_for_describe_storage_payable_price_output.py +227 -0
  450. volcenginesdkvedbm/models/config_item_price_for_describe_db_instance_price_detail_output.py +331 -0
  451. volcenginesdkvedbm/models/config_item_price_for_describe_exist_db_instance_price_output.py +331 -0
  452. volcenginesdkvedbm/models/create_db_instance_request.py +1 -1
  453. volcenginesdkvedbm/models/describe_availability_zones_request.py +123 -0
  454. volcenginesdkvedbm/models/describe_availability_zones_response.py +149 -0
  455. volcenginesdkvedbm/models/describe_db_instance_parameter_change_history_request.py +256 -0
  456. volcenginesdkvedbm/models/describe_db_instance_parameter_change_history_response.py +149 -0
  457. volcenginesdkvedbm/models/describe_db_instance_price_detail_request.py +328 -0
  458. volcenginesdkvedbm/models/describe_db_instance_price_detail_response.py +279 -0
  459. volcenginesdkvedbm/models/describe_db_instance_specs_request.py +95 -0
  460. volcenginesdkrdsmysqlv2/models/describe_cross_region_backup_db_instances_response.py → volcenginesdkvedbm/models/describe_db_instance_specs_response.py +27 -27
  461. volcenginesdkrdsmysqlv2/models/describe_cross_backup_policy_request.py → volcenginesdkvedbm/models/describe_db_instance_version_request.py +10 -10
  462. volcenginesdkvedbm/models/describe_db_instance_version_response.py +175 -0
  463. volcenginesdkvedbm/models/describe_exist_db_instance_price_request.py +248 -0
  464. volcenginesdkvedbm/models/describe_exist_db_instance_price_response.py +279 -0
  465. volcenginesdkvedbm/models/describe_instance_allow_lists_request.py +124 -0
  466. volcenginesdkvedbm/models/describe_instance_allow_lists_response.py +149 -0
  467. volcenginesdkvedbm/models/describe_modifiable_parameters_request.py +199 -0
  468. volcenginesdkvedbm/models/describe_modifiable_parameters_response.py +123 -0
  469. volcenginesdkvedbm/models/describe_regions_request.py +95 -0
  470. volcenginesdkrdsmysqlv2/models/describe_available_cross_region_response.py → volcenginesdkvedbm/models/describe_regions_response.py +13 -13
  471. volcenginesdkvedbm/models/describe_schedule_events_request.py +347 -0
  472. volcenginesdkvedbm/models/describe_schedule_events_response.py +149 -0
  473. volcenginesdkvedbm/models/describe_storage_payable_price_request.py +131 -0
  474. volcenginesdkvedbm/models/describe_storage_payable_price_response.py +123 -0
  475. volcenginesdkvedbm/models/instance_for_describe_exist_db_instance_price_input.py +208 -0
  476. volcenginesdkvedbm/models/modify_allow_list_request.py +1 -1
  477. volcenginesdkvedbm/models/modify_db_endpoint_address_request.py +237 -0
  478. volcenginesdktransitrouter/models/delete_transit_router_grant_rule_response.py → volcenginesdkvedbm/models/modify_db_endpoint_address_response.py +6 -6
  479. volcenginesdkvedbm/models/modify_db_endpoint_dns_request.py +95 -0
  480. volcenginesdkvedbm/models/modify_db_endpoint_dns_response.py +95 -0
  481. volcenginesdkvedbm/models/modify_db_instance_charge_type_request.py +295 -0
  482. volcenginesdkrdsmysqlv2/models/describe_available_cross_region_request.py → volcenginesdkvedbm/models/modify_db_instance_charge_type_response.py +25 -26
  483. volcenginesdkrdsmysqlv2/models/modify_db_instance_auto_upgrade_minor_version_request.py → volcenginesdkvedbm/models/modify_db_instance_deletion_protection_policy_request.py +34 -27
  484. volcenginesdkvedbm/models/modify_db_instance_deletion_protection_policy_response.py +95 -0
  485. volcenginesdkrdsmysqlv2/models/modify_db_auto_scaling_config_request.py → volcenginesdkvedbm/models/modify_db_instance_maintenance_window_request.py +28 -27
  486. volcenginesdkrdsmysqlv2/models/upgrade_db_instance_kernel_version_response.py → volcenginesdkvedbm/models/modify_db_instance_maintenance_window_response.py +6 -6
  487. volcenginesdkvedbm/models/modify_db_node_config_request.py +176 -0
  488. volcenginesdkvedbm/models/modify_db_node_config_response.py +95 -0
  489. volcenginesdkvedbm/models/modify_schedule_events_request.py +182 -0
  490. volcenginesdkvedbm/models/modify_schedule_events_response.py +95 -0
  491. volcenginesdkvedbm/models/node_for_describe_db_instance_detail_output.py +27 -1
  492. volcenginesdkvedbm/models/node_for_describe_db_instances_output.py +27 -1
  493. volcenginesdkvedbm/models/node_spec_for_describe_db_instance_specs_output.py +305 -0
  494. volcenginesdkvedbm/models/node_spec_for_describe_exist_db_instance_price_input.py +182 -0
  495. volcenginesdkvedbm/models/parameter_change_history_for_describe_db_instance_parameter_change_history_output.py +227 -0
  496. volcenginesdkvedbm/models/parameter_for_describe_modifiable_parameters_output.py +357 -0
  497. volcenginesdkvedbm/models/region_for_describe_regions_output.py +149 -0
  498. volcenginesdkvedbm/models/restart_db_instance_request.py +29 -3
  499. volcenginesdkvedbm/models/restore_to_new_instance_request.py +1 -1
  500. volcenginesdkvedbm/models/schedule_tasks_info_for_describe_schedule_events_output.py +435 -0
  501. volcenginesdktransitrouter/models/modify_transit_router_grant_rule_attributes_request.py → volcenginesdkvedbm/models/zone_for_describe_availability_zones_output.py +39 -41
  502. volcenginesdkvod20250101/__init__.py +18 -0
  503. volcenginesdkvod20250101/api/vod20250101_api.py +194 -0
  504. volcenginesdkvod20250101/models/__init__.py +18 -0
  505. volcenginesdkvod20250101/models/bilingual_subtitle_for_get_ai_translation_project_output.py +253 -0
  506. volcenginesdkvod20250101/models/clip_audio_for_create_ai_translation_utterance_output.py +253 -0
  507. volcenginesdkvod20250101/models/clip_video_for_create_ai_translation_utterance_output.py +253 -0
  508. volcenginesdkvod20250101/models/convert_highlight_cuts_for_get_execution_output.py +149 -0
  509. volcenginesdkvod20250101/models/convert_highlight_for_get_execution_output.py +27 -1
  510. volcenginesdkvod20250101/models/create_ai_translation_utterance_request.py +232 -0
  511. volcenginesdkvod20250101/models/create_ai_translation_utterance_response.py +201 -0
  512. volcenginesdkvod20250101/models/highlight_cuts_for_get_execution_output.py +201 -0
  513. volcenginesdkvod20250101/models/highlight_cuts_for_start_execution_input.py +201 -0
  514. volcenginesdkvod20250101/models/highlight_for_get_execution_output.py +53 -1
  515. volcenginesdkvod20250101/models/highlight_for_start_execution_input.py +53 -1
  516. volcenginesdkvod20250101/models/opening_hook_for_get_execution_output.py +227 -0
  517. volcenginesdkvod20250101/models/opening_hook_for_start_execution_input.py +227 -0
  518. volcenginesdkvod20250101/models/project_info_for_get_ai_translation_project_output.py +27 -1
  519. volcenginesdkvod20250101/models/remove_ai_translation_utterance_request.py +178 -0
  520. volcenginesdktransitrouter/models/create_transit_router_grant_rule_response.py → volcenginesdkvod20250101/models/remove_ai_translation_utterance_response.py +6 -6
  521. volcenginesdkvod20250101/models/source_clip_for_create_ai_translation_utterance_output.py +279 -0
  522. volcenginesdkvod20250101/models/source_utterance_for_create_ai_translation_utterance_output.py +357 -0
  523. volcenginesdkvod20250101/models/storyboard_for_get_execution_output.py +253 -0
  524. volcenginesdkvod20250101/models/subtitle_recognition_config_for_get_ai_translation_project_output.py +81 -3
  525. volcenginesdkvod20250101/models/subtitle_recognition_config_for_list_ai_translation_project_output.py +81 -3
  526. volcenginesdkvod20250101/models/subtitle_recognition_config_for_submit_ai_translation_workflow_input.py +81 -3
  527. volcenginesdkvod20250101/models/target_clip_for_create_ai_translation_utterance_output.py +279 -0
  528. volcenginesdkvod20250101/models/target_utterance_for_create_ai_translation_utterance_output.py +357 -0
  529. volcenginesdkvod20250101/models/trim_for_create_ai_translation_utterance_output.py +149 -0
  530. volcenginesdkvod20250101/models/update_ai_translation_utterances_request.py +27 -1
  531. volcenginesdkvod20250101/models/vision_for_get_execution_output.py +53 -1
  532. volcenginesdkvod20250101/models/vision_for_start_execution_input.py +53 -1
  533. volcenginesdkvpn/__init__.py +4 -0
  534. volcenginesdkvpn/models/__init__.py +4 -0
  535. volcenginesdkvpn/models/bgp_config_for_modify_vpn_connection_tunnel_attributes_input.py +149 -0
  536. volcenginesdkvpn/models/bgp_info_for_describe_vpn_connection_attributes_output.py +3 -3
  537. volcenginesdkvpn/models/bgp_info_for_describe_vpn_connections_output.py +3 -3
  538. volcenginesdkvpn/models/convert_bgp_config_for_create_vpn_connection_input.py +149 -0
  539. volcenginesdkvpn/models/convert_bgp_config_for_modify_vpn_connection_attributes_input.py +149 -0
  540. volcenginesdkvpn/models/create_customer_gateway_request.py +34 -1
  541. volcenginesdkvpn/models/create_ssl_vpn_server_request.py +34 -1
  542. volcenginesdkvpn/models/create_vpn_connection_request.py +27 -1
  543. volcenginesdkvpn/models/create_vpn_gateway_request.py +53 -1
  544. volcenginesdkvpn/models/customer_gateway_for_describe_customer_gateways_output.py +27 -1
  545. volcenginesdkvpn/models/describe_customer_gateways_request.py +27 -1
  546. volcenginesdkvpn/models/describe_vpn_connection_attributes_response.py +27 -1
  547. volcenginesdkvpn/models/describe_vpn_gateway_attributes_response.py +53 -1
  548. volcenginesdkvpn/models/describe_vpn_gateways_request.py +79 -1
  549. volcenginesdkvpn/models/modify_ssl_vpn_server_request.py +34 -1
  550. volcenginesdkvpn/models/modify_vpn_connection_attributes_request.py +53 -1
  551. volcenginesdkvpn/models/modify_vpn_connection_tunnel_attributes_request.py +27 -1
  552. volcenginesdkvpn/models/ssl_vpn_server_for_describe_ssl_vpn_servers_output.py +27 -1
  553. volcenginesdkvpn/models/tunnel_bgp_info_for_describe_vpn_connection_attributes_output.py +279 -0
  554. volcenginesdkvpn/models/tunnel_option_for_create_vpn_connection_input.py +27 -1
  555. volcenginesdkvpn/models/tunnel_option_for_describe_vpn_connection_attributes_output.py +27 -1
  556. volcenginesdkvpn/models/tunnel_option_for_describe_vpn_connections_output.py +27 -1
  557. volcenginesdkvpn/models/tunnel_option_for_modify_vpn_connection_attributes_input.py +27 -1
  558. volcenginesdkvpn/models/vpn_gateway_for_describe_vpn_gateways_billing_output.py +53 -1
  559. volcenginesdkvpn/models/vpn_gateway_for_describe_vpn_gateways_output.py +53 -1
  560. volcengine_python_sdk-4.0.20.dist-info/METADATA +0 -20
  561. volcenginesdkrdsmysqlv2/models/auto_storage_scaling_config_for_restore_to_cross_region_instance_input.py +0 -175
  562. volcenginesdkrdsmysqlv2/models/charge_info_for_restore_to_cross_region_instance_input.py +0 -227
  563. volcenginesdkrdsmysqlv2/models/data_for_describe_cross_region_backup_db_instances_output.py +0 -357
  564. volcenginesdkrdsmysqlv2/models/describe_cross_backup_policy_response.py +0 -227
  565. volcenginesdkrdsmysqlv2/models/describe_cross_region_backup_db_instances_request.py +0 -279
  566. volcenginesdkrdsmysqlv2/models/describe_db_auto_scaling_config_response.py +0 -227
  567. volcenginesdkrdsmysqlv2/models/modify_cross_backup_policy_request.py +0 -228
  568. volcenginesdkrdsmysqlv2/models/modify_cross_backup_policy_response.py +0 -227
  569. volcenginesdkrdsmysqlv2/models/restore_to_cross_region_instance_request.py +0 -597
  570. volcenginesdkrdsmysqlv2/models/storage_config_for_describe_db_auto_scaling_config_output.py +0 -175
  571. volcenginesdkrdsmysqlv2/models/storage_config_for_modify_db_auto_scaling_config_input.py +0 -175
  572. volcenginesdktransitrouter/models/transit_router_grant_rule_for_describe_transit_router_grant_rules_output.py +0 -253
  573. {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.22.dist-info/licenses}/LICENSE.txt +0 -0
  574. {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.22.dist-info/licenses}/NOTICE.md +0 -0
@@ -324,6 +324,200 @@ class VEDBMApi(object):
324
324
  _request_timeout=params.get('_request_timeout'),
325
325
  collection_formats=collection_formats)
326
326
 
327
+ def cancel_schedule_events(self, body, **kwargs): # noqa: E501
328
+ """cancel_schedule_events # noqa: E501
329
+
330
+ This method makes a synchronous HTTP request by default. To make an
331
+ asynchronous HTTP request, please pass async_req=True
332
+ >>> thread = api.cancel_schedule_events(body, async_req=True)
333
+ >>> result = thread.get()
334
+
335
+ :param async_req bool
336
+ :param CancelScheduleEventsRequest body: (required)
337
+ :return: CancelScheduleEventsResponse
338
+ If the method is called asynchronously,
339
+ returns the request thread.
340
+ """
341
+ kwargs['_return_http_data_only'] = True
342
+ if kwargs.get('async_req'):
343
+ return self.cancel_schedule_events_with_http_info(body, **kwargs) # noqa: E501
344
+ else:
345
+ (data) = self.cancel_schedule_events_with_http_info(body, **kwargs) # noqa: E501
346
+ return data
347
+
348
+ def cancel_schedule_events_with_http_info(self, body, **kwargs): # noqa: E501
349
+ """cancel_schedule_events # noqa: E501
350
+
351
+ This method makes a synchronous HTTP request by default. To make an
352
+ asynchronous HTTP request, please pass async_req=True
353
+ >>> thread = api.cancel_schedule_events_with_http_info(body, async_req=True)
354
+ >>> result = thread.get()
355
+
356
+ :param async_req bool
357
+ :param CancelScheduleEventsRequest body: (required)
358
+ :return: CancelScheduleEventsResponse
359
+ If the method is called asynchronously,
360
+ returns the request thread.
361
+ """
362
+
363
+ all_params = ['body'] # noqa: E501
364
+ all_params.append('async_req')
365
+ all_params.append('_return_http_data_only')
366
+ all_params.append('_preload_content')
367
+ all_params.append('_request_timeout')
368
+
369
+ params = locals()
370
+ for key, val in six.iteritems(params['kwargs']):
371
+ if key not in all_params:
372
+ raise TypeError(
373
+ "Got an unexpected keyword argument '%s'"
374
+ " to method cancel_schedule_events" % key
375
+ )
376
+ params[key] = val
377
+ del params['kwargs']
378
+ # verify the required parameter 'body' is set
379
+ if self.api_client.client_side_validation and ('body' not in params or
380
+ params['body'] is None): # noqa: E501
381
+ raise ValueError("Missing the required parameter `body` when calling `cancel_schedule_events`") # noqa: E501
382
+
383
+ collection_formats = {}
384
+
385
+ path_params = {}
386
+
387
+ query_params = []
388
+
389
+ header_params = {}
390
+
391
+ form_params = []
392
+ local_var_files = {}
393
+
394
+ body_params = None
395
+ if 'body' in params:
396
+ body_params = params['body']
397
+ # HTTP header `Accept`
398
+ header_params['Accept'] = self.api_client.select_header_accept(
399
+ ['application/json']) # noqa: E501
400
+
401
+ # HTTP header `Content-Type`
402
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
403
+ ['application/json']) # noqa: E501
404
+
405
+ # Authentication setting
406
+ auth_settings = ['volcengineSign'] # noqa: E501
407
+
408
+ return self.api_client.call_api(
409
+ '/CancelScheduleEvents/2022-01-01/vedbm/post/application_json/', 'POST',
410
+ path_params,
411
+ query_params,
412
+ header_params,
413
+ body=body_params,
414
+ post_params=form_params,
415
+ files=local_var_files,
416
+ response_type='CancelScheduleEventsResponse', # noqa: E501
417
+ auth_settings=auth_settings,
418
+ async_req=params.get('async_req'),
419
+ _return_http_data_only=params.get('_return_http_data_only'),
420
+ _preload_content=params.get('_preload_content', True),
421
+ _request_timeout=params.get('_request_timeout'),
422
+ collection_formats=collection_formats)
423
+
424
+ def change_master(self, body, **kwargs): # noqa: E501
425
+ """change_master # noqa: E501
426
+
427
+ This method makes a synchronous HTTP request by default. To make an
428
+ asynchronous HTTP request, please pass async_req=True
429
+ >>> thread = api.change_master(body, async_req=True)
430
+ >>> result = thread.get()
431
+
432
+ :param async_req bool
433
+ :param ChangeMasterRequest body: (required)
434
+ :return: ChangeMasterResponse
435
+ If the method is called asynchronously,
436
+ returns the request thread.
437
+ """
438
+ kwargs['_return_http_data_only'] = True
439
+ if kwargs.get('async_req'):
440
+ return self.change_master_with_http_info(body, **kwargs) # noqa: E501
441
+ else:
442
+ (data) = self.change_master_with_http_info(body, **kwargs) # noqa: E501
443
+ return data
444
+
445
+ def change_master_with_http_info(self, body, **kwargs): # noqa: E501
446
+ """change_master # noqa: E501
447
+
448
+ This method makes a synchronous HTTP request by default. To make an
449
+ asynchronous HTTP request, please pass async_req=True
450
+ >>> thread = api.change_master_with_http_info(body, async_req=True)
451
+ >>> result = thread.get()
452
+
453
+ :param async_req bool
454
+ :param ChangeMasterRequest body: (required)
455
+ :return: ChangeMasterResponse
456
+ If the method is called asynchronously,
457
+ returns the request thread.
458
+ """
459
+
460
+ all_params = ['body'] # noqa: E501
461
+ all_params.append('async_req')
462
+ all_params.append('_return_http_data_only')
463
+ all_params.append('_preload_content')
464
+ all_params.append('_request_timeout')
465
+
466
+ params = locals()
467
+ for key, val in six.iteritems(params['kwargs']):
468
+ if key not in all_params:
469
+ raise TypeError(
470
+ "Got an unexpected keyword argument '%s'"
471
+ " to method change_master" % key
472
+ )
473
+ params[key] = val
474
+ del params['kwargs']
475
+ # verify the required parameter 'body' is set
476
+ if self.api_client.client_side_validation and ('body' not in params or
477
+ params['body'] is None): # noqa: E501
478
+ raise ValueError("Missing the required parameter `body` when calling `change_master`") # noqa: E501
479
+
480
+ collection_formats = {}
481
+
482
+ path_params = {}
483
+
484
+ query_params = []
485
+
486
+ header_params = {}
487
+
488
+ form_params = []
489
+ local_var_files = {}
490
+
491
+ body_params = None
492
+ if 'body' in params:
493
+ body_params = params['body']
494
+ # HTTP header `Accept`
495
+ header_params['Accept'] = self.api_client.select_header_accept(
496
+ ['application/json']) # noqa: E501
497
+
498
+ # HTTP header `Content-Type`
499
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
500
+ ['application/json']) # noqa: E501
501
+
502
+ # Authentication setting
503
+ auth_settings = ['volcengineSign'] # noqa: E501
504
+
505
+ return self.api_client.call_api(
506
+ '/ChangeMaster/2022-01-01/vedbm/post/application_json/', 'POST',
507
+ path_params,
508
+ query_params,
509
+ header_params,
510
+ body=body_params,
511
+ post_params=form_params,
512
+ files=local_var_files,
513
+ response_type='ChangeMasterResponse', # noqa: E501
514
+ auth_settings=auth_settings,
515
+ async_req=params.get('async_req'),
516
+ _return_http_data_only=params.get('_return_http_data_only'),
517
+ _preload_content=params.get('_preload_content', True),
518
+ _request_timeout=params.get('_request_timeout'),
519
+ collection_formats=collection_formats)
520
+
327
521
  def create_allow_list(self, body, **kwargs): # noqa: E501
328
522
  """create_allow_list # noqa: E501
329
523
 
@@ -2070,6 +2264,103 @@ class VEDBMApi(object):
2070
2264
  _request_timeout=params.get('_request_timeout'),
2071
2265
  collection_formats=collection_formats)
2072
2266
 
2267
+ def describe_availability_zones(self, body, **kwargs): # noqa: E501
2268
+ """describe_availability_zones # noqa: E501
2269
+
2270
+ This method makes a synchronous HTTP request by default. To make an
2271
+ asynchronous HTTP request, please pass async_req=True
2272
+ >>> thread = api.describe_availability_zones(body, async_req=True)
2273
+ >>> result = thread.get()
2274
+
2275
+ :param async_req bool
2276
+ :param DescribeAvailabilityZonesRequest body: (required)
2277
+ :return: DescribeAvailabilityZonesResponse
2278
+ If the method is called asynchronously,
2279
+ returns the request thread.
2280
+ """
2281
+ kwargs['_return_http_data_only'] = True
2282
+ if kwargs.get('async_req'):
2283
+ return self.describe_availability_zones_with_http_info(body, **kwargs) # noqa: E501
2284
+ else:
2285
+ (data) = self.describe_availability_zones_with_http_info(body, **kwargs) # noqa: E501
2286
+ return data
2287
+
2288
+ def describe_availability_zones_with_http_info(self, body, **kwargs): # noqa: E501
2289
+ """describe_availability_zones # noqa: E501
2290
+
2291
+ This method makes a synchronous HTTP request by default. To make an
2292
+ asynchronous HTTP request, please pass async_req=True
2293
+ >>> thread = api.describe_availability_zones_with_http_info(body, async_req=True)
2294
+ >>> result = thread.get()
2295
+
2296
+ :param async_req bool
2297
+ :param DescribeAvailabilityZonesRequest body: (required)
2298
+ :return: DescribeAvailabilityZonesResponse
2299
+ If the method is called asynchronously,
2300
+ returns the request thread.
2301
+ """
2302
+
2303
+ all_params = ['body'] # noqa: E501
2304
+ all_params.append('async_req')
2305
+ all_params.append('_return_http_data_only')
2306
+ all_params.append('_preload_content')
2307
+ all_params.append('_request_timeout')
2308
+
2309
+ params = locals()
2310
+ for key, val in six.iteritems(params['kwargs']):
2311
+ if key not in all_params:
2312
+ raise TypeError(
2313
+ "Got an unexpected keyword argument '%s'"
2314
+ " to method describe_availability_zones" % key
2315
+ )
2316
+ params[key] = val
2317
+ del params['kwargs']
2318
+ # verify the required parameter 'body' is set
2319
+ if self.api_client.client_side_validation and ('body' not in params or
2320
+ params['body'] is None): # noqa: E501
2321
+ raise ValueError("Missing the required parameter `body` when calling `describe_availability_zones`") # noqa: E501
2322
+
2323
+ collection_formats = {}
2324
+
2325
+ path_params = {}
2326
+
2327
+ query_params = []
2328
+
2329
+ header_params = {}
2330
+
2331
+ form_params = []
2332
+ local_var_files = {}
2333
+
2334
+ body_params = None
2335
+ if 'body' in params:
2336
+ body_params = params['body']
2337
+ # HTTP header `Accept`
2338
+ header_params['Accept'] = self.api_client.select_header_accept(
2339
+ ['application/json']) # noqa: E501
2340
+
2341
+ # HTTP header `Content-Type`
2342
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
2343
+ ['application/json']) # noqa: E501
2344
+
2345
+ # Authentication setting
2346
+ auth_settings = ['volcengineSign'] # noqa: E501
2347
+
2348
+ return self.api_client.call_api(
2349
+ '/DescribeAvailabilityZones/2022-01-01/vedbm/post/application_json/', 'POST',
2350
+ path_params,
2351
+ query_params,
2352
+ header_params,
2353
+ body=body_params,
2354
+ post_params=form_params,
2355
+ files=local_var_files,
2356
+ response_type='DescribeAvailabilityZonesResponse', # noqa: E501
2357
+ auth_settings=auth_settings,
2358
+ async_req=params.get('async_req'),
2359
+ _return_http_data_only=params.get('_return_http_data_only'),
2360
+ _preload_content=params.get('_preload_content', True),
2361
+ _request_timeout=params.get('_request_timeout'),
2362
+ collection_formats=collection_formats)
2363
+
2073
2364
  def describe_backup_policy(self, body, **kwargs): # noqa: E501
2074
2365
  """describe_backup_policy # noqa: E501
2075
2366
 
@@ -2846,38 +3137,38 @@ class VEDBMApi(object):
2846
3137
  _request_timeout=params.get('_request_timeout'),
2847
3138
  collection_formats=collection_formats)
2848
3139
 
2849
- def describe_db_instance_parameters(self, body, **kwargs): # noqa: E501
2850
- """describe_db_instance_parameters # noqa: E501
3140
+ def describe_db_instance_parameter_change_history(self, body, **kwargs): # noqa: E501
3141
+ """describe_db_instance_parameter_change_history # noqa: E501
2851
3142
 
2852
3143
  This method makes a synchronous HTTP request by default. To make an
2853
3144
  asynchronous HTTP request, please pass async_req=True
2854
- >>> thread = api.describe_db_instance_parameters(body, async_req=True)
3145
+ >>> thread = api.describe_db_instance_parameter_change_history(body, async_req=True)
2855
3146
  >>> result = thread.get()
2856
3147
 
2857
3148
  :param async_req bool
2858
- :param DescribeDBInstanceParametersRequest body: (required)
2859
- :return: DescribeDBInstanceParametersResponse
3149
+ :param DescribeDBInstanceParameterChangeHistoryRequest body: (required)
3150
+ :return: DescribeDBInstanceParameterChangeHistoryResponse
2860
3151
  If the method is called asynchronously,
2861
3152
  returns the request thread.
2862
3153
  """
2863
3154
  kwargs['_return_http_data_only'] = True
2864
3155
  if kwargs.get('async_req'):
2865
- return self.describe_db_instance_parameters_with_http_info(body, **kwargs) # noqa: E501
3156
+ return self.describe_db_instance_parameter_change_history_with_http_info(body, **kwargs) # noqa: E501
2866
3157
  else:
2867
- (data) = self.describe_db_instance_parameters_with_http_info(body, **kwargs) # noqa: E501
3158
+ (data) = self.describe_db_instance_parameter_change_history_with_http_info(body, **kwargs) # noqa: E501
2868
3159
  return data
2869
3160
 
2870
- def describe_db_instance_parameters_with_http_info(self, body, **kwargs): # noqa: E501
2871
- """describe_db_instance_parameters # noqa: E501
3161
+ def describe_db_instance_parameter_change_history_with_http_info(self, body, **kwargs): # noqa: E501
3162
+ """describe_db_instance_parameter_change_history # noqa: E501
2872
3163
 
2873
3164
  This method makes a synchronous HTTP request by default. To make an
2874
3165
  asynchronous HTTP request, please pass async_req=True
2875
- >>> thread = api.describe_db_instance_parameters_with_http_info(body, async_req=True)
3166
+ >>> thread = api.describe_db_instance_parameter_change_history_with_http_info(body, async_req=True)
2876
3167
  >>> result = thread.get()
2877
3168
 
2878
3169
  :param async_req bool
2879
- :param DescribeDBInstanceParametersRequest body: (required)
2880
- :return: DescribeDBInstanceParametersResponse
3170
+ :param DescribeDBInstanceParameterChangeHistoryRequest body: (required)
3171
+ :return: DescribeDBInstanceParameterChangeHistoryResponse
2881
3172
  If the method is called asynchronously,
2882
3173
  returns the request thread.
2883
3174
  """
@@ -2893,7 +3184,104 @@ class VEDBMApi(object):
2893
3184
  if key not in all_params:
2894
3185
  raise TypeError(
2895
3186
  "Got an unexpected keyword argument '%s'"
2896
- " to method describe_db_instance_parameters" % key
3187
+ " to method describe_db_instance_parameter_change_history" % key
3188
+ )
3189
+ params[key] = val
3190
+ del params['kwargs']
3191
+ # verify the required parameter 'body' is set
3192
+ if self.api_client.client_side_validation and ('body' not in params or
3193
+ params['body'] is None): # noqa: E501
3194
+ raise ValueError("Missing the required parameter `body` when calling `describe_db_instance_parameter_change_history`") # noqa: E501
3195
+
3196
+ collection_formats = {}
3197
+
3198
+ path_params = {}
3199
+
3200
+ query_params = []
3201
+
3202
+ header_params = {}
3203
+
3204
+ form_params = []
3205
+ local_var_files = {}
3206
+
3207
+ body_params = None
3208
+ if 'body' in params:
3209
+ body_params = params['body']
3210
+ # HTTP header `Accept`
3211
+ header_params['Accept'] = self.api_client.select_header_accept(
3212
+ ['application/json']) # noqa: E501
3213
+
3214
+ # HTTP header `Content-Type`
3215
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
3216
+ ['application/json']) # noqa: E501
3217
+
3218
+ # Authentication setting
3219
+ auth_settings = ['volcengineSign'] # noqa: E501
3220
+
3221
+ return self.api_client.call_api(
3222
+ '/DescribeDBInstanceParameterChangeHistory/2022-01-01/vedbm/post/application_json/', 'POST',
3223
+ path_params,
3224
+ query_params,
3225
+ header_params,
3226
+ body=body_params,
3227
+ post_params=form_params,
3228
+ files=local_var_files,
3229
+ response_type='DescribeDBInstanceParameterChangeHistoryResponse', # noqa: E501
3230
+ auth_settings=auth_settings,
3231
+ async_req=params.get('async_req'),
3232
+ _return_http_data_only=params.get('_return_http_data_only'),
3233
+ _preload_content=params.get('_preload_content', True),
3234
+ _request_timeout=params.get('_request_timeout'),
3235
+ collection_formats=collection_formats)
3236
+
3237
+ def describe_db_instance_parameters(self, body, **kwargs): # noqa: E501
3238
+ """describe_db_instance_parameters # noqa: E501
3239
+
3240
+ This method makes a synchronous HTTP request by default. To make an
3241
+ asynchronous HTTP request, please pass async_req=True
3242
+ >>> thread = api.describe_db_instance_parameters(body, async_req=True)
3243
+ >>> result = thread.get()
3244
+
3245
+ :param async_req bool
3246
+ :param DescribeDBInstanceParametersRequest body: (required)
3247
+ :return: DescribeDBInstanceParametersResponse
3248
+ If the method is called asynchronously,
3249
+ returns the request thread.
3250
+ """
3251
+ kwargs['_return_http_data_only'] = True
3252
+ if kwargs.get('async_req'):
3253
+ return self.describe_db_instance_parameters_with_http_info(body, **kwargs) # noqa: E501
3254
+ else:
3255
+ (data) = self.describe_db_instance_parameters_with_http_info(body, **kwargs) # noqa: E501
3256
+ return data
3257
+
3258
+ def describe_db_instance_parameters_with_http_info(self, body, **kwargs): # noqa: E501
3259
+ """describe_db_instance_parameters # noqa: E501
3260
+
3261
+ This method makes a synchronous HTTP request by default. To make an
3262
+ asynchronous HTTP request, please pass async_req=True
3263
+ >>> thread = api.describe_db_instance_parameters_with_http_info(body, async_req=True)
3264
+ >>> result = thread.get()
3265
+
3266
+ :param async_req bool
3267
+ :param DescribeDBInstanceParametersRequest body: (required)
3268
+ :return: DescribeDBInstanceParametersResponse
3269
+ If the method is called asynchronously,
3270
+ returns the request thread.
3271
+ """
3272
+
3273
+ all_params = ['body'] # noqa: E501
3274
+ all_params.append('async_req')
3275
+ all_params.append('_return_http_data_only')
3276
+ all_params.append('_preload_content')
3277
+ all_params.append('_request_timeout')
3278
+
3279
+ params = locals()
3280
+ for key, val in six.iteritems(params['kwargs']):
3281
+ if key not in all_params:
3282
+ raise TypeError(
3283
+ "Got an unexpected keyword argument '%s'"
3284
+ " to method describe_db_instance_parameters" % key
2897
3285
  )
2898
3286
  params[key] = val
2899
3287
  del params['kwargs']
@@ -2943,38 +3331,38 @@ class VEDBMApi(object):
2943
3331
  _request_timeout=params.get('_request_timeout'),
2944
3332
  collection_formats=collection_formats)
2945
3333
 
2946
- def describe_db_instances(self, body, **kwargs): # noqa: E501
2947
- """describe_db_instances # noqa: E501
3334
+ def describe_db_instance_price_detail(self, body, **kwargs): # noqa: E501
3335
+ """describe_db_instance_price_detail # noqa: E501
2948
3336
 
2949
3337
  This method makes a synchronous HTTP request by default. To make an
2950
3338
  asynchronous HTTP request, please pass async_req=True
2951
- >>> thread = api.describe_db_instances(body, async_req=True)
3339
+ >>> thread = api.describe_db_instance_price_detail(body, async_req=True)
2952
3340
  >>> result = thread.get()
2953
3341
 
2954
3342
  :param async_req bool
2955
- :param DescribeDBInstancesRequest body: (required)
2956
- :return: DescribeDBInstancesResponse
3343
+ :param DescribeDBInstancePriceDetailRequest body: (required)
3344
+ :return: DescribeDBInstancePriceDetailResponse
2957
3345
  If the method is called asynchronously,
2958
3346
  returns the request thread.
2959
3347
  """
2960
3348
  kwargs['_return_http_data_only'] = True
2961
3349
  if kwargs.get('async_req'):
2962
- return self.describe_db_instances_with_http_info(body, **kwargs) # noqa: E501
3350
+ return self.describe_db_instance_price_detail_with_http_info(body, **kwargs) # noqa: E501
2963
3351
  else:
2964
- (data) = self.describe_db_instances_with_http_info(body, **kwargs) # noqa: E501
3352
+ (data) = self.describe_db_instance_price_detail_with_http_info(body, **kwargs) # noqa: E501
2965
3353
  return data
2966
3354
 
2967
- def describe_db_instances_with_http_info(self, body, **kwargs): # noqa: E501
2968
- """describe_db_instances # noqa: E501
3355
+ def describe_db_instance_price_detail_with_http_info(self, body, **kwargs): # noqa: E501
3356
+ """describe_db_instance_price_detail # noqa: E501
2969
3357
 
2970
3358
  This method makes a synchronous HTTP request by default. To make an
2971
3359
  asynchronous HTTP request, please pass async_req=True
2972
- >>> thread = api.describe_db_instances_with_http_info(body, async_req=True)
3360
+ >>> thread = api.describe_db_instance_price_detail_with_http_info(body, async_req=True)
2973
3361
  >>> result = thread.get()
2974
3362
 
2975
3363
  :param async_req bool
2976
- :param DescribeDBInstancesRequest body: (required)
2977
- :return: DescribeDBInstancesResponse
3364
+ :param DescribeDBInstancePriceDetailRequest body: (required)
3365
+ :return: DescribeDBInstancePriceDetailResponse
2978
3366
  If the method is called asynchronously,
2979
3367
  returns the request thread.
2980
3368
  """
@@ -2990,14 +3378,14 @@ class VEDBMApi(object):
2990
3378
  if key not in all_params:
2991
3379
  raise TypeError(
2992
3380
  "Got an unexpected keyword argument '%s'"
2993
- " to method describe_db_instances" % key
3381
+ " to method describe_db_instance_price_detail" % key
2994
3382
  )
2995
3383
  params[key] = val
2996
3384
  del params['kwargs']
2997
3385
  # verify the required parameter 'body' is set
2998
3386
  if self.api_client.client_side_validation and ('body' not in params or
2999
3387
  params['body'] is None): # noqa: E501
3000
- raise ValueError("Missing the required parameter `body` when calling `describe_db_instances`") # noqa: E501
3388
+ raise ValueError("Missing the required parameter `body` when calling `describe_db_instance_price_detail`") # noqa: E501
3001
3389
 
3002
3390
  collection_formats = {}
3003
3391
 
@@ -3025,14 +3413,14 @@ class VEDBMApi(object):
3025
3413
  auth_settings = ['volcengineSign'] # noqa: E501
3026
3414
 
3027
3415
  return self.api_client.call_api(
3028
- '/DescribeDBInstances/2022-01-01/vedbm/post/application_json/', 'POST',
3416
+ '/DescribeDBInstancePriceDetail/2022-01-01/vedbm/post/application_json/', 'POST',
3029
3417
  path_params,
3030
3418
  query_params,
3031
3419
  header_params,
3032
3420
  body=body_params,
3033
3421
  post_params=form_params,
3034
3422
  files=local_var_files,
3035
- response_type='DescribeDBInstancesResponse', # noqa: E501
3423
+ response_type='DescribeDBInstancePriceDetailResponse', # noqa: E501
3036
3424
  auth_settings=auth_settings,
3037
3425
  async_req=params.get('async_req'),
3038
3426
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3040,38 +3428,38 @@ class VEDBMApi(object):
3040
3428
  _request_timeout=params.get('_request_timeout'),
3041
3429
  collection_formats=collection_formats)
3042
3430
 
3043
- def describe_parameter_template_detail(self, body, **kwargs): # noqa: E501
3044
- """describe_parameter_template_detail # noqa: E501
3431
+ def describe_db_instance_specs(self, body, **kwargs): # noqa: E501
3432
+ """describe_db_instance_specs # noqa: E501
3045
3433
 
3046
3434
  This method makes a synchronous HTTP request by default. To make an
3047
3435
  asynchronous HTTP request, please pass async_req=True
3048
- >>> thread = api.describe_parameter_template_detail(body, async_req=True)
3436
+ >>> thread = api.describe_db_instance_specs(body, async_req=True)
3049
3437
  >>> result = thread.get()
3050
3438
 
3051
3439
  :param async_req bool
3052
- :param DescribeParameterTemplateDetailRequest body: (required)
3053
- :return: DescribeParameterTemplateDetailResponse
3440
+ :param DescribeDBInstanceSpecsRequest body: (required)
3441
+ :return: DescribeDBInstanceSpecsResponse
3054
3442
  If the method is called asynchronously,
3055
3443
  returns the request thread.
3056
3444
  """
3057
3445
  kwargs['_return_http_data_only'] = True
3058
3446
  if kwargs.get('async_req'):
3059
- return self.describe_parameter_template_detail_with_http_info(body, **kwargs) # noqa: E501
3447
+ return self.describe_db_instance_specs_with_http_info(body, **kwargs) # noqa: E501
3060
3448
  else:
3061
- (data) = self.describe_parameter_template_detail_with_http_info(body, **kwargs) # noqa: E501
3449
+ (data) = self.describe_db_instance_specs_with_http_info(body, **kwargs) # noqa: E501
3062
3450
  return data
3063
3451
 
3064
- def describe_parameter_template_detail_with_http_info(self, body, **kwargs): # noqa: E501
3065
- """describe_parameter_template_detail # noqa: E501
3452
+ def describe_db_instance_specs_with_http_info(self, body, **kwargs): # noqa: E501
3453
+ """describe_db_instance_specs # noqa: E501
3066
3454
 
3067
3455
  This method makes a synchronous HTTP request by default. To make an
3068
3456
  asynchronous HTTP request, please pass async_req=True
3069
- >>> thread = api.describe_parameter_template_detail_with_http_info(body, async_req=True)
3457
+ >>> thread = api.describe_db_instance_specs_with_http_info(body, async_req=True)
3070
3458
  >>> result = thread.get()
3071
3459
 
3072
3460
  :param async_req bool
3073
- :param DescribeParameterTemplateDetailRequest body: (required)
3074
- :return: DescribeParameterTemplateDetailResponse
3461
+ :param DescribeDBInstanceSpecsRequest body: (required)
3462
+ :return: DescribeDBInstanceSpecsResponse
3075
3463
  If the method is called asynchronously,
3076
3464
  returns the request thread.
3077
3465
  """
@@ -3087,14 +3475,14 @@ class VEDBMApi(object):
3087
3475
  if key not in all_params:
3088
3476
  raise TypeError(
3089
3477
  "Got an unexpected keyword argument '%s'"
3090
- " to method describe_parameter_template_detail" % key
3478
+ " to method describe_db_instance_specs" % key
3091
3479
  )
3092
3480
  params[key] = val
3093
3481
  del params['kwargs']
3094
3482
  # verify the required parameter 'body' is set
3095
3483
  if self.api_client.client_side_validation and ('body' not in params or
3096
3484
  params['body'] is None): # noqa: E501
3097
- raise ValueError("Missing the required parameter `body` when calling `describe_parameter_template_detail`") # noqa: E501
3485
+ raise ValueError("Missing the required parameter `body` when calling `describe_db_instance_specs`") # noqa: E501
3098
3486
 
3099
3487
  collection_formats = {}
3100
3488
 
@@ -3122,14 +3510,14 @@ class VEDBMApi(object):
3122
3510
  auth_settings = ['volcengineSign'] # noqa: E501
3123
3511
 
3124
3512
  return self.api_client.call_api(
3125
- '/DescribeParameterTemplateDetail/2022-01-01/vedbm/post/application_json/', 'POST',
3513
+ '/DescribeDBInstanceSpecs/2022-01-01/vedbm/post/application_json/', 'POST',
3126
3514
  path_params,
3127
3515
  query_params,
3128
3516
  header_params,
3129
3517
  body=body_params,
3130
3518
  post_params=form_params,
3131
3519
  files=local_var_files,
3132
- response_type='DescribeParameterTemplateDetailResponse', # noqa: E501
3520
+ response_type='DescribeDBInstanceSpecsResponse', # noqa: E501
3133
3521
  auth_settings=auth_settings,
3134
3522
  async_req=params.get('async_req'),
3135
3523
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3137,38 +3525,38 @@ class VEDBMApi(object):
3137
3525
  _request_timeout=params.get('_request_timeout'),
3138
3526
  collection_formats=collection_formats)
3139
3527
 
3140
- def describe_parameter_templates(self, body, **kwargs): # noqa: E501
3141
- """describe_parameter_templates # noqa: E501
3528
+ def describe_db_instance_version(self, body, **kwargs): # noqa: E501
3529
+ """describe_db_instance_version # noqa: E501
3142
3530
 
3143
3531
  This method makes a synchronous HTTP request by default. To make an
3144
3532
  asynchronous HTTP request, please pass async_req=True
3145
- >>> thread = api.describe_parameter_templates(body, async_req=True)
3533
+ >>> thread = api.describe_db_instance_version(body, async_req=True)
3146
3534
  >>> result = thread.get()
3147
3535
 
3148
3536
  :param async_req bool
3149
- :param DescribeParameterTemplatesRequest body: (required)
3150
- :return: DescribeParameterTemplatesResponse
3537
+ :param DescribeDBInstanceVersionRequest body: (required)
3538
+ :return: DescribeDBInstanceVersionResponse
3151
3539
  If the method is called asynchronously,
3152
3540
  returns the request thread.
3153
3541
  """
3154
3542
  kwargs['_return_http_data_only'] = True
3155
3543
  if kwargs.get('async_req'):
3156
- return self.describe_parameter_templates_with_http_info(body, **kwargs) # noqa: E501
3544
+ return self.describe_db_instance_version_with_http_info(body, **kwargs) # noqa: E501
3157
3545
  else:
3158
- (data) = self.describe_parameter_templates_with_http_info(body, **kwargs) # noqa: E501
3546
+ (data) = self.describe_db_instance_version_with_http_info(body, **kwargs) # noqa: E501
3159
3547
  return data
3160
3548
 
3161
- def describe_parameter_templates_with_http_info(self, body, **kwargs): # noqa: E501
3162
- """describe_parameter_templates # noqa: E501
3549
+ def describe_db_instance_version_with_http_info(self, body, **kwargs): # noqa: E501
3550
+ """describe_db_instance_version # noqa: E501
3163
3551
 
3164
3552
  This method makes a synchronous HTTP request by default. To make an
3165
3553
  asynchronous HTTP request, please pass async_req=True
3166
- >>> thread = api.describe_parameter_templates_with_http_info(body, async_req=True)
3554
+ >>> thread = api.describe_db_instance_version_with_http_info(body, async_req=True)
3167
3555
  >>> result = thread.get()
3168
3556
 
3169
3557
  :param async_req bool
3170
- :param DescribeParameterTemplatesRequest body: (required)
3171
- :return: DescribeParameterTemplatesResponse
3558
+ :param DescribeDBInstanceVersionRequest body: (required)
3559
+ :return: DescribeDBInstanceVersionResponse
3172
3560
  If the method is called asynchronously,
3173
3561
  returns the request thread.
3174
3562
  """
@@ -3184,14 +3572,14 @@ class VEDBMApi(object):
3184
3572
  if key not in all_params:
3185
3573
  raise TypeError(
3186
3574
  "Got an unexpected keyword argument '%s'"
3187
- " to method describe_parameter_templates" % key
3575
+ " to method describe_db_instance_version" % key
3188
3576
  )
3189
3577
  params[key] = val
3190
3578
  del params['kwargs']
3191
3579
  # verify the required parameter 'body' is set
3192
3580
  if self.api_client.client_side_validation and ('body' not in params or
3193
3581
  params['body'] is None): # noqa: E501
3194
- raise ValueError("Missing the required parameter `body` when calling `describe_parameter_templates`") # noqa: E501
3582
+ raise ValueError("Missing the required parameter `body` when calling `describe_db_instance_version`") # noqa: E501
3195
3583
 
3196
3584
  collection_formats = {}
3197
3585
 
@@ -3219,14 +3607,14 @@ class VEDBMApi(object):
3219
3607
  auth_settings = ['volcengineSign'] # noqa: E501
3220
3608
 
3221
3609
  return self.api_client.call_api(
3222
- '/DescribeParameterTemplates/2022-01-01/vedbm/post/application_json/', 'POST',
3610
+ '/DescribeDBInstanceVersion/2022-01-01/vedbm/post/application_json/', 'POST',
3223
3611
  path_params,
3224
3612
  query_params,
3225
3613
  header_params,
3226
3614
  body=body_params,
3227
3615
  post_params=form_params,
3228
3616
  files=local_var_files,
3229
- response_type='DescribeParameterTemplatesResponse', # noqa: E501
3617
+ response_type='DescribeDBInstanceVersionResponse', # noqa: E501
3230
3618
  auth_settings=auth_settings,
3231
3619
  async_req=params.get('async_req'),
3232
3620
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3234,38 +3622,1590 @@ class VEDBMApi(object):
3234
3622
  _request_timeout=params.get('_request_timeout'),
3235
3623
  collection_formats=collection_formats)
3236
3624
 
3237
- def describe_recoverable_time(self, body, **kwargs): # noqa: E501
3238
- """describe_recoverable_time # noqa: E501
3625
+ def describe_db_instances(self, body, **kwargs): # noqa: E501
3626
+ """describe_db_instances # noqa: E501
3239
3627
 
3240
3628
  This method makes a synchronous HTTP request by default. To make an
3241
3629
  asynchronous HTTP request, please pass async_req=True
3242
- >>> thread = api.describe_recoverable_time(body, async_req=True)
3630
+ >>> thread = api.describe_db_instances(body, async_req=True)
3243
3631
  >>> result = thread.get()
3244
3632
 
3245
3633
  :param async_req bool
3246
- :param DescribeRecoverableTimeRequest body: (required)
3247
- :return: DescribeRecoverableTimeResponse
3634
+ :param DescribeDBInstancesRequest body: (required)
3635
+ :return: DescribeDBInstancesResponse
3248
3636
  If the method is called asynchronously,
3249
3637
  returns the request thread.
3250
3638
  """
3251
3639
  kwargs['_return_http_data_only'] = True
3252
3640
  if kwargs.get('async_req'):
3253
- return self.describe_recoverable_time_with_http_info(body, **kwargs) # noqa: E501
3641
+ return self.describe_db_instances_with_http_info(body, **kwargs) # noqa: E501
3254
3642
  else:
3255
- (data) = self.describe_recoverable_time_with_http_info(body, **kwargs) # noqa: E501
3643
+ (data) = self.describe_db_instances_with_http_info(body, **kwargs) # noqa: E501
3256
3644
  return data
3257
3645
 
3258
- def describe_recoverable_time_with_http_info(self, body, **kwargs): # noqa: E501
3259
- """describe_recoverable_time # noqa: E501
3646
+ def describe_db_instances_with_http_info(self, body, **kwargs): # noqa: E501
3647
+ """describe_db_instances # noqa: E501
3648
+
3649
+ This method makes a synchronous HTTP request by default. To make an
3650
+ asynchronous HTTP request, please pass async_req=True
3651
+ >>> thread = api.describe_db_instances_with_http_info(body, async_req=True)
3652
+ >>> result = thread.get()
3653
+
3654
+ :param async_req bool
3655
+ :param DescribeDBInstancesRequest body: (required)
3656
+ :return: DescribeDBInstancesResponse
3657
+ If the method is called asynchronously,
3658
+ returns the request thread.
3659
+ """
3660
+
3661
+ all_params = ['body'] # noqa: E501
3662
+ all_params.append('async_req')
3663
+ all_params.append('_return_http_data_only')
3664
+ all_params.append('_preload_content')
3665
+ all_params.append('_request_timeout')
3666
+
3667
+ params = locals()
3668
+ for key, val in six.iteritems(params['kwargs']):
3669
+ if key not in all_params:
3670
+ raise TypeError(
3671
+ "Got an unexpected keyword argument '%s'"
3672
+ " to method describe_db_instances" % key
3673
+ )
3674
+ params[key] = val
3675
+ del params['kwargs']
3676
+ # verify the required parameter 'body' is set
3677
+ if self.api_client.client_side_validation and ('body' not in params or
3678
+ params['body'] is None): # noqa: E501
3679
+ raise ValueError("Missing the required parameter `body` when calling `describe_db_instances`") # noqa: E501
3680
+
3681
+ collection_formats = {}
3682
+
3683
+ path_params = {}
3684
+
3685
+ query_params = []
3686
+
3687
+ header_params = {}
3688
+
3689
+ form_params = []
3690
+ local_var_files = {}
3691
+
3692
+ body_params = None
3693
+ if 'body' in params:
3694
+ body_params = params['body']
3695
+ # HTTP header `Accept`
3696
+ header_params['Accept'] = self.api_client.select_header_accept(
3697
+ ['application/json']) # noqa: E501
3698
+
3699
+ # HTTP header `Content-Type`
3700
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
3701
+ ['application/json']) # noqa: E501
3702
+
3703
+ # Authentication setting
3704
+ auth_settings = ['volcengineSign'] # noqa: E501
3705
+
3706
+ return self.api_client.call_api(
3707
+ '/DescribeDBInstances/2022-01-01/vedbm/post/application_json/', 'POST',
3708
+ path_params,
3709
+ query_params,
3710
+ header_params,
3711
+ body=body_params,
3712
+ post_params=form_params,
3713
+ files=local_var_files,
3714
+ response_type='DescribeDBInstancesResponse', # noqa: E501
3715
+ auth_settings=auth_settings,
3716
+ async_req=params.get('async_req'),
3717
+ _return_http_data_only=params.get('_return_http_data_only'),
3718
+ _preload_content=params.get('_preload_content', True),
3719
+ _request_timeout=params.get('_request_timeout'),
3720
+ collection_formats=collection_formats)
3721
+
3722
+ def describe_exist_db_instance_price(self, body, **kwargs): # noqa: E501
3723
+ """describe_exist_db_instance_price # noqa: E501
3724
+
3725
+ This method makes a synchronous HTTP request by default. To make an
3726
+ asynchronous HTTP request, please pass async_req=True
3727
+ >>> thread = api.describe_exist_db_instance_price(body, async_req=True)
3728
+ >>> result = thread.get()
3729
+
3730
+ :param async_req bool
3731
+ :param DescribeExistDBInstancePriceRequest body: (required)
3732
+ :return: DescribeExistDBInstancePriceResponse
3733
+ If the method is called asynchronously,
3734
+ returns the request thread.
3735
+ """
3736
+ kwargs['_return_http_data_only'] = True
3737
+ if kwargs.get('async_req'):
3738
+ return self.describe_exist_db_instance_price_with_http_info(body, **kwargs) # noqa: E501
3739
+ else:
3740
+ (data) = self.describe_exist_db_instance_price_with_http_info(body, **kwargs) # noqa: E501
3741
+ return data
3742
+
3743
+ def describe_exist_db_instance_price_with_http_info(self, body, **kwargs): # noqa: E501
3744
+ """describe_exist_db_instance_price # noqa: E501
3745
+
3746
+ This method makes a synchronous HTTP request by default. To make an
3747
+ asynchronous HTTP request, please pass async_req=True
3748
+ >>> thread = api.describe_exist_db_instance_price_with_http_info(body, async_req=True)
3749
+ >>> result = thread.get()
3750
+
3751
+ :param async_req bool
3752
+ :param DescribeExistDBInstancePriceRequest body: (required)
3753
+ :return: DescribeExistDBInstancePriceResponse
3754
+ If the method is called asynchronously,
3755
+ returns the request thread.
3756
+ """
3757
+
3758
+ all_params = ['body'] # noqa: E501
3759
+ all_params.append('async_req')
3760
+ all_params.append('_return_http_data_only')
3761
+ all_params.append('_preload_content')
3762
+ all_params.append('_request_timeout')
3763
+
3764
+ params = locals()
3765
+ for key, val in six.iteritems(params['kwargs']):
3766
+ if key not in all_params:
3767
+ raise TypeError(
3768
+ "Got an unexpected keyword argument '%s'"
3769
+ " to method describe_exist_db_instance_price" % key
3770
+ )
3771
+ params[key] = val
3772
+ del params['kwargs']
3773
+ # verify the required parameter 'body' is set
3774
+ if self.api_client.client_side_validation and ('body' not in params or
3775
+ params['body'] is None): # noqa: E501
3776
+ raise ValueError("Missing the required parameter `body` when calling `describe_exist_db_instance_price`") # noqa: E501
3777
+
3778
+ collection_formats = {}
3779
+
3780
+ path_params = {}
3781
+
3782
+ query_params = []
3783
+
3784
+ header_params = {}
3785
+
3786
+ form_params = []
3787
+ local_var_files = {}
3788
+
3789
+ body_params = None
3790
+ if 'body' in params:
3791
+ body_params = params['body']
3792
+ # HTTP header `Accept`
3793
+ header_params['Accept'] = self.api_client.select_header_accept(
3794
+ ['application/json']) # noqa: E501
3795
+
3796
+ # HTTP header `Content-Type`
3797
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
3798
+ ['application/json']) # noqa: E501
3799
+
3800
+ # Authentication setting
3801
+ auth_settings = ['volcengineSign'] # noqa: E501
3802
+
3803
+ return self.api_client.call_api(
3804
+ '/DescribeExistDBInstancePrice/2022-01-01/vedbm/post/application_json/', 'POST',
3805
+ path_params,
3806
+ query_params,
3807
+ header_params,
3808
+ body=body_params,
3809
+ post_params=form_params,
3810
+ files=local_var_files,
3811
+ response_type='DescribeExistDBInstancePriceResponse', # noqa: E501
3812
+ auth_settings=auth_settings,
3813
+ async_req=params.get('async_req'),
3814
+ _return_http_data_only=params.get('_return_http_data_only'),
3815
+ _preload_content=params.get('_preload_content', True),
3816
+ _request_timeout=params.get('_request_timeout'),
3817
+ collection_formats=collection_formats)
3818
+
3819
+ def describe_instance_allow_lists(self, body, **kwargs): # noqa: E501
3820
+ """describe_instance_allow_lists # noqa: E501
3821
+
3822
+ This method makes a synchronous HTTP request by default. To make an
3823
+ asynchronous HTTP request, please pass async_req=True
3824
+ >>> thread = api.describe_instance_allow_lists(body, async_req=True)
3825
+ >>> result = thread.get()
3826
+
3827
+ :param async_req bool
3828
+ :param DescribeInstanceAllowListsRequest body: (required)
3829
+ :return: DescribeInstanceAllowListsResponse
3830
+ If the method is called asynchronously,
3831
+ returns the request thread.
3832
+ """
3833
+ kwargs['_return_http_data_only'] = True
3834
+ if kwargs.get('async_req'):
3835
+ return self.describe_instance_allow_lists_with_http_info(body, **kwargs) # noqa: E501
3836
+ else:
3837
+ (data) = self.describe_instance_allow_lists_with_http_info(body, **kwargs) # noqa: E501
3838
+ return data
3839
+
3840
+ def describe_instance_allow_lists_with_http_info(self, body, **kwargs): # noqa: E501
3841
+ """describe_instance_allow_lists # noqa: E501
3842
+
3843
+ This method makes a synchronous HTTP request by default. To make an
3844
+ asynchronous HTTP request, please pass async_req=True
3845
+ >>> thread = api.describe_instance_allow_lists_with_http_info(body, async_req=True)
3846
+ >>> result = thread.get()
3847
+
3848
+ :param async_req bool
3849
+ :param DescribeInstanceAllowListsRequest body: (required)
3850
+ :return: DescribeInstanceAllowListsResponse
3851
+ If the method is called asynchronously,
3852
+ returns the request thread.
3853
+ """
3854
+
3855
+ all_params = ['body'] # noqa: E501
3856
+ all_params.append('async_req')
3857
+ all_params.append('_return_http_data_only')
3858
+ all_params.append('_preload_content')
3859
+ all_params.append('_request_timeout')
3860
+
3861
+ params = locals()
3862
+ for key, val in six.iteritems(params['kwargs']):
3863
+ if key not in all_params:
3864
+ raise TypeError(
3865
+ "Got an unexpected keyword argument '%s'"
3866
+ " to method describe_instance_allow_lists" % key
3867
+ )
3868
+ params[key] = val
3869
+ del params['kwargs']
3870
+ # verify the required parameter 'body' is set
3871
+ if self.api_client.client_side_validation and ('body' not in params or
3872
+ params['body'] is None): # noqa: E501
3873
+ raise ValueError("Missing the required parameter `body` when calling `describe_instance_allow_lists`") # noqa: E501
3874
+
3875
+ collection_formats = {}
3876
+
3877
+ path_params = {}
3878
+
3879
+ query_params = []
3880
+
3881
+ header_params = {}
3882
+
3883
+ form_params = []
3884
+ local_var_files = {}
3885
+
3886
+ body_params = None
3887
+ if 'body' in params:
3888
+ body_params = params['body']
3889
+ # HTTP header `Accept`
3890
+ header_params['Accept'] = self.api_client.select_header_accept(
3891
+ ['application/json']) # noqa: E501
3892
+
3893
+ # HTTP header `Content-Type`
3894
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
3895
+ ['application/json']) # noqa: E501
3896
+
3897
+ # Authentication setting
3898
+ auth_settings = ['volcengineSign'] # noqa: E501
3899
+
3900
+ return self.api_client.call_api(
3901
+ '/DescribeInstanceAllowLists/2022-01-01/vedbm/post/application_json/', 'POST',
3902
+ path_params,
3903
+ query_params,
3904
+ header_params,
3905
+ body=body_params,
3906
+ post_params=form_params,
3907
+ files=local_var_files,
3908
+ response_type='DescribeInstanceAllowListsResponse', # noqa: E501
3909
+ auth_settings=auth_settings,
3910
+ async_req=params.get('async_req'),
3911
+ _return_http_data_only=params.get('_return_http_data_only'),
3912
+ _preload_content=params.get('_preload_content', True),
3913
+ _request_timeout=params.get('_request_timeout'),
3914
+ collection_formats=collection_formats)
3915
+
3916
+ def describe_modifiable_parameters(self, body, **kwargs): # noqa: E501
3917
+ """describe_modifiable_parameters # noqa: E501
3918
+
3919
+ This method makes a synchronous HTTP request by default. To make an
3920
+ asynchronous HTTP request, please pass async_req=True
3921
+ >>> thread = api.describe_modifiable_parameters(body, async_req=True)
3922
+ >>> result = thread.get()
3923
+
3924
+ :param async_req bool
3925
+ :param DescribeModifiableParametersRequest body: (required)
3926
+ :return: DescribeModifiableParametersResponse
3927
+ If the method is called asynchronously,
3928
+ returns the request thread.
3929
+ """
3930
+ kwargs['_return_http_data_only'] = True
3931
+ if kwargs.get('async_req'):
3932
+ return self.describe_modifiable_parameters_with_http_info(body, **kwargs) # noqa: E501
3933
+ else:
3934
+ (data) = self.describe_modifiable_parameters_with_http_info(body, **kwargs) # noqa: E501
3935
+ return data
3936
+
3937
+ def describe_modifiable_parameters_with_http_info(self, body, **kwargs): # noqa: E501
3938
+ """describe_modifiable_parameters # noqa: E501
3939
+
3940
+ This method makes a synchronous HTTP request by default. To make an
3941
+ asynchronous HTTP request, please pass async_req=True
3942
+ >>> thread = api.describe_modifiable_parameters_with_http_info(body, async_req=True)
3943
+ >>> result = thread.get()
3944
+
3945
+ :param async_req bool
3946
+ :param DescribeModifiableParametersRequest body: (required)
3947
+ :return: DescribeModifiableParametersResponse
3948
+ If the method is called asynchronously,
3949
+ returns the request thread.
3950
+ """
3951
+
3952
+ all_params = ['body'] # noqa: E501
3953
+ all_params.append('async_req')
3954
+ all_params.append('_return_http_data_only')
3955
+ all_params.append('_preload_content')
3956
+ all_params.append('_request_timeout')
3957
+
3958
+ params = locals()
3959
+ for key, val in six.iteritems(params['kwargs']):
3960
+ if key not in all_params:
3961
+ raise TypeError(
3962
+ "Got an unexpected keyword argument '%s'"
3963
+ " to method describe_modifiable_parameters" % key
3964
+ )
3965
+ params[key] = val
3966
+ del params['kwargs']
3967
+ # verify the required parameter 'body' is set
3968
+ if self.api_client.client_side_validation and ('body' not in params or
3969
+ params['body'] is None): # noqa: E501
3970
+ raise ValueError("Missing the required parameter `body` when calling `describe_modifiable_parameters`") # noqa: E501
3971
+
3972
+ collection_formats = {}
3973
+
3974
+ path_params = {}
3975
+
3976
+ query_params = []
3977
+
3978
+ header_params = {}
3979
+
3980
+ form_params = []
3981
+ local_var_files = {}
3982
+
3983
+ body_params = None
3984
+ if 'body' in params:
3985
+ body_params = params['body']
3986
+ # HTTP header `Accept`
3987
+ header_params['Accept'] = self.api_client.select_header_accept(
3988
+ ['application/json']) # noqa: E501
3989
+
3990
+ # HTTP header `Content-Type`
3991
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
3992
+ ['application/json']) # noqa: E501
3993
+
3994
+ # Authentication setting
3995
+ auth_settings = ['volcengineSign'] # noqa: E501
3996
+
3997
+ return self.api_client.call_api(
3998
+ '/DescribeModifiableParameters/2022-01-01/vedbm/post/application_json/', 'POST',
3999
+ path_params,
4000
+ query_params,
4001
+ header_params,
4002
+ body=body_params,
4003
+ post_params=form_params,
4004
+ files=local_var_files,
4005
+ response_type='DescribeModifiableParametersResponse', # noqa: E501
4006
+ auth_settings=auth_settings,
4007
+ async_req=params.get('async_req'),
4008
+ _return_http_data_only=params.get('_return_http_data_only'),
4009
+ _preload_content=params.get('_preload_content', True),
4010
+ _request_timeout=params.get('_request_timeout'),
4011
+ collection_formats=collection_formats)
4012
+
4013
+ def describe_parameter_template_detail(self, body, **kwargs): # noqa: E501
4014
+ """describe_parameter_template_detail # noqa: E501
4015
+
4016
+ This method makes a synchronous HTTP request by default. To make an
4017
+ asynchronous HTTP request, please pass async_req=True
4018
+ >>> thread = api.describe_parameter_template_detail(body, async_req=True)
4019
+ >>> result = thread.get()
4020
+
4021
+ :param async_req bool
4022
+ :param DescribeParameterTemplateDetailRequest body: (required)
4023
+ :return: DescribeParameterTemplateDetailResponse
4024
+ If the method is called asynchronously,
4025
+ returns the request thread.
4026
+ """
4027
+ kwargs['_return_http_data_only'] = True
4028
+ if kwargs.get('async_req'):
4029
+ return self.describe_parameter_template_detail_with_http_info(body, **kwargs) # noqa: E501
4030
+ else:
4031
+ (data) = self.describe_parameter_template_detail_with_http_info(body, **kwargs) # noqa: E501
4032
+ return data
4033
+
4034
+ def describe_parameter_template_detail_with_http_info(self, body, **kwargs): # noqa: E501
4035
+ """describe_parameter_template_detail # noqa: E501
4036
+
4037
+ This method makes a synchronous HTTP request by default. To make an
4038
+ asynchronous HTTP request, please pass async_req=True
4039
+ >>> thread = api.describe_parameter_template_detail_with_http_info(body, async_req=True)
4040
+ >>> result = thread.get()
4041
+
4042
+ :param async_req bool
4043
+ :param DescribeParameterTemplateDetailRequest body: (required)
4044
+ :return: DescribeParameterTemplateDetailResponse
4045
+ If the method is called asynchronously,
4046
+ returns the request thread.
4047
+ """
4048
+
4049
+ all_params = ['body'] # noqa: E501
4050
+ all_params.append('async_req')
4051
+ all_params.append('_return_http_data_only')
4052
+ all_params.append('_preload_content')
4053
+ all_params.append('_request_timeout')
4054
+
4055
+ params = locals()
4056
+ for key, val in six.iteritems(params['kwargs']):
4057
+ if key not in all_params:
4058
+ raise TypeError(
4059
+ "Got an unexpected keyword argument '%s'"
4060
+ " to method describe_parameter_template_detail" % key
4061
+ )
4062
+ params[key] = val
4063
+ del params['kwargs']
4064
+ # verify the required parameter 'body' is set
4065
+ if self.api_client.client_side_validation and ('body' not in params or
4066
+ params['body'] is None): # noqa: E501
4067
+ raise ValueError("Missing the required parameter `body` when calling `describe_parameter_template_detail`") # noqa: E501
4068
+
4069
+ collection_formats = {}
4070
+
4071
+ path_params = {}
4072
+
4073
+ query_params = []
4074
+
4075
+ header_params = {}
4076
+
4077
+ form_params = []
4078
+ local_var_files = {}
4079
+
4080
+ body_params = None
4081
+ if 'body' in params:
4082
+ body_params = params['body']
4083
+ # HTTP header `Accept`
4084
+ header_params['Accept'] = self.api_client.select_header_accept(
4085
+ ['application/json']) # noqa: E501
4086
+
4087
+ # HTTP header `Content-Type`
4088
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4089
+ ['application/json']) # noqa: E501
4090
+
4091
+ # Authentication setting
4092
+ auth_settings = ['volcengineSign'] # noqa: E501
4093
+
4094
+ return self.api_client.call_api(
4095
+ '/DescribeParameterTemplateDetail/2022-01-01/vedbm/post/application_json/', 'POST',
4096
+ path_params,
4097
+ query_params,
4098
+ header_params,
4099
+ body=body_params,
4100
+ post_params=form_params,
4101
+ files=local_var_files,
4102
+ response_type='DescribeParameterTemplateDetailResponse', # noqa: E501
4103
+ auth_settings=auth_settings,
4104
+ async_req=params.get('async_req'),
4105
+ _return_http_data_only=params.get('_return_http_data_only'),
4106
+ _preload_content=params.get('_preload_content', True),
4107
+ _request_timeout=params.get('_request_timeout'),
4108
+ collection_formats=collection_formats)
4109
+
4110
+ def describe_parameter_templates(self, body, **kwargs): # noqa: E501
4111
+ """describe_parameter_templates # noqa: E501
4112
+
4113
+ This method makes a synchronous HTTP request by default. To make an
4114
+ asynchronous HTTP request, please pass async_req=True
4115
+ >>> thread = api.describe_parameter_templates(body, async_req=True)
4116
+ >>> result = thread.get()
4117
+
4118
+ :param async_req bool
4119
+ :param DescribeParameterTemplatesRequest body: (required)
4120
+ :return: DescribeParameterTemplatesResponse
4121
+ If the method is called asynchronously,
4122
+ returns the request thread.
4123
+ """
4124
+ kwargs['_return_http_data_only'] = True
4125
+ if kwargs.get('async_req'):
4126
+ return self.describe_parameter_templates_with_http_info(body, **kwargs) # noqa: E501
4127
+ else:
4128
+ (data) = self.describe_parameter_templates_with_http_info(body, **kwargs) # noqa: E501
4129
+ return data
4130
+
4131
+ def describe_parameter_templates_with_http_info(self, body, **kwargs): # noqa: E501
4132
+ """describe_parameter_templates # noqa: E501
4133
+
4134
+ This method makes a synchronous HTTP request by default. To make an
4135
+ asynchronous HTTP request, please pass async_req=True
4136
+ >>> thread = api.describe_parameter_templates_with_http_info(body, async_req=True)
4137
+ >>> result = thread.get()
4138
+
4139
+ :param async_req bool
4140
+ :param DescribeParameterTemplatesRequest body: (required)
4141
+ :return: DescribeParameterTemplatesResponse
4142
+ If the method is called asynchronously,
4143
+ returns the request thread.
4144
+ """
4145
+
4146
+ all_params = ['body'] # noqa: E501
4147
+ all_params.append('async_req')
4148
+ all_params.append('_return_http_data_only')
4149
+ all_params.append('_preload_content')
4150
+ all_params.append('_request_timeout')
4151
+
4152
+ params = locals()
4153
+ for key, val in six.iteritems(params['kwargs']):
4154
+ if key not in all_params:
4155
+ raise TypeError(
4156
+ "Got an unexpected keyword argument '%s'"
4157
+ " to method describe_parameter_templates" % key
4158
+ )
4159
+ params[key] = val
4160
+ del params['kwargs']
4161
+ # verify the required parameter 'body' is set
4162
+ if self.api_client.client_side_validation and ('body' not in params or
4163
+ params['body'] is None): # noqa: E501
4164
+ raise ValueError("Missing the required parameter `body` when calling `describe_parameter_templates`") # noqa: E501
4165
+
4166
+ collection_formats = {}
4167
+
4168
+ path_params = {}
4169
+
4170
+ query_params = []
4171
+
4172
+ header_params = {}
4173
+
4174
+ form_params = []
4175
+ local_var_files = {}
4176
+
4177
+ body_params = None
4178
+ if 'body' in params:
4179
+ body_params = params['body']
4180
+ # HTTP header `Accept`
4181
+ header_params['Accept'] = self.api_client.select_header_accept(
4182
+ ['application/json']) # noqa: E501
4183
+
4184
+ # HTTP header `Content-Type`
4185
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4186
+ ['application/json']) # noqa: E501
4187
+
4188
+ # Authentication setting
4189
+ auth_settings = ['volcengineSign'] # noqa: E501
4190
+
4191
+ return self.api_client.call_api(
4192
+ '/DescribeParameterTemplates/2022-01-01/vedbm/post/application_json/', 'POST',
4193
+ path_params,
4194
+ query_params,
4195
+ header_params,
4196
+ body=body_params,
4197
+ post_params=form_params,
4198
+ files=local_var_files,
4199
+ response_type='DescribeParameterTemplatesResponse', # noqa: E501
4200
+ auth_settings=auth_settings,
4201
+ async_req=params.get('async_req'),
4202
+ _return_http_data_only=params.get('_return_http_data_only'),
4203
+ _preload_content=params.get('_preload_content', True),
4204
+ _request_timeout=params.get('_request_timeout'),
4205
+ collection_formats=collection_formats)
4206
+
4207
+ def describe_recoverable_time(self, body, **kwargs): # noqa: E501
4208
+ """describe_recoverable_time # noqa: E501
4209
+
4210
+ This method makes a synchronous HTTP request by default. To make an
4211
+ asynchronous HTTP request, please pass async_req=True
4212
+ >>> thread = api.describe_recoverable_time(body, async_req=True)
4213
+ >>> result = thread.get()
4214
+
4215
+ :param async_req bool
4216
+ :param DescribeRecoverableTimeRequest body: (required)
4217
+ :return: DescribeRecoverableTimeResponse
4218
+ If the method is called asynchronously,
4219
+ returns the request thread.
4220
+ """
4221
+ kwargs['_return_http_data_only'] = True
4222
+ if kwargs.get('async_req'):
4223
+ return self.describe_recoverable_time_with_http_info(body, **kwargs) # noqa: E501
4224
+ else:
4225
+ (data) = self.describe_recoverable_time_with_http_info(body, **kwargs) # noqa: E501
4226
+ return data
4227
+
4228
+ def describe_recoverable_time_with_http_info(self, body, **kwargs): # noqa: E501
4229
+ """describe_recoverable_time # noqa: E501
4230
+
4231
+ This method makes a synchronous HTTP request by default. To make an
4232
+ asynchronous HTTP request, please pass async_req=True
4233
+ >>> thread = api.describe_recoverable_time_with_http_info(body, async_req=True)
4234
+ >>> result = thread.get()
4235
+
4236
+ :param async_req bool
4237
+ :param DescribeRecoverableTimeRequest body: (required)
4238
+ :return: DescribeRecoverableTimeResponse
4239
+ If the method is called asynchronously,
4240
+ returns the request thread.
4241
+ """
4242
+
4243
+ all_params = ['body'] # noqa: E501
4244
+ all_params.append('async_req')
4245
+ all_params.append('_return_http_data_only')
4246
+ all_params.append('_preload_content')
4247
+ all_params.append('_request_timeout')
4248
+
4249
+ params = locals()
4250
+ for key, val in six.iteritems(params['kwargs']):
4251
+ if key not in all_params:
4252
+ raise TypeError(
4253
+ "Got an unexpected keyword argument '%s'"
4254
+ " to method describe_recoverable_time" % key
4255
+ )
4256
+ params[key] = val
4257
+ del params['kwargs']
4258
+ # verify the required parameter 'body' is set
4259
+ if self.api_client.client_side_validation and ('body' not in params or
4260
+ params['body'] is None): # noqa: E501
4261
+ raise ValueError("Missing the required parameter `body` when calling `describe_recoverable_time`") # noqa: E501
4262
+
4263
+ collection_formats = {}
4264
+
4265
+ path_params = {}
4266
+
4267
+ query_params = []
4268
+
4269
+ header_params = {}
4270
+
4271
+ form_params = []
4272
+ local_var_files = {}
4273
+
4274
+ body_params = None
4275
+ if 'body' in params:
4276
+ body_params = params['body']
4277
+ # HTTP header `Accept`
4278
+ header_params['Accept'] = self.api_client.select_header_accept(
4279
+ ['application/json']) # noqa: E501
4280
+
4281
+ # HTTP header `Content-Type`
4282
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4283
+ ['application/json']) # noqa: E501
4284
+
4285
+ # Authentication setting
4286
+ auth_settings = ['volcengineSign'] # noqa: E501
4287
+
4288
+ return self.api_client.call_api(
4289
+ '/DescribeRecoverableTime/2022-01-01/vedbm/post/application_json/', 'POST',
4290
+ path_params,
4291
+ query_params,
4292
+ header_params,
4293
+ body=body_params,
4294
+ post_params=form_params,
4295
+ files=local_var_files,
4296
+ response_type='DescribeRecoverableTimeResponse', # noqa: E501
4297
+ auth_settings=auth_settings,
4298
+ async_req=params.get('async_req'),
4299
+ _return_http_data_only=params.get('_return_http_data_only'),
4300
+ _preload_content=params.get('_preload_content', True),
4301
+ _request_timeout=params.get('_request_timeout'),
4302
+ collection_formats=collection_formats)
4303
+
4304
+ def describe_regions(self, body, **kwargs): # noqa: E501
4305
+ """describe_regions # noqa: E501
4306
+
4307
+ This method makes a synchronous HTTP request by default. To make an
4308
+ asynchronous HTTP request, please pass async_req=True
4309
+ >>> thread = api.describe_regions(body, async_req=True)
4310
+ >>> result = thread.get()
4311
+
4312
+ :param async_req bool
4313
+ :param DescribeRegionsRequest body: (required)
4314
+ :return: DescribeRegionsResponse
4315
+ If the method is called asynchronously,
4316
+ returns the request thread.
4317
+ """
4318
+ kwargs['_return_http_data_only'] = True
4319
+ if kwargs.get('async_req'):
4320
+ return self.describe_regions_with_http_info(body, **kwargs) # noqa: E501
4321
+ else:
4322
+ (data) = self.describe_regions_with_http_info(body, **kwargs) # noqa: E501
4323
+ return data
4324
+
4325
+ def describe_regions_with_http_info(self, body, **kwargs): # noqa: E501
4326
+ """describe_regions # noqa: E501
4327
+
4328
+ This method makes a synchronous HTTP request by default. To make an
4329
+ asynchronous HTTP request, please pass async_req=True
4330
+ >>> thread = api.describe_regions_with_http_info(body, async_req=True)
4331
+ >>> result = thread.get()
4332
+
4333
+ :param async_req bool
4334
+ :param DescribeRegionsRequest body: (required)
4335
+ :return: DescribeRegionsResponse
4336
+ If the method is called asynchronously,
4337
+ returns the request thread.
4338
+ """
4339
+
4340
+ all_params = ['body'] # noqa: E501
4341
+ all_params.append('async_req')
4342
+ all_params.append('_return_http_data_only')
4343
+ all_params.append('_preload_content')
4344
+ all_params.append('_request_timeout')
4345
+
4346
+ params = locals()
4347
+ for key, val in six.iteritems(params['kwargs']):
4348
+ if key not in all_params:
4349
+ raise TypeError(
4350
+ "Got an unexpected keyword argument '%s'"
4351
+ " to method describe_regions" % key
4352
+ )
4353
+ params[key] = val
4354
+ del params['kwargs']
4355
+ # verify the required parameter 'body' is set
4356
+ if self.api_client.client_side_validation and ('body' not in params or
4357
+ params['body'] is None): # noqa: E501
4358
+ raise ValueError("Missing the required parameter `body` when calling `describe_regions`") # noqa: E501
4359
+
4360
+ collection_formats = {}
4361
+
4362
+ path_params = {}
4363
+
4364
+ query_params = []
4365
+
4366
+ header_params = {}
4367
+
4368
+ form_params = []
4369
+ local_var_files = {}
4370
+
4371
+ body_params = None
4372
+ if 'body' in params:
4373
+ body_params = params['body']
4374
+ # HTTP header `Accept`
4375
+ header_params['Accept'] = self.api_client.select_header_accept(
4376
+ ['application/json']) # noqa: E501
4377
+
4378
+ # HTTP header `Content-Type`
4379
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4380
+ ['application/json']) # noqa: E501
4381
+
4382
+ # Authentication setting
4383
+ auth_settings = ['volcengineSign'] # noqa: E501
4384
+
4385
+ return self.api_client.call_api(
4386
+ '/DescribeRegions/2022-01-01/vedbm/post/application_json/', 'POST',
4387
+ path_params,
4388
+ query_params,
4389
+ header_params,
4390
+ body=body_params,
4391
+ post_params=form_params,
4392
+ files=local_var_files,
4393
+ response_type='DescribeRegionsResponse', # noqa: E501
4394
+ auth_settings=auth_settings,
4395
+ async_req=params.get('async_req'),
4396
+ _return_http_data_only=params.get('_return_http_data_only'),
4397
+ _preload_content=params.get('_preload_content', True),
4398
+ _request_timeout=params.get('_request_timeout'),
4399
+ collection_formats=collection_formats)
4400
+
4401
+ def describe_schedule_events(self, body, **kwargs): # noqa: E501
4402
+ """describe_schedule_events # noqa: E501
4403
+
4404
+ This method makes a synchronous HTTP request by default. To make an
4405
+ asynchronous HTTP request, please pass async_req=True
4406
+ >>> thread = api.describe_schedule_events(body, async_req=True)
4407
+ >>> result = thread.get()
4408
+
4409
+ :param async_req bool
4410
+ :param DescribeScheduleEventsRequest body: (required)
4411
+ :return: DescribeScheduleEventsResponse
4412
+ If the method is called asynchronously,
4413
+ returns the request thread.
4414
+ """
4415
+ kwargs['_return_http_data_only'] = True
4416
+ if kwargs.get('async_req'):
4417
+ return self.describe_schedule_events_with_http_info(body, **kwargs) # noqa: E501
4418
+ else:
4419
+ (data) = self.describe_schedule_events_with_http_info(body, **kwargs) # noqa: E501
4420
+ return data
4421
+
4422
+ def describe_schedule_events_with_http_info(self, body, **kwargs): # noqa: E501
4423
+ """describe_schedule_events # noqa: E501
4424
+
4425
+ This method makes a synchronous HTTP request by default. To make an
4426
+ asynchronous HTTP request, please pass async_req=True
4427
+ >>> thread = api.describe_schedule_events_with_http_info(body, async_req=True)
4428
+ >>> result = thread.get()
4429
+
4430
+ :param async_req bool
4431
+ :param DescribeScheduleEventsRequest body: (required)
4432
+ :return: DescribeScheduleEventsResponse
4433
+ If the method is called asynchronously,
4434
+ returns the request thread.
4435
+ """
4436
+
4437
+ all_params = ['body'] # noqa: E501
4438
+ all_params.append('async_req')
4439
+ all_params.append('_return_http_data_only')
4440
+ all_params.append('_preload_content')
4441
+ all_params.append('_request_timeout')
4442
+
4443
+ params = locals()
4444
+ for key, val in six.iteritems(params['kwargs']):
4445
+ if key not in all_params:
4446
+ raise TypeError(
4447
+ "Got an unexpected keyword argument '%s'"
4448
+ " to method describe_schedule_events" % key
4449
+ )
4450
+ params[key] = val
4451
+ del params['kwargs']
4452
+ # verify the required parameter 'body' is set
4453
+ if self.api_client.client_side_validation and ('body' not in params or
4454
+ params['body'] is None): # noqa: E501
4455
+ raise ValueError("Missing the required parameter `body` when calling `describe_schedule_events`") # noqa: E501
4456
+
4457
+ collection_formats = {}
4458
+
4459
+ path_params = {}
4460
+
4461
+ query_params = []
4462
+
4463
+ header_params = {}
4464
+
4465
+ form_params = []
4466
+ local_var_files = {}
4467
+
4468
+ body_params = None
4469
+ if 'body' in params:
4470
+ body_params = params['body']
4471
+ # HTTP header `Accept`
4472
+ header_params['Accept'] = self.api_client.select_header_accept(
4473
+ ['application/json']) # noqa: E501
4474
+
4475
+ # HTTP header `Content-Type`
4476
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4477
+ ['application/json']) # noqa: E501
4478
+
4479
+ # Authentication setting
4480
+ auth_settings = ['volcengineSign'] # noqa: E501
4481
+
4482
+ return self.api_client.call_api(
4483
+ '/DescribeScheduleEvents/2022-01-01/vedbm/post/application_json/', 'POST',
4484
+ path_params,
4485
+ query_params,
4486
+ header_params,
4487
+ body=body_params,
4488
+ post_params=form_params,
4489
+ files=local_var_files,
4490
+ response_type='DescribeScheduleEventsResponse', # noqa: E501
4491
+ auth_settings=auth_settings,
4492
+ async_req=params.get('async_req'),
4493
+ _return_http_data_only=params.get('_return_http_data_only'),
4494
+ _preload_content=params.get('_preload_content', True),
4495
+ _request_timeout=params.get('_request_timeout'),
4496
+ collection_formats=collection_formats)
4497
+
4498
+ def describe_storage_payable_price(self, body, **kwargs): # noqa: E501
4499
+ """describe_storage_payable_price # noqa: E501
4500
+
4501
+ This method makes a synchronous HTTP request by default. To make an
4502
+ asynchronous HTTP request, please pass async_req=True
4503
+ >>> thread = api.describe_storage_payable_price(body, async_req=True)
4504
+ >>> result = thread.get()
4505
+
4506
+ :param async_req bool
4507
+ :param DescribeStoragePayablePriceRequest body: (required)
4508
+ :return: DescribeStoragePayablePriceResponse
4509
+ If the method is called asynchronously,
4510
+ returns the request thread.
4511
+ """
4512
+ kwargs['_return_http_data_only'] = True
4513
+ if kwargs.get('async_req'):
4514
+ return self.describe_storage_payable_price_with_http_info(body, **kwargs) # noqa: E501
4515
+ else:
4516
+ (data) = self.describe_storage_payable_price_with_http_info(body, **kwargs) # noqa: E501
4517
+ return data
4518
+
4519
+ def describe_storage_payable_price_with_http_info(self, body, **kwargs): # noqa: E501
4520
+ """describe_storage_payable_price # noqa: E501
4521
+
4522
+ This method makes a synchronous HTTP request by default. To make an
4523
+ asynchronous HTTP request, please pass async_req=True
4524
+ >>> thread = api.describe_storage_payable_price_with_http_info(body, async_req=True)
4525
+ >>> result = thread.get()
4526
+
4527
+ :param async_req bool
4528
+ :param DescribeStoragePayablePriceRequest body: (required)
4529
+ :return: DescribeStoragePayablePriceResponse
4530
+ If the method is called asynchronously,
4531
+ returns the request thread.
4532
+ """
4533
+
4534
+ all_params = ['body'] # noqa: E501
4535
+ all_params.append('async_req')
4536
+ all_params.append('_return_http_data_only')
4537
+ all_params.append('_preload_content')
4538
+ all_params.append('_request_timeout')
4539
+
4540
+ params = locals()
4541
+ for key, val in six.iteritems(params['kwargs']):
4542
+ if key not in all_params:
4543
+ raise TypeError(
4544
+ "Got an unexpected keyword argument '%s'"
4545
+ " to method describe_storage_payable_price" % key
4546
+ )
4547
+ params[key] = val
4548
+ del params['kwargs']
4549
+ # verify the required parameter 'body' is set
4550
+ if self.api_client.client_side_validation and ('body' not in params or
4551
+ params['body'] is None): # noqa: E501
4552
+ raise ValueError("Missing the required parameter `body` when calling `describe_storage_payable_price`") # noqa: E501
4553
+
4554
+ collection_formats = {}
4555
+
4556
+ path_params = {}
4557
+
4558
+ query_params = []
4559
+
4560
+ header_params = {}
4561
+
4562
+ form_params = []
4563
+ local_var_files = {}
4564
+
4565
+ body_params = None
4566
+ if 'body' in params:
4567
+ body_params = params['body']
4568
+ # HTTP header `Accept`
4569
+ header_params['Accept'] = self.api_client.select_header_accept(
4570
+ ['application/json']) # noqa: E501
4571
+
4572
+ # HTTP header `Content-Type`
4573
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4574
+ ['application/json']) # noqa: E501
4575
+
4576
+ # Authentication setting
4577
+ auth_settings = ['volcengineSign'] # noqa: E501
4578
+
4579
+ return self.api_client.call_api(
4580
+ '/DescribeStoragePayablePrice/2022-01-01/vedbm/post/application_json/', 'POST',
4581
+ path_params,
4582
+ query_params,
4583
+ header_params,
4584
+ body=body_params,
4585
+ post_params=form_params,
4586
+ files=local_var_files,
4587
+ response_type='DescribeStoragePayablePriceResponse', # noqa: E501
4588
+ auth_settings=auth_settings,
4589
+ async_req=params.get('async_req'),
4590
+ _return_http_data_only=params.get('_return_http_data_only'),
4591
+ _preload_content=params.get('_preload_content', True),
4592
+ _request_timeout=params.get('_request_timeout'),
4593
+ collection_formats=collection_formats)
4594
+
4595
+ def disassociate_allow_list(self, body, **kwargs): # noqa: E501
4596
+ """disassociate_allow_list # noqa: E501
4597
+
4598
+ This method makes a synchronous HTTP request by default. To make an
4599
+ asynchronous HTTP request, please pass async_req=True
4600
+ >>> thread = api.disassociate_allow_list(body, async_req=True)
4601
+ >>> result = thread.get()
4602
+
4603
+ :param async_req bool
4604
+ :param DisassociateAllowListRequest body: (required)
4605
+ :return: DisassociateAllowListResponse
4606
+ If the method is called asynchronously,
4607
+ returns the request thread.
4608
+ """
4609
+ kwargs['_return_http_data_only'] = True
4610
+ if kwargs.get('async_req'):
4611
+ return self.disassociate_allow_list_with_http_info(body, **kwargs) # noqa: E501
4612
+ else:
4613
+ (data) = self.disassociate_allow_list_with_http_info(body, **kwargs) # noqa: E501
4614
+ return data
4615
+
4616
+ def disassociate_allow_list_with_http_info(self, body, **kwargs): # noqa: E501
4617
+ """disassociate_allow_list # noqa: E501
4618
+
4619
+ This method makes a synchronous HTTP request by default. To make an
4620
+ asynchronous HTTP request, please pass async_req=True
4621
+ >>> thread = api.disassociate_allow_list_with_http_info(body, async_req=True)
4622
+ >>> result = thread.get()
4623
+
4624
+ :param async_req bool
4625
+ :param DisassociateAllowListRequest body: (required)
4626
+ :return: DisassociateAllowListResponse
4627
+ If the method is called asynchronously,
4628
+ returns the request thread.
4629
+ """
4630
+
4631
+ all_params = ['body'] # noqa: E501
4632
+ all_params.append('async_req')
4633
+ all_params.append('_return_http_data_only')
4634
+ all_params.append('_preload_content')
4635
+ all_params.append('_request_timeout')
4636
+
4637
+ params = locals()
4638
+ for key, val in six.iteritems(params['kwargs']):
4639
+ if key not in all_params:
4640
+ raise TypeError(
4641
+ "Got an unexpected keyword argument '%s'"
4642
+ " to method disassociate_allow_list" % key
4643
+ )
4644
+ params[key] = val
4645
+ del params['kwargs']
4646
+ # verify the required parameter 'body' is set
4647
+ if self.api_client.client_side_validation and ('body' not in params or
4648
+ params['body'] is None): # noqa: E501
4649
+ raise ValueError("Missing the required parameter `body` when calling `disassociate_allow_list`") # noqa: E501
4650
+
4651
+ collection_formats = {}
4652
+
4653
+ path_params = {}
4654
+
4655
+ query_params = []
4656
+
4657
+ header_params = {}
4658
+
4659
+ form_params = []
4660
+ local_var_files = {}
4661
+
4662
+ body_params = None
4663
+ if 'body' in params:
4664
+ body_params = params['body']
4665
+ # HTTP header `Accept`
4666
+ header_params['Accept'] = self.api_client.select_header_accept(
4667
+ ['application/json']) # noqa: E501
4668
+
4669
+ # HTTP header `Content-Type`
4670
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4671
+ ['application/json']) # noqa: E501
4672
+
4673
+ # Authentication setting
4674
+ auth_settings = ['volcengineSign'] # noqa: E501
4675
+
4676
+ return self.api_client.call_api(
4677
+ '/DisassociateAllowList/2022-01-01/vedbm/post/application_json/', 'POST',
4678
+ path_params,
4679
+ query_params,
4680
+ header_params,
4681
+ body=body_params,
4682
+ post_params=form_params,
4683
+ files=local_var_files,
4684
+ response_type='DisassociateAllowListResponse', # noqa: E501
4685
+ auth_settings=auth_settings,
4686
+ async_req=params.get('async_req'),
4687
+ _return_http_data_only=params.get('_return_http_data_only'),
4688
+ _preload_content=params.get('_preload_content', True),
4689
+ _request_timeout=params.get('_request_timeout'),
4690
+ collection_formats=collection_formats)
4691
+
4692
+ def grant_db_account_privilege(self, body, **kwargs): # noqa: E501
4693
+ """grant_db_account_privilege # noqa: E501
4694
+
4695
+ This method makes a synchronous HTTP request by default. To make an
4696
+ asynchronous HTTP request, please pass async_req=True
4697
+ >>> thread = api.grant_db_account_privilege(body, async_req=True)
4698
+ >>> result = thread.get()
4699
+
4700
+ :param async_req bool
4701
+ :param GrantDBAccountPrivilegeRequest body: (required)
4702
+ :return: GrantDBAccountPrivilegeResponse
4703
+ If the method is called asynchronously,
4704
+ returns the request thread.
4705
+ """
4706
+ kwargs['_return_http_data_only'] = True
4707
+ if kwargs.get('async_req'):
4708
+ return self.grant_db_account_privilege_with_http_info(body, **kwargs) # noqa: E501
4709
+ else:
4710
+ (data) = self.grant_db_account_privilege_with_http_info(body, **kwargs) # noqa: E501
4711
+ return data
4712
+
4713
+ def grant_db_account_privilege_with_http_info(self, body, **kwargs): # noqa: E501
4714
+ """grant_db_account_privilege # noqa: E501
4715
+
4716
+ This method makes a synchronous HTTP request by default. To make an
4717
+ asynchronous HTTP request, please pass async_req=True
4718
+ >>> thread = api.grant_db_account_privilege_with_http_info(body, async_req=True)
4719
+ >>> result = thread.get()
4720
+
4721
+ :param async_req bool
4722
+ :param GrantDBAccountPrivilegeRequest body: (required)
4723
+ :return: GrantDBAccountPrivilegeResponse
4724
+ If the method is called asynchronously,
4725
+ returns the request thread.
4726
+ """
4727
+
4728
+ all_params = ['body'] # noqa: E501
4729
+ all_params.append('async_req')
4730
+ all_params.append('_return_http_data_only')
4731
+ all_params.append('_preload_content')
4732
+ all_params.append('_request_timeout')
4733
+
4734
+ params = locals()
4735
+ for key, val in six.iteritems(params['kwargs']):
4736
+ if key not in all_params:
4737
+ raise TypeError(
4738
+ "Got an unexpected keyword argument '%s'"
4739
+ " to method grant_db_account_privilege" % key
4740
+ )
4741
+ params[key] = val
4742
+ del params['kwargs']
4743
+ # verify the required parameter 'body' is set
4744
+ if self.api_client.client_side_validation and ('body' not in params or
4745
+ params['body'] is None): # noqa: E501
4746
+ raise ValueError("Missing the required parameter `body` when calling `grant_db_account_privilege`") # noqa: E501
4747
+
4748
+ collection_formats = {}
4749
+
4750
+ path_params = {}
4751
+
4752
+ query_params = []
4753
+
4754
+ header_params = {}
4755
+
4756
+ form_params = []
4757
+ local_var_files = {}
4758
+
4759
+ body_params = None
4760
+ if 'body' in params:
4761
+ body_params = params['body']
4762
+ # HTTP header `Accept`
4763
+ header_params['Accept'] = self.api_client.select_header_accept(
4764
+ ['application/json']) # noqa: E501
4765
+
4766
+ # HTTP header `Content-Type`
4767
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4768
+ ['application/json']) # noqa: E501
4769
+
4770
+ # Authentication setting
4771
+ auth_settings = ['volcengineSign'] # noqa: E501
4772
+
4773
+ return self.api_client.call_api(
4774
+ '/GrantDBAccountPrivilege/2022-01-01/vedbm/post/application_json/', 'POST',
4775
+ path_params,
4776
+ query_params,
4777
+ header_params,
4778
+ body=body_params,
4779
+ post_params=form_params,
4780
+ files=local_var_files,
4781
+ response_type='GrantDBAccountPrivilegeResponse', # noqa: E501
4782
+ auth_settings=auth_settings,
4783
+ async_req=params.get('async_req'),
4784
+ _return_http_data_only=params.get('_return_http_data_only'),
4785
+ _preload_content=params.get('_preload_content', True),
4786
+ _request_timeout=params.get('_request_timeout'),
4787
+ collection_formats=collection_formats)
4788
+
4789
+ def modify_allow_list(self, body, **kwargs): # noqa: E501
4790
+ """modify_allow_list # noqa: E501
4791
+
4792
+ This method makes a synchronous HTTP request by default. To make an
4793
+ asynchronous HTTP request, please pass async_req=True
4794
+ >>> thread = api.modify_allow_list(body, async_req=True)
4795
+ >>> result = thread.get()
4796
+
4797
+ :param async_req bool
4798
+ :param ModifyAllowListRequest body: (required)
4799
+ :return: ModifyAllowListResponse
4800
+ If the method is called asynchronously,
4801
+ returns the request thread.
4802
+ """
4803
+ kwargs['_return_http_data_only'] = True
4804
+ if kwargs.get('async_req'):
4805
+ return self.modify_allow_list_with_http_info(body, **kwargs) # noqa: E501
4806
+ else:
4807
+ (data) = self.modify_allow_list_with_http_info(body, **kwargs) # noqa: E501
4808
+ return data
4809
+
4810
+ def modify_allow_list_with_http_info(self, body, **kwargs): # noqa: E501
4811
+ """modify_allow_list # noqa: E501
4812
+
4813
+ This method makes a synchronous HTTP request by default. To make an
4814
+ asynchronous HTTP request, please pass async_req=True
4815
+ >>> thread = api.modify_allow_list_with_http_info(body, async_req=True)
4816
+ >>> result = thread.get()
4817
+
4818
+ :param async_req bool
4819
+ :param ModifyAllowListRequest body: (required)
4820
+ :return: ModifyAllowListResponse
4821
+ If the method is called asynchronously,
4822
+ returns the request thread.
4823
+ """
4824
+
4825
+ all_params = ['body'] # noqa: E501
4826
+ all_params.append('async_req')
4827
+ all_params.append('_return_http_data_only')
4828
+ all_params.append('_preload_content')
4829
+ all_params.append('_request_timeout')
4830
+
4831
+ params = locals()
4832
+ for key, val in six.iteritems(params['kwargs']):
4833
+ if key not in all_params:
4834
+ raise TypeError(
4835
+ "Got an unexpected keyword argument '%s'"
4836
+ " to method modify_allow_list" % key
4837
+ )
4838
+ params[key] = val
4839
+ del params['kwargs']
4840
+ # verify the required parameter 'body' is set
4841
+ if self.api_client.client_side_validation and ('body' not in params or
4842
+ params['body'] is None): # noqa: E501
4843
+ raise ValueError("Missing the required parameter `body` when calling `modify_allow_list`") # noqa: E501
4844
+
4845
+ collection_formats = {}
4846
+
4847
+ path_params = {}
4848
+
4849
+ query_params = []
4850
+
4851
+ header_params = {}
4852
+
4853
+ form_params = []
4854
+ local_var_files = {}
4855
+
4856
+ body_params = None
4857
+ if 'body' in params:
4858
+ body_params = params['body']
4859
+ # HTTP header `Accept`
4860
+ header_params['Accept'] = self.api_client.select_header_accept(
4861
+ ['application/json']) # noqa: E501
4862
+
4863
+ # HTTP header `Content-Type`
4864
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4865
+ ['application/json']) # noqa: E501
4866
+
4867
+ # Authentication setting
4868
+ auth_settings = ['volcengineSign'] # noqa: E501
4869
+
4870
+ return self.api_client.call_api(
4871
+ '/ModifyAllowList/2022-01-01/vedbm/post/application_json/', 'POST',
4872
+ path_params,
4873
+ query_params,
4874
+ header_params,
4875
+ body=body_params,
4876
+ post_params=form_params,
4877
+ files=local_var_files,
4878
+ response_type='ModifyAllowListResponse', # noqa: E501
4879
+ auth_settings=auth_settings,
4880
+ async_req=params.get('async_req'),
4881
+ _return_http_data_only=params.get('_return_http_data_only'),
4882
+ _preload_content=params.get('_preload_content', True),
4883
+ _request_timeout=params.get('_request_timeout'),
4884
+ collection_formats=collection_formats)
4885
+
4886
+ def modify_backup_policy(self, body, **kwargs): # noqa: E501
4887
+ """modify_backup_policy # noqa: E501
4888
+
4889
+ This method makes a synchronous HTTP request by default. To make an
4890
+ asynchronous HTTP request, please pass async_req=True
4891
+ >>> thread = api.modify_backup_policy(body, async_req=True)
4892
+ >>> result = thread.get()
4893
+
4894
+ :param async_req bool
4895
+ :param ModifyBackupPolicyRequest body: (required)
4896
+ :return: ModifyBackupPolicyResponse
4897
+ If the method is called asynchronously,
4898
+ returns the request thread.
4899
+ """
4900
+ kwargs['_return_http_data_only'] = True
4901
+ if kwargs.get('async_req'):
4902
+ return self.modify_backup_policy_with_http_info(body, **kwargs) # noqa: E501
4903
+ else:
4904
+ (data) = self.modify_backup_policy_with_http_info(body, **kwargs) # noqa: E501
4905
+ return data
4906
+
4907
+ def modify_backup_policy_with_http_info(self, body, **kwargs): # noqa: E501
4908
+ """modify_backup_policy # noqa: E501
4909
+
4910
+ This method makes a synchronous HTTP request by default. To make an
4911
+ asynchronous HTTP request, please pass async_req=True
4912
+ >>> thread = api.modify_backup_policy_with_http_info(body, async_req=True)
4913
+ >>> result = thread.get()
4914
+
4915
+ :param async_req bool
4916
+ :param ModifyBackupPolicyRequest body: (required)
4917
+ :return: ModifyBackupPolicyResponse
4918
+ If the method is called asynchronously,
4919
+ returns the request thread.
4920
+ """
4921
+
4922
+ all_params = ['body'] # noqa: E501
4923
+ all_params.append('async_req')
4924
+ all_params.append('_return_http_data_only')
4925
+ all_params.append('_preload_content')
4926
+ all_params.append('_request_timeout')
4927
+
4928
+ params = locals()
4929
+ for key, val in six.iteritems(params['kwargs']):
4930
+ if key not in all_params:
4931
+ raise TypeError(
4932
+ "Got an unexpected keyword argument '%s'"
4933
+ " to method modify_backup_policy" % key
4934
+ )
4935
+ params[key] = val
4936
+ del params['kwargs']
4937
+ # verify the required parameter 'body' is set
4938
+ if self.api_client.client_side_validation and ('body' not in params or
4939
+ params['body'] is None): # noqa: E501
4940
+ raise ValueError("Missing the required parameter `body` when calling `modify_backup_policy`") # noqa: E501
4941
+
4942
+ collection_formats = {}
4943
+
4944
+ path_params = {}
4945
+
4946
+ query_params = []
4947
+
4948
+ header_params = {}
4949
+
4950
+ form_params = []
4951
+ local_var_files = {}
4952
+
4953
+ body_params = None
4954
+ if 'body' in params:
4955
+ body_params = params['body']
4956
+ # HTTP header `Accept`
4957
+ header_params['Accept'] = self.api_client.select_header_accept(
4958
+ ['application/json']) # noqa: E501
4959
+
4960
+ # HTTP header `Content-Type`
4961
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
4962
+ ['application/json']) # noqa: E501
4963
+
4964
+ # Authentication setting
4965
+ auth_settings = ['volcengineSign'] # noqa: E501
4966
+
4967
+ return self.api_client.call_api(
4968
+ '/ModifyBackupPolicy/2022-01-01/vedbm/post/application_json/', 'POST',
4969
+ path_params,
4970
+ query_params,
4971
+ header_params,
4972
+ body=body_params,
4973
+ post_params=form_params,
4974
+ files=local_var_files,
4975
+ response_type='ModifyBackupPolicyResponse', # noqa: E501
4976
+ auth_settings=auth_settings,
4977
+ async_req=params.get('async_req'),
4978
+ _return_http_data_only=params.get('_return_http_data_only'),
4979
+ _preload_content=params.get('_preload_content', True),
4980
+ _request_timeout=params.get('_request_timeout'),
4981
+ collection_formats=collection_formats)
4982
+
4983
+ def modify_cross_region_backup_policy(self, body, **kwargs): # noqa: E501
4984
+ """modify_cross_region_backup_policy # noqa: E501
4985
+
4986
+ This method makes a synchronous HTTP request by default. To make an
4987
+ asynchronous HTTP request, please pass async_req=True
4988
+ >>> thread = api.modify_cross_region_backup_policy(body, async_req=True)
4989
+ >>> result = thread.get()
4990
+
4991
+ :param async_req bool
4992
+ :param ModifyCrossRegionBackupPolicyRequest body: (required)
4993
+ :return: ModifyCrossRegionBackupPolicyResponse
4994
+ If the method is called asynchronously,
4995
+ returns the request thread.
4996
+ """
4997
+ kwargs['_return_http_data_only'] = True
4998
+ if kwargs.get('async_req'):
4999
+ return self.modify_cross_region_backup_policy_with_http_info(body, **kwargs) # noqa: E501
5000
+ else:
5001
+ (data) = self.modify_cross_region_backup_policy_with_http_info(body, **kwargs) # noqa: E501
5002
+ return data
5003
+
5004
+ def modify_cross_region_backup_policy_with_http_info(self, body, **kwargs): # noqa: E501
5005
+ """modify_cross_region_backup_policy # noqa: E501
5006
+
5007
+ This method makes a synchronous HTTP request by default. To make an
5008
+ asynchronous HTTP request, please pass async_req=True
5009
+ >>> thread = api.modify_cross_region_backup_policy_with_http_info(body, async_req=True)
5010
+ >>> result = thread.get()
5011
+
5012
+ :param async_req bool
5013
+ :param ModifyCrossRegionBackupPolicyRequest body: (required)
5014
+ :return: ModifyCrossRegionBackupPolicyResponse
5015
+ If the method is called asynchronously,
5016
+ returns the request thread.
5017
+ """
5018
+
5019
+ all_params = ['body'] # noqa: E501
5020
+ all_params.append('async_req')
5021
+ all_params.append('_return_http_data_only')
5022
+ all_params.append('_preload_content')
5023
+ all_params.append('_request_timeout')
5024
+
5025
+ params = locals()
5026
+ for key, val in six.iteritems(params['kwargs']):
5027
+ if key not in all_params:
5028
+ raise TypeError(
5029
+ "Got an unexpected keyword argument '%s'"
5030
+ " to method modify_cross_region_backup_policy" % key
5031
+ )
5032
+ params[key] = val
5033
+ del params['kwargs']
5034
+ # verify the required parameter 'body' is set
5035
+ if self.api_client.client_side_validation and ('body' not in params or
5036
+ params['body'] is None): # noqa: E501
5037
+ raise ValueError("Missing the required parameter `body` when calling `modify_cross_region_backup_policy`") # noqa: E501
5038
+
5039
+ collection_formats = {}
5040
+
5041
+ path_params = {}
5042
+
5043
+ query_params = []
5044
+
5045
+ header_params = {}
5046
+
5047
+ form_params = []
5048
+ local_var_files = {}
5049
+
5050
+ body_params = None
5051
+ if 'body' in params:
5052
+ body_params = params['body']
5053
+ # HTTP header `Accept`
5054
+ header_params['Accept'] = self.api_client.select_header_accept(
5055
+ ['application/json']) # noqa: E501
5056
+
5057
+ # HTTP header `Content-Type`
5058
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
5059
+ ['application/json']) # noqa: E501
5060
+
5061
+ # Authentication setting
5062
+ auth_settings = ['volcengineSign'] # noqa: E501
5063
+
5064
+ return self.api_client.call_api(
5065
+ '/ModifyCrossRegionBackupPolicy/2022-01-01/vedbm/post/application_json/', 'POST',
5066
+ path_params,
5067
+ query_params,
5068
+ header_params,
5069
+ body=body_params,
5070
+ post_params=form_params,
5071
+ files=local_var_files,
5072
+ response_type='ModifyCrossRegionBackupPolicyResponse', # noqa: E501
5073
+ auth_settings=auth_settings,
5074
+ async_req=params.get('async_req'),
5075
+ _return_http_data_only=params.get('_return_http_data_only'),
5076
+ _preload_content=params.get('_preload_content', True),
5077
+ _request_timeout=params.get('_request_timeout'),
5078
+ collection_formats=collection_formats)
5079
+
5080
+ def modify_database_description(self, body, **kwargs): # noqa: E501
5081
+ """modify_database_description # noqa: E501
5082
+
5083
+ This method makes a synchronous HTTP request by default. To make an
5084
+ asynchronous HTTP request, please pass async_req=True
5085
+ >>> thread = api.modify_database_description(body, async_req=True)
5086
+ >>> result = thread.get()
5087
+
5088
+ :param async_req bool
5089
+ :param ModifyDatabaseDescriptionRequest body: (required)
5090
+ :return: ModifyDatabaseDescriptionResponse
5091
+ If the method is called asynchronously,
5092
+ returns the request thread.
5093
+ """
5094
+ kwargs['_return_http_data_only'] = True
5095
+ if kwargs.get('async_req'):
5096
+ return self.modify_database_description_with_http_info(body, **kwargs) # noqa: E501
5097
+ else:
5098
+ (data) = self.modify_database_description_with_http_info(body, **kwargs) # noqa: E501
5099
+ return data
5100
+
5101
+ def modify_database_description_with_http_info(self, body, **kwargs): # noqa: E501
5102
+ """modify_database_description # noqa: E501
5103
+
5104
+ This method makes a synchronous HTTP request by default. To make an
5105
+ asynchronous HTTP request, please pass async_req=True
5106
+ >>> thread = api.modify_database_description_with_http_info(body, async_req=True)
5107
+ >>> result = thread.get()
5108
+
5109
+ :param async_req bool
5110
+ :param ModifyDatabaseDescriptionRequest body: (required)
5111
+ :return: ModifyDatabaseDescriptionResponse
5112
+ If the method is called asynchronously,
5113
+ returns the request thread.
5114
+ """
5115
+
5116
+ all_params = ['body'] # noqa: E501
5117
+ all_params.append('async_req')
5118
+ all_params.append('_return_http_data_only')
5119
+ all_params.append('_preload_content')
5120
+ all_params.append('_request_timeout')
5121
+
5122
+ params = locals()
5123
+ for key, val in six.iteritems(params['kwargs']):
5124
+ if key not in all_params:
5125
+ raise TypeError(
5126
+ "Got an unexpected keyword argument '%s'"
5127
+ " to method modify_database_description" % key
5128
+ )
5129
+ params[key] = val
5130
+ del params['kwargs']
5131
+ # verify the required parameter 'body' is set
5132
+ if self.api_client.client_side_validation and ('body' not in params or
5133
+ params['body'] is None): # noqa: E501
5134
+ raise ValueError("Missing the required parameter `body` when calling `modify_database_description`") # noqa: E501
5135
+
5136
+ collection_formats = {}
5137
+
5138
+ path_params = {}
5139
+
5140
+ query_params = []
5141
+
5142
+ header_params = {}
5143
+
5144
+ form_params = []
5145
+ local_var_files = {}
5146
+
5147
+ body_params = None
5148
+ if 'body' in params:
5149
+ body_params = params['body']
5150
+ # HTTP header `Accept`
5151
+ header_params['Accept'] = self.api_client.select_header_accept(
5152
+ ['application/json']) # noqa: E501
5153
+
5154
+ # HTTP header `Content-Type`
5155
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
5156
+ ['application/json']) # noqa: E501
5157
+
5158
+ # Authentication setting
5159
+ auth_settings = ['volcengineSign'] # noqa: E501
5160
+
5161
+ return self.api_client.call_api(
5162
+ '/ModifyDatabaseDescription/2022-01-01/vedbm/post/application_json/', 'POST',
5163
+ path_params,
5164
+ query_params,
5165
+ header_params,
5166
+ body=body_params,
5167
+ post_params=form_params,
5168
+ files=local_var_files,
5169
+ response_type='ModifyDatabaseDescriptionResponse', # noqa: E501
5170
+ auth_settings=auth_settings,
5171
+ async_req=params.get('async_req'),
5172
+ _return_http_data_only=params.get('_return_http_data_only'),
5173
+ _preload_content=params.get('_preload_content', True),
5174
+ _request_timeout=params.get('_request_timeout'),
5175
+ collection_formats=collection_formats)
5176
+
5177
+ def modify_db_account_description(self, body, **kwargs): # noqa: E501
5178
+ """modify_db_account_description # noqa: E501
5179
+
5180
+ This method makes a synchronous HTTP request by default. To make an
5181
+ asynchronous HTTP request, please pass async_req=True
5182
+ >>> thread = api.modify_db_account_description(body, async_req=True)
5183
+ >>> result = thread.get()
5184
+
5185
+ :param async_req bool
5186
+ :param ModifyDBAccountDescriptionRequest body: (required)
5187
+ :return: ModifyDBAccountDescriptionResponse
5188
+ If the method is called asynchronously,
5189
+ returns the request thread.
5190
+ """
5191
+ kwargs['_return_http_data_only'] = True
5192
+ if kwargs.get('async_req'):
5193
+ return self.modify_db_account_description_with_http_info(body, **kwargs) # noqa: E501
5194
+ else:
5195
+ (data) = self.modify_db_account_description_with_http_info(body, **kwargs) # noqa: E501
5196
+ return data
5197
+
5198
+ def modify_db_account_description_with_http_info(self, body, **kwargs): # noqa: E501
5199
+ """modify_db_account_description # noqa: E501
3260
5200
 
3261
5201
  This method makes a synchronous HTTP request by default. To make an
3262
5202
  asynchronous HTTP request, please pass async_req=True
3263
- >>> thread = api.describe_recoverable_time_with_http_info(body, async_req=True)
5203
+ >>> thread = api.modify_db_account_description_with_http_info(body, async_req=True)
3264
5204
  >>> result = thread.get()
3265
5205
 
3266
5206
  :param async_req bool
3267
- :param DescribeRecoverableTimeRequest body: (required)
3268
- :return: DescribeRecoverableTimeResponse
5207
+ :param ModifyDBAccountDescriptionRequest body: (required)
5208
+ :return: ModifyDBAccountDescriptionResponse
3269
5209
  If the method is called asynchronously,
3270
5210
  returns the request thread.
3271
5211
  """
@@ -3281,14 +5221,14 @@ class VEDBMApi(object):
3281
5221
  if key not in all_params:
3282
5222
  raise TypeError(
3283
5223
  "Got an unexpected keyword argument '%s'"
3284
- " to method describe_recoverable_time" % key
5224
+ " to method modify_db_account_description" % key
3285
5225
  )
3286
5226
  params[key] = val
3287
5227
  del params['kwargs']
3288
5228
  # verify the required parameter 'body' is set
3289
5229
  if self.api_client.client_side_validation and ('body' not in params or
3290
5230
  params['body'] is None): # noqa: E501
3291
- raise ValueError("Missing the required parameter `body` when calling `describe_recoverable_time`") # noqa: E501
5231
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_account_description`") # noqa: E501
3292
5232
 
3293
5233
  collection_formats = {}
3294
5234
 
@@ -3316,14 +5256,14 @@ class VEDBMApi(object):
3316
5256
  auth_settings = ['volcengineSign'] # noqa: E501
3317
5257
 
3318
5258
  return self.api_client.call_api(
3319
- '/DescribeRecoverableTime/2022-01-01/vedbm/post/application_json/', 'POST',
5259
+ '/ModifyDBAccountDescription/2022-01-01/vedbm/post/application_json/', 'POST',
3320
5260
  path_params,
3321
5261
  query_params,
3322
5262
  header_params,
3323
5263
  body=body_params,
3324
5264
  post_params=form_params,
3325
5265
  files=local_var_files,
3326
- response_type='DescribeRecoverableTimeResponse', # noqa: E501
5266
+ response_type='ModifyDBAccountDescriptionResponse', # noqa: E501
3327
5267
  auth_settings=auth_settings,
3328
5268
  async_req=params.get('async_req'),
3329
5269
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3331,38 +5271,38 @@ class VEDBMApi(object):
3331
5271
  _request_timeout=params.get('_request_timeout'),
3332
5272
  collection_formats=collection_formats)
3333
5273
 
3334
- def disassociate_allow_list(self, body, **kwargs): # noqa: E501
3335
- """disassociate_allow_list # noqa: E501
5274
+ def modify_db_endpoint(self, body, **kwargs): # noqa: E501
5275
+ """modify_db_endpoint # noqa: E501
3336
5276
 
3337
5277
  This method makes a synchronous HTTP request by default. To make an
3338
5278
  asynchronous HTTP request, please pass async_req=True
3339
- >>> thread = api.disassociate_allow_list(body, async_req=True)
5279
+ >>> thread = api.modify_db_endpoint(body, async_req=True)
3340
5280
  >>> result = thread.get()
3341
5281
 
3342
5282
  :param async_req bool
3343
- :param DisassociateAllowListRequest body: (required)
3344
- :return: DisassociateAllowListResponse
5283
+ :param ModifyDBEndpointRequest body: (required)
5284
+ :return: ModifyDBEndpointResponse
3345
5285
  If the method is called asynchronously,
3346
5286
  returns the request thread.
3347
5287
  """
3348
5288
  kwargs['_return_http_data_only'] = True
3349
5289
  if kwargs.get('async_req'):
3350
- return self.disassociate_allow_list_with_http_info(body, **kwargs) # noqa: E501
5290
+ return self.modify_db_endpoint_with_http_info(body, **kwargs) # noqa: E501
3351
5291
  else:
3352
- (data) = self.disassociate_allow_list_with_http_info(body, **kwargs) # noqa: E501
5292
+ (data) = self.modify_db_endpoint_with_http_info(body, **kwargs) # noqa: E501
3353
5293
  return data
3354
5294
 
3355
- def disassociate_allow_list_with_http_info(self, body, **kwargs): # noqa: E501
3356
- """disassociate_allow_list # noqa: E501
5295
+ def modify_db_endpoint_with_http_info(self, body, **kwargs): # noqa: E501
5296
+ """modify_db_endpoint # noqa: E501
3357
5297
 
3358
5298
  This method makes a synchronous HTTP request by default. To make an
3359
5299
  asynchronous HTTP request, please pass async_req=True
3360
- >>> thread = api.disassociate_allow_list_with_http_info(body, async_req=True)
5300
+ >>> thread = api.modify_db_endpoint_with_http_info(body, async_req=True)
3361
5301
  >>> result = thread.get()
3362
5302
 
3363
5303
  :param async_req bool
3364
- :param DisassociateAllowListRequest body: (required)
3365
- :return: DisassociateAllowListResponse
5304
+ :param ModifyDBEndpointRequest body: (required)
5305
+ :return: ModifyDBEndpointResponse
3366
5306
  If the method is called asynchronously,
3367
5307
  returns the request thread.
3368
5308
  """
@@ -3378,14 +5318,14 @@ class VEDBMApi(object):
3378
5318
  if key not in all_params:
3379
5319
  raise TypeError(
3380
5320
  "Got an unexpected keyword argument '%s'"
3381
- " to method disassociate_allow_list" % key
5321
+ " to method modify_db_endpoint" % key
3382
5322
  )
3383
5323
  params[key] = val
3384
5324
  del params['kwargs']
3385
5325
  # verify the required parameter 'body' is set
3386
5326
  if self.api_client.client_side_validation and ('body' not in params or
3387
5327
  params['body'] is None): # noqa: E501
3388
- raise ValueError("Missing the required parameter `body` when calling `disassociate_allow_list`") # noqa: E501
5328
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_endpoint`") # noqa: E501
3389
5329
 
3390
5330
  collection_formats = {}
3391
5331
 
@@ -3413,14 +5353,14 @@ class VEDBMApi(object):
3413
5353
  auth_settings = ['volcengineSign'] # noqa: E501
3414
5354
 
3415
5355
  return self.api_client.call_api(
3416
- '/DisassociateAllowList/2022-01-01/vedbm/post/application_json/', 'POST',
5356
+ '/ModifyDBEndpoint/2022-01-01/vedbm/post/application_json/', 'POST',
3417
5357
  path_params,
3418
5358
  query_params,
3419
5359
  header_params,
3420
5360
  body=body_params,
3421
5361
  post_params=form_params,
3422
5362
  files=local_var_files,
3423
- response_type='DisassociateAllowListResponse', # noqa: E501
5363
+ response_type='ModifyDBEndpointResponse', # noqa: E501
3424
5364
  auth_settings=auth_settings,
3425
5365
  async_req=params.get('async_req'),
3426
5366
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3428,38 +5368,38 @@ class VEDBMApi(object):
3428
5368
  _request_timeout=params.get('_request_timeout'),
3429
5369
  collection_formats=collection_formats)
3430
5370
 
3431
- def grant_db_account_privilege(self, body, **kwargs): # noqa: E501
3432
- """grant_db_account_privilege # noqa: E501
5371
+ def modify_db_endpoint_address(self, body, **kwargs): # noqa: E501
5372
+ """modify_db_endpoint_address # noqa: E501
3433
5373
 
3434
5374
  This method makes a synchronous HTTP request by default. To make an
3435
5375
  asynchronous HTTP request, please pass async_req=True
3436
- >>> thread = api.grant_db_account_privilege(body, async_req=True)
5376
+ >>> thread = api.modify_db_endpoint_address(body, async_req=True)
3437
5377
  >>> result = thread.get()
3438
5378
 
3439
5379
  :param async_req bool
3440
- :param GrantDBAccountPrivilegeRequest body: (required)
3441
- :return: GrantDBAccountPrivilegeResponse
5380
+ :param ModifyDBEndpointAddressRequest body: (required)
5381
+ :return: ModifyDBEndpointAddressResponse
3442
5382
  If the method is called asynchronously,
3443
5383
  returns the request thread.
3444
5384
  """
3445
5385
  kwargs['_return_http_data_only'] = True
3446
5386
  if kwargs.get('async_req'):
3447
- return self.grant_db_account_privilege_with_http_info(body, **kwargs) # noqa: E501
5387
+ return self.modify_db_endpoint_address_with_http_info(body, **kwargs) # noqa: E501
3448
5388
  else:
3449
- (data) = self.grant_db_account_privilege_with_http_info(body, **kwargs) # noqa: E501
5389
+ (data) = self.modify_db_endpoint_address_with_http_info(body, **kwargs) # noqa: E501
3450
5390
  return data
3451
5391
 
3452
- def grant_db_account_privilege_with_http_info(self, body, **kwargs): # noqa: E501
3453
- """grant_db_account_privilege # noqa: E501
5392
+ def modify_db_endpoint_address_with_http_info(self, body, **kwargs): # noqa: E501
5393
+ """modify_db_endpoint_address # noqa: E501
3454
5394
 
3455
5395
  This method makes a synchronous HTTP request by default. To make an
3456
5396
  asynchronous HTTP request, please pass async_req=True
3457
- >>> thread = api.grant_db_account_privilege_with_http_info(body, async_req=True)
5397
+ >>> thread = api.modify_db_endpoint_address_with_http_info(body, async_req=True)
3458
5398
  >>> result = thread.get()
3459
5399
 
3460
5400
  :param async_req bool
3461
- :param GrantDBAccountPrivilegeRequest body: (required)
3462
- :return: GrantDBAccountPrivilegeResponse
5401
+ :param ModifyDBEndpointAddressRequest body: (required)
5402
+ :return: ModifyDBEndpointAddressResponse
3463
5403
  If the method is called asynchronously,
3464
5404
  returns the request thread.
3465
5405
  """
@@ -3475,14 +5415,14 @@ class VEDBMApi(object):
3475
5415
  if key not in all_params:
3476
5416
  raise TypeError(
3477
5417
  "Got an unexpected keyword argument '%s'"
3478
- " to method grant_db_account_privilege" % key
5418
+ " to method modify_db_endpoint_address" % key
3479
5419
  )
3480
5420
  params[key] = val
3481
5421
  del params['kwargs']
3482
5422
  # verify the required parameter 'body' is set
3483
5423
  if self.api_client.client_side_validation and ('body' not in params or
3484
5424
  params['body'] is None): # noqa: E501
3485
- raise ValueError("Missing the required parameter `body` when calling `grant_db_account_privilege`") # noqa: E501
5425
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_endpoint_address`") # noqa: E501
3486
5426
 
3487
5427
  collection_formats = {}
3488
5428
 
@@ -3510,14 +5450,14 @@ class VEDBMApi(object):
3510
5450
  auth_settings = ['volcengineSign'] # noqa: E501
3511
5451
 
3512
5452
  return self.api_client.call_api(
3513
- '/GrantDBAccountPrivilege/2022-01-01/vedbm/post/application_json/', 'POST',
5453
+ '/ModifyDBEndpointAddress/2022-01-01/vedbm/post/application_json/', 'POST',
3514
5454
  path_params,
3515
5455
  query_params,
3516
5456
  header_params,
3517
5457
  body=body_params,
3518
5458
  post_params=form_params,
3519
5459
  files=local_var_files,
3520
- response_type='GrantDBAccountPrivilegeResponse', # noqa: E501
5460
+ response_type='ModifyDBEndpointAddressResponse', # noqa: E501
3521
5461
  auth_settings=auth_settings,
3522
5462
  async_req=params.get('async_req'),
3523
5463
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3525,38 +5465,38 @@ class VEDBMApi(object):
3525
5465
  _request_timeout=params.get('_request_timeout'),
3526
5466
  collection_formats=collection_formats)
3527
5467
 
3528
- def modify_allow_list(self, body, **kwargs): # noqa: E501
3529
- """modify_allow_list # noqa: E501
5468
+ def modify_db_endpoint_dns(self, body, **kwargs): # noqa: E501
5469
+ """modify_db_endpoint_dns # noqa: E501
3530
5470
 
3531
5471
  This method makes a synchronous HTTP request by default. To make an
3532
5472
  asynchronous HTTP request, please pass async_req=True
3533
- >>> thread = api.modify_allow_list(body, async_req=True)
5473
+ >>> thread = api.modify_db_endpoint_dns(body, async_req=True)
3534
5474
  >>> result = thread.get()
3535
5475
 
3536
5476
  :param async_req bool
3537
- :param ModifyAllowListRequest body: (required)
3538
- :return: ModifyAllowListResponse
5477
+ :param ModifyDBEndpointDNSRequest body: (required)
5478
+ :return: ModifyDBEndpointDNSResponse
3539
5479
  If the method is called asynchronously,
3540
5480
  returns the request thread.
3541
5481
  """
3542
5482
  kwargs['_return_http_data_only'] = True
3543
5483
  if kwargs.get('async_req'):
3544
- return self.modify_allow_list_with_http_info(body, **kwargs) # noqa: E501
5484
+ return self.modify_db_endpoint_dns_with_http_info(body, **kwargs) # noqa: E501
3545
5485
  else:
3546
- (data) = self.modify_allow_list_with_http_info(body, **kwargs) # noqa: E501
5486
+ (data) = self.modify_db_endpoint_dns_with_http_info(body, **kwargs) # noqa: E501
3547
5487
  return data
3548
5488
 
3549
- def modify_allow_list_with_http_info(self, body, **kwargs): # noqa: E501
3550
- """modify_allow_list # noqa: E501
5489
+ def modify_db_endpoint_dns_with_http_info(self, body, **kwargs): # noqa: E501
5490
+ """modify_db_endpoint_dns # noqa: E501
3551
5491
 
3552
5492
  This method makes a synchronous HTTP request by default. To make an
3553
5493
  asynchronous HTTP request, please pass async_req=True
3554
- >>> thread = api.modify_allow_list_with_http_info(body, async_req=True)
5494
+ >>> thread = api.modify_db_endpoint_dns_with_http_info(body, async_req=True)
3555
5495
  >>> result = thread.get()
3556
5496
 
3557
5497
  :param async_req bool
3558
- :param ModifyAllowListRequest body: (required)
3559
- :return: ModifyAllowListResponse
5498
+ :param ModifyDBEndpointDNSRequest body: (required)
5499
+ :return: ModifyDBEndpointDNSResponse
3560
5500
  If the method is called asynchronously,
3561
5501
  returns the request thread.
3562
5502
  """
@@ -3572,14 +5512,14 @@ class VEDBMApi(object):
3572
5512
  if key not in all_params:
3573
5513
  raise TypeError(
3574
5514
  "Got an unexpected keyword argument '%s'"
3575
- " to method modify_allow_list" % key
5515
+ " to method modify_db_endpoint_dns" % key
3576
5516
  )
3577
5517
  params[key] = val
3578
5518
  del params['kwargs']
3579
5519
  # verify the required parameter 'body' is set
3580
5520
  if self.api_client.client_side_validation and ('body' not in params or
3581
5521
  params['body'] is None): # noqa: E501
3582
- raise ValueError("Missing the required parameter `body` when calling `modify_allow_list`") # noqa: E501
5522
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_endpoint_dns`") # noqa: E501
3583
5523
 
3584
5524
  collection_formats = {}
3585
5525
 
@@ -3607,14 +5547,14 @@ class VEDBMApi(object):
3607
5547
  auth_settings = ['volcengineSign'] # noqa: E501
3608
5548
 
3609
5549
  return self.api_client.call_api(
3610
- '/ModifyAllowList/2022-01-01/vedbm/post/application_json/', 'POST',
5550
+ '/ModifyDBEndpointDNS/2022-01-01/vedbm/post/application_json/', 'POST',
3611
5551
  path_params,
3612
5552
  query_params,
3613
5553
  header_params,
3614
5554
  body=body_params,
3615
5555
  post_params=form_params,
3616
5556
  files=local_var_files,
3617
- response_type='ModifyAllowListResponse', # noqa: E501
5557
+ response_type='ModifyDBEndpointDNSResponse', # noqa: E501
3618
5558
  auth_settings=auth_settings,
3619
5559
  async_req=params.get('async_req'),
3620
5560
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3622,38 +5562,38 @@ class VEDBMApi(object):
3622
5562
  _request_timeout=params.get('_request_timeout'),
3623
5563
  collection_formats=collection_formats)
3624
5564
 
3625
- def modify_backup_policy(self, body, **kwargs): # noqa: E501
3626
- """modify_backup_policy # noqa: E501
5565
+ def modify_db_instance_charge_type(self, body, **kwargs): # noqa: E501
5566
+ """modify_db_instance_charge_type # noqa: E501
3627
5567
 
3628
5568
  This method makes a synchronous HTTP request by default. To make an
3629
5569
  asynchronous HTTP request, please pass async_req=True
3630
- >>> thread = api.modify_backup_policy(body, async_req=True)
5570
+ >>> thread = api.modify_db_instance_charge_type(body, async_req=True)
3631
5571
  >>> result = thread.get()
3632
5572
 
3633
5573
  :param async_req bool
3634
- :param ModifyBackupPolicyRequest body: (required)
3635
- :return: ModifyBackupPolicyResponse
5574
+ :param ModifyDBInstanceChargeTypeRequest body: (required)
5575
+ :return: ModifyDBInstanceChargeTypeResponse
3636
5576
  If the method is called asynchronously,
3637
5577
  returns the request thread.
3638
5578
  """
3639
5579
  kwargs['_return_http_data_only'] = True
3640
5580
  if kwargs.get('async_req'):
3641
- return self.modify_backup_policy_with_http_info(body, **kwargs) # noqa: E501
5581
+ return self.modify_db_instance_charge_type_with_http_info(body, **kwargs) # noqa: E501
3642
5582
  else:
3643
- (data) = self.modify_backup_policy_with_http_info(body, **kwargs) # noqa: E501
5583
+ (data) = self.modify_db_instance_charge_type_with_http_info(body, **kwargs) # noqa: E501
3644
5584
  return data
3645
5585
 
3646
- def modify_backup_policy_with_http_info(self, body, **kwargs): # noqa: E501
3647
- """modify_backup_policy # noqa: E501
5586
+ def modify_db_instance_charge_type_with_http_info(self, body, **kwargs): # noqa: E501
5587
+ """modify_db_instance_charge_type # noqa: E501
3648
5588
 
3649
5589
  This method makes a synchronous HTTP request by default. To make an
3650
5590
  asynchronous HTTP request, please pass async_req=True
3651
- >>> thread = api.modify_backup_policy_with_http_info(body, async_req=True)
5591
+ >>> thread = api.modify_db_instance_charge_type_with_http_info(body, async_req=True)
3652
5592
  >>> result = thread.get()
3653
5593
 
3654
5594
  :param async_req bool
3655
- :param ModifyBackupPolicyRequest body: (required)
3656
- :return: ModifyBackupPolicyResponse
5595
+ :param ModifyDBInstanceChargeTypeRequest body: (required)
5596
+ :return: ModifyDBInstanceChargeTypeResponse
3657
5597
  If the method is called asynchronously,
3658
5598
  returns the request thread.
3659
5599
  """
@@ -3669,14 +5609,14 @@ class VEDBMApi(object):
3669
5609
  if key not in all_params:
3670
5610
  raise TypeError(
3671
5611
  "Got an unexpected keyword argument '%s'"
3672
- " to method modify_backup_policy" % key
5612
+ " to method modify_db_instance_charge_type" % key
3673
5613
  )
3674
5614
  params[key] = val
3675
5615
  del params['kwargs']
3676
5616
  # verify the required parameter 'body' is set
3677
5617
  if self.api_client.client_side_validation and ('body' not in params or
3678
5618
  params['body'] is None): # noqa: E501
3679
- raise ValueError("Missing the required parameter `body` when calling `modify_backup_policy`") # noqa: E501
5619
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_charge_type`") # noqa: E501
3680
5620
 
3681
5621
  collection_formats = {}
3682
5622
 
@@ -3704,14 +5644,14 @@ class VEDBMApi(object):
3704
5644
  auth_settings = ['volcengineSign'] # noqa: E501
3705
5645
 
3706
5646
  return self.api_client.call_api(
3707
- '/ModifyBackupPolicy/2022-01-01/vedbm/post/application_json/', 'POST',
5647
+ '/ModifyDBInstanceChargeType/2022-01-01/vedbm/post/application_json/', 'POST',
3708
5648
  path_params,
3709
5649
  query_params,
3710
5650
  header_params,
3711
5651
  body=body_params,
3712
5652
  post_params=form_params,
3713
5653
  files=local_var_files,
3714
- response_type='ModifyBackupPolicyResponse', # noqa: E501
5654
+ response_type='ModifyDBInstanceChargeTypeResponse', # noqa: E501
3715
5655
  auth_settings=auth_settings,
3716
5656
  async_req=params.get('async_req'),
3717
5657
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3719,38 +5659,38 @@ class VEDBMApi(object):
3719
5659
  _request_timeout=params.get('_request_timeout'),
3720
5660
  collection_formats=collection_formats)
3721
5661
 
3722
- def modify_cross_region_backup_policy(self, body, **kwargs): # noqa: E501
3723
- """modify_cross_region_backup_policy # noqa: E501
5662
+ def modify_db_instance_deletion_protection_policy(self, body, **kwargs): # noqa: E501
5663
+ """modify_db_instance_deletion_protection_policy # noqa: E501
3724
5664
 
3725
5665
  This method makes a synchronous HTTP request by default. To make an
3726
5666
  asynchronous HTTP request, please pass async_req=True
3727
- >>> thread = api.modify_cross_region_backup_policy(body, async_req=True)
5667
+ >>> thread = api.modify_db_instance_deletion_protection_policy(body, async_req=True)
3728
5668
  >>> result = thread.get()
3729
5669
 
3730
5670
  :param async_req bool
3731
- :param ModifyCrossRegionBackupPolicyRequest body: (required)
3732
- :return: ModifyCrossRegionBackupPolicyResponse
5671
+ :param ModifyDBInstanceDeletionProtectionPolicyRequest body: (required)
5672
+ :return: ModifyDBInstanceDeletionProtectionPolicyResponse
3733
5673
  If the method is called asynchronously,
3734
5674
  returns the request thread.
3735
5675
  """
3736
5676
  kwargs['_return_http_data_only'] = True
3737
5677
  if kwargs.get('async_req'):
3738
- return self.modify_cross_region_backup_policy_with_http_info(body, **kwargs) # noqa: E501
5678
+ return self.modify_db_instance_deletion_protection_policy_with_http_info(body, **kwargs) # noqa: E501
3739
5679
  else:
3740
- (data) = self.modify_cross_region_backup_policy_with_http_info(body, **kwargs) # noqa: E501
5680
+ (data) = self.modify_db_instance_deletion_protection_policy_with_http_info(body, **kwargs) # noqa: E501
3741
5681
  return data
3742
5682
 
3743
- def modify_cross_region_backup_policy_with_http_info(self, body, **kwargs): # noqa: E501
3744
- """modify_cross_region_backup_policy # noqa: E501
5683
+ def modify_db_instance_deletion_protection_policy_with_http_info(self, body, **kwargs): # noqa: E501
5684
+ """modify_db_instance_deletion_protection_policy # noqa: E501
3745
5685
 
3746
5686
  This method makes a synchronous HTTP request by default. To make an
3747
5687
  asynchronous HTTP request, please pass async_req=True
3748
- >>> thread = api.modify_cross_region_backup_policy_with_http_info(body, async_req=True)
5688
+ >>> thread = api.modify_db_instance_deletion_protection_policy_with_http_info(body, async_req=True)
3749
5689
  >>> result = thread.get()
3750
5690
 
3751
5691
  :param async_req bool
3752
- :param ModifyCrossRegionBackupPolicyRequest body: (required)
3753
- :return: ModifyCrossRegionBackupPolicyResponse
5692
+ :param ModifyDBInstanceDeletionProtectionPolicyRequest body: (required)
5693
+ :return: ModifyDBInstanceDeletionProtectionPolicyResponse
3754
5694
  If the method is called asynchronously,
3755
5695
  returns the request thread.
3756
5696
  """
@@ -3766,14 +5706,14 @@ class VEDBMApi(object):
3766
5706
  if key not in all_params:
3767
5707
  raise TypeError(
3768
5708
  "Got an unexpected keyword argument '%s'"
3769
- " to method modify_cross_region_backup_policy" % key
5709
+ " to method modify_db_instance_deletion_protection_policy" % key
3770
5710
  )
3771
5711
  params[key] = val
3772
5712
  del params['kwargs']
3773
5713
  # verify the required parameter 'body' is set
3774
5714
  if self.api_client.client_side_validation and ('body' not in params or
3775
5715
  params['body'] is None): # noqa: E501
3776
- raise ValueError("Missing the required parameter `body` when calling `modify_cross_region_backup_policy`") # noqa: E501
5716
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_deletion_protection_policy`") # noqa: E501
3777
5717
 
3778
5718
  collection_formats = {}
3779
5719
 
@@ -3801,14 +5741,14 @@ class VEDBMApi(object):
3801
5741
  auth_settings = ['volcengineSign'] # noqa: E501
3802
5742
 
3803
5743
  return self.api_client.call_api(
3804
- '/ModifyCrossRegionBackupPolicy/2022-01-01/vedbm/post/application_json/', 'POST',
5744
+ '/ModifyDBInstanceDeletionProtectionPolicy/2022-01-01/vedbm/post/application_json/', 'POST',
3805
5745
  path_params,
3806
5746
  query_params,
3807
5747
  header_params,
3808
5748
  body=body_params,
3809
5749
  post_params=form_params,
3810
5750
  files=local_var_files,
3811
- response_type='ModifyCrossRegionBackupPolicyResponse', # noqa: E501
5751
+ response_type='ModifyDBInstanceDeletionProtectionPolicyResponse', # noqa: E501
3812
5752
  auth_settings=auth_settings,
3813
5753
  async_req=params.get('async_req'),
3814
5754
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3816,38 +5756,38 @@ class VEDBMApi(object):
3816
5756
  _request_timeout=params.get('_request_timeout'),
3817
5757
  collection_formats=collection_formats)
3818
5758
 
3819
- def modify_database_description(self, body, **kwargs): # noqa: E501
3820
- """modify_database_description # noqa: E501
5759
+ def modify_db_instance_maintenance_window(self, body, **kwargs): # noqa: E501
5760
+ """modify_db_instance_maintenance_window # noqa: E501
3821
5761
 
3822
5762
  This method makes a synchronous HTTP request by default. To make an
3823
5763
  asynchronous HTTP request, please pass async_req=True
3824
- >>> thread = api.modify_database_description(body, async_req=True)
5764
+ >>> thread = api.modify_db_instance_maintenance_window(body, async_req=True)
3825
5765
  >>> result = thread.get()
3826
5766
 
3827
5767
  :param async_req bool
3828
- :param ModifyDatabaseDescriptionRequest body: (required)
3829
- :return: ModifyDatabaseDescriptionResponse
5768
+ :param ModifyDBInstanceMaintenanceWindowRequest body: (required)
5769
+ :return: ModifyDBInstanceMaintenanceWindowResponse
3830
5770
  If the method is called asynchronously,
3831
5771
  returns the request thread.
3832
5772
  """
3833
5773
  kwargs['_return_http_data_only'] = True
3834
5774
  if kwargs.get('async_req'):
3835
- return self.modify_database_description_with_http_info(body, **kwargs) # noqa: E501
5775
+ return self.modify_db_instance_maintenance_window_with_http_info(body, **kwargs) # noqa: E501
3836
5776
  else:
3837
- (data) = self.modify_database_description_with_http_info(body, **kwargs) # noqa: E501
5777
+ (data) = self.modify_db_instance_maintenance_window_with_http_info(body, **kwargs) # noqa: E501
3838
5778
  return data
3839
5779
 
3840
- def modify_database_description_with_http_info(self, body, **kwargs): # noqa: E501
3841
- """modify_database_description # noqa: E501
5780
+ def modify_db_instance_maintenance_window_with_http_info(self, body, **kwargs): # noqa: E501
5781
+ """modify_db_instance_maintenance_window # noqa: E501
3842
5782
 
3843
5783
  This method makes a synchronous HTTP request by default. To make an
3844
5784
  asynchronous HTTP request, please pass async_req=True
3845
- >>> thread = api.modify_database_description_with_http_info(body, async_req=True)
5785
+ >>> thread = api.modify_db_instance_maintenance_window_with_http_info(body, async_req=True)
3846
5786
  >>> result = thread.get()
3847
5787
 
3848
5788
  :param async_req bool
3849
- :param ModifyDatabaseDescriptionRequest body: (required)
3850
- :return: ModifyDatabaseDescriptionResponse
5789
+ :param ModifyDBInstanceMaintenanceWindowRequest body: (required)
5790
+ :return: ModifyDBInstanceMaintenanceWindowResponse
3851
5791
  If the method is called asynchronously,
3852
5792
  returns the request thread.
3853
5793
  """
@@ -3863,14 +5803,14 @@ class VEDBMApi(object):
3863
5803
  if key not in all_params:
3864
5804
  raise TypeError(
3865
5805
  "Got an unexpected keyword argument '%s'"
3866
- " to method modify_database_description" % key
5806
+ " to method modify_db_instance_maintenance_window" % key
3867
5807
  )
3868
5808
  params[key] = val
3869
5809
  del params['kwargs']
3870
5810
  # verify the required parameter 'body' is set
3871
5811
  if self.api_client.client_side_validation and ('body' not in params or
3872
5812
  params['body'] is None): # noqa: E501
3873
- raise ValueError("Missing the required parameter `body` when calling `modify_database_description`") # noqa: E501
5813
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_maintenance_window`") # noqa: E501
3874
5814
 
3875
5815
  collection_formats = {}
3876
5816
 
@@ -3898,14 +5838,14 @@ class VEDBMApi(object):
3898
5838
  auth_settings = ['volcengineSign'] # noqa: E501
3899
5839
 
3900
5840
  return self.api_client.call_api(
3901
- '/ModifyDatabaseDescription/2022-01-01/vedbm/post/application_json/', 'POST',
5841
+ '/ModifyDBInstanceMaintenanceWindow/2022-01-01/vedbm/post/application_json/', 'POST',
3902
5842
  path_params,
3903
5843
  query_params,
3904
5844
  header_params,
3905
5845
  body=body_params,
3906
5846
  post_params=form_params,
3907
5847
  files=local_var_files,
3908
- response_type='ModifyDatabaseDescriptionResponse', # noqa: E501
5848
+ response_type='ModifyDBInstanceMaintenanceWindowResponse', # noqa: E501
3909
5849
  auth_settings=auth_settings,
3910
5850
  async_req=params.get('async_req'),
3911
5851
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -3913,38 +5853,38 @@ class VEDBMApi(object):
3913
5853
  _request_timeout=params.get('_request_timeout'),
3914
5854
  collection_formats=collection_formats)
3915
5855
 
3916
- def modify_db_account_description(self, body, **kwargs): # noqa: E501
3917
- """modify_db_account_description # noqa: E501
5856
+ def modify_db_instance_name(self, body, **kwargs): # noqa: E501
5857
+ """modify_db_instance_name # noqa: E501
3918
5858
 
3919
5859
  This method makes a synchronous HTTP request by default. To make an
3920
5860
  asynchronous HTTP request, please pass async_req=True
3921
- >>> thread = api.modify_db_account_description(body, async_req=True)
5861
+ >>> thread = api.modify_db_instance_name(body, async_req=True)
3922
5862
  >>> result = thread.get()
3923
5863
 
3924
5864
  :param async_req bool
3925
- :param ModifyDBAccountDescriptionRequest body: (required)
3926
- :return: ModifyDBAccountDescriptionResponse
5865
+ :param ModifyDBInstanceNameRequest body: (required)
5866
+ :return: ModifyDBInstanceNameResponse
3927
5867
  If the method is called asynchronously,
3928
5868
  returns the request thread.
3929
5869
  """
3930
5870
  kwargs['_return_http_data_only'] = True
3931
5871
  if kwargs.get('async_req'):
3932
- return self.modify_db_account_description_with_http_info(body, **kwargs) # noqa: E501
5872
+ return self.modify_db_instance_name_with_http_info(body, **kwargs) # noqa: E501
3933
5873
  else:
3934
- (data) = self.modify_db_account_description_with_http_info(body, **kwargs) # noqa: E501
5874
+ (data) = self.modify_db_instance_name_with_http_info(body, **kwargs) # noqa: E501
3935
5875
  return data
3936
5876
 
3937
- def modify_db_account_description_with_http_info(self, body, **kwargs): # noqa: E501
3938
- """modify_db_account_description # noqa: E501
5877
+ def modify_db_instance_name_with_http_info(self, body, **kwargs): # noqa: E501
5878
+ """modify_db_instance_name # noqa: E501
3939
5879
 
3940
5880
  This method makes a synchronous HTTP request by default. To make an
3941
5881
  asynchronous HTTP request, please pass async_req=True
3942
- >>> thread = api.modify_db_account_description_with_http_info(body, async_req=True)
5882
+ >>> thread = api.modify_db_instance_name_with_http_info(body, async_req=True)
3943
5883
  >>> result = thread.get()
3944
5884
 
3945
5885
  :param async_req bool
3946
- :param ModifyDBAccountDescriptionRequest body: (required)
3947
- :return: ModifyDBAccountDescriptionResponse
5886
+ :param ModifyDBInstanceNameRequest body: (required)
5887
+ :return: ModifyDBInstanceNameResponse
3948
5888
  If the method is called asynchronously,
3949
5889
  returns the request thread.
3950
5890
  """
@@ -3960,14 +5900,14 @@ class VEDBMApi(object):
3960
5900
  if key not in all_params:
3961
5901
  raise TypeError(
3962
5902
  "Got an unexpected keyword argument '%s'"
3963
- " to method modify_db_account_description" % key
5903
+ " to method modify_db_instance_name" % key
3964
5904
  )
3965
5905
  params[key] = val
3966
5906
  del params['kwargs']
3967
5907
  # verify the required parameter 'body' is set
3968
5908
  if self.api_client.client_side_validation and ('body' not in params or
3969
5909
  params['body'] is None): # noqa: E501
3970
- raise ValueError("Missing the required parameter `body` when calling `modify_db_account_description`") # noqa: E501
5910
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_name`") # noqa: E501
3971
5911
 
3972
5912
  collection_formats = {}
3973
5913
 
@@ -3995,14 +5935,14 @@ class VEDBMApi(object):
3995
5935
  auth_settings = ['volcengineSign'] # noqa: E501
3996
5936
 
3997
5937
  return self.api_client.call_api(
3998
- '/ModifyDBAccountDescription/2022-01-01/vedbm/post/application_json/', 'POST',
5938
+ '/ModifyDBInstanceName/2022-01-01/vedbm/post/application_json/', 'POST',
3999
5939
  path_params,
4000
5940
  query_params,
4001
5941
  header_params,
4002
5942
  body=body_params,
4003
5943
  post_params=form_params,
4004
5944
  files=local_var_files,
4005
- response_type='ModifyDBAccountDescriptionResponse', # noqa: E501
5945
+ response_type='ModifyDBInstanceNameResponse', # noqa: E501
4006
5946
  auth_settings=auth_settings,
4007
5947
  async_req=params.get('async_req'),
4008
5948
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -4010,38 +5950,38 @@ class VEDBMApi(object):
4010
5950
  _request_timeout=params.get('_request_timeout'),
4011
5951
  collection_formats=collection_formats)
4012
5952
 
4013
- def modify_db_endpoint(self, body, **kwargs): # noqa: E501
4014
- """modify_db_endpoint # noqa: E501
5953
+ def modify_db_instance_parameters(self, body, **kwargs): # noqa: E501
5954
+ """modify_db_instance_parameters # noqa: E501
4015
5955
 
4016
5956
  This method makes a synchronous HTTP request by default. To make an
4017
5957
  asynchronous HTTP request, please pass async_req=True
4018
- >>> thread = api.modify_db_endpoint(body, async_req=True)
5958
+ >>> thread = api.modify_db_instance_parameters(body, async_req=True)
4019
5959
  >>> result = thread.get()
4020
5960
 
4021
5961
  :param async_req bool
4022
- :param ModifyDBEndpointRequest body: (required)
4023
- :return: ModifyDBEndpointResponse
5962
+ :param ModifyDBInstanceParametersRequest body: (required)
5963
+ :return: ModifyDBInstanceParametersResponse
4024
5964
  If the method is called asynchronously,
4025
5965
  returns the request thread.
4026
5966
  """
4027
5967
  kwargs['_return_http_data_only'] = True
4028
5968
  if kwargs.get('async_req'):
4029
- return self.modify_db_endpoint_with_http_info(body, **kwargs) # noqa: E501
5969
+ return self.modify_db_instance_parameters_with_http_info(body, **kwargs) # noqa: E501
4030
5970
  else:
4031
- (data) = self.modify_db_endpoint_with_http_info(body, **kwargs) # noqa: E501
5971
+ (data) = self.modify_db_instance_parameters_with_http_info(body, **kwargs) # noqa: E501
4032
5972
  return data
4033
5973
 
4034
- def modify_db_endpoint_with_http_info(self, body, **kwargs): # noqa: E501
4035
- """modify_db_endpoint # noqa: E501
5974
+ def modify_db_instance_parameters_with_http_info(self, body, **kwargs): # noqa: E501
5975
+ """modify_db_instance_parameters # noqa: E501
4036
5976
 
4037
5977
  This method makes a synchronous HTTP request by default. To make an
4038
5978
  asynchronous HTTP request, please pass async_req=True
4039
- >>> thread = api.modify_db_endpoint_with_http_info(body, async_req=True)
5979
+ >>> thread = api.modify_db_instance_parameters_with_http_info(body, async_req=True)
4040
5980
  >>> result = thread.get()
4041
5981
 
4042
5982
  :param async_req bool
4043
- :param ModifyDBEndpointRequest body: (required)
4044
- :return: ModifyDBEndpointResponse
5983
+ :param ModifyDBInstanceParametersRequest body: (required)
5984
+ :return: ModifyDBInstanceParametersResponse
4045
5985
  If the method is called asynchronously,
4046
5986
  returns the request thread.
4047
5987
  """
@@ -4057,14 +5997,14 @@ class VEDBMApi(object):
4057
5997
  if key not in all_params:
4058
5998
  raise TypeError(
4059
5999
  "Got an unexpected keyword argument '%s'"
4060
- " to method modify_db_endpoint" % key
6000
+ " to method modify_db_instance_parameters" % key
4061
6001
  )
4062
6002
  params[key] = val
4063
6003
  del params['kwargs']
4064
6004
  # verify the required parameter 'body' is set
4065
6005
  if self.api_client.client_side_validation and ('body' not in params or
4066
6006
  params['body'] is None): # noqa: E501
4067
- raise ValueError("Missing the required parameter `body` when calling `modify_db_endpoint`") # noqa: E501
6007
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_parameters`") # noqa: E501
4068
6008
 
4069
6009
  collection_formats = {}
4070
6010
 
@@ -4092,14 +6032,14 @@ class VEDBMApi(object):
4092
6032
  auth_settings = ['volcengineSign'] # noqa: E501
4093
6033
 
4094
6034
  return self.api_client.call_api(
4095
- '/ModifyDBEndpoint/2022-01-01/vedbm/post/application_json/', 'POST',
6035
+ '/ModifyDBInstanceParameters/2022-01-01/vedbm/post/application_json/', 'POST',
4096
6036
  path_params,
4097
6037
  query_params,
4098
6038
  header_params,
4099
6039
  body=body_params,
4100
6040
  post_params=form_params,
4101
6041
  files=local_var_files,
4102
- response_type='ModifyDBEndpointResponse', # noqa: E501
6042
+ response_type='ModifyDBInstanceParametersResponse', # noqa: E501
4103
6043
  auth_settings=auth_settings,
4104
6044
  async_req=params.get('async_req'),
4105
6045
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -4107,38 +6047,38 @@ class VEDBMApi(object):
4107
6047
  _request_timeout=params.get('_request_timeout'),
4108
6048
  collection_formats=collection_formats)
4109
6049
 
4110
- def modify_db_instance_name(self, body, **kwargs): # noqa: E501
4111
- """modify_db_instance_name # noqa: E501
6050
+ def modify_db_instance_spec(self, body, **kwargs): # noqa: E501
6051
+ """modify_db_instance_spec # noqa: E501
4112
6052
 
4113
6053
  This method makes a synchronous HTTP request by default. To make an
4114
6054
  asynchronous HTTP request, please pass async_req=True
4115
- >>> thread = api.modify_db_instance_name(body, async_req=True)
6055
+ >>> thread = api.modify_db_instance_spec(body, async_req=True)
4116
6056
  >>> result = thread.get()
4117
6057
 
4118
6058
  :param async_req bool
4119
- :param ModifyDBInstanceNameRequest body: (required)
4120
- :return: ModifyDBInstanceNameResponse
6059
+ :param ModifyDBInstanceSpecRequest body: (required)
6060
+ :return: ModifyDBInstanceSpecResponse
4121
6061
  If the method is called asynchronously,
4122
6062
  returns the request thread.
4123
6063
  """
4124
6064
  kwargs['_return_http_data_only'] = True
4125
6065
  if kwargs.get('async_req'):
4126
- return self.modify_db_instance_name_with_http_info(body, **kwargs) # noqa: E501
6066
+ return self.modify_db_instance_spec_with_http_info(body, **kwargs) # noqa: E501
4127
6067
  else:
4128
- (data) = self.modify_db_instance_name_with_http_info(body, **kwargs) # noqa: E501
6068
+ (data) = self.modify_db_instance_spec_with_http_info(body, **kwargs) # noqa: E501
4129
6069
  return data
4130
6070
 
4131
- def modify_db_instance_name_with_http_info(self, body, **kwargs): # noqa: E501
4132
- """modify_db_instance_name # noqa: E501
6071
+ def modify_db_instance_spec_with_http_info(self, body, **kwargs): # noqa: E501
6072
+ """modify_db_instance_spec # noqa: E501
4133
6073
 
4134
6074
  This method makes a synchronous HTTP request by default. To make an
4135
6075
  asynchronous HTTP request, please pass async_req=True
4136
- >>> thread = api.modify_db_instance_name_with_http_info(body, async_req=True)
6076
+ >>> thread = api.modify_db_instance_spec_with_http_info(body, async_req=True)
4137
6077
  >>> result = thread.get()
4138
6078
 
4139
6079
  :param async_req bool
4140
- :param ModifyDBInstanceNameRequest body: (required)
4141
- :return: ModifyDBInstanceNameResponse
6080
+ :param ModifyDBInstanceSpecRequest body: (required)
6081
+ :return: ModifyDBInstanceSpecResponse
4142
6082
  If the method is called asynchronously,
4143
6083
  returns the request thread.
4144
6084
  """
@@ -4154,14 +6094,14 @@ class VEDBMApi(object):
4154
6094
  if key not in all_params:
4155
6095
  raise TypeError(
4156
6096
  "Got an unexpected keyword argument '%s'"
4157
- " to method modify_db_instance_name" % key
6097
+ " to method modify_db_instance_spec" % key
4158
6098
  )
4159
6099
  params[key] = val
4160
6100
  del params['kwargs']
4161
6101
  # verify the required parameter 'body' is set
4162
6102
  if self.api_client.client_side_validation and ('body' not in params or
4163
6103
  params['body'] is None): # noqa: E501
4164
- raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_name`") # noqa: E501
6104
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_spec`") # noqa: E501
4165
6105
 
4166
6106
  collection_formats = {}
4167
6107
 
@@ -4189,14 +6129,14 @@ class VEDBMApi(object):
4189
6129
  auth_settings = ['volcengineSign'] # noqa: E501
4190
6130
 
4191
6131
  return self.api_client.call_api(
4192
- '/ModifyDBInstanceName/2022-01-01/vedbm/post/application_json/', 'POST',
6132
+ '/ModifyDBInstanceSpec/2022-01-01/vedbm/post/application_json/', 'POST',
4193
6133
  path_params,
4194
6134
  query_params,
4195
6135
  header_params,
4196
6136
  body=body_params,
4197
6137
  post_params=form_params,
4198
6138
  files=local_var_files,
4199
- response_type='ModifyDBInstanceNameResponse', # noqa: E501
6139
+ response_type='ModifyDBInstanceSpecResponse', # noqa: E501
4200
6140
  auth_settings=auth_settings,
4201
6141
  async_req=params.get('async_req'),
4202
6142
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -4204,38 +6144,38 @@ class VEDBMApi(object):
4204
6144
  _request_timeout=params.get('_request_timeout'),
4205
6145
  collection_formats=collection_formats)
4206
6146
 
4207
- def modify_db_instance_parameters(self, body, **kwargs): # noqa: E501
4208
- """modify_db_instance_parameters # noqa: E501
6147
+ def modify_db_node_config(self, body, **kwargs): # noqa: E501
6148
+ """modify_db_node_config # noqa: E501
4209
6149
 
4210
6150
  This method makes a synchronous HTTP request by default. To make an
4211
6151
  asynchronous HTTP request, please pass async_req=True
4212
- >>> thread = api.modify_db_instance_parameters(body, async_req=True)
6152
+ >>> thread = api.modify_db_node_config(body, async_req=True)
4213
6153
  >>> result = thread.get()
4214
6154
 
4215
6155
  :param async_req bool
4216
- :param ModifyDBInstanceParametersRequest body: (required)
4217
- :return: ModifyDBInstanceParametersResponse
6156
+ :param ModifyDBNodeConfigRequest body: (required)
6157
+ :return: ModifyDBNodeConfigResponse
4218
6158
  If the method is called asynchronously,
4219
6159
  returns the request thread.
4220
6160
  """
4221
6161
  kwargs['_return_http_data_only'] = True
4222
6162
  if kwargs.get('async_req'):
4223
- return self.modify_db_instance_parameters_with_http_info(body, **kwargs) # noqa: E501
6163
+ return self.modify_db_node_config_with_http_info(body, **kwargs) # noqa: E501
4224
6164
  else:
4225
- (data) = self.modify_db_instance_parameters_with_http_info(body, **kwargs) # noqa: E501
6165
+ (data) = self.modify_db_node_config_with_http_info(body, **kwargs) # noqa: E501
4226
6166
  return data
4227
6167
 
4228
- def modify_db_instance_parameters_with_http_info(self, body, **kwargs): # noqa: E501
4229
- """modify_db_instance_parameters # noqa: E501
6168
+ def modify_db_node_config_with_http_info(self, body, **kwargs): # noqa: E501
6169
+ """modify_db_node_config # noqa: E501
4230
6170
 
4231
6171
  This method makes a synchronous HTTP request by default. To make an
4232
6172
  asynchronous HTTP request, please pass async_req=True
4233
- >>> thread = api.modify_db_instance_parameters_with_http_info(body, async_req=True)
6173
+ >>> thread = api.modify_db_node_config_with_http_info(body, async_req=True)
4234
6174
  >>> result = thread.get()
4235
6175
 
4236
6176
  :param async_req bool
4237
- :param ModifyDBInstanceParametersRequest body: (required)
4238
- :return: ModifyDBInstanceParametersResponse
6177
+ :param ModifyDBNodeConfigRequest body: (required)
6178
+ :return: ModifyDBNodeConfigResponse
4239
6179
  If the method is called asynchronously,
4240
6180
  returns the request thread.
4241
6181
  """
@@ -4251,14 +6191,14 @@ class VEDBMApi(object):
4251
6191
  if key not in all_params:
4252
6192
  raise TypeError(
4253
6193
  "Got an unexpected keyword argument '%s'"
4254
- " to method modify_db_instance_parameters" % key
6194
+ " to method modify_db_node_config" % key
4255
6195
  )
4256
6196
  params[key] = val
4257
6197
  del params['kwargs']
4258
6198
  # verify the required parameter 'body' is set
4259
6199
  if self.api_client.client_side_validation and ('body' not in params or
4260
6200
  params['body'] is None): # noqa: E501
4261
- raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_parameters`") # noqa: E501
6201
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_node_config`") # noqa: E501
4262
6202
 
4263
6203
  collection_formats = {}
4264
6204
 
@@ -4286,14 +6226,14 @@ class VEDBMApi(object):
4286
6226
  auth_settings = ['volcengineSign'] # noqa: E501
4287
6227
 
4288
6228
  return self.api_client.call_api(
4289
- '/ModifyDBInstanceParameters/2022-01-01/vedbm/post/application_json/', 'POST',
6229
+ '/ModifyDBNodeConfig/2022-01-01/vedbm/post/application_json/', 'POST',
4290
6230
  path_params,
4291
6231
  query_params,
4292
6232
  header_params,
4293
6233
  body=body_params,
4294
6234
  post_params=form_params,
4295
6235
  files=local_var_files,
4296
- response_type='ModifyDBInstanceParametersResponse', # noqa: E501
6236
+ response_type='ModifyDBNodeConfigResponse', # noqa: E501
4297
6237
  auth_settings=auth_settings,
4298
6238
  async_req=params.get('async_req'),
4299
6239
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -4301,38 +6241,38 @@ class VEDBMApi(object):
4301
6241
  _request_timeout=params.get('_request_timeout'),
4302
6242
  collection_formats=collection_formats)
4303
6243
 
4304
- def modify_db_instance_spec(self, body, **kwargs): # noqa: E501
4305
- """modify_db_instance_spec # noqa: E501
6244
+ def modify_schedule_events(self, body, **kwargs): # noqa: E501
6245
+ """modify_schedule_events # noqa: E501
4306
6246
 
4307
6247
  This method makes a synchronous HTTP request by default. To make an
4308
6248
  asynchronous HTTP request, please pass async_req=True
4309
- >>> thread = api.modify_db_instance_spec(body, async_req=True)
6249
+ >>> thread = api.modify_schedule_events(body, async_req=True)
4310
6250
  >>> result = thread.get()
4311
6251
 
4312
6252
  :param async_req bool
4313
- :param ModifyDBInstanceSpecRequest body: (required)
4314
- :return: ModifyDBInstanceSpecResponse
6253
+ :param ModifyScheduleEventsRequest body: (required)
6254
+ :return: ModifyScheduleEventsResponse
4315
6255
  If the method is called asynchronously,
4316
6256
  returns the request thread.
4317
6257
  """
4318
6258
  kwargs['_return_http_data_only'] = True
4319
6259
  if kwargs.get('async_req'):
4320
- return self.modify_db_instance_spec_with_http_info(body, **kwargs) # noqa: E501
6260
+ return self.modify_schedule_events_with_http_info(body, **kwargs) # noqa: E501
4321
6261
  else:
4322
- (data) = self.modify_db_instance_spec_with_http_info(body, **kwargs) # noqa: E501
6262
+ (data) = self.modify_schedule_events_with_http_info(body, **kwargs) # noqa: E501
4323
6263
  return data
4324
6264
 
4325
- def modify_db_instance_spec_with_http_info(self, body, **kwargs): # noqa: E501
4326
- """modify_db_instance_spec # noqa: E501
6265
+ def modify_schedule_events_with_http_info(self, body, **kwargs): # noqa: E501
6266
+ """modify_schedule_events # noqa: E501
4327
6267
 
4328
6268
  This method makes a synchronous HTTP request by default. To make an
4329
6269
  asynchronous HTTP request, please pass async_req=True
4330
- >>> thread = api.modify_db_instance_spec_with_http_info(body, async_req=True)
6270
+ >>> thread = api.modify_schedule_events_with_http_info(body, async_req=True)
4331
6271
  >>> result = thread.get()
4332
6272
 
4333
6273
  :param async_req bool
4334
- :param ModifyDBInstanceSpecRequest body: (required)
4335
- :return: ModifyDBInstanceSpecResponse
6274
+ :param ModifyScheduleEventsRequest body: (required)
6275
+ :return: ModifyScheduleEventsResponse
4336
6276
  If the method is called asynchronously,
4337
6277
  returns the request thread.
4338
6278
  """
@@ -4348,14 +6288,14 @@ class VEDBMApi(object):
4348
6288
  if key not in all_params:
4349
6289
  raise TypeError(
4350
6290
  "Got an unexpected keyword argument '%s'"
4351
- " to method modify_db_instance_spec" % key
6291
+ " to method modify_schedule_events" % key
4352
6292
  )
4353
6293
  params[key] = val
4354
6294
  del params['kwargs']
4355
6295
  # verify the required parameter 'body' is set
4356
6296
  if self.api_client.client_side_validation and ('body' not in params or
4357
6297
  params['body'] is None): # noqa: E501
4358
- raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_spec`") # noqa: E501
6298
+ raise ValueError("Missing the required parameter `body` when calling `modify_schedule_events`") # noqa: E501
4359
6299
 
4360
6300
  collection_formats = {}
4361
6301
 
@@ -4383,14 +6323,14 @@ class VEDBMApi(object):
4383
6323
  auth_settings = ['volcengineSign'] # noqa: E501
4384
6324
 
4385
6325
  return self.api_client.call_api(
4386
- '/ModifyDBInstanceSpec/2022-01-01/vedbm/post/application_json/', 'POST',
6326
+ '/ModifyScheduleEvents/2022-01-01/vedbm/post/application_json/', 'POST',
4387
6327
  path_params,
4388
6328
  query_params,
4389
6329
  header_params,
4390
6330
  body=body_params,
4391
6331
  post_params=form_params,
4392
6332
  files=local_var_files,
4393
- response_type='ModifyDBInstanceSpecResponse', # noqa: E501
6333
+ response_type='ModifyScheduleEventsResponse', # noqa: E501
4394
6334
  auth_settings=auth_settings,
4395
6335
  async_req=params.get('async_req'),
4396
6336
  _return_http_data_only=params.get('_return_http_data_only'),