volcengine-python-sdk 4.0.26__py2.py3-none-any.whl → 4.0.28__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 (427) hide show
  1. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.28.dist-info}/METADATA +1 -1
  2. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.28.dist-info}/RECORD +427 -44
  3. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.28.dist-info}/top_level.txt +1 -0
  4. volcenginesdkacep/__init__.py +15 -0
  5. volcenginesdkacep/api/acep_api.py +485 -0
  6. volcenginesdkacep/models/__init__.py +15 -0
  7. volcenginesdkacep/models/backup_data_request.py +176 -0
  8. volcenginesdkacep/models/backup_data_response.py +149 -0
  9. volcenginesdkacep/models/delete_backup_data_request.py +150 -0
  10. volcenginesdkacep/models/delete_backup_data_response.py +123 -0
  11. volcenginesdkacep/models/detail_for_backup_data_output.py +201 -0
  12. volcenginesdkacep/models/detail_for_delete_backup_data_output.py +175 -0
  13. volcenginesdkacep/models/detail_for_restore_data_output.py +175 -0
  14. volcenginesdkacep/models/get_dc_bandwidth_daily_peak_request.py +204 -0
  15. volcenginesdkacep/models/get_dc_bandwidth_daily_peak_response.py +123 -0
  16. volcenginesdkacep/models/list_backup_data_request.py +254 -0
  17. volcenginesdkacep/models/list_backup_data_response.py +149 -0
  18. volcenginesdkacep/models/restore_data_request.py +203 -0
  19. volcenginesdkacep/models/restore_data_response.py +149 -0
  20. volcenginesdkacep/models/row_for_get_dc_bandwidth_daily_peak_output.py +253 -0
  21. volcenginesdkacep/models/row_for_list_backup_data_output.py +799 -0
  22. volcenginesdkclb/__init__.py +10 -0
  23. volcenginesdkclb/api/clb_api.py +194 -0
  24. volcenginesdkclb/models/__init__.py +10 -0
  25. volcenginesdkclb/models/access_log_for_describe_network_load_balancer_attributes_output.py +175 -0
  26. volcenginesdkclb/models/add_domain_extension_for_modify_listener_domain_extensions_input.py +175 -0
  27. volcenginesdkclb/models/convert_load_balancer_billing_type_request.py +27 -1
  28. volcenginesdkclb/models/describe_listener_attributes_response.py +27 -1
  29. volcenginesdkclb/models/describe_network_load_balancer_attributes_response.py +27 -1
  30. volcenginesdkclb/models/describe_nlb_server_groups_request.py +53 -1
  31. volcenginesdkclb/models/domain_extension_for_describe_listener_attributes_output.py +201 -0
  32. volcenginesdkclb/models/domain_extension_for_describe_listeners_output.py +201 -0
  33. volcenginesdkclb/models/listener_for_describe_listeners_output.py +27 -1
  34. volcenginesdkclb/models/modify_domain_extension_for_modify_listener_domain_extensions_input.py +175 -0
  35. volcenginesdkclb/models/modify_listener_domain_extensions_request.py +202 -0
  36. volcenginesdkclb/models/modify_listener_domain_extensions_response.py +123 -0
  37. volcenginesdkclb/models/modify_network_load_balancer_access_log_request.py +202 -0
  38. volcenginesdkclb/models/modify_network_load_balancer_access_log_response.py +123 -0
  39. volcenginesdkclb/models/remove_domain_extension_for_modify_listener_domain_extensions_input.py +123 -0
  40. volcenginesdkcore/api_client.py +1 -1
  41. volcenginesdkcore/configuration.py +1 -1
  42. volcenginesdkcore/interceptor/interceptors/build_request_interceptor.py +4 -0
  43. volcenginesdkcore/interceptor/interceptors/sign_request_interceptor.py +1 -1
  44. volcenginesdkdbw/__init__.py +18 -0
  45. volcenginesdkdbw/api/dbw_api.py +388 -0
  46. volcenginesdkdbw/models/__init__.py +18 -0
  47. volcenginesdkdbw/models/column_for_get_table_info_output.py +331 -0
  48. volcenginesdkdbw/models/execute_sql_request.py +231 -0
  49. volcenginesdkdbw/models/execute_sql_response.py +123 -0
  50. volcenginesdkdbw/models/foreign_key_for_get_table_info_output.py +279 -0
  51. volcenginesdkdbw/models/get_table_info_request.py +205 -0
  52. volcenginesdkdbw/models/get_table_info_response.py +123 -0
  53. volcenginesdkdbw/models/index_for_get_table_info_output.py +201 -0
  54. volcenginesdkdbw/models/item_for_list_databases_output.py +279 -0
  55. volcenginesdkdbw/models/list_databases_request.py +203 -0
  56. volcenginesdkdbw/models/list_databases_response.py +149 -0
  57. volcenginesdkdbw/models/list_tables_request.py +230 -0
  58. volcenginesdkdbw/models/list_tables_response.py +149 -0
  59. volcenginesdkdbw/models/partition_options_for_get_table_info_output.py +175 -0
  60. volcenginesdkdbw/models/result_for_execute_sql_output.py +305 -0
  61. volcenginesdkdbw/models/row_for_execute_sql_output.py +123 -0
  62. volcenginesdkdbw/models/running_info_for_execute_sql_output.py +201 -0
  63. volcenginesdkdbw/models/table_meta_for_get_table_info_output.py +383 -0
  64. volcenginesdkdbw/models/table_options_for_get_table_info_output.py +331 -0
  65. volcenginesdkgraph/__init__.py +48 -0
  66. volcenginesdkgraph/api/graph_api.py +951 -78
  67. volcenginesdkgraph/models/__init__.py +48 -0
  68. volcenginesdkgraph/models/availability_zone_for_list_graph_rag_service_output.py +253 -0
  69. volcenginesdkgraph/models/bg3_link_for_list_graph_rag_service_output.py +175 -0
  70. volcenginesdkgraph/models/bytestore_info_for_list_graph_rag_service_output.py +201 -0
  71. volcenginesdkgraph/models/conf_checker_for_get_conf_checker_output.py +409 -0
  72. volcenginesdkgraph/models/conf_checker_for_update_conf_checker_input.py +409 -0
  73. volcenginesdkgraph/models/conf_checker_for_validate_conf_checker_input.py +409 -0
  74. volcenginesdkgraph/models/convert_value_for_list_tablets_output.py +149 -0
  75. volcenginesdkgraph/models/create_instance_request.py +29 -3
  76. volcenginesdkgraph/models/first_for_list_tablet_task_output.py +175 -0
  77. volcenginesdkgraph/models/get_conf_checker_request.py +253 -0
  78. volcenginesdkgraph/models/get_conf_checker_response.py +123 -0
  79. volcenginesdkgraph/models/graphrag_add_knowledge_base_request.py +178 -0
  80. volcenginesdkgraph/models/graphrag_add_knowledge_base_response.py +95 -0
  81. volcenginesdkgraph/models/image_info_for_list_graph_rag_service_output.py +227 -0
  82. volcenginesdkgraph/models/info_for_list_graph_rag_service_output.py +175 -0
  83. volcenginesdkgraph/models/info_for_list_tablet_task_output.py +201 -0
  84. volcenginesdkgraph/models/ins_spec_for_list_graph_rag_service_output.py +175 -0
  85. volcenginesdkgraph/models/list_graph_rag_service_request.py +178 -0
  86. volcenginesdkgraph/models/list_graph_rag_service_response.py +149 -0
  87. volcenginesdkgraph/models/list_tablet_server_request.py +150 -0
  88. volcenginesdkgraph/models/list_tablet_server_response.py +149 -0
  89. volcenginesdkgraph/models/list_tablet_task_request.py +177 -0
  90. volcenginesdkgraph/models/list_tablet_task_response.py +123 -0
  91. volcenginesdkgraph/models/list_tablets_request.py +254 -0
  92. volcenginesdkgraph/models/list_tablets_response.py +123 -0
  93. volcenginesdkgraph/models/migrate_tablet_replica_request.py +257 -0
  94. volcenginesdkgraph/models/migrate_tablet_replica_response.py +123 -0
  95. volcenginesdkgraph/models/pending_schedule_replica_for_list_tablets_output.py +149 -0
  96. volcenginesdkgraph/models/replica_info_for_list_tablets_output.py +149 -0
  97. volcenginesdkgraph/models/replicas_to_close_for_list_tablet_task_output.py +227 -0
  98. volcenginesdkgraph/models/replicas_to_delete_for_list_tablet_task_output.py +227 -0
  99. volcenginesdkgraph/models/replicas_to_failover_by_promote_for_list_tablet_task_output.py +149 -0
  100. volcenginesdkgraph/models/replicas_to_failover_by_reopen_for_list_tablet_task_output.py +149 -0
  101. volcenginesdkgraph/models/replicas_to_open_or_add_for_list_tablet_task_output.py +227 -0
  102. volcenginesdkgraph/models/second_for_list_tablet_task_output.py +175 -0
  103. volcenginesdkgraph/models/storage_info_for_list_graph_rag_service_output.py +149 -0
  104. volcenginesdkgraph/models/tablet_info_for_list_tablets_output.py +149 -0
  105. volcenginesdkgraph/models/tablet_server_info_for_list_tablet_server_output.py +227 -0
  106. volcenginesdkgraph/models/tablet_task_info_for_list_tablet_task_output.py +435 -0
  107. volcenginesdkgraph/models/tablet_to_merge_for_list_tablet_task_output.py +149 -0
  108. volcenginesdkgraph/models/tablet_to_split_for_list_tablet_task_output.py +175 -0
  109. volcenginesdkgraph/models/tablets_to_delete_for_list_tablet_task_output.py +175 -0
  110. volcenginesdkgraph/models/tag_for_list_graph_rag_service_output.py +149 -0
  111. volcenginesdkgraph/models/update_conf_checker_request.py +123 -0
  112. volcenginesdkgraph/models/update_conf_checker_response.py +123 -0
  113. volcenginesdkgraph/models/validate_conf_checker_request.py +123 -0
  114. volcenginesdkgraph/models/validate_conf_checker_response.py +149 -0
  115. volcenginesdkgraph/models/value_for_list_tablets_output.py +201 -0
  116. volcenginesdkgraph/models/ve_graph_info_for_list_graph_rag_service_output.py +851 -0
  117. volcenginesdkid/__init__.py +276 -0
  118. volcenginesdkid/api/__init__.py +6 -0
  119. volcenginesdkid/api/id_api.py +7891 -0
  120. volcenginesdkid/models/__init__.py +272 -0
  121. volcenginesdkid/models/api_key_auth_config_for_batch_get_inbound_auth_config_output.py +201 -0
  122. volcenginesdkid/models/api_key_auth_config_for_create_api_key_input.py +201 -0
  123. volcenginesdkid/models/api_key_auth_config_for_create_inbound_auth_config_input.py +201 -0
  124. volcenginesdkid/models/api_key_auth_config_for_create_inbound_auth_config_output.py +201 -0
  125. volcenginesdkid/models/api_key_auth_config_for_get_inbound_auth_config_output.py +201 -0
  126. volcenginesdkid/models/api_key_auth_config_for_list_inbound_auth_configs_output.py +201 -0
  127. volcenginesdkid/models/api_key_auth_config_for_update_inbound_auth_config_input.py +201 -0
  128. volcenginesdkid/models/api_key_credential_provider_for_batch_get_api_key_credential_providers_output.py +201 -0
  129. volcenginesdkid/models/api_key_credential_provider_for_list_api_key_credential_providers_output.py +201 -0
  130. volcenginesdkid/models/api_key_metadata_for_batch_get_inbound_auth_config_output.py +149 -0
  131. volcenginesdkid/models/api_key_metadata_for_create_api_key_credential_provider_input.py +149 -0
  132. volcenginesdkid/models/api_key_metadata_for_create_api_key_input.py +149 -0
  133. volcenginesdkid/models/api_key_metadata_for_create_inbound_auth_config_input.py +149 -0
  134. volcenginesdkid/models/api_key_metadata_for_create_inbound_auth_config_output.py +149 -0
  135. volcenginesdkid/models/api_key_metadata_for_get_api_key_credential_provider_output.py +149 -0
  136. volcenginesdkid/models/api_key_metadata_for_get_inbound_auth_config_output.py +149 -0
  137. volcenginesdkid/models/api_key_metadata_for_get_resource_api_key_output.py +149 -0
  138. volcenginesdkid/models/api_key_metadata_for_list_inbound_auth_configs_output.py +149 -0
  139. volcenginesdkid/models/api_key_metadata_for_update_api_key_credential_provider_input.py +149 -0
  140. volcenginesdkid/models/api_key_metadata_for_update_inbound_auth_config_input.py +149 -0
  141. volcenginesdkid/models/attach_inbound_auth_config_request.py +151 -0
  142. volcenginesdkid/models/attach_inbound_auth_config_response.py +95 -0
  143. volcenginesdkid/models/authorization_server_metadata_for_create_oauth2_credential_provider_input.py +201 -0
  144. volcenginesdkid/models/authorization_server_metadata_for_get_oauth2_credential_provider_output.py +201 -0
  145. volcenginesdkid/models/authorization_server_metadata_for_update_oauth2_credential_provider_input.py +201 -0
  146. volcenginesdkid/models/batch_get_api_key_credential_providers_request.py +149 -0
  147. volcenginesdkid/models/batch_get_api_key_credential_providers_response.py +123 -0
  148. volcenginesdkid/models/batch_get_inbound_auth_config_request.py +123 -0
  149. volcenginesdkid/models/batch_get_inbound_auth_config_response.py +123 -0
  150. volcenginesdkid/models/batch_get_oauth2_credential_providers_request.py +149 -0
  151. volcenginesdkid/models/batch_get_oauth2_credential_providers_response.py +123 -0
  152. volcenginesdkid/models/check_api_key_request.py +124 -0
  153. volcenginesdkid/models/check_api_key_response.py +95 -0
  154. volcenginesdkid/models/check_permission_request.py +254 -0
  155. volcenginesdkid/models/check_permission_response.py +149 -0
  156. volcenginesdkid/models/config_for_create_oauth2_credential_provider_input.py +331 -0
  157. volcenginesdkid/models/config_for_get_oauth2_credential_provider_output.py +331 -0
  158. volcenginesdkid/models/config_for_update_oauth2_credential_provider_input.py +331 -0
  159. volcenginesdkid/models/create_api_key_credential_provider_request.py +203 -0
  160. volcenginesdkid/models/create_api_key_credential_provider_response.py +175 -0
  161. volcenginesdkid/models/create_api_key_request.py +150 -0
  162. volcenginesdkid/models/create_api_key_response.py +95 -0
  163. volcenginesdkid/models/create_identity_provider_o_auth_request.py +419 -0
  164. volcenginesdkid/models/create_identity_provider_o_auth_response.py +409 -0
  165. volcenginesdkid/models/create_identity_provider_oidc_request.py +365 -0
  166. volcenginesdkid/models/create_identity_provider_oidc_response.py +357 -0
  167. volcenginesdkid/models/create_inbound_auth_config_request.py +254 -0
  168. volcenginesdkid/models/create_inbound_auth_config_response.py +357 -0
  169. volcenginesdkid/models/create_namespace_request.py +149 -0
  170. volcenginesdkid/models/create_namespace_response.py +175 -0
  171. volcenginesdkid/models/create_oauth2_credential_provider_request.py +206 -0
  172. volcenginesdkid/models/create_oauth2_credential_provider_response.py +175 -0
  173. volcenginesdkid/models/create_policy_request.py +149 -0
  174. volcenginesdkid/models/create_policy_response.py +175 -0
  175. volcenginesdkid/models/create_user_pool_client_request.py +230 -0
  176. volcenginesdkid/models/create_user_pool_client_response.py +461 -0
  177. volcenginesdkid/models/create_user_pool_request.py +150 -0
  178. volcenginesdkid/models/create_user_pool_response.py +383 -0
  179. volcenginesdkid/models/create_user_request.py +410 -0
  180. volcenginesdkid/models/create_user_response.py +773 -0
  181. volcenginesdkid/models/create_users_csv_request.py +124 -0
  182. volcenginesdkid/models/create_users_csv_response.py +201 -0
  183. volcenginesdkid/models/create_users_request.py +150 -0
  184. volcenginesdkid/models/create_users_response.py +201 -0
  185. volcenginesdkid/models/create_workload_identity_request.py +228 -0
  186. volcenginesdkid/models/create_workload_identity_response.py +305 -0
  187. volcenginesdkid/models/create_workload_pool_request.py +149 -0
  188. volcenginesdkid/models/create_workload_pool_response.py +253 -0
  189. volcenginesdkid/models/credential_provider_for_list_credential_providers_output.py +253 -0
  190. volcenginesdkid/models/custom_parameters_for_create_oauth2_credential_provider_input.py +123 -0
  191. volcenginesdkid/models/custom_parameters_for_get_oauth2_credential_provider_output.py +123 -0
  192. volcenginesdkid/models/custom_parameters_for_get_resource_oauth2_token_input.py +123 -0
  193. volcenginesdkid/models/custom_parameters_for_update_oauth2_credential_provider_input.py +123 -0
  194. volcenginesdkid/models/data_for_list_identity_providers_o_auth_output.py +409 -0
  195. volcenginesdkid/models/data_for_list_identity_providers_oidc_output.py +357 -0
  196. volcenginesdkid/models/data_for_list_identity_providers_output.py +227 -0
  197. volcenginesdkid/models/data_for_list_policies_output.py +175 -0
  198. volcenginesdkid/models/data_for_list_user_pool_clients_output.py +253 -0
  199. volcenginesdkid/models/data_for_list_user_pools_output.py +279 -0
  200. volcenginesdkid/models/data_for_list_users_output.py +773 -0
  201. volcenginesdkid/models/delete_api_key_credential_provider_request.py +150 -0
  202. volcenginesdkid/models/delete_api_key_credential_provider_response.py +95 -0
  203. volcenginesdkid/models/delete_api_key_request.py +151 -0
  204. volcenginesdkid/models/delete_api_key_response.py +95 -0
  205. volcenginesdkid/models/delete_identity_provider_o_auth_request.py +151 -0
  206. volcenginesdkid/models/delete_identity_provider_o_auth_response.py +123 -0
  207. volcenginesdkid/models/delete_identity_provider_oidc_request.py +151 -0
  208. volcenginesdkid/models/delete_identity_provider_oidc_response.py +123 -0
  209. volcenginesdkid/models/delete_identity_provider_request.py +151 -0
  210. volcenginesdkid/models/delete_identity_provider_response.py +123 -0
  211. volcenginesdkid/models/delete_inbound_auth_config_request.py +124 -0
  212. volcenginesdkid/models/delete_inbound_auth_config_response.py +95 -0
  213. volcenginesdkid/models/delete_namespace_request.py +123 -0
  214. volcenginesdkid/models/delete_namespace_response.py +149 -0
  215. volcenginesdkid/models/delete_oauth2_credential_provider_request.py +150 -0
  216. volcenginesdkid/models/delete_oauth2_credential_provider_response.py +95 -0
  217. volcenginesdkid/models/delete_policy_request.py +149 -0
  218. volcenginesdkid/models/delete_policy_response.py +149 -0
  219. volcenginesdkid/models/delete_user_pool_client_request.py +151 -0
  220. volcenginesdkid/models/delete_user_pool_client_response.py +123 -0
  221. volcenginesdkid/models/delete_user_pool_request.py +124 -0
  222. volcenginesdkid/models/delete_user_pool_response.py +123 -0
  223. volcenginesdkid/models/delete_users_request.py +150 -0
  224. volcenginesdkid/models/delete_users_response.py +201 -0
  225. volcenginesdkid/models/delete_workload_identity_request.py +150 -0
  226. volcenginesdkid/models/delete_workload_identity_response.py +95 -0
  227. volcenginesdkid/models/delete_workload_pool_request.py +123 -0
  228. volcenginesdkid/models/delete_workload_pool_response.py +95 -0
  229. volcenginesdkid/models/detach_inbound_auth_config_request.py +151 -0
  230. volcenginesdkid/models/detach_inbound_auth_config_response.py +95 -0
  231. volcenginesdkid/models/entity_for_check_permission_input.py +149 -0
  232. volcenginesdkid/models/entry_for_create_oauth2_credential_provider_input.py +149 -0
  233. volcenginesdkid/models/entry_for_get_oauth2_credential_provider_output.py +149 -0
  234. volcenginesdkid/models/entry_for_get_resource_oauth2_token_input.py +149 -0
  235. volcenginesdkid/models/entry_for_update_oauth2_credential_provider_input.py +149 -0
  236. volcenginesdkid/models/filter_for_list_identity_providers_input.py +149 -0
  237. volcenginesdkid/models/filter_for_list_user_pool_clients_input.py +175 -0
  238. volcenginesdkid/models/filter_for_list_user_pools_input.py +201 -0
  239. volcenginesdkid/models/filter_for_list_users_input.py +435 -0
  240. volcenginesdkid/models/get_api_key_credential_provider_request.py +150 -0
  241. volcenginesdkid/models/get_api_key_credential_provider_response.py +279 -0
  242. volcenginesdkid/models/get_identity_provider_o_auth_request.py +151 -0
  243. volcenginesdkid/models/get_identity_provider_o_auth_response.py +409 -0
  244. volcenginesdkid/models/get_identity_provider_oidc_request.py +151 -0
  245. volcenginesdkid/models/get_identity_provider_oidc_response.py +357 -0
  246. volcenginesdkid/models/get_inbound_auth_config_request.py +124 -0
  247. volcenginesdkid/models/get_inbound_auth_config_response.py +357 -0
  248. volcenginesdkid/models/get_namespace_request.py +149 -0
  249. volcenginesdkid/models/get_namespace_response.py +201 -0
  250. volcenginesdkid/models/get_oauth2_credential_provider_request.py +150 -0
  251. volcenginesdkid/models/get_oauth2_credential_provider_response.py +305 -0
  252. volcenginesdkid/models/get_policy_request.py +149 -0
  253. volcenginesdkid/models/get_policy_response.py +175 -0
  254. volcenginesdkid/models/get_resource_api_key_request.py +177 -0
  255. volcenginesdkid/models/get_resource_api_key_response.py +149 -0
  256. volcenginesdkid/models/get_resource_oauth2_token_request.py +307 -0
  257. volcenginesdkid/models/get_resource_oauth2_token_response.py +149 -0
  258. volcenginesdkid/models/get_user_csv_template_request.py +124 -0
  259. volcenginesdkid/models/get_user_csv_template_response.py +95 -0
  260. volcenginesdkid/models/get_user_pool_client_request.py +151 -0
  261. volcenginesdkid/models/get_user_pool_client_response.py +461 -0
  262. volcenginesdkid/models/get_user_pool_request.py +124 -0
  263. volcenginesdkid/models/get_user_pool_response.py +383 -0
  264. volcenginesdkid/models/get_user_request.py +151 -0
  265. volcenginesdkid/models/get_user_response.py +773 -0
  266. volcenginesdkid/models/get_workload_access_token_for_jwt_request.py +176 -0
  267. volcenginesdkid/models/get_workload_access_token_for_jwt_response.py +149 -0
  268. volcenginesdkid/models/get_workload_access_token_for_user_id_request.py +176 -0
  269. volcenginesdkid/models/get_workload_access_token_for_user_id_response.py +149 -0
  270. volcenginesdkid/models/get_workload_access_token_request.py +149 -0
  271. volcenginesdkid/models/get_workload_access_token_response.py +149 -0
  272. volcenginesdkid/models/get_workload_identity_request.py +150 -0
  273. volcenginesdkid/models/get_workload_identity_response.py +305 -0
  274. volcenginesdkid/models/get_workload_pool_request.py +149 -0
  275. volcenginesdkid/models/get_workload_pool_response.py +253 -0
  276. volcenginesdkid/models/grant_permission_request.py +228 -0
  277. volcenginesdkid/models/grant_permission_response.py +175 -0
  278. volcenginesdkid/models/id_token_for_create_user_pool_client_output.py +123 -0
  279. volcenginesdkid/models/id_token_for_get_user_pool_client_output.py +123 -0
  280. volcenginesdkid/models/id_token_for_update_user_pool_client_input.py +123 -0
  281. volcenginesdkid/models/id_token_for_update_user_pool_client_output.py +123 -0
  282. volcenginesdkid/models/inbound_auth_config_for_batch_get_inbound_auth_config_output.py +357 -0
  283. volcenginesdkid/models/inbound_auth_config_for_list_inbound_auth_configs_output.py +357 -0
  284. volcenginesdkid/models/jwt_auth_config_for_batch_get_inbound_auth_config_output.py +175 -0
  285. volcenginesdkid/models/jwt_auth_config_for_create_inbound_auth_config_input.py +175 -0
  286. volcenginesdkid/models/jwt_auth_config_for_create_inbound_auth_config_output.py +175 -0
  287. volcenginesdkid/models/jwt_auth_config_for_get_inbound_auth_config_output.py +175 -0
  288. volcenginesdkid/models/jwt_auth_config_for_list_inbound_auth_configs_output.py +175 -0
  289. volcenginesdkid/models/jwt_auth_config_for_update_inbound_auth_config_input.py +175 -0
  290. volcenginesdkid/models/list_api_key_credential_providers_request.py +177 -0
  291. volcenginesdkid/models/list_api_key_credential_providers_response.py +201 -0
  292. volcenginesdkid/models/list_credential_providers_request.py +177 -0
  293. volcenginesdkid/models/list_credential_providers_response.py +201 -0
  294. volcenginesdkid/models/list_identity_providers_o_auth_request.py +124 -0
  295. volcenginesdkid/models/list_identity_providers_o_auth_response.py +201 -0
  296. volcenginesdkid/models/list_identity_providers_oidc_request.py +124 -0
  297. volcenginesdkid/models/list_identity_providers_oidc_response.py +201 -0
  298. volcenginesdkid/models/list_identity_providers_request.py +204 -0
  299. volcenginesdkid/models/list_identity_providers_response.py +201 -0
  300. volcenginesdkid/models/list_inbound_auth_configs_request.py +203 -0
  301. volcenginesdkid/models/list_inbound_auth_configs_response.py +201 -0
  302. volcenginesdkid/models/list_namespaces_request.py +149 -0
  303. volcenginesdkid/models/list_namespaces_response.py +201 -0
  304. volcenginesdkid/models/list_oauth2_credential_providers_request.py +177 -0
  305. volcenginesdkid/models/list_oauth2_credential_providers_response.py +201 -0
  306. volcenginesdkid/models/list_policies_request.py +123 -0
  307. volcenginesdkid/models/list_policies_response.py +123 -0
  308. volcenginesdkid/models/list_user_pool_clients_request.py +256 -0
  309. volcenginesdkid/models/list_user_pool_clients_response.py +201 -0
  310. volcenginesdkid/models/list_user_pools_request.py +229 -0
  311. volcenginesdkid/models/list_user_pools_response.py +201 -0
  312. volcenginesdkid/models/list_users_request.py +256 -0
  313. volcenginesdkid/models/list_users_response.py +201 -0
  314. volcenginesdkid/models/list_workload_identities_request.py +209 -0
  315. volcenginesdkid/models/list_workload_identities_response.py +201 -0
  316. volcenginesdkid/models/list_workload_pools_request.py +157 -0
  317. volcenginesdkid/models/list_workload_pools_response.py +201 -0
  318. volcenginesdkid/models/oauth2_callback_request.py +178 -0
  319. volcenginesdkid/models/oauth2_callback_response.py +123 -0
  320. volcenginesdkid/models/oauth2_credential_provider_for_batch_get_oauth2_credential_providers_output.py +227 -0
  321. volcenginesdkid/models/oauth2_credential_provider_for_list_oauth2_credential_providers_output.py +227 -0
  322. volcenginesdkid/models/oauth2_discovery_for_create_oauth2_credential_provider_input.py +149 -0
  323. volcenginesdkid/models/oauth2_discovery_for_get_oauth2_credential_provider_output.py +149 -0
  324. volcenginesdkid/models/oauth2_discovery_for_update_oauth2_credential_provider_input.py +149 -0
  325. volcenginesdkid/models/operation_for_check_permission_input.py +149 -0
  326. volcenginesdkid/models/operation_for_grant_permission_input.py +175 -0
  327. volcenginesdkid/models/original_caller_for_check_permission_input.py +149 -0
  328. volcenginesdkid/models/original_caller_for_grant_permission_input.py +175 -0
  329. volcenginesdkid/models/parent_for_check_permission_input.py +149 -0
  330. volcenginesdkid/models/principal_for_check_permission_input.py +149 -0
  331. volcenginesdkid/models/principal_for_grant_permission_input.py +175 -0
  332. volcenginesdkid/models/provider_options_for_create_identity_provider_o_auth_input.py +227 -0
  333. volcenginesdkid/models/provider_options_for_create_identity_provider_o_auth_output.py +227 -0
  334. volcenginesdkid/models/provider_options_for_create_identity_provider_oidc_input.py +227 -0
  335. volcenginesdkid/models/provider_options_for_create_identity_provider_oidc_output.py +227 -0
  336. volcenginesdkid/models/provider_options_for_get_identity_provider_o_auth_output.py +227 -0
  337. volcenginesdkid/models/provider_options_for_get_identity_provider_oidc_output.py +227 -0
  338. volcenginesdkid/models/provider_options_for_list_identity_providers_o_auth_output.py +227 -0
  339. volcenginesdkid/models/provider_options_for_list_identity_providers_oidc_output.py +227 -0
  340. volcenginesdkid/models/provider_options_for_update_identity_provider_o_auth_input.py +227 -0
  341. volcenginesdkid/models/provider_options_for_update_identity_provider_o_auth_output.py +227 -0
  342. volcenginesdkid/models/provider_options_for_update_identity_provider_oidc_input.py +227 -0
  343. volcenginesdkid/models/provider_options_for_update_identity_provider_oidc_output.py +227 -0
  344. volcenginesdkid/models/reference_for_check_permission_input.py +149 -0
  345. volcenginesdkid/models/refresh_token_for_create_user_pool_client_output.py +227 -0
  346. volcenginesdkid/models/refresh_token_for_get_user_pool_client_output.py +227 -0
  347. volcenginesdkid/models/refresh_token_for_update_user_pool_client_input.py +227 -0
  348. volcenginesdkid/models/refresh_token_for_update_user_pool_client_output.py +227 -0
  349. volcenginesdkid/models/resource_for_check_permission_input.py +149 -0
  350. volcenginesdkid/models/resource_for_grant_permission_input.py +175 -0
  351. volcenginesdkid/models/update_api_key_credential_provider_request.py +202 -0
  352. volcenginesdkid/models/update_api_key_credential_provider_response.py +227 -0
  353. volcenginesdkid/models/update_identity_provider_o_auth_request.py +440 -0
  354. volcenginesdkid/models/update_identity_provider_o_auth_response.py +409 -0
  355. volcenginesdkid/models/update_identity_provider_oidc_request.py +388 -0
  356. volcenginesdkid/models/update_identity_provider_oidc_response.py +357 -0
  357. volcenginesdkid/models/update_inbound_auth_config_request.py +202 -0
  358. volcenginesdkid/models/update_inbound_auth_config_response.py +95 -0
  359. volcenginesdkid/models/update_namespace_request.py +149 -0
  360. volcenginesdkid/models/update_namespace_response.py +149 -0
  361. volcenginesdkid/models/update_oauth2_credential_provider_request.py +176 -0
  362. volcenginesdkid/models/update_oauth2_credential_provider_response.py +227 -0
  363. volcenginesdkid/models/update_user_pool_client_request.py +359 -0
  364. volcenginesdkid/models/update_user_pool_client_response.py +461 -0
  365. volcenginesdkid/models/update_user_pool_request.py +176 -0
  366. volcenginesdkid/models/update_user_pool_response.py +383 -0
  367. volcenginesdkid/models/update_user_request.py +411 -0
  368. volcenginesdkid/models/update_user_response.py +773 -0
  369. volcenginesdkid/models/update_workload_identity_request.py +202 -0
  370. volcenginesdkid/models/update_workload_identity_response.py +95 -0
  371. volcenginesdkid/models/update_workload_pool_request.py +149 -0
  372. volcenginesdkid/models/update_workload_pool_response.py +95 -0
  373. volcenginesdkid/models/user_for_create_users_input.py +383 -0
  374. volcenginesdkid/models/workload_identity_for_list_workload_identities_output.py +305 -0
  375. volcenginesdkid/models/workload_pool_for_list_workload_pools_output.py +253 -0
  376. volcenginesdklivesaas/__init__.py +3 -0
  377. volcenginesdklivesaas/models/__init__.py +3 -0
  378. volcenginesdklivesaas/models/auto_start_config_for_create_activity_apiv2_input.py +175 -0
  379. volcenginesdklivesaas/models/auto_start_config_for_get_activity_basic_config_api_output.py +175 -0
  380. volcenginesdklivesaas/models/auto_start_config_for_update_activity_basic_config_api_input.py +175 -0
  381. volcenginesdklivesaas/models/create_activity_apiv2_request.py +27 -1
  382. volcenginesdklivesaas/models/get_activity_basic_config_api_response.py +79 -1
  383. volcenginesdklivesaas/models/update_activity_basic_config_api_request.py +53 -1
  384. volcenginesdkvefaas/__init__.py +4 -0
  385. volcenginesdkvefaas/api/vefaas_api.py +194 -0
  386. volcenginesdkvefaas/models/__init__.py +4 -0
  387. volcenginesdkvefaas/models/enable_user_cr_vpc_tunnel_request.py +124 -0
  388. volcenginesdkvefaas/models/enable_user_cr_vpc_tunnel_response.py +149 -0
  389. volcenginesdkvefaas/models/query_user_cr_vpc_tunnel_request.py +124 -0
  390. volcenginesdkvefaas/models/query_user_cr_vpc_tunnel_response.py +123 -0
  391. volcenginesdkvke/models/scheduled_instance_policy_for_create_scaling_policy_input.py +27 -1
  392. volcenginesdkvke/models/scheduled_instance_policy_for_list_scaling_policies_output.py +27 -1
  393. volcenginesdkvke/models/scheduled_instance_policy_for_update_scaling_policy_input.py +27 -1
  394. volcenginesdkvod20250101/__init__.py +26 -0
  395. volcenginesdkvod20250101/api/vod20250101_api.py +888 -112
  396. volcenginesdkvod20250101/models/__init__.py +26 -0
  397. volcenginesdkvod20250101/models/create_ai_termbase_request.py +256 -0
  398. volcenginesdkvod20250101/models/create_ai_termbase_response.py +123 -0
  399. volcenginesdkvod20250101/models/delete_ai_term_item_request.py +177 -0
  400. volcenginesdkvod20250101/models/delete_ai_term_item_response.py +95 -0
  401. volcenginesdkvod20250101/models/delete_ai_termbase_request.py +151 -0
  402. volcenginesdkvod20250101/models/delete_ai_termbase_response.py +95 -0
  403. volcenginesdkvod20250101/models/get_ai_termbase_request.py +151 -0
  404. volcenginesdkvod20250101/models/get_ai_termbase_response.py +123 -0
  405. volcenginesdkvod20250101/models/list_ai_termbase_request.py +124 -0
  406. volcenginesdkvod20250101/models/list_ai_termbase_response.py +123 -0
  407. volcenginesdkvod20250101/models/process_config_for_submit_ai_translation_workflow_input.py +53 -1
  408. volcenginesdkvod20250101/models/process_config_for_update_ai_translation_project_config_input.py +149 -0
  409. volcenginesdkvod20250101/models/scenario_for_create_ai_termbase_input.py +95 -0
  410. volcenginesdkvod20250101/models/set_ai_term_item_request.py +177 -0
  411. volcenginesdkvod20250101/models/set_ai_term_item_response.py +95 -0
  412. volcenginesdkvod20250101/models/term_item_for_create_ai_termbase_output.py +149 -0
  413. volcenginesdkvod20250101/models/term_item_for_get_ai_termbase_output.py +149 -0
  414. volcenginesdkvod20250101/models/term_item_for_list_ai_termbase_output.py +149 -0
  415. volcenginesdkvod20250101/models/term_item_for_set_ai_term_item_input.py +149 -0
  416. volcenginesdkvod20250101/models/termbase_config_for_submit_ai_translation_workflow_input.py +123 -0
  417. volcenginesdkvod20250101/models/termbase_for_create_ai_termbase_output.py +279 -0
  418. volcenginesdkvod20250101/models/termbase_for_get_ai_termbase_output.py +279 -0
  419. volcenginesdkvod20250101/models/termbase_for_list_ai_termbase_output.py +279 -0
  420. volcenginesdkvod20250101/models/translation_config_for_submit_ai_translation_workflow_input.py +27 -1
  421. volcenginesdkvod20250101/models/update_ai_termbase_request.py +203 -0
  422. volcenginesdkvod20250101/models/update_ai_termbase_response.py +95 -0
  423. volcenginesdkvod20250101/models/update_ai_translation_project_config_request.py +204 -0
  424. volcenginesdkvod20250101/models/update_ai_translation_project_config_response.py +95 -0
  425. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.28.dist-info}/WHEEL +0 -0
  426. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.28.dist-info}/licenses/LICENSE.txt +0 -0
  427. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.28.dist-info}/licenses/NOTICE.md +0 -0
