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
@@ -0,0 +1,851 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ graph
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: common-version
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+ from volcenginesdkcore.configuration import Configuration
20
+
21
+
22
+ class VeGraphInfoForListGraphRagServiceOutput(object):
23
+ """NOTE: This class is auto generated by the swagger code generator program.
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ swagger_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ swagger_types = {
36
+ 'availability_zone_id': 'str',
37
+ 'availability_zones': 'list[AvailabilityZoneForListGraphRagServiceOutput]',
38
+ 'bg3_link': 'str',
39
+ 'bg3_links': 'list[Bg3LinkForListGraphRagServiceOutput]',
40
+ 'create_time': 'str',
41
+ 'creator': 'str',
42
+ 'deletion_protection': 'str',
43
+ 'disk_space': 'int',
44
+ 'disk_used': 'int',
45
+ 'expire_time': 'str',
46
+ 'graph_version': 'str',
47
+ 'id': 'str',
48
+ 'image_info': 'ImageInfoForListGraphRagServiceOutput',
49
+ 'ins_spec': 'InsSpecForListGraphRagServiceOutput',
50
+ 'k8s_domain': 'str',
51
+ 'maintenance_time': 'str',
52
+ 'mode': 'str',
53
+ 'name': 'str',
54
+ 'node_num': 'int',
55
+ 'project_name': 'str',
56
+ 'region_id': 'str',
57
+ 'status': 'str',
58
+ 'storage_info': 'StorageInfoForListGraphRagServiceOutput',
59
+ 'subnet_id': 'str',
60
+ 'subnet_name': 'str',
61
+ 'tags': 'list[TagForListGraphRagServiceOutput]',
62
+ 'trade_no': 'str',
63
+ 'vpc_id': 'str',
64
+ 'vpc_name': 'str'
65
+ }
66
+
67
+ attribute_map = {
68
+ 'availability_zone_id': 'AvailabilityZoneId',
69
+ 'availability_zones': 'AvailabilityZones',
70
+ 'bg3_link': 'Bg3Link',
71
+ 'bg3_links': 'Bg3Links',
72
+ 'create_time': 'CreateTime',
73
+ 'creator': 'Creator',
74
+ 'deletion_protection': 'DeletionProtection',
75
+ 'disk_space': 'DiskSpace',
76
+ 'disk_used': 'DiskUsed',
77
+ 'expire_time': 'ExpireTime',
78
+ 'graph_version': 'GraphVersion',
79
+ 'id': 'Id',
80
+ 'image_info': 'ImageInfo',
81
+ 'ins_spec': 'InsSpec',
82
+ 'k8s_domain': 'K8sDomain',
83
+ 'maintenance_time': 'MaintenanceTime',
84
+ 'mode': 'Mode',
85
+ 'name': 'Name',
86
+ 'node_num': 'NodeNum',
87
+ 'project_name': 'ProjectName',
88
+ 'region_id': 'RegionId',
89
+ 'status': 'Status',
90
+ 'storage_info': 'StorageInfo',
91
+ 'subnet_id': 'SubnetID',
92
+ 'subnet_name': 'SubnetName',
93
+ 'tags': 'Tags',
94
+ 'trade_no': 'TradeNO',
95
+ 'vpc_id': 'VpcId',
96
+ 'vpc_name': 'VpcName'
97
+ }
98
+
99
+ def __init__(self, availability_zone_id=None, availability_zones=None, bg3_link=None, bg3_links=None, create_time=None, creator=None, deletion_protection=None, disk_space=None, disk_used=None, expire_time=None, graph_version=None, id=None, image_info=None, ins_spec=None, k8s_domain=None, maintenance_time=None, mode=None, name=None, node_num=None, project_name=None, region_id=None, status=None, storage_info=None, subnet_id=None, subnet_name=None, tags=None, trade_no=None, vpc_id=None, vpc_name=None, _configuration=None): # noqa: E501
100
+ """VeGraphInfoForListGraphRagServiceOutput - a model defined in Swagger""" # noqa: E501
101
+ if _configuration is None:
102
+ _configuration = Configuration()
103
+ self._configuration = _configuration
104
+
105
+ self._availability_zone_id = None
106
+ self._availability_zones = None
107
+ self._bg3_link = None
108
+ self._bg3_links = None
109
+ self._create_time = None
110
+ self._creator = None
111
+ self._deletion_protection = None
112
+ self._disk_space = None
113
+ self._disk_used = None
114
+ self._expire_time = None
115
+ self._graph_version = None
116
+ self._id = None
117
+ self._image_info = None
118
+ self._ins_spec = None
119
+ self._k8s_domain = None
120
+ self._maintenance_time = None
121
+ self._mode = None
122
+ self._name = None
123
+ self._node_num = None
124
+ self._project_name = None
125
+ self._region_id = None
126
+ self._status = None
127
+ self._storage_info = None
128
+ self._subnet_id = None
129
+ self._subnet_name = None
130
+ self._tags = None
131
+ self._trade_no = None
132
+ self._vpc_id = None
133
+ self._vpc_name = None
134
+ self.discriminator = None
135
+
136
+ if availability_zone_id is not None:
137
+ self.availability_zone_id = availability_zone_id
138
+ if availability_zones is not None:
139
+ self.availability_zones = availability_zones
140
+ if bg3_link is not None:
141
+ self.bg3_link = bg3_link
142
+ if bg3_links is not None:
143
+ self.bg3_links = bg3_links
144
+ if create_time is not None:
145
+ self.create_time = create_time
146
+ if creator is not None:
147
+ self.creator = creator
148
+ if deletion_protection is not None:
149
+ self.deletion_protection = deletion_protection
150
+ if disk_space is not None:
151
+ self.disk_space = disk_space
152
+ if disk_used is not None:
153
+ self.disk_used = disk_used
154
+ if expire_time is not None:
155
+ self.expire_time = expire_time
156
+ if graph_version is not None:
157
+ self.graph_version = graph_version
158
+ if id is not None:
159
+ self.id = id
160
+ if image_info is not None:
161
+ self.image_info = image_info
162
+ if ins_spec is not None:
163
+ self.ins_spec = ins_spec
164
+ if k8s_domain is not None:
165
+ self.k8s_domain = k8s_domain
166
+ if maintenance_time is not None:
167
+ self.maintenance_time = maintenance_time
168
+ if mode is not None:
169
+ self.mode = mode
170
+ if name is not None:
171
+ self.name = name
172
+ if node_num is not None:
173
+ self.node_num = node_num
174
+ if project_name is not None:
175
+ self.project_name = project_name
176
+ if region_id is not None:
177
+ self.region_id = region_id
178
+ if status is not None:
179
+ self.status = status
180
+ if storage_info is not None:
181
+ self.storage_info = storage_info
182
+ if subnet_id is not None:
183
+ self.subnet_id = subnet_id
184
+ if subnet_name is not None:
185
+ self.subnet_name = subnet_name
186
+ if tags is not None:
187
+ self.tags = tags
188
+ if trade_no is not None:
189
+ self.trade_no = trade_no
190
+ if vpc_id is not None:
191
+ self.vpc_id = vpc_id
192
+ if vpc_name is not None:
193
+ self.vpc_name = vpc_name
194
+
195
+ @property
196
+ def availability_zone_id(self):
197
+ """Gets the availability_zone_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
198
+
199
+
200
+ :return: The availability_zone_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
201
+ :rtype: str
202
+ """
203
+ return self._availability_zone_id
204
+
205
+ @availability_zone_id.setter
206
+ def availability_zone_id(self, availability_zone_id):
207
+ """Sets the availability_zone_id of this VeGraphInfoForListGraphRagServiceOutput.
208
+
209
+
210
+ :param availability_zone_id: The availability_zone_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
211
+ :type: str
212
+ """
213
+
214
+ self._availability_zone_id = availability_zone_id
215
+
216
+ @property
217
+ def availability_zones(self):
218
+ """Gets the availability_zones of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
219
+
220
+
221
+ :return: The availability_zones of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
222
+ :rtype: list[AvailabilityZoneForListGraphRagServiceOutput]
223
+ """
224
+ return self._availability_zones
225
+
226
+ @availability_zones.setter
227
+ def availability_zones(self, availability_zones):
228
+ """Sets the availability_zones of this VeGraphInfoForListGraphRagServiceOutput.
229
+
230
+
231
+ :param availability_zones: The availability_zones of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
232
+ :type: list[AvailabilityZoneForListGraphRagServiceOutput]
233
+ """
234
+
235
+ self._availability_zones = availability_zones
236
+
237
+ @property
238
+ def bg3_link(self):
239
+ """Gets the bg3_link of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
240
+
241
+
242
+ :return: The bg3_link of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
243
+ :rtype: str
244
+ """
245
+ return self._bg3_link
246
+
247
+ @bg3_link.setter
248
+ def bg3_link(self, bg3_link):
249
+ """Sets the bg3_link of this VeGraphInfoForListGraphRagServiceOutput.
250
+
251
+
252
+ :param bg3_link: The bg3_link of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
253
+ :type: str
254
+ """
255
+
256
+ self._bg3_link = bg3_link
257
+
258
+ @property
259
+ def bg3_links(self):
260
+ """Gets the bg3_links of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
261
+
262
+
263
+ :return: The bg3_links of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
264
+ :rtype: list[Bg3LinkForListGraphRagServiceOutput]
265
+ """
266
+ return self._bg3_links
267
+
268
+ @bg3_links.setter
269
+ def bg3_links(self, bg3_links):
270
+ """Sets the bg3_links of this VeGraphInfoForListGraphRagServiceOutput.
271
+
272
+
273
+ :param bg3_links: The bg3_links of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
274
+ :type: list[Bg3LinkForListGraphRagServiceOutput]
275
+ """
276
+
277
+ self._bg3_links = bg3_links
278
+
279
+ @property
280
+ def create_time(self):
281
+ """Gets the create_time of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
282
+
283
+
284
+ :return: The create_time of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
285
+ :rtype: str
286
+ """
287
+ return self._create_time
288
+
289
+ @create_time.setter
290
+ def create_time(self, create_time):
291
+ """Sets the create_time of this VeGraphInfoForListGraphRagServiceOutput.
292
+
293
+
294
+ :param create_time: The create_time of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
295
+ :type: str
296
+ """
297
+
298
+ self._create_time = create_time
299
+
300
+ @property
301
+ def creator(self):
302
+ """Gets the creator of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
303
+
304
+
305
+ :return: The creator of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
306
+ :rtype: str
307
+ """
308
+ return self._creator
309
+
310
+ @creator.setter
311
+ def creator(self, creator):
312
+ """Sets the creator of this VeGraphInfoForListGraphRagServiceOutput.
313
+
314
+
315
+ :param creator: The creator of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
316
+ :type: str
317
+ """
318
+
319
+ self._creator = creator
320
+
321
+ @property
322
+ def deletion_protection(self):
323
+ """Gets the deletion_protection of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
324
+
325
+
326
+ :return: The deletion_protection of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
327
+ :rtype: str
328
+ """
329
+ return self._deletion_protection
330
+
331
+ @deletion_protection.setter
332
+ def deletion_protection(self, deletion_protection):
333
+ """Sets the deletion_protection of this VeGraphInfoForListGraphRagServiceOutput.
334
+
335
+
336
+ :param deletion_protection: The deletion_protection of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
337
+ :type: str
338
+ """
339
+
340
+ self._deletion_protection = deletion_protection
341
+
342
+ @property
343
+ def disk_space(self):
344
+ """Gets the disk_space of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
345
+
346
+
347
+ :return: The disk_space of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
348
+ :rtype: int
349
+ """
350
+ return self._disk_space
351
+
352
+ @disk_space.setter
353
+ def disk_space(self, disk_space):
354
+ """Sets the disk_space of this VeGraphInfoForListGraphRagServiceOutput.
355
+
356
+
357
+ :param disk_space: The disk_space of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
358
+ :type: int
359
+ """
360
+
361
+ self._disk_space = disk_space
362
+
363
+ @property
364
+ def disk_used(self):
365
+ """Gets the disk_used of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
366
+
367
+
368
+ :return: The disk_used of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
369
+ :rtype: int
370
+ """
371
+ return self._disk_used
372
+
373
+ @disk_used.setter
374
+ def disk_used(self, disk_used):
375
+ """Sets the disk_used of this VeGraphInfoForListGraphRagServiceOutput.
376
+
377
+
378
+ :param disk_used: The disk_used of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
379
+ :type: int
380
+ """
381
+
382
+ self._disk_used = disk_used
383
+
384
+ @property
385
+ def expire_time(self):
386
+ """Gets the expire_time of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
387
+
388
+
389
+ :return: The expire_time of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
390
+ :rtype: str
391
+ """
392
+ return self._expire_time
393
+
394
+ @expire_time.setter
395
+ def expire_time(self, expire_time):
396
+ """Sets the expire_time of this VeGraphInfoForListGraphRagServiceOutput.
397
+
398
+
399
+ :param expire_time: The expire_time of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
400
+ :type: str
401
+ """
402
+
403
+ self._expire_time = expire_time
404
+
405
+ @property
406
+ def graph_version(self):
407
+ """Gets the graph_version of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
408
+
409
+
410
+ :return: The graph_version of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
411
+ :rtype: str
412
+ """
413
+ return self._graph_version
414
+
415
+ @graph_version.setter
416
+ def graph_version(self, graph_version):
417
+ """Sets the graph_version of this VeGraphInfoForListGraphRagServiceOutput.
418
+
419
+
420
+ :param graph_version: The graph_version of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
421
+ :type: str
422
+ """
423
+
424
+ self._graph_version = graph_version
425
+
426
+ @property
427
+ def id(self):
428
+ """Gets the id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
429
+
430
+
431
+ :return: The id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
432
+ :rtype: str
433
+ """
434
+ return self._id
435
+
436
+ @id.setter
437
+ def id(self, id):
438
+ """Sets the id of this VeGraphInfoForListGraphRagServiceOutput.
439
+
440
+
441
+ :param id: The id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
442
+ :type: str
443
+ """
444
+
445
+ self._id = id
446
+
447
+ @property
448
+ def image_info(self):
449
+ """Gets the image_info of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
450
+
451
+
452
+ :return: The image_info of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
453
+ :rtype: ImageInfoForListGraphRagServiceOutput
454
+ """
455
+ return self._image_info
456
+
457
+ @image_info.setter
458
+ def image_info(self, image_info):
459
+ """Sets the image_info of this VeGraphInfoForListGraphRagServiceOutput.
460
+
461
+
462
+ :param image_info: The image_info of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
463
+ :type: ImageInfoForListGraphRagServiceOutput
464
+ """
465
+
466
+ self._image_info = image_info
467
+
468
+ @property
469
+ def ins_spec(self):
470
+ """Gets the ins_spec of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
471
+
472
+
473
+ :return: The ins_spec of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
474
+ :rtype: InsSpecForListGraphRagServiceOutput
475
+ """
476
+ return self._ins_spec
477
+
478
+ @ins_spec.setter
479
+ def ins_spec(self, ins_spec):
480
+ """Sets the ins_spec of this VeGraphInfoForListGraphRagServiceOutput.
481
+
482
+
483
+ :param ins_spec: The ins_spec of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
484
+ :type: InsSpecForListGraphRagServiceOutput
485
+ """
486
+
487
+ self._ins_spec = ins_spec
488
+
489
+ @property
490
+ def k8s_domain(self):
491
+ """Gets the k8s_domain of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
492
+
493
+
494
+ :return: The k8s_domain of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
495
+ :rtype: str
496
+ """
497
+ return self._k8s_domain
498
+
499
+ @k8s_domain.setter
500
+ def k8s_domain(self, k8s_domain):
501
+ """Sets the k8s_domain of this VeGraphInfoForListGraphRagServiceOutput.
502
+
503
+
504
+ :param k8s_domain: The k8s_domain of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
505
+ :type: str
506
+ """
507
+
508
+ self._k8s_domain = k8s_domain
509
+
510
+ @property
511
+ def maintenance_time(self):
512
+ """Gets the maintenance_time of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
513
+
514
+
515
+ :return: The maintenance_time of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
516
+ :rtype: str
517
+ """
518
+ return self._maintenance_time
519
+
520
+ @maintenance_time.setter
521
+ def maintenance_time(self, maintenance_time):
522
+ """Sets the maintenance_time of this VeGraphInfoForListGraphRagServiceOutput.
523
+
524
+
525
+ :param maintenance_time: The maintenance_time of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
526
+ :type: str
527
+ """
528
+
529
+ self._maintenance_time = maintenance_time
530
+
531
+ @property
532
+ def mode(self):
533
+ """Gets the mode of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
534
+
535
+
536
+ :return: The mode of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
537
+ :rtype: str
538
+ """
539
+ return self._mode
540
+
541
+ @mode.setter
542
+ def mode(self, mode):
543
+ """Sets the mode of this VeGraphInfoForListGraphRagServiceOutput.
544
+
545
+
546
+ :param mode: The mode of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
547
+ :type: str
548
+ """
549
+
550
+ self._mode = mode
551
+
552
+ @property
553
+ def name(self):
554
+ """Gets the name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
555
+
556
+
557
+ :return: The name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
558
+ :rtype: str
559
+ """
560
+ return self._name
561
+
562
+ @name.setter
563
+ def name(self, name):
564
+ """Sets the name of this VeGraphInfoForListGraphRagServiceOutput.
565
+
566
+
567
+ :param name: The name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
568
+ :type: str
569
+ """
570
+
571
+ self._name = name
572
+
573
+ @property
574
+ def node_num(self):
575
+ """Gets the node_num of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
576
+
577
+
578
+ :return: The node_num of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
579
+ :rtype: int
580
+ """
581
+ return self._node_num
582
+
583
+ @node_num.setter
584
+ def node_num(self, node_num):
585
+ """Sets the node_num of this VeGraphInfoForListGraphRagServiceOutput.
586
+
587
+
588
+ :param node_num: The node_num of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
589
+ :type: int
590
+ """
591
+
592
+ self._node_num = node_num
593
+
594
+ @property
595
+ def project_name(self):
596
+ """Gets the project_name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
597
+
598
+
599
+ :return: The project_name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
600
+ :rtype: str
601
+ """
602
+ return self._project_name
603
+
604
+ @project_name.setter
605
+ def project_name(self, project_name):
606
+ """Sets the project_name of this VeGraphInfoForListGraphRagServiceOutput.
607
+
608
+
609
+ :param project_name: The project_name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
610
+ :type: str
611
+ """
612
+
613
+ self._project_name = project_name
614
+
615
+ @property
616
+ def region_id(self):
617
+ """Gets the region_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
618
+
619
+
620
+ :return: The region_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
621
+ :rtype: str
622
+ """
623
+ return self._region_id
624
+
625
+ @region_id.setter
626
+ def region_id(self, region_id):
627
+ """Sets the region_id of this VeGraphInfoForListGraphRagServiceOutput.
628
+
629
+
630
+ :param region_id: The region_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
631
+ :type: str
632
+ """
633
+
634
+ self._region_id = region_id
635
+
636
+ @property
637
+ def status(self):
638
+ """Gets the status of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
639
+
640
+
641
+ :return: The status of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
642
+ :rtype: str
643
+ """
644
+ return self._status
645
+
646
+ @status.setter
647
+ def status(self, status):
648
+ """Sets the status of this VeGraphInfoForListGraphRagServiceOutput.
649
+
650
+
651
+ :param status: The status of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
652
+ :type: str
653
+ """
654
+
655
+ self._status = status
656
+
657
+ @property
658
+ def storage_info(self):
659
+ """Gets the storage_info of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
660
+
661
+
662
+ :return: The storage_info of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
663
+ :rtype: StorageInfoForListGraphRagServiceOutput
664
+ """
665
+ return self._storage_info
666
+
667
+ @storage_info.setter
668
+ def storage_info(self, storage_info):
669
+ """Sets the storage_info of this VeGraphInfoForListGraphRagServiceOutput.
670
+
671
+
672
+ :param storage_info: The storage_info of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
673
+ :type: StorageInfoForListGraphRagServiceOutput
674
+ """
675
+
676
+ self._storage_info = storage_info
677
+
678
+ @property
679
+ def subnet_id(self):
680
+ """Gets the subnet_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
681
+
682
+
683
+ :return: The subnet_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
684
+ :rtype: str
685
+ """
686
+ return self._subnet_id
687
+
688
+ @subnet_id.setter
689
+ def subnet_id(self, subnet_id):
690
+ """Sets the subnet_id of this VeGraphInfoForListGraphRagServiceOutput.
691
+
692
+
693
+ :param subnet_id: The subnet_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
694
+ :type: str
695
+ """
696
+
697
+ self._subnet_id = subnet_id
698
+
699
+ @property
700
+ def subnet_name(self):
701
+ """Gets the subnet_name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
702
+
703
+
704
+ :return: The subnet_name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
705
+ :rtype: str
706
+ """
707
+ return self._subnet_name
708
+
709
+ @subnet_name.setter
710
+ def subnet_name(self, subnet_name):
711
+ """Sets the subnet_name of this VeGraphInfoForListGraphRagServiceOutput.
712
+
713
+
714
+ :param subnet_name: The subnet_name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
715
+ :type: str
716
+ """
717
+
718
+ self._subnet_name = subnet_name
719
+
720
+ @property
721
+ def tags(self):
722
+ """Gets the tags of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
723
+
724
+
725
+ :return: The tags of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
726
+ :rtype: list[TagForListGraphRagServiceOutput]
727
+ """
728
+ return self._tags
729
+
730
+ @tags.setter
731
+ def tags(self, tags):
732
+ """Sets the tags of this VeGraphInfoForListGraphRagServiceOutput.
733
+
734
+
735
+ :param tags: The tags of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
736
+ :type: list[TagForListGraphRagServiceOutput]
737
+ """
738
+
739
+ self._tags = tags
740
+
741
+ @property
742
+ def trade_no(self):
743
+ """Gets the trade_no of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
744
+
745
+
746
+ :return: The trade_no of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
747
+ :rtype: str
748
+ """
749
+ return self._trade_no
750
+
751
+ @trade_no.setter
752
+ def trade_no(self, trade_no):
753
+ """Sets the trade_no of this VeGraphInfoForListGraphRagServiceOutput.
754
+
755
+
756
+ :param trade_no: The trade_no of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
757
+ :type: str
758
+ """
759
+
760
+ self._trade_no = trade_no
761
+
762
+ @property
763
+ def vpc_id(self):
764
+ """Gets the vpc_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
765
+
766
+
767
+ :return: The vpc_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
768
+ :rtype: str
769
+ """
770
+ return self._vpc_id
771
+
772
+ @vpc_id.setter
773
+ def vpc_id(self, vpc_id):
774
+ """Sets the vpc_id of this VeGraphInfoForListGraphRagServiceOutput.
775
+
776
+
777
+ :param vpc_id: The vpc_id of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
778
+ :type: str
779
+ """
780
+
781
+ self._vpc_id = vpc_id
782
+
783
+ @property
784
+ def vpc_name(self):
785
+ """Gets the vpc_name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
786
+
787
+
788
+ :return: The vpc_name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
789
+ :rtype: str
790
+ """
791
+ return self._vpc_name
792
+
793
+ @vpc_name.setter
794
+ def vpc_name(self, vpc_name):
795
+ """Sets the vpc_name of this VeGraphInfoForListGraphRagServiceOutput.
796
+
797
+
798
+ :param vpc_name: The vpc_name of this VeGraphInfoForListGraphRagServiceOutput. # noqa: E501
799
+ :type: str
800
+ """
801
+
802
+ self._vpc_name = vpc_name
803
+
804
+ def to_dict(self):
805
+ """Returns the model properties as a dict"""
806
+ result = {}
807
+
808
+ for attr, _ in six.iteritems(self.swagger_types):
809
+ value = getattr(self, attr)
810
+ if isinstance(value, list):
811
+ result[attr] = list(map(
812
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
813
+ value
814
+ ))
815
+ elif hasattr(value, "to_dict"):
816
+ result[attr] = value.to_dict()
817
+ elif isinstance(value, dict):
818
+ result[attr] = dict(map(
819
+ lambda item: (item[0], item[1].to_dict())
820
+ if hasattr(item[1], "to_dict") else item,
821
+ value.items()
822
+ ))
823
+ else:
824
+ result[attr] = value
825
+ if issubclass(VeGraphInfoForListGraphRagServiceOutput, dict):
826
+ for key, value in self.items():
827
+ result[key] = value
828
+
829
+ return result
830
+
831
+ def to_str(self):
832
+ """Returns the string representation of the model"""
833
+ return pprint.pformat(self.to_dict())
834
+
835
+ def __repr__(self):
836
+ """For `print` and `pprint`"""
837
+ return self.to_str()
838
+
839
+ def __eq__(self, other):
840
+ """Returns true if both objects are equal"""
841
+ if not isinstance(other, VeGraphInfoForListGraphRagServiceOutput):
842
+ return False
843
+
844
+ return self.to_dict() == other.to_dict()
845
+
846
+ def __ne__(self, other):
847
+ """Returns true if both objects are not equal"""
848
+ if not isinstance(other, VeGraphInfoForListGraphRagServiceOutput):
849
+ return True
850
+
851
+ return self.to_dict() != other.to_dict()