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,799 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ acep
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 RowForListBackupDataOutput(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
+ 'aosp_version': 'str',
37
+ 'account_id': 'str',
38
+ 'backup_data_id': 'str',
39
+ 'backup_data_name': 'str',
40
+ 'backup_job_id': 'str',
41
+ 'backup_size': 'int',
42
+ 'backup_task_id': 'str',
43
+ 'backup_type': 'str',
44
+ 'completed_time': 'int',
45
+ 'compression_type': 'str',
46
+ 'created_time': 'int',
47
+ 'data_size': 'int',
48
+ 'description': 'str',
49
+ 'detail': 'str',
50
+ 'expire_time': 'int',
51
+ 'finished_time': 'int',
52
+ 'in_use_count': 'int',
53
+ 'md5_sum': 'str',
54
+ 'product_id': 'str',
55
+ 'restore_count': 'int',
56
+ 'size': 'int',
57
+ 'source_pod_id': 'str',
58
+ 'started_time': 'int',
59
+ 'status': 'str',
60
+ 'storage_resource': 'str',
61
+ 'storage_type': 'str',
62
+ 'updated_time': 'int'
63
+ }
64
+
65
+ attribute_map = {
66
+ 'aosp_version': 'AOSPVersion',
67
+ 'account_id': 'AccountId',
68
+ 'backup_data_id': 'BackupDataId',
69
+ 'backup_data_name': 'BackupDataName',
70
+ 'backup_job_id': 'BackupJobId',
71
+ 'backup_size': 'BackupSize',
72
+ 'backup_task_id': 'BackupTaskId',
73
+ 'backup_type': 'BackupType',
74
+ 'completed_time': 'CompletedTime',
75
+ 'compression_type': 'CompressionType',
76
+ 'created_time': 'CreatedTime',
77
+ 'data_size': 'DataSize',
78
+ 'description': 'Description',
79
+ 'detail': 'Detail',
80
+ 'expire_time': 'ExpireTime',
81
+ 'finished_time': 'FinishedTime',
82
+ 'in_use_count': 'InUseCount',
83
+ 'md5_sum': 'Md5Sum',
84
+ 'product_id': 'ProductId',
85
+ 'restore_count': 'RestoreCount',
86
+ 'size': 'Size',
87
+ 'source_pod_id': 'SourcePodId',
88
+ 'started_time': 'StartedTime',
89
+ 'status': 'Status',
90
+ 'storage_resource': 'StorageResource',
91
+ 'storage_type': 'StorageType',
92
+ 'updated_time': 'UpdatedTime'
93
+ }
94
+
95
+ def __init__(self, aosp_version=None, account_id=None, backup_data_id=None, backup_data_name=None, backup_job_id=None, backup_size=None, backup_task_id=None, backup_type=None, completed_time=None, compression_type=None, created_time=None, data_size=None, description=None, detail=None, expire_time=None, finished_time=None, in_use_count=None, md5_sum=None, product_id=None, restore_count=None, size=None, source_pod_id=None, started_time=None, status=None, storage_resource=None, storage_type=None, updated_time=None, _configuration=None): # noqa: E501
96
+ """RowForListBackupDataOutput - a model defined in Swagger""" # noqa: E501
97
+ if _configuration is None:
98
+ _configuration = Configuration()
99
+ self._configuration = _configuration
100
+
101
+ self._aosp_version = None
102
+ self._account_id = None
103
+ self._backup_data_id = None
104
+ self._backup_data_name = None
105
+ self._backup_job_id = None
106
+ self._backup_size = None
107
+ self._backup_task_id = None
108
+ self._backup_type = None
109
+ self._completed_time = None
110
+ self._compression_type = None
111
+ self._created_time = None
112
+ self._data_size = None
113
+ self._description = None
114
+ self._detail = None
115
+ self._expire_time = None
116
+ self._finished_time = None
117
+ self._in_use_count = None
118
+ self._md5_sum = None
119
+ self._product_id = None
120
+ self._restore_count = None
121
+ self._size = None
122
+ self._source_pod_id = None
123
+ self._started_time = None
124
+ self._status = None
125
+ self._storage_resource = None
126
+ self._storage_type = None
127
+ self._updated_time = None
128
+ self.discriminator = None
129
+
130
+ if aosp_version is not None:
131
+ self.aosp_version = aosp_version
132
+ if account_id is not None:
133
+ self.account_id = account_id
134
+ if backup_data_id is not None:
135
+ self.backup_data_id = backup_data_id
136
+ if backup_data_name is not None:
137
+ self.backup_data_name = backup_data_name
138
+ if backup_job_id is not None:
139
+ self.backup_job_id = backup_job_id
140
+ if backup_size is not None:
141
+ self.backup_size = backup_size
142
+ if backup_task_id is not None:
143
+ self.backup_task_id = backup_task_id
144
+ if backup_type is not None:
145
+ self.backup_type = backup_type
146
+ if completed_time is not None:
147
+ self.completed_time = completed_time
148
+ if compression_type is not None:
149
+ self.compression_type = compression_type
150
+ if created_time is not None:
151
+ self.created_time = created_time
152
+ if data_size is not None:
153
+ self.data_size = data_size
154
+ if description is not None:
155
+ self.description = description
156
+ if detail is not None:
157
+ self.detail = detail
158
+ if expire_time is not None:
159
+ self.expire_time = expire_time
160
+ if finished_time is not None:
161
+ self.finished_time = finished_time
162
+ if in_use_count is not None:
163
+ self.in_use_count = in_use_count
164
+ if md5_sum is not None:
165
+ self.md5_sum = md5_sum
166
+ if product_id is not None:
167
+ self.product_id = product_id
168
+ if restore_count is not None:
169
+ self.restore_count = restore_count
170
+ if size is not None:
171
+ self.size = size
172
+ if source_pod_id is not None:
173
+ self.source_pod_id = source_pod_id
174
+ if started_time is not None:
175
+ self.started_time = started_time
176
+ if status is not None:
177
+ self.status = status
178
+ if storage_resource is not None:
179
+ self.storage_resource = storage_resource
180
+ if storage_type is not None:
181
+ self.storage_type = storage_type
182
+ if updated_time is not None:
183
+ self.updated_time = updated_time
184
+
185
+ @property
186
+ def aosp_version(self):
187
+ """Gets the aosp_version of this RowForListBackupDataOutput. # noqa: E501
188
+
189
+
190
+ :return: The aosp_version of this RowForListBackupDataOutput. # noqa: E501
191
+ :rtype: str
192
+ """
193
+ return self._aosp_version
194
+
195
+ @aosp_version.setter
196
+ def aosp_version(self, aosp_version):
197
+ """Sets the aosp_version of this RowForListBackupDataOutput.
198
+
199
+
200
+ :param aosp_version: The aosp_version of this RowForListBackupDataOutput. # noqa: E501
201
+ :type: str
202
+ """
203
+
204
+ self._aosp_version = aosp_version
205
+
206
+ @property
207
+ def account_id(self):
208
+ """Gets the account_id of this RowForListBackupDataOutput. # noqa: E501
209
+
210
+
211
+ :return: The account_id of this RowForListBackupDataOutput. # noqa: E501
212
+ :rtype: str
213
+ """
214
+ return self._account_id
215
+
216
+ @account_id.setter
217
+ def account_id(self, account_id):
218
+ """Sets the account_id of this RowForListBackupDataOutput.
219
+
220
+
221
+ :param account_id: The account_id of this RowForListBackupDataOutput. # noqa: E501
222
+ :type: str
223
+ """
224
+
225
+ self._account_id = account_id
226
+
227
+ @property
228
+ def backup_data_id(self):
229
+ """Gets the backup_data_id of this RowForListBackupDataOutput. # noqa: E501
230
+
231
+
232
+ :return: The backup_data_id of this RowForListBackupDataOutput. # noqa: E501
233
+ :rtype: str
234
+ """
235
+ return self._backup_data_id
236
+
237
+ @backup_data_id.setter
238
+ def backup_data_id(self, backup_data_id):
239
+ """Sets the backup_data_id of this RowForListBackupDataOutput.
240
+
241
+
242
+ :param backup_data_id: The backup_data_id of this RowForListBackupDataOutput. # noqa: E501
243
+ :type: str
244
+ """
245
+
246
+ self._backup_data_id = backup_data_id
247
+
248
+ @property
249
+ def backup_data_name(self):
250
+ """Gets the backup_data_name of this RowForListBackupDataOutput. # noqa: E501
251
+
252
+
253
+ :return: The backup_data_name of this RowForListBackupDataOutput. # noqa: E501
254
+ :rtype: str
255
+ """
256
+ return self._backup_data_name
257
+
258
+ @backup_data_name.setter
259
+ def backup_data_name(self, backup_data_name):
260
+ """Sets the backup_data_name of this RowForListBackupDataOutput.
261
+
262
+
263
+ :param backup_data_name: The backup_data_name of this RowForListBackupDataOutput. # noqa: E501
264
+ :type: str
265
+ """
266
+
267
+ self._backup_data_name = backup_data_name
268
+
269
+ @property
270
+ def backup_job_id(self):
271
+ """Gets the backup_job_id of this RowForListBackupDataOutput. # noqa: E501
272
+
273
+
274
+ :return: The backup_job_id of this RowForListBackupDataOutput. # noqa: E501
275
+ :rtype: str
276
+ """
277
+ return self._backup_job_id
278
+
279
+ @backup_job_id.setter
280
+ def backup_job_id(self, backup_job_id):
281
+ """Sets the backup_job_id of this RowForListBackupDataOutput.
282
+
283
+
284
+ :param backup_job_id: The backup_job_id of this RowForListBackupDataOutput. # noqa: E501
285
+ :type: str
286
+ """
287
+
288
+ self._backup_job_id = backup_job_id
289
+
290
+ @property
291
+ def backup_size(self):
292
+ """Gets the backup_size of this RowForListBackupDataOutput. # noqa: E501
293
+
294
+
295
+ :return: The backup_size of this RowForListBackupDataOutput. # noqa: E501
296
+ :rtype: int
297
+ """
298
+ return self._backup_size
299
+
300
+ @backup_size.setter
301
+ def backup_size(self, backup_size):
302
+ """Sets the backup_size of this RowForListBackupDataOutput.
303
+
304
+
305
+ :param backup_size: The backup_size of this RowForListBackupDataOutput. # noqa: E501
306
+ :type: int
307
+ """
308
+
309
+ self._backup_size = backup_size
310
+
311
+ @property
312
+ def backup_task_id(self):
313
+ """Gets the backup_task_id of this RowForListBackupDataOutput. # noqa: E501
314
+
315
+
316
+ :return: The backup_task_id of this RowForListBackupDataOutput. # noqa: E501
317
+ :rtype: str
318
+ """
319
+ return self._backup_task_id
320
+
321
+ @backup_task_id.setter
322
+ def backup_task_id(self, backup_task_id):
323
+ """Sets the backup_task_id of this RowForListBackupDataOutput.
324
+
325
+
326
+ :param backup_task_id: The backup_task_id of this RowForListBackupDataOutput. # noqa: E501
327
+ :type: str
328
+ """
329
+
330
+ self._backup_task_id = backup_task_id
331
+
332
+ @property
333
+ def backup_type(self):
334
+ """Gets the backup_type of this RowForListBackupDataOutput. # noqa: E501
335
+
336
+
337
+ :return: The backup_type of this RowForListBackupDataOutput. # noqa: E501
338
+ :rtype: str
339
+ """
340
+ return self._backup_type
341
+
342
+ @backup_type.setter
343
+ def backup_type(self, backup_type):
344
+ """Sets the backup_type of this RowForListBackupDataOutput.
345
+
346
+
347
+ :param backup_type: The backup_type of this RowForListBackupDataOutput. # noqa: E501
348
+ :type: str
349
+ """
350
+
351
+ self._backup_type = backup_type
352
+
353
+ @property
354
+ def completed_time(self):
355
+ """Gets the completed_time of this RowForListBackupDataOutput. # noqa: E501
356
+
357
+
358
+ :return: The completed_time of this RowForListBackupDataOutput. # noqa: E501
359
+ :rtype: int
360
+ """
361
+ return self._completed_time
362
+
363
+ @completed_time.setter
364
+ def completed_time(self, completed_time):
365
+ """Sets the completed_time of this RowForListBackupDataOutput.
366
+
367
+
368
+ :param completed_time: The completed_time of this RowForListBackupDataOutput. # noqa: E501
369
+ :type: int
370
+ """
371
+
372
+ self._completed_time = completed_time
373
+
374
+ @property
375
+ def compression_type(self):
376
+ """Gets the compression_type of this RowForListBackupDataOutput. # noqa: E501
377
+
378
+
379
+ :return: The compression_type of this RowForListBackupDataOutput. # noqa: E501
380
+ :rtype: str
381
+ """
382
+ return self._compression_type
383
+
384
+ @compression_type.setter
385
+ def compression_type(self, compression_type):
386
+ """Sets the compression_type of this RowForListBackupDataOutput.
387
+
388
+
389
+ :param compression_type: The compression_type of this RowForListBackupDataOutput. # noqa: E501
390
+ :type: str
391
+ """
392
+
393
+ self._compression_type = compression_type
394
+
395
+ @property
396
+ def created_time(self):
397
+ """Gets the created_time of this RowForListBackupDataOutput. # noqa: E501
398
+
399
+
400
+ :return: The created_time of this RowForListBackupDataOutput. # noqa: E501
401
+ :rtype: int
402
+ """
403
+ return self._created_time
404
+
405
+ @created_time.setter
406
+ def created_time(self, created_time):
407
+ """Sets the created_time of this RowForListBackupDataOutput.
408
+
409
+
410
+ :param created_time: The created_time of this RowForListBackupDataOutput. # noqa: E501
411
+ :type: int
412
+ """
413
+
414
+ self._created_time = created_time
415
+
416
+ @property
417
+ def data_size(self):
418
+ """Gets the data_size of this RowForListBackupDataOutput. # noqa: E501
419
+
420
+
421
+ :return: The data_size of this RowForListBackupDataOutput. # noqa: E501
422
+ :rtype: int
423
+ """
424
+ return self._data_size
425
+
426
+ @data_size.setter
427
+ def data_size(self, data_size):
428
+ """Sets the data_size of this RowForListBackupDataOutput.
429
+
430
+
431
+ :param data_size: The data_size of this RowForListBackupDataOutput. # noqa: E501
432
+ :type: int
433
+ """
434
+
435
+ self._data_size = data_size
436
+
437
+ @property
438
+ def description(self):
439
+ """Gets the description of this RowForListBackupDataOutput. # noqa: E501
440
+
441
+
442
+ :return: The description of this RowForListBackupDataOutput. # noqa: E501
443
+ :rtype: str
444
+ """
445
+ return self._description
446
+
447
+ @description.setter
448
+ def description(self, description):
449
+ """Sets the description of this RowForListBackupDataOutput.
450
+
451
+
452
+ :param description: The description of this RowForListBackupDataOutput. # noqa: E501
453
+ :type: str
454
+ """
455
+
456
+ self._description = description
457
+
458
+ @property
459
+ def detail(self):
460
+ """Gets the detail of this RowForListBackupDataOutput. # noqa: E501
461
+
462
+
463
+ :return: The detail of this RowForListBackupDataOutput. # noqa: E501
464
+ :rtype: str
465
+ """
466
+ return self._detail
467
+
468
+ @detail.setter
469
+ def detail(self, detail):
470
+ """Sets the detail of this RowForListBackupDataOutput.
471
+
472
+
473
+ :param detail: The detail of this RowForListBackupDataOutput. # noqa: E501
474
+ :type: str
475
+ """
476
+
477
+ self._detail = detail
478
+
479
+ @property
480
+ def expire_time(self):
481
+ """Gets the expire_time of this RowForListBackupDataOutput. # noqa: E501
482
+
483
+
484
+ :return: The expire_time of this RowForListBackupDataOutput. # noqa: E501
485
+ :rtype: int
486
+ """
487
+ return self._expire_time
488
+
489
+ @expire_time.setter
490
+ def expire_time(self, expire_time):
491
+ """Sets the expire_time of this RowForListBackupDataOutput.
492
+
493
+
494
+ :param expire_time: The expire_time of this RowForListBackupDataOutput. # noqa: E501
495
+ :type: int
496
+ """
497
+
498
+ self._expire_time = expire_time
499
+
500
+ @property
501
+ def finished_time(self):
502
+ """Gets the finished_time of this RowForListBackupDataOutput. # noqa: E501
503
+
504
+
505
+ :return: The finished_time of this RowForListBackupDataOutput. # noqa: E501
506
+ :rtype: int
507
+ """
508
+ return self._finished_time
509
+
510
+ @finished_time.setter
511
+ def finished_time(self, finished_time):
512
+ """Sets the finished_time of this RowForListBackupDataOutput.
513
+
514
+
515
+ :param finished_time: The finished_time of this RowForListBackupDataOutput. # noqa: E501
516
+ :type: int
517
+ """
518
+
519
+ self._finished_time = finished_time
520
+
521
+ @property
522
+ def in_use_count(self):
523
+ """Gets the in_use_count of this RowForListBackupDataOutput. # noqa: E501
524
+
525
+
526
+ :return: The in_use_count of this RowForListBackupDataOutput. # noqa: E501
527
+ :rtype: int
528
+ """
529
+ return self._in_use_count
530
+
531
+ @in_use_count.setter
532
+ def in_use_count(self, in_use_count):
533
+ """Sets the in_use_count of this RowForListBackupDataOutput.
534
+
535
+
536
+ :param in_use_count: The in_use_count of this RowForListBackupDataOutput. # noqa: E501
537
+ :type: int
538
+ """
539
+
540
+ self._in_use_count = in_use_count
541
+
542
+ @property
543
+ def md5_sum(self):
544
+ """Gets the md5_sum of this RowForListBackupDataOutput. # noqa: E501
545
+
546
+
547
+ :return: The md5_sum of this RowForListBackupDataOutput. # noqa: E501
548
+ :rtype: str
549
+ """
550
+ return self._md5_sum
551
+
552
+ @md5_sum.setter
553
+ def md5_sum(self, md5_sum):
554
+ """Sets the md5_sum of this RowForListBackupDataOutput.
555
+
556
+
557
+ :param md5_sum: The md5_sum of this RowForListBackupDataOutput. # noqa: E501
558
+ :type: str
559
+ """
560
+
561
+ self._md5_sum = md5_sum
562
+
563
+ @property
564
+ def product_id(self):
565
+ """Gets the product_id of this RowForListBackupDataOutput. # noqa: E501
566
+
567
+
568
+ :return: The product_id of this RowForListBackupDataOutput. # noqa: E501
569
+ :rtype: str
570
+ """
571
+ return self._product_id
572
+
573
+ @product_id.setter
574
+ def product_id(self, product_id):
575
+ """Sets the product_id of this RowForListBackupDataOutput.
576
+
577
+
578
+ :param product_id: The product_id of this RowForListBackupDataOutput. # noqa: E501
579
+ :type: str
580
+ """
581
+
582
+ self._product_id = product_id
583
+
584
+ @property
585
+ def restore_count(self):
586
+ """Gets the restore_count of this RowForListBackupDataOutput. # noqa: E501
587
+
588
+
589
+ :return: The restore_count of this RowForListBackupDataOutput. # noqa: E501
590
+ :rtype: int
591
+ """
592
+ return self._restore_count
593
+
594
+ @restore_count.setter
595
+ def restore_count(self, restore_count):
596
+ """Sets the restore_count of this RowForListBackupDataOutput.
597
+
598
+
599
+ :param restore_count: The restore_count of this RowForListBackupDataOutput. # noqa: E501
600
+ :type: int
601
+ """
602
+
603
+ self._restore_count = restore_count
604
+
605
+ @property
606
+ def size(self):
607
+ """Gets the size of this RowForListBackupDataOutput. # noqa: E501
608
+
609
+
610
+ :return: The size of this RowForListBackupDataOutput. # noqa: E501
611
+ :rtype: int
612
+ """
613
+ return self._size
614
+
615
+ @size.setter
616
+ def size(self, size):
617
+ """Sets the size of this RowForListBackupDataOutput.
618
+
619
+
620
+ :param size: The size of this RowForListBackupDataOutput. # noqa: E501
621
+ :type: int
622
+ """
623
+
624
+ self._size = size
625
+
626
+ @property
627
+ def source_pod_id(self):
628
+ """Gets the source_pod_id of this RowForListBackupDataOutput. # noqa: E501
629
+
630
+
631
+ :return: The source_pod_id of this RowForListBackupDataOutput. # noqa: E501
632
+ :rtype: str
633
+ """
634
+ return self._source_pod_id
635
+
636
+ @source_pod_id.setter
637
+ def source_pod_id(self, source_pod_id):
638
+ """Sets the source_pod_id of this RowForListBackupDataOutput.
639
+
640
+
641
+ :param source_pod_id: The source_pod_id of this RowForListBackupDataOutput. # noqa: E501
642
+ :type: str
643
+ """
644
+
645
+ self._source_pod_id = source_pod_id
646
+
647
+ @property
648
+ def started_time(self):
649
+ """Gets the started_time of this RowForListBackupDataOutput. # noqa: E501
650
+
651
+
652
+ :return: The started_time of this RowForListBackupDataOutput. # noqa: E501
653
+ :rtype: int
654
+ """
655
+ return self._started_time
656
+
657
+ @started_time.setter
658
+ def started_time(self, started_time):
659
+ """Sets the started_time of this RowForListBackupDataOutput.
660
+
661
+
662
+ :param started_time: The started_time of this RowForListBackupDataOutput. # noqa: E501
663
+ :type: int
664
+ """
665
+
666
+ self._started_time = started_time
667
+
668
+ @property
669
+ def status(self):
670
+ """Gets the status of this RowForListBackupDataOutput. # noqa: E501
671
+
672
+
673
+ :return: The status of this RowForListBackupDataOutput. # noqa: E501
674
+ :rtype: str
675
+ """
676
+ return self._status
677
+
678
+ @status.setter
679
+ def status(self, status):
680
+ """Sets the status of this RowForListBackupDataOutput.
681
+
682
+
683
+ :param status: The status of this RowForListBackupDataOutput. # noqa: E501
684
+ :type: str
685
+ """
686
+
687
+ self._status = status
688
+
689
+ @property
690
+ def storage_resource(self):
691
+ """Gets the storage_resource of this RowForListBackupDataOutput. # noqa: E501
692
+
693
+
694
+ :return: The storage_resource of this RowForListBackupDataOutput. # noqa: E501
695
+ :rtype: str
696
+ """
697
+ return self._storage_resource
698
+
699
+ @storage_resource.setter
700
+ def storage_resource(self, storage_resource):
701
+ """Sets the storage_resource of this RowForListBackupDataOutput.
702
+
703
+
704
+ :param storage_resource: The storage_resource of this RowForListBackupDataOutput. # noqa: E501
705
+ :type: str
706
+ """
707
+
708
+ self._storage_resource = storage_resource
709
+
710
+ @property
711
+ def storage_type(self):
712
+ """Gets the storage_type of this RowForListBackupDataOutput. # noqa: E501
713
+
714
+
715
+ :return: The storage_type of this RowForListBackupDataOutput. # noqa: E501
716
+ :rtype: str
717
+ """
718
+ return self._storage_type
719
+
720
+ @storage_type.setter
721
+ def storage_type(self, storage_type):
722
+ """Sets the storage_type of this RowForListBackupDataOutput.
723
+
724
+
725
+ :param storage_type: The storage_type of this RowForListBackupDataOutput. # noqa: E501
726
+ :type: str
727
+ """
728
+
729
+ self._storage_type = storage_type
730
+
731
+ @property
732
+ def updated_time(self):
733
+ """Gets the updated_time of this RowForListBackupDataOutput. # noqa: E501
734
+
735
+
736
+ :return: The updated_time of this RowForListBackupDataOutput. # noqa: E501
737
+ :rtype: int
738
+ """
739
+ return self._updated_time
740
+
741
+ @updated_time.setter
742
+ def updated_time(self, updated_time):
743
+ """Sets the updated_time of this RowForListBackupDataOutput.
744
+
745
+
746
+ :param updated_time: The updated_time of this RowForListBackupDataOutput. # noqa: E501
747
+ :type: int
748
+ """
749
+
750
+ self._updated_time = updated_time
751
+
752
+ def to_dict(self):
753
+ """Returns the model properties as a dict"""
754
+ result = {}
755
+
756
+ for attr, _ in six.iteritems(self.swagger_types):
757
+ value = getattr(self, attr)
758
+ if isinstance(value, list):
759
+ result[attr] = list(map(
760
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
761
+ value
762
+ ))
763
+ elif hasattr(value, "to_dict"):
764
+ result[attr] = value.to_dict()
765
+ elif isinstance(value, dict):
766
+ result[attr] = dict(map(
767
+ lambda item: (item[0], item[1].to_dict())
768
+ if hasattr(item[1], "to_dict") else item,
769
+ value.items()
770
+ ))
771
+ else:
772
+ result[attr] = value
773
+ if issubclass(RowForListBackupDataOutput, dict):
774
+ for key, value in self.items():
775
+ result[key] = value
776
+
777
+ return result
778
+
779
+ def to_str(self):
780
+ """Returns the string representation of the model"""
781
+ return pprint.pformat(self.to_dict())
782
+
783
+ def __repr__(self):
784
+ """For `print` and `pprint`"""
785
+ return self.to_str()
786
+
787
+ def __eq__(self, other):
788
+ """Returns true if both objects are equal"""
789
+ if not isinstance(other, RowForListBackupDataOutput):
790
+ return False
791
+
792
+ return self.to_dict() == other.to_dict()
793
+
794
+ def __ne__(self, other):
795
+ """Returns true if both objects are not equal"""
796
+ if not isinstance(other, RowForListBackupDataOutput):
797
+ return True
798
+
799
+ return self.to_dict() != other.to_dict()