@@ -1100,6 +1100,103 @@ class GRAPHApi(object):
1100
1100
  _request_timeout=params.get('_request_timeout'),
1101
1101
  collection_formats=collection_formats)
1102
1102
 
1103
+ def get_conf_checker(self, body, **kwargs): # noqa: E501
1104
+ """get_conf_checker # noqa: E501
1105
+
1106
+ This method makes a synchronous HTTP request by default. To make an
1107
+ asynchronous HTTP request, please pass async_req=True
1108
+ >>> thread = api.get_conf_checker(body, async_req=True)
1109
+ >>> result = thread.get()
1110
+
1111
+ :param async_req bool
1112
+ :param GetConfCheckerRequest body: (required)
1113
+ :return: GetConfCheckerResponse
1114
+ If the method is called asynchronously,
1115
+ returns the request thread.
1116
+ """
1117
+ kwargs['_return_http_data_only'] = True
1118
+ if kwargs.get('async_req'):
1119
+ return self.get_conf_checker_with_http_info(body, **kwargs) # noqa: E501
1120
+ else:
1121
+ (data) = self.get_conf_checker_with_http_info(body, **kwargs) # noqa: E501
1122
+ return data
1123
+
1124
+ def get_conf_checker_with_http_info(self, body, **kwargs): # noqa: E501
1125
+ """get_conf_checker # noqa: E501
1126
+
1127
+ This method makes a synchronous HTTP request by default. To make an
1128
+ asynchronous HTTP request, please pass async_req=True
1129
+ >>> thread = api.get_conf_checker_with_http_info(body, async_req=True)
1130
+ >>> result = thread.get()
1131
+
1132
+ :param async_req bool
1133
+ :param GetConfCheckerRequest body: (required)
1134
+ :return: GetConfCheckerResponse
1135
+ If the method is called asynchronously,
1136
+ returns the request thread.
1137
+ """
1138
+
1139
+ all_params = ['body'] # noqa: E501
1140
+ all_params.append('async_req')
1141
+ all_params.append('_return_http_data_only')
1142
+ all_params.append('_preload_content')
1143
+ all_params.append('_request_timeout')
1144
+
1145
+ params = locals()
1146
+ for key, val in six.iteritems(params['kwargs']):
1147
+ if key not in all_params:
1148
+ raise TypeError(
1149
+ "Got an unexpected keyword argument '%s'"
1150
+ " to method get_conf_checker" % key
1151
+ )
1152
+ params[key] = val
1153
+ del params['kwargs']
1154
+ # verify the required parameter 'body' is set
1155
+ if self.api_client.client_side_validation and ('body' not in params or
1156
+ params['body'] is None): # noqa: E501
1157
+ raise ValueError("Missing the required parameter `body` when calling `get_conf_checker`") # noqa: E501
1158
+
1159
+ collection_formats = {}
1160
+
1161
+ path_params = {}
1162
+
1163
+ query_params = []
1164
+
1165
+ header_params = {}
1166
+
1167
+ form_params = []
1168
+ local_var_files = {}
1169
+
1170
+ body_params = None
1171
+ if 'body' in params:
1172
+ body_params = params['body']
1173
+ # HTTP header `Accept`
1174
+ header_params['Accept'] = self.api_client.select_header_accept(
1175
+ ['application/json']) # noqa: E501
1176
+
1177
+ # HTTP header `Content-Type`
1178
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
1179
+ ['application/json']) # noqa: E501
1180
+
1181
+ # Authentication setting
1182
+ auth_settings = ['volcengineSign'] # noqa: E501
1183
+
1184
+ return self.api_client.call_api(
1185
+ '/GetConfChecker/2018-01-01/graph/post/application_json/', 'POST',
1186
+ path_params,
1187
+ query_params,
1188
+ header_params,
1189
+ body=body_params,
1190
+ post_params=form_params,
1191
+ files=local_var_files,
1192
+ response_type='GetConfCheckerResponse', # noqa: E501
1193
+ auth_settings=auth_settings,
1194
+ async_req=params.get('async_req'),
1195
+ _return_http_data_only=params.get('_return_http_data_only'),
1196
+ _preload_content=params.get('_preload_content', True),
1197
+ _request_timeout=params.get('_request_timeout'),
1198
+ collection_formats=collection_formats)
1199
+
1103
1200
  def get_instance_spec_scope(self, body, **kwargs): # noqa: E501
1104
1201
  """get_instance_spec_scope # noqa: E501
1105
1202
 
@@ -2070,6 +2167,103 @@ class GRAPHApi(object):
2070
2167
  _request_timeout=params.get('_request_timeout'),
2071
2168
  collection_formats=collection_formats)
2072
2169
 
2170
+ def graphrag_add_knowledge_base(self, body, **kwargs): # noqa: E501
2171
+ """graphrag_add_knowledge_base # noqa: E501
2172
+
2173
+ This method makes a synchronous HTTP request by default. To make an
2174
+ asynchronous HTTP request, please pass async_req=True
2175
+ >>> thread = api.graphrag_add_knowledge_base(body, async_req=True)
2176
+ >>> result = thread.get()
2177
+
2178
+ :param async_req bool
2179
+ :param GraphragAddKnowledgeBaseRequest body: (required)
2180
+ :return: GraphragAddKnowledgeBaseResponse
2181
+ If the method is called asynchronously,
2182
+ returns the request thread.
2183
+ """
2184
+ kwargs['_return_http_data_only'] = True
2185
+ if kwargs.get('async_req'):
2186
+ return self.graphrag_add_knowledge_base_with_http_info(body, **kwargs) # noqa: E501
2187
+ else:
2188
+ (data) = self.graphrag_add_knowledge_base_with_http_info(body, **kwargs) # noqa: E501
2189
+ return data
2190
+
2191
+ def graphrag_add_knowledge_base_with_http_info(self, body, **kwargs): # noqa: E501
2192
+ """graphrag_add_knowledge_base # noqa: E501
2193
+
2194
+ This method makes a synchronous HTTP request by default. To make an
2195
+ asynchronous HTTP request, please pass async_req=True
2196
+ >>> thread = api.graphrag_add_knowledge_base_with_http_info(body, async_req=True)
2197
+ >>> result = thread.get()
2198
+
2199
+ :param async_req bool
2200
+ :param GraphragAddKnowledgeBaseRequest body: (required)
2201
+ :return: GraphragAddKnowledgeBaseResponse
2202
+ If the method is called asynchronously,
2203
+ returns the request thread.
2204
+ """
2205
+
2206
+ all_params = ['body'] # noqa: E501
2207
+ all_params.append('async_req')
2208
+ all_params.append('_return_http_data_only')
2209
+ all_params.append('_preload_content')
2210
+ all_params.append('_request_timeout')
2211
+
2212
+ params = locals()
2213
+ for key, val in six.iteritems(params['kwargs']):
2214
+ if key not in all_params:
2215
+ raise TypeError(
2216
+ "Got an unexpected keyword argument '%s'"
2217
+ " to method graphrag_add_knowledge_base" % key
2218
+ )
2219
+ params[key] = val
2220
+ del params['kwargs']
2221
+ # verify the required parameter 'body' is set
2222
+ if self.api_client.client_side_validation and ('body' not in params or
2223
+ params['body'] is None): # noqa: E501
2224
+ raise ValueError("Missing the required parameter `body` when calling `graphrag_add_knowledge_base`") # noqa: E501
2225
+
2226
+ collection_formats = {}
2227
+
2228
+ path_params = {}
2229
+
2230
+ query_params = []
2231
+
2232
+ header_params = {}
2233
+
2234
+ form_params = []
2235
+ local_var_files = {}
2236
+
2237
+ body_params = None
2238
+ if 'body' in params:
2239
+ body_params = params['body']
2240
+ # HTTP header `Accept`
2241
+ header_params['Accept'] = self.api_client.select_header_accept(
2242
+ ['application/json']) # noqa: E501
2243
+
2244
+ # HTTP header `Content-Type`
2245
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
2246
+ ['application/json']) # noqa: E501
2247
+
2248
+ # Authentication setting
2249
+ auth_settings = ['volcengineSign'] # noqa: E501
2250
+
2251
+ return self.api_client.call_api(
2252
+ '/GraphragAddKnowledgeBase/2018-01-01/graph/post/application_json/', 'POST',
2253
+ path_params,
2254
+ query_params,
2255
+ header_params,
2256
+ body=body_params,
2257
+ post_params=form_params,
2258
+ files=local_var_files,
2259
+ response_type='GraphragAddKnowledgeBaseResponse', # noqa: E501
2260
+ auth_settings=auth_settings,
2261
+ async_req=params.get('async_req'),
2262
+ _return_http_data_only=params.get('_return_http_data_only'),
2263
+ _preload_content=params.get('_preload_content', True),
2264
+ _request_timeout=params.get('_request_timeout'),
2265
+ collection_formats=collection_formats)
2266
+
2073
2267
  def list_cluster_tables(self, body, **kwargs): # noqa: E501
2074
2268
  """list_cluster_tables # noqa: E501
2075
2269
 
@@ -2167,38 +2361,38 @@ class GRAPHApi(object):
2167
2361
  _request_timeout=params.get('_request_timeout'),
2168
2362
  collection_formats=collection_formats)
2169
2363
 
2170
- def list_instance(self, body, **kwargs): # noqa: E501
2171
- """list_instance # noqa: E501
2364
+ def list_graph_rag_service(self, body, **kwargs): # noqa: E501
2365
+ """list_graph_rag_service # noqa: E501
2172
2366
 
2173
2367
  This method makes a synchronous HTTP request by default. To make an
2174
2368
  asynchronous HTTP request, please pass async_req=True
2175
- >>> thread = api.list_instance(body, async_req=True)
2369
+ >>> thread = api.list_graph_rag_service(body, async_req=True)
2176
2370
  >>> result = thread.get()
2177
2371
 
2178
2372
  :param async_req bool
2179
- :param ListInstanceRequest body: (required)
2180
- :return: ListInstanceResponse
2373
+ :param ListGraphRagServiceRequest body: (required)
2374
+ :return: ListGraphRagServiceResponse
2181
2375
  If the method is called asynchronously,
2182
2376
  returns the request thread.
2183
2377
  """
2184
2378
  kwargs['_return_http_data_only'] = True
2185
2379
  if kwargs.get('async_req'):
2186
- return self.list_instance_with_http_info(body, **kwargs) # noqa: E501
2380
+ return self.list_graph_rag_service_with_http_info(body, **kwargs) # noqa: E501
2187
2381
  else:
2188
- (data) = self.list_instance_with_http_info(body, **kwargs) # noqa: E501
2382
+ (data) = self.list_graph_rag_service_with_http_info(body, **kwargs) # noqa: E501
2189
2383
  return data
2190
2384
 
2191
- def list_instance_with_http_info(self, body, **kwargs): # noqa: E501
2192
- """list_instance # noqa: E501
2385
+ def list_graph_rag_service_with_http_info(self, body, **kwargs): # noqa: E501
2386
+ """list_graph_rag_service # noqa: E501
2193
2387
 
2194
2388
  This method makes a synchronous HTTP request by default. To make an
2195
2389
  asynchronous HTTP request, please pass async_req=True
2196
- >>> thread = api.list_instance_with_http_info(body, async_req=True)
2390
+ >>> thread = api.list_graph_rag_service_with_http_info(body, async_req=True)
2197
2391
  >>> result = thread.get()
2198
2392
 
2199
2393
  :param async_req bool
2200
- :param ListInstanceRequest body: (required)
2201
- :return: ListInstanceResponse
2394
+ :param ListGraphRagServiceRequest body: (required)
2395
+ :return: ListGraphRagServiceResponse
2202
2396
  If the method is called asynchronously,
2203
2397
  returns the request thread.
2204
2398
  """
@@ -2214,14 +2408,14 @@ class GRAPHApi(object):
2214
2408
  if key not in all_params:
2215
2409
  raise TypeError(
2216
2410
  "Got an unexpected keyword argument '%s'"
2217
- " to method list_instance" % key
2411
+ " to method list_graph_rag_service" % key
2218
2412
  )
2219
2413
  params[key] = val
2220
2414
  del params['kwargs']
2221
2415
  # verify the required parameter 'body' is set
2222
2416
  if self.api_client.client_side_validation and ('body' not in params or
2223
2417
  params['body'] is None): # noqa: E501
2224
- raise ValueError("Missing the required parameter `body` when calling `list_instance`") # noqa: E501
2418
+ raise ValueError("Missing the required parameter `body` when calling `list_graph_rag_service`") # noqa: E501
2225
2419
 
2226
2420
  collection_formats = {}
2227
2421
 
@@ -2249,14 +2443,14 @@ class GRAPHApi(object):
2249
2443
  auth_settings = ['volcengineSign'] # noqa: E501
2250
2444
 
2251
2445
  return self.api_client.call_api(
2252
- '/ListInstance/2018-01-01/graph/post/application_json/', 'POST',
2446
+ '/ListGraphRagService/2018-01-01/graph/post/application_json/', 'POST',
2253
2447
  path_params,
2254
2448
  query_params,
2255
2449
  header_params,
2256
2450
  body=body_params,
2257
2451
  post_params=form_params,
2258
2452
  files=local_var_files,
2259
- response_type='ListInstanceResponse', # noqa: E501
2453
+ response_type='ListGraphRagServiceResponse', # noqa: E501
2260
2454
  auth_settings=auth_settings,
2261
2455
  async_req=params.get('async_req'),
2262
2456
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -2264,38 +2458,38 @@ class GRAPHApi(object):
2264
2458
  _request_timeout=params.get('_request_timeout'),
2265
2459
  collection_formats=collection_formats)
2266
2460
 
2267
- def modify_db_instance_deletion_protection_policy(self, body, **kwargs): # noqa: E501
2268
- """modify_db_instance_deletion_protection_policy # noqa: E501
2461
+ def list_instance(self, body, **kwargs): # noqa: E501
2462
+ """list_instance # noqa: E501
2269
2463
 
2270
2464
  This method makes a synchronous HTTP request by default. To make an
2271
2465
  asynchronous HTTP request, please pass async_req=True
2272
- >>> thread = api.modify_db_instance_deletion_protection_policy(body, async_req=True)
2466
+ >>> thread = api.list_instance(body, async_req=True)
2273
2467
  >>> result = thread.get()
2274
2468
 
2275
2469
  :param async_req bool
2276
- :param ModifyDBInstanceDeletionProtectionPolicyRequest body: (required)
2277
- :return: ModifyDBInstanceDeletionProtectionPolicyResponse
2470
+ :param ListInstanceRequest body: (required)
2471
+ :return: ListInstanceResponse
2278
2472
  If the method is called asynchronously,
2279
2473
  returns the request thread.
2280
2474
  """
2281
2475
  kwargs['_return_http_data_only'] = True
2282
2476
  if kwargs.get('async_req'):
2283
- return self.modify_db_instance_deletion_protection_policy_with_http_info(body, **kwargs) # noqa: E501
2477
+ return self.list_instance_with_http_info(body, **kwargs) # noqa: E501
2284
2478
  else:
2285
- (data) = self.modify_db_instance_deletion_protection_policy_with_http_info(body, **kwargs) # noqa: E501
2479
+ (data) = self.list_instance_with_http_info(body, **kwargs) # noqa: E501
2286
2480
  return data
2287
2481
 
2288
- def modify_db_instance_deletion_protection_policy_with_http_info(self, body, **kwargs): # noqa: E501
2289
- """modify_db_instance_deletion_protection_policy # noqa: E501
2482
+ def list_instance_with_http_info(self, body, **kwargs): # noqa: E501
2483
+ """list_instance # noqa: E501
2290
2484
 
2291
2485
  This method makes a synchronous HTTP request by default. To make an
2292
2486
  asynchronous HTTP request, please pass async_req=True
2293
- >>> thread = api.modify_db_instance_deletion_protection_policy_with_http_info(body, async_req=True)
2487
+ >>> thread = api.list_instance_with_http_info(body, async_req=True)
2294
2488
  >>> result = thread.get()
2295
2489
 
2296
2490
  :param async_req bool
2297
- :param ModifyDBInstanceDeletionProtectionPolicyRequest body: (required)
2298
- :return: ModifyDBInstanceDeletionProtectionPolicyResponse
2491
+ :param ListInstanceRequest body: (required)
2492
+ :return: ListInstanceResponse
2299
2493
  If the method is called asynchronously,
2300
2494
  returns the request thread.
2301
2495
  """
@@ -2311,14 +2505,14 @@ class GRAPHApi(object):
2311
2505
  if key not in all_params:
2312
2506
  raise TypeError(
2313
2507
  "Got an unexpected keyword argument '%s'"
2314
- " to method modify_db_instance_deletion_protection_policy" % key
2508
+ " to method list_instance" % key
2315
2509
  )
2316
2510
  params[key] = val
2317
2511
  del params['kwargs']
2318
2512
  # verify the required parameter 'body' is set
2319
2513
  if self.api_client.client_side_validation and ('body' not in params or
2320
2514
  params['body'] is None): # noqa: E501
2321
- raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_deletion_protection_policy`") # noqa: E501
2515
+ raise ValueError("Missing the required parameter `body` when calling `list_instance`") # noqa: E501
2322
2516
 
2323
2517
  collection_formats = {}
2324
2518
 
@@ -2346,14 +2540,14 @@ class GRAPHApi(object):
2346
2540
  auth_settings = ['volcengineSign'] # noqa: E501
2347
2541
 
2348
2542
  return self.api_client.call_api(
2349
- '/ModifyDBInstanceDeletionProtectionPolicy/2018-01-01/graph/post/application_json/', 'POST',
2543
+ '/ListInstance/2018-01-01/graph/post/application_json/', 'POST',
2350
2544
  path_params,
2351
2545
  query_params,
2352
2546
  header_params,
2353
2547
  body=body_params,
2354
2548
  post_params=form_params,
2355
2549
  files=local_var_files,
2356
- response_type='ModifyDBInstanceDeletionProtectionPolicyResponse', # noqa: E501
2550
+ response_type='ListInstanceResponse', # noqa: E501
2357
2551
  auth_settings=auth_settings,
2358
2552
  async_req=params.get('async_req'),
2359
2553
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -2361,38 +2555,38 @@ class GRAPHApi(object):
2361
2555
  _request_timeout=params.get('_request_timeout'),
2362
2556
  collection_formats=collection_formats)
2363
2557
 
2364
- def modify_schema(self, body, **kwargs): # noqa: E501
2365
- """modify_schema # noqa: E501
2558
+ def list_tablet_server(self, body, **kwargs): # noqa: E501
2559
+ """list_tablet_server # noqa: E501
2366
2560
 
2367
2561
  This method makes a synchronous HTTP request by default. To make an
2368
2562
  asynchronous HTTP request, please pass async_req=True
2369
- >>> thread = api.modify_schema(body, async_req=True)
2563
+ >>> thread = api.list_tablet_server(body, async_req=True)
2370
2564
  >>> result = thread.get()
2371
2565
 
2372
2566
  :param async_req bool
2373
- :param ModifySchemaRequest body: (required)
2374
- :return: ModifySchemaResponse
2567
+ :param ListTabletServerRequest body: (required)
2568
+ :return: ListTabletServerResponse
2375
2569
  If the method is called asynchronously,
2376
2570
  returns the request thread.
2377
2571
  """
2378
2572
  kwargs['_return_http_data_only'] = True
2379
2573
  if kwargs.get('async_req'):
2380
- return self.modify_schema_with_http_info(body, **kwargs) # noqa: E501
2574
+ return self.list_tablet_server_with_http_info(body, **kwargs) # noqa: E501
2381
2575
  else:
2382
- (data) = self.modify_schema_with_http_info(body, **kwargs) # noqa: E501
2576
+ (data) = self.list_tablet_server_with_http_info(body, **kwargs) # noqa: E501
2383
2577
  return data
2384
2578
 
2385
- def modify_schema_with_http_info(self, body, **kwargs): # noqa: E501
2386
- """modify_schema # noqa: E501
2579
+ def list_tablet_server_with_http_info(self, body, **kwargs): # noqa: E501
2580
+ """list_tablet_server # noqa: E501
2387
2581
 
2388
2582
  This method makes a synchronous HTTP request by default. To make an
2389
2583
  asynchronous HTTP request, please pass async_req=True
2390
- >>> thread = api.modify_schema_with_http_info(body, async_req=True)
2584
+ >>> thread = api.list_tablet_server_with_http_info(body, async_req=True)
2391
2585
  >>> result = thread.get()
2392
2586
 
2393
2587
  :param async_req bool
2394
- :param ModifySchemaRequest body: (required)
2395
- :return: ModifySchemaResponse
2588
+ :param ListTabletServerRequest body: (required)
2589
+ :return: ListTabletServerResponse
2396
2590
  If the method is called asynchronously,
2397
2591
  returns the request thread.
2398
2592
  """
@@ -2408,14 +2602,14 @@ class GRAPHApi(object):
2408
2602
  if key not in all_params:
2409
2603
  raise TypeError(
2410
2604
  "Got an unexpected keyword argument '%s'"
2411
- " to method modify_schema" % key
2605
+ " to method list_tablet_server" % key
2412
2606
  )
2413
2607
  params[key] = val
2414
2608
  del params['kwargs']
2415
2609
  # verify the required parameter 'body' is set
2416
2610
  if self.api_client.client_side_validation and ('body' not in params or
2417
2611
  params['body'] is None): # noqa: E501
2418
- raise ValueError("Missing the required parameter `body` when calling `modify_schema`") # noqa: E501
2612
+ raise ValueError("Missing the required parameter `body` when calling `list_tablet_server`") # noqa: E501
2419
2613
 
2420
2614
  collection_formats = {}
2421
2615
 
@@ -2443,14 +2637,14 @@ class GRAPHApi(object):
2443
2637
  auth_settings = ['volcengineSign'] # noqa: E501
2444
2638
 
2445
2639
  return self.api_client.call_api(
2446
- '/ModifySchema/2018-01-01/graph/post/application_json/', 'POST',
2640
+ '/ListTabletServer/2018-01-01/graph/post/application_json/', 'POST',
2447
2641
  path_params,
2448
2642
  query_params,
2449
2643
  header_params,
2450
2644
  body=body_params,
2451
2645
  post_params=form_params,
2452
2646
  files=local_var_files,
2453
- response_type='ModifySchemaResponse', # noqa: E501
2647
+ response_type='ListTabletServerResponse', # noqa: E501
2454
2648
  auth_settings=auth_settings,
2455
2649
  async_req=params.get('async_req'),
2456
2650
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -2458,38 +2652,38 @@ class GRAPHApi(object):
2458
2652
  _request_timeout=params.get('_request_timeout'),
2459
2653
  collection_formats=collection_formats)
2460
2654
 
2461
- def set_vegraph_read_and_write_status(self, body, **kwargs): # noqa: E501
2462
- """set_vegraph_read_and_write_status # noqa: E501
2655
+ def list_tablet_task(self, body, **kwargs): # noqa: E501
2656
+ """list_tablet_task # noqa: E501
2463
2657
 
2464
2658
  This method makes a synchronous HTTP request by default. To make an
2465
2659
  asynchronous HTTP request, please pass async_req=True
2466
- >>> thread = api.set_vegraph_read_and_write_status(body, async_req=True)
2660
+ >>> thread = api.list_tablet_task(body, async_req=True)
2467
2661
  >>> result = thread.get()
2468
2662
 
2469
2663
  :param async_req bool
2470
- :param SetVegraphReadAndWriteStatusRequest body: (required)
2471
- :return: SetVegraphReadAndWriteStatusResponse
2664
+ :param ListTabletTaskRequest body: (required)
2665
+ :return: ListTabletTaskResponse
2472
2666
  If the method is called asynchronously,
2473
2667
  returns the request thread.
2474
2668
  """
2475
2669
  kwargs['_return_http_data_only'] = True
2476
2670
  if kwargs.get('async_req'):
2477
- return self.set_vegraph_read_and_write_status_with_http_info(body, **kwargs) # noqa: E501
2671
+ return self.list_tablet_task_with_http_info(body, **kwargs) # noqa: E501
2478
2672
  else:
2479
- (data) = self.set_vegraph_read_and_write_status_with_http_info(body, **kwargs) # noqa: E501
2673
+ (data) = self.list_tablet_task_with_http_info(body, **kwargs) # noqa: E501
2480
2674
  return data
2481
2675
 
2482
- def set_vegraph_read_and_write_status_with_http_info(self, body, **kwargs): # noqa: E501
2483
- """set_vegraph_read_and_write_status # noqa: E501
2676
+ def list_tablet_task_with_http_info(self, body, **kwargs): # noqa: E501
2677
+ """list_tablet_task # noqa: E501
2484
2678
 
2485
2679
  This method makes a synchronous HTTP request by default. To make an
2486
2680
  asynchronous HTTP request, please pass async_req=True
2487
- >>> thread = api.set_vegraph_read_and_write_status_with_http_info(body, async_req=True)
2681
+ >>> thread = api.list_tablet_task_with_http_info(body, async_req=True)
2488
2682
  >>> result = thread.get()
2489
2683
 
2490
2684
  :param async_req bool
2491
- :param SetVegraphReadAndWriteStatusRequest body: (required)
2492
- :return: SetVegraphReadAndWriteStatusResponse
2685
+ :param ListTabletTaskRequest body: (required)
2686
+ :return: ListTabletTaskResponse
2493
2687
  If the method is called asynchronously,
2494
2688
  returns the request thread.
2495
2689
  """
@@ -2505,14 +2699,14 @@ class GRAPHApi(object):
2505
2699
  if key not in all_params:
2506
2700
  raise TypeError(
2507
2701
  "Got an unexpected keyword argument '%s'"
2508
- " to method set_vegraph_read_and_write_status" % key
2702
+ " to method list_tablet_task" % key
2509
2703
  )
2510
2704
  params[key] = val
2511
2705
  del params['kwargs']
2512
2706
  # verify the required parameter 'body' is set
2513
2707
  if self.api_client.client_side_validation and ('body' not in params or
2514
2708
  params['body'] is None): # noqa: E501
2515
- raise ValueError("Missing the required parameter `body` when calling `set_vegraph_read_and_write_status`") # noqa: E501
2709
+ raise ValueError("Missing the required parameter `body` when calling `list_tablet_task`") # noqa: E501
2516
2710
 
2517
2711
  collection_formats = {}
2518
2712
 
@@ -2540,14 +2734,14 @@ class GRAPHApi(object):
2540
2734
  auth_settings = ['volcengineSign'] # noqa: E501
2541
2735
 
2542
2736
  return self.api_client.call_api(
2543
- '/SetVegraphReadAndWriteStatus/2018-01-01/graph/post/application_json/', 'POST',
2737
+ '/ListTabletTask/2018-01-01/graph/post/application_json/', 'POST',
2544
2738
  path_params,
2545
2739
  query_params,
2546
2740
  header_params,
2547
2741
  body=body_params,
2548
2742
  post_params=form_params,
2549
2743
  files=local_var_files,
2550
- response_type='SetVegraphReadAndWriteStatusResponse', # noqa: E501
2744
+ response_type='ListTabletTaskResponse', # noqa: E501
2551
2745
  auth_settings=auth_settings,
2552
2746
  async_req=params.get('async_req'),
2553
2747
  _return_http_data_only=params.get('_return_http_data_only'),
@@ -2555,38 +2749,38 @@ class GRAPHApi(object):
2555
2749
  _request_timeout=params.get('_request_timeout'),
2556
2750
  collection_formats=collection_formats)
2557
2751
 
2558
- def truncate_table(self, body, **kwargs): # noqa: E501
2559
- """truncate_table # noqa: E501
2752
+ def list_tablets(self, body, **kwargs): # noqa: E501
2753
+ """list_tablets # noqa: E501
2560
2754
 
2561
2755
  This method makes a synchronous HTTP request by default. To make an
2562
2756
  asynchronous HTTP request, please pass async_req=True
2563
- >>> thread = api.truncate_table(body, async_req=True)
2757
+ >>> thread = api.list_tablets(body, async_req=True)
2564
2758
  >>> result = thread.get()
2565
2759
 
2566
2760
  :param async_req bool
2567
- :param TruncateTableRequest body: (required)
2568
- :return: TruncateTableResponse
2761
+ :param ListTabletsRequest body: (required)
2762
+ :return: ListTabletsResponse
2569
2763
  If the method is called asynchronously,
2570
2764
  returns the request thread.
2571
2765
  """
2572
2766
  kwargs['_return_http_data_only'] = True
2573
2767
  if kwargs.get('async_req'):
2574
- return self.truncate_table_with_http_info(body, **kwargs) # noqa: E501
2768
+ return self.list_tablets_with_http_info(body, **kwargs) # noqa: E501
2575
2769
  else:
2576
- (data) = self.truncate_table_with_http_info(body, **kwargs) # noqa: E501
2770
+ (data) = self.list_tablets_with_http_info(body, **kwargs) # noqa: E501
2577
2771
  return data
2578
2772
 
2579
- def truncate_table_with_http_info(self, body, **kwargs): # noqa: E501
2580
- """truncate_table # noqa: E501
2773
+ def list_tablets_with_http_info(self, body, **kwargs): # noqa: E501
2774
+ """list_tablets # noqa: E501
2581
2775
 
2582
2776
  This method makes a synchronous HTTP request by default. To make an
2583
2777
  asynchronous HTTP request, please pass async_req=True
2584
- >>> thread = api.truncate_table_with_http_info(body, async_req=True)
2778
+ >>> thread = api.list_tablets_with_http_info(body, async_req=True)
2585
2779
  >>> result = thread.get()
2586
2780
 
2587
2781
  :param async_req bool
2588
- :param TruncateTableRequest body: (required)
2589
- :return: TruncateTableResponse
2782
+ :param ListTabletsRequest body: (required)
2783
+ :return: ListTabletsResponse
2590
2784
  If the method is called asynchronously,
2591
2785
  returns the request thread.
2592
2786
  """
@@ -2602,14 +2796,499 @@ class GRAPHApi(object):
2602
2796
  if key not in all_params:
2603
2797
  raise TypeError(
2604
2798
  "Got an unexpected keyword argument '%s'"
2605
- " to method truncate_table" % key
2799
+ " to method list_tablets" % key
2606
2800
  )
2607
2801
  params[key] = val
2608
2802
  del params['kwargs']
2609
2803
  # verify the required parameter 'body' is set
2610
2804
  if self.api_client.client_side_validation and ('body' not in params or
2611
2805
  params['body'] is None): # noqa: E501
2612
- raise ValueError("Missing the required parameter `body` when calling `truncate_table`") # noqa: E501
2806
+ raise ValueError("Missing the required parameter `body` when calling `list_tablets`") # noqa: E501
2807
+
2808
+ collection_formats = {}
2809
+
2810
+ path_params = {}
2811
+
2812
+ query_params = []
2813
+
2814
+ header_params = {}
2815
+
2816
+ form_params = []
2817
+ local_var_files = {}
2818
+
2819
+ body_params = None
2820
+ if 'body' in params:
2821
+ body_params = params['body']
2822
+ # HTTP header `Accept`
2823
+ header_params['Accept'] = self.api_client.select_header_accept(
2824
+ ['application/json']) # noqa: E501
2825
+
2826
+ # HTTP header `Content-Type`
2827
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
2828
+ ['application/json']) # noqa: E501
2829
+
2830
+ # Authentication setting
2831
+ auth_settings = ['volcengineSign'] # noqa: E501
2832
+
2833
+ return self.api_client.call_api(
2834
+ '/ListTablets/2018-01-01/graph/post/application_json/', 'POST',
2835
+ path_params,
2836
+ query_params,
2837
+ header_params,
2838
+ body=body_params,
2839
+ post_params=form_params,
2840
+ files=local_var_files,
2841
+ response_type='ListTabletsResponse', # noqa: E501
2842
+ auth_settings=auth_settings,
2843
+ async_req=params.get('async_req'),
2844
+ _return_http_data_only=params.get('_return_http_data_only'),
2845
+ _preload_content=params.get('_preload_content', True),
2846
+ _request_timeout=params.get('_request_timeout'),
2847
+ collection_formats=collection_formats)
2848
+
2849
+ def migrate_tablet_replica(self, body, **kwargs): # noqa: E501
2850
+ """migrate_tablet_replica # noqa: E501
2851
+
2852
+ This method makes a synchronous HTTP request by default. To make an
2853
+ asynchronous HTTP request, please pass async_req=True
2854
+ >>> thread = api.migrate_tablet_replica(body, async_req=True)
2855
+ >>> result = thread.get()
2856
+
2857
+ :param async_req bool
2858
+ :param MigrateTabletReplicaRequest body: (required)
2859
+ :return: MigrateTabletReplicaResponse
2860
+ If the method is called asynchronously,
2861
+ returns the request thread.
2862
+ """
2863
+ kwargs['_return_http_data_only'] = True
2864
+ if kwargs.get('async_req'):
2865
+ return self.migrate_tablet_replica_with_http_info(body, **kwargs) # noqa: E501
2866
+ else:
2867
+ (data) = self.migrate_tablet_replica_with_http_info(body, **kwargs) # noqa: E501
2868
+ return data
2869
+
2870
+ def migrate_tablet_replica_with_http_info(self, body, **kwargs): # noqa: E501
2871
+ """migrate_tablet_replica # noqa: E501
2872
+
2873
+ This method makes a synchronous HTTP request by default. To make an
2874
+ asynchronous HTTP request, please pass async_req=True
2875
+ >>> thread = api.migrate_tablet_replica_with_http_info(body, async_req=True)
2876
+ >>> result = thread.get()
2877
+
2878
+ :param async_req bool
2879
+ :param MigrateTabletReplicaRequest body: (required)
2880
+ :return: MigrateTabletReplicaResponse
2881
+ If the method is called asynchronously,
2882
+ returns the request thread.
2883
+ """
2884
+
2885
+ all_params = ['body'] # noqa: E501
2886
+ all_params.append('async_req')
2887
+ all_params.append('_return_http_data_only')
2888
+ all_params.append('_preload_content')
2889
+ all_params.append('_request_timeout')
2890
+
2891
+ params = locals()
2892
+ for key, val in six.iteritems(params['kwargs']):
2893
+ if key not in all_params:
2894
+ raise TypeError(
2895
+ "Got an unexpected keyword argument '%s'"
2896
+ " to method migrate_tablet_replica" % key
2897
+ )
2898
+ params[key] = val
2899
+ del params['kwargs']
2900
+ # verify the required parameter 'body' is set
2901
+ if self.api_client.client_side_validation and ('body' not in params or
2902
+ params['body'] is None): # noqa: E501
2903
+ raise ValueError("Missing the required parameter `body` when calling `migrate_tablet_replica`") # noqa: E501
2904
+
2905
+ collection_formats = {}
2906
+
2907
+ path_params = {}
2908
+
2909
+ query_params = []
2910
+
2911
+ header_params = {}
2912
+
2913
+ form_params = []
2914
+ local_var_files = {}
2915
+
2916
+ body_params = None
2917
+ if 'body' in params:
2918
+ body_params = params['body']
2919
+ # HTTP header `Accept`
2920
+ header_params['Accept'] = self.api_client.select_header_accept(
2921
+ ['application/json']) # noqa: E501
2922
+
2923
+ # HTTP header `Content-Type`
2924
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
2925
+ ['application/json']) # noqa: E501
2926
+
2927
+ # Authentication setting
2928
+ auth_settings = ['volcengineSign'] # noqa: E501
2929
+
2930
+ return self.api_client.call_api(
2931
+ '/MigrateTabletReplica/2018-01-01/graph/post/application_json/', 'POST',
2932
+ path_params,
2933
+ query_params,
2934
+ header_params,
2935
+ body=body_params,
2936
+ post_params=form_params,
2937
+ files=local_var_files,
2938
+ response_type='MigrateTabletReplicaResponse', # noqa: E501
2939
+ auth_settings=auth_settings,
2940
+ async_req=params.get('async_req'),
2941
+ _return_http_data_only=params.get('_return_http_data_only'),
2942
+ _preload_content=params.get('_preload_content', True),
2943
+ _request_timeout=params.get('_request_timeout'),
2944
+ collection_formats=collection_formats)
2945
+
2946
+ def modify_db_instance_deletion_protection_policy(self, body, **kwargs): # noqa: E501
2947
+ """modify_db_instance_deletion_protection_policy # noqa: E501
2948
+
2949
+ This method makes a synchronous HTTP request by default. To make an
2950
+ asynchronous HTTP request, please pass async_req=True
2951
+ >>> thread = api.modify_db_instance_deletion_protection_policy(body, async_req=True)
2952
+ >>> result = thread.get()
2953
+
2954
+ :param async_req bool
2955
+ :param ModifyDBInstanceDeletionProtectionPolicyRequest body: (required)
2956
+ :return: ModifyDBInstanceDeletionProtectionPolicyResponse
2957
+ If the method is called asynchronously,
2958
+ returns the request thread.
2959
+ """
2960
+ kwargs['_return_http_data_only'] = True
2961
+ if kwargs.get('async_req'):
2962
+ return self.modify_db_instance_deletion_protection_policy_with_http_info(body, **kwargs) # noqa: E501
2963
+ else:
2964
+ (data) = self.modify_db_instance_deletion_protection_policy_with_http_info(body, **kwargs) # noqa: E501
2965
+ return data
2966
+
2967
+ def modify_db_instance_deletion_protection_policy_with_http_info(self, body, **kwargs): # noqa: E501
2968
+ """modify_db_instance_deletion_protection_policy # noqa: E501
2969
+
2970
+ This method makes a synchronous HTTP request by default. To make an
2971
+ asynchronous HTTP request, please pass async_req=True
2972
+ >>> thread = api.modify_db_instance_deletion_protection_policy_with_http_info(body, async_req=True)
2973
+ >>> result = thread.get()
2974
+
2975
+ :param async_req bool
2976
+ :param ModifyDBInstanceDeletionProtectionPolicyRequest body: (required)
2977
+ :return: ModifyDBInstanceDeletionProtectionPolicyResponse
2978
+ If the method is called asynchronously,
2979
+ returns the request thread.
2980
+ """
2981
+
2982
+ all_params = ['body'] # noqa: E501
2983
+ all_params.append('async_req')
2984
+ all_params.append('_return_http_data_only')
2985
+ all_params.append('_preload_content')
2986
+ all_params.append('_request_timeout')
2987
+
2988
+ params = locals()
2989
+ for key, val in six.iteritems(params['kwargs']):
2990
+ if key not in all_params:
2991
+ raise TypeError(
2992
+ "Got an unexpected keyword argument '%s'"
2993
+ " to method modify_db_instance_deletion_protection_policy" % key
2994
+ )
2995
+ params[key] = val
2996
+ del params['kwargs']
2997
+ # verify the required parameter 'body' is set
2998
+ if self.api_client.client_side_validation and ('body' not in params or
2999
+ params['body'] is None): # noqa: E501
3000
+ raise ValueError("Missing the required parameter `body` when calling `modify_db_instance_deletion_protection_policy`") # noqa: E501
3001
+
3002
+ collection_formats = {}
3003
+
3004
+ path_params = {}
3005
+
3006
+ query_params = []
3007
+
3008
+ header_params = {}
3009
+
3010
+ form_params = []
3011
+ local_var_files = {}
3012
+
3013
+ body_params = None
3014
+ if 'body' in params:
3015
+ body_params = params['body']
3016
+ # HTTP header `Accept`
3017
+ header_params['Accept'] = self.api_client.select_header_accept(
3018
+ ['application/json']) # noqa: E501
3019
+
3020
+ # HTTP header `Content-Type`
3021
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
3022
+ ['application/json']) # noqa: E501
3023
+
3024
+ # Authentication setting
3025
+ auth_settings = ['volcengineSign'] # noqa: E501
3026
+
3027
+ return self.api_client.call_api(
3028
+ '/ModifyDBInstanceDeletionProtectionPolicy/2018-01-01/graph/post/application_json/', 'POST',
3029
+ path_params,
3030
+ query_params,
3031
+ header_params,
3032
+ body=body_params,
3033
+ post_params=form_params,
3034
+ files=local_var_files,
3035
+ response_type='ModifyDBInstanceDeletionProtectionPolicyResponse', # noqa: E501
3036
+ auth_settings=auth_settings,
3037
+ async_req=params.get('async_req'),
3038
+ _return_http_data_only=params.get('_return_http_data_only'),
3039
+ _preload_content=params.get('_preload_content', True),
3040
+ _request_timeout=params.get('_request_timeout'),
3041
+ collection_formats=collection_formats)
3042
+
3043
+ def modify_schema(self, body, **kwargs): # noqa: E501
3044
+ """modify_schema # noqa: E501
3045
+
3046
+ This method makes a synchronous HTTP request by default. To make an
3047
+ asynchronous HTTP request, please pass async_req=True
3048
+ >>> thread = api.modify_schema(body, async_req=True)
3049
+ >>> result = thread.get()
3050
+
3051
+ :param async_req bool
3052
+ :param ModifySchemaRequest body: (required)
3053
+ :return: ModifySchemaResponse
3054
+ If the method is called asynchronously,
3055
+ returns the request thread.
3056
+ """
3057
+ kwargs['_return_http_data_only'] = True
3058
+ if kwargs.get('async_req'):
3059
+ return self.modify_schema_with_http_info(body, **kwargs) # noqa: E501
3060
+ else:
3061
+ (data) = self.modify_schema_with_http_info(body, **kwargs) # noqa: E501
3062
+ return data
3063
+
3064
+ def modify_schema_with_http_info(self, body, **kwargs): # noqa: E501
3065
+ """modify_schema # noqa: E501
3066
+
3067
+ This method makes a synchronous HTTP request by default. To make an
3068
+ asynchronous HTTP request, please pass async_req=True
3069
+ >>> thread = api.modify_schema_with_http_info(body, async_req=True)
3070
+ >>> result = thread.get()
3071
+
3072
+ :param async_req bool
3073
+ :param ModifySchemaRequest body: (required)
3074
+ :return: ModifySchemaResponse
3075
+ If the method is called asynchronously,
3076
+ returns the request thread.
3077
+ """
3078
+
3079
+ all_params = ['body'] # noqa: E501
3080
+ all_params.append('async_req')
3081
+ all_params.append('_return_http_data_only')
3082
+ all_params.append('_preload_content')
3083
+ all_params.append('_request_timeout')
3084
+
3085
+ params = locals()
3086
+ for key, val in six.iteritems(params['kwargs']):
3087
+ if key not in all_params:
3088
+ raise TypeError(
3089
+ "Got an unexpected keyword argument '%s'"
3090
+ " to method modify_schema" % key
3091
+ )
3092
+ params[key] = val
3093
+ del params['kwargs']
3094
+ # verify the required parameter 'body' is set
3095
+ if self.api_client.client_side_validation and ('body' not in params or
3096
+ params['body'] is None): # noqa: E501
3097
+ raise ValueError("Missing the required parameter `body` when calling `modify_schema`") # noqa: E501
3098
+
3099
+ collection_formats = {}
3100
+
3101
+ path_params = {}
3102
+
3103
+ query_params = []
3104
+
3105
+ header_params = {}
3106
+
3107
+ form_params = []
3108
+ local_var_files = {}
3109
+
3110
+ body_params = None
3111
+ if 'body' in params:
3112
+ body_params = params['body']
3113
+ # HTTP header `Accept`
3114
+ header_params['Accept'] = self.api_client.select_header_accept(
3115
+ ['application/json']) # noqa: E501
3116
+
3117
+ # HTTP header `Content-Type`
3118
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
3119
+ ['application/json']) # noqa: E501
3120
+
3121
+ # Authentication setting
3122
+ auth_settings = ['volcengineSign'] # noqa: E501
3123
+
3124
+ return self.api_client.call_api(
3125
+ '/ModifySchema/2018-01-01/graph/post/application_json/', 'POST',
3126
+ path_params,
3127
+ query_params,
3128
+ header_params,
3129
+ body=body_params,
3130
+ post_params=form_params,
3131
+ files=local_var_files,
3132
+ response_type='ModifySchemaResponse', # noqa: E501
3133
+ auth_settings=auth_settings,
3134
+ async_req=params.get('async_req'),
3135
+ _return_http_data_only=params.get('_return_http_data_only'),
3136
+ _preload_content=params.get('_preload_content', True),
3137
+ _request_timeout=params.get('_request_timeout'),
3138
+ collection_formats=collection_formats)
3139
+
3140
+ def set_vegraph_read_and_write_status(self, body, **kwargs): # noqa: E501
3141
+ """set_vegraph_read_and_write_status # noqa: E501
3142
+
3143
+ This method makes a synchronous HTTP request by default. To make an
3144
+ asynchronous HTTP request, please pass async_req=True
3145
+ >>> thread = api.set_vegraph_read_and_write_status(body, async_req=True)
3146
+ >>> result = thread.get()
3147
+
3148
+ :param async_req bool
3149
+ :param SetVegraphReadAndWriteStatusRequest body: (required)
3150
+ :return: SetVegraphReadAndWriteStatusResponse
3151
+ If the method is called asynchronously,
3152
+ returns the request thread.
3153
+ """
3154
+ kwargs['_return_http_data_only'] = True
3155
+ if kwargs.get('async_req'):
3156
+ return self.set_vegraph_read_and_write_status_with_http_info(body, **kwargs) # noqa: E501
3157
+ else:
3158
+ (data) = self.set_vegraph_read_and_write_status_with_http_info(body, **kwargs) # noqa: E501
3159
+ return data
3160
+
3161
+ def set_vegraph_read_and_write_status_with_http_info(self, body, **kwargs): # noqa: E501
3162
+ """set_vegraph_read_and_write_status # noqa: E501
3163
+
3164
+ This method makes a synchronous HTTP request by default. To make an
3165
+ asynchronous HTTP request, please pass async_req=True
3166
+ >>> thread = api.set_vegraph_read_and_write_status_with_http_info(body, async_req=True)
3167
+ >>> result = thread.get()
3168
+
3169
+ :param async_req bool
3170
+ :param SetVegraphReadAndWriteStatusRequest body: (required)
3171
+ :return: SetVegraphReadAndWriteStatusResponse
3172
+ If the method is called asynchronously,
3173
+ returns the request thread.
3174
+ """
3175
+
3176
+ all_params = ['body'] # noqa: E501
3177
+ all_params.append('async_req')
3178
+ all_params.append('_return_http_data_only')
3179
+ all_params.append('_preload_content')
3180
+ all_params.append('_request_timeout')
3181
+
3182
+ params = locals()
3183
+ for key, val in six.iteritems(params['kwargs']):
3184
+ if key not in all_params:
3185
+ raise TypeError(
3186
+ "Got an unexpected keyword argument '%s'"
3187
+ " to method set_vegraph_read_and_write_status" % 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 `set_vegraph_read_and_write_status`") # 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
+ '/SetVegraphReadAndWriteStatus/2018-01-01/graph/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='SetVegraphReadAndWriteStatusResponse', # 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 truncate_table(self, body, **kwargs): # noqa: E501
3238
+ """truncate_table # 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.truncate_table(body, async_req=True)
3243
+ >>> result = thread.get()
3244
+
3245
+ :param async_req bool
3246
+ :param TruncateTableRequest body: (required)
3247
+ :return: TruncateTableResponse
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.truncate_table_with_http_info(body, **kwargs) # noqa: E501
3254
+ else:
3255
+ (data) = self.truncate_table_with_http_info(body, **kwargs) # noqa: E501
3256
+ return data
3257
+
3258
+ def truncate_table_with_http_info(self, body, **kwargs): # noqa: E501
3259
+ """truncate_table # 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.truncate_table_with_http_info(body, async_req=True)
3264
+ >>> result = thread.get()
3265
+
3266
+ :param async_req bool
3267
+ :param TruncateTableRequest body: (required)
3268
+ :return: TruncateTableResponse
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 truncate_table" % key
3285
+ )
3286
+ params[key] = val
3287
+ del params['kwargs']
3288
+ # verify the required parameter 'body' is set
3289
+ if self.api_client.client_side_validation and ('body' not in params or
3290
+ params['body'] is None): # noqa: E501
3291
+ raise ValueError("Missing the required parameter `body` when calling `truncate_table`") # noqa: E501
2613
3292
 
2614
3293
  collection_formats = {}
2615
3294
 
@@ -2651,3 +3330,197 @@ class GRAPHApi(object):
2651
3330
  _preload_content=params.get('_preload_content', True),
2652
3331
  _request_timeout=params.get('_request_timeout'),
2653
3332
  collection_formats=collection_formats)
3333
+
3334
+ def update_conf_checker(self, body, **kwargs): # noqa: E501
3335
+ """update_conf_checker # noqa: E501
3336
+
3337
+ This method makes a synchronous HTTP request by default. To make an
3338
+ asynchronous HTTP request, please pass async_req=True
3339
+ >>> thread = api.update_conf_checker(body, async_req=True)
3340
+ >>> result = thread.get()
3341
+
3342
+ :param async_req bool
3343
+ :param UpdateConfCheckerRequest body: (required)
3344
+ :return: UpdateConfCheckerResponse
3345
+ If the method is called asynchronously,
3346
+ returns the request thread.
3347
+ """
3348
+ kwargs['_return_http_data_only'] = True
3349
+ if kwargs.get('async_req'):
3350
+ return self.update_conf_checker_with_http_info(body, **kwargs) # noqa: E501
3351
+ else:
3352
+ (data) = self.update_conf_checker_with_http_info(body, **kwargs) # noqa: E501
3353
+ return data
3354
+
3355
+ def update_conf_checker_with_http_info(self, body, **kwargs): # noqa: E501
3356
+ """update_conf_checker # noqa: E501
3357
+
3358
+ This method makes a synchronous HTTP request by default. To make an
3359
+ asynchronous HTTP request, please pass async_req=True
3360
+ >>> thread = api.update_conf_checker_with_http_info(body, async_req=True)
3361
+ >>> result = thread.get()
3362
+
3363
+ :param async_req bool
3364
+ :param UpdateConfCheckerRequest body: (required)
3365
+ :return: UpdateConfCheckerResponse
3366
+ If the method is called asynchronously,
3367
+ returns the request thread.
3368
+ """
3369
+
3370
+ all_params = ['body'] # noqa: E501
3371
+ all_params.append('async_req')
3372
+ all_params.append('_return_http_data_only')
3373
+ all_params.append('_preload_content')
3374
+ all_params.append('_request_timeout')
3375
+
3376
+ params = locals()
3377
+ for key, val in six.iteritems(params['kwargs']):
3378
+ if key not in all_params:
3379
+ raise TypeError(
3380
+ "Got an unexpected keyword argument '%s'"
3381
+ " to method update_conf_checker" % key
3382
+ )
3383
+ params[key] = val
3384
+ del params['kwargs']
3385
+ # verify the required parameter 'body' is set
3386
+ if self.api_client.client_side_validation and ('body' not in params or
3387
+ params['body'] is None): # noqa: E501
3388
+ raise ValueError("Missing the required parameter `body` when calling `update_conf_checker`") # noqa: E501
3389
+
3390
+ collection_formats = {}
3391
+
3392
+ path_params = {}
3393
+
3394
+ query_params = []
3395
+
3396
+ header_params = {}
3397
+
3398
+ form_params = []
3399
+ local_var_files = {}
3400
+
3401
+ body_params = None
3402
+ if 'body' in params:
3403
+ body_params = params['body']
3404
+ # HTTP header `Accept`
3405
+ header_params['Accept'] = self.api_client.select_header_accept(
3406
+ ['application/json']) # noqa: E501
3407
+
3408
+ # HTTP header `Content-Type`
3409
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
3410
+ ['application/json']) # noqa: E501
3411
+
3412
+ # Authentication setting
3413
+ auth_settings = ['volcengineSign'] # noqa: E501
3414
+
3415
+ return self.api_client.call_api(
3416
+ '/UpdateConfChecker/2018-01-01/graph/post/application_json/', 'POST',
3417
+ path_params,
3418
+ query_params,
3419
+ header_params,
3420
+ body=body_params,
3421
+ post_params=form_params,
3422
+ files=local_var_files,
3423
+ response_type='UpdateConfCheckerResponse', # noqa: E501
3424
+ auth_settings=auth_settings,
3425
+ async_req=params.get('async_req'),
3426
+ _return_http_data_only=params.get('_return_http_data_only'),
3427
+ _preload_content=params.get('_preload_content', True),
3428
+ _request_timeout=params.get('_request_timeout'),
3429
+ collection_formats=collection_formats)
3430
+
3431
+ def validate_conf_checker(self, body, **kwargs): # noqa: E501
3432
+ """validate_conf_checker # noqa: E501
3433
+
3434
+ This method makes a synchronous HTTP request by default. To make an
3435
+ asynchronous HTTP request, please pass async_req=True
3436
+ >>> thread = api.validate_conf_checker(body, async_req=True)
3437
+ >>> result = thread.get()
3438
+
3439
+ :param async_req bool
3440
+ :param ValidateConfCheckerRequest body: (required)
3441
+ :return: ValidateConfCheckerResponse
3442
+ If the method is called asynchronously,
3443
+ returns the request thread.
3444
+ """
3445
+ kwargs['_return_http_data_only'] = True
3446
+ if kwargs.get('async_req'):
3447
+ return self.validate_conf_checker_with_http_info(body, **kwargs) # noqa: E501
3448
+ else:
3449
+ (data) = self.validate_conf_checker_with_http_info(body, **kwargs) # noqa: E501
3450
+ return data
3451
+
3452
+ def validate_conf_checker_with_http_info(self, body, **kwargs): # noqa: E501
3453
+ """validate_conf_checker # noqa: E501
3454
+
3455
+ This method makes a synchronous HTTP request by default. To make an
3456
+ asynchronous HTTP request, please pass async_req=True
3457
+ >>> thread = api.validate_conf_checker_with_http_info(body, async_req=True)
3458
+ >>> result = thread.get()
3459
+
3460
+ :param async_req bool
3461
+ :param ValidateConfCheckerRequest body: (required)
3462
+ :return: ValidateConfCheckerResponse
3463
+ If the method is called asynchronously,
3464
+ returns the request thread.
3465
+ """
3466
+
3467
+ all_params = ['body'] # noqa: E501
3468
+ all_params.append('async_req')
3469
+ all_params.append('_return_http_data_only')
3470
+ all_params.append('_preload_content')
3471
+ all_params.append('_request_timeout')
3472
+
3473
+ params = locals()
3474
+ for key, val in six.iteritems(params['kwargs']):
3475
+ if key not in all_params:
3476
+ raise TypeError(
3477
+ "Got an unexpected keyword argument '%s'"
3478
+ " to method validate_conf_checker" % key
3479
+ )
3480
+ params[key] = val
3481
+ del params['kwargs']
3482
+ # verify the required parameter 'body' is set
3483
+ if self.api_client.client_side_validation and ('body' not in params or
3484
+ params['body'] is None): # noqa: E501
3485
+ raise ValueError("Missing the required parameter `body` when calling `validate_conf_checker`") # noqa: E501
3486
+
3487
+ collection_formats = {}
3488
+
3489
+ path_params = {}
3490
+
3491
+ query_params = []
3492
+
3493
+ header_params = {}
3494
+
3495
+ form_params = []
3496
+ local_var_files = {}
3497
+
3498
+ body_params = None
3499
+ if 'body' in params:
3500
+ body_params = params['body']
3501
+ # HTTP header `Accept`
3502
+ header_params['Accept'] = self.api_client.select_header_accept(
3503
+ ['application/json']) # noqa: E501
3504
+
3505
+ # HTTP header `Content-Type`
3506
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
3507
+ ['application/json']) # noqa: E501
3508
+
3509
+ # Authentication setting
3510
+ auth_settings = ['volcengineSign'] # noqa: E501
3511
+
3512
+ return self.api_client.call_api(
3513
+ '/ValidateConfChecker/2018-01-01/graph/post/application_json/', 'POST',
3514
+ path_params,
3515
+ query_params,
3516
+ header_params,
3517
+ body=body_params,
3518
+ post_params=form_params,
3519
+ files=local_var_files,
3520
+ response_type='ValidateConfCheckerResponse', # noqa: E501
3521
+ auth_settings=auth_settings,
3522
+ async_req=params.get('async_req'),
3523
+ _return_http_data_only=params.get('_return_http_data_only'),
3524
+ _preload_content=params.get('_preload_content', True),
3525
+ _request_timeout=params.get('_request_timeout'),
3526
+ collection_formats=collection_formats)