byteplus-python-sdk-v2 3.0.43__py2.py3-none-any.whl → 3.0.45__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.
Files changed (562) hide show
  1. {byteplus_python_sdk_v2-3.0.43.dist-info → byteplus_python_sdk_v2-3.0.45.dist-info}/METADATA +27 -1
  2. {byteplus_python_sdk_v2-3.0.43.dist-info → byteplus_python_sdk_v2-3.0.45.dist-info}/RECORD +562 -94
  3. {byteplus_python_sdk_v2-3.0.43.dist-info → byteplus_python_sdk_v2-3.0.45.dist-info}/top_level.txt +2 -0
  4. byteplussdkcore/api_client.py +219 -1
  5. byteplussdkcore/auth/credential.py +4 -0
  6. byteplussdkcore/auth/providers/__init__.py +5 -1
  7. byteplussdkcore/auth/providers/cli_config_provider.py +628 -0
  8. byteplussdkcore/auth/providers/default_provider.py +103 -0
  9. byteplussdkcore/auth/providers/ecs_role_provider.py +186 -0
  10. byteplussdkcore/auth/providers/env_provider.py +38 -0
  11. byteplussdkcore/auth/providers/provider.py +36 -1
  12. byteplussdkcore/auth/providers/static_provider.py +3 -3
  13. byteplussdkcore/auth/providers/sts_oidc_provider.py +132 -42
  14. byteplussdkcore/auth/providers/sts_provider.py +10 -1
  15. byteplussdkcore/auth/providers/sts_saml_provider.py +77 -32
  16. byteplussdkcore/configuration.py +1 -1
  17. byteplussdkcore/endpoint/providers/default_provider.py +28 -0
  18. byteplussdkcore/endpoint/providers/standard_provider.py +2 -3
  19. byteplussdkcore/feature/__init__.py +6 -0
  20. byteplussdkcore/feature/rds/__init__.py +4 -0
  21. byteplussdkcore/feature/rds/connect_utils.py +88 -0
  22. byteplussdkcore/interceptor/interceptors/request.py +4 -0
  23. byteplussdkcore/interceptor/interceptors/resolve_endpoint_interceptor.py +8 -1
  24. byteplussdkcore/interceptor/interceptors/sign_request_interceptor.py +42 -14
  25. byteplussdkcore/signv4.py +86 -0
  26. byteplussdkexamples/byteplussdkarkruntime/async_completions.py +0 -2
  27. byteplussdkexamples/byteplussdkarkruntime/completions.py +1 -3
  28. byteplussdkexamples/byteplussdkarkruntime/context.py +1 -3
  29. byteplussdkkickart/__init__.py +251 -0
  30. byteplussdkkickart/api/__init__.py +6 -0
  31. byteplussdkkickart/api/kickart_api.py +11189 -0
  32. byteplussdkkickart/models/__init__.py +247 -0
  33. byteplussdkkickart/models/batch_delete_asset_request.py +123 -0
  34. byteplussdkkickart/models/batch_delete_asset_response.py +95 -0
  35. byteplussdkkickart/models/batch_delete_media_request.py +123 -0
  36. byteplussdkkickart/models/batch_delete_media_response.py +123 -0
  37. byteplussdkkickart/models/check_delete_media_request.py +123 -0
  38. byteplussdkkickart/models/check_delete_media_response.py +123 -0
  39. byteplussdkkickart/models/check_product_url_request.py +149 -0
  40. byteplussdkkickart/models/check_product_url_response.py +123 -0
  41. byteplussdkkickart/models/clear_ad_variations_output_videos_request.py +124 -0
  42. byteplussdkkickart/models/clear_ad_variations_output_videos_response.py +95 -0
  43. byteplussdkkickart/models/clear_ad_variations_project_request.py +150 -0
  44. byteplussdkkickart/models/clear_ad_variations_project_response.py +95 -0
  45. byteplussdkkickart/models/copy_genius_project_request.py +149 -0
  46. byteplussdkkickart/models/copy_genius_project_response.py +149 -0
  47. byteplussdkkickart/models/create_ad_variations_project_request.py +123 -0
  48. byteplussdkkickart/models/create_ad_variations_project_response.py +123 -0
  49. byteplussdkkickart/models/create_ai_template_task_request.py +227 -0
  50. byteplussdkkickart/models/create_ai_template_task_response.py +123 -0
  51. byteplussdkkickart/models/create_api_key_request.py +123 -0
  52. byteplussdkkickart/models/create_api_key_response.py +123 -0
  53. byteplussdkkickart/models/create_auth_url_request.py +149 -0
  54. byteplussdkkickart/models/create_auth_url_response.py +175 -0
  55. byteplussdkkickart/models/create_avatar_request.py +149 -0
  56. byteplussdkkickart/models/create_avatar_response.py +123 -0
  57. byteplussdkkickart/models/create_draft_request.py +149 -0
  58. byteplussdkkickart/models/create_draft_response.py +149 -0
  59. byteplussdkkickart/models/create_film_request.py +721 -0
  60. byteplussdkkickart/models/create_film_response.py +95 -0
  61. byteplussdkkickart/models/create_folder_request.py +279 -0
  62. byteplussdkkickart/models/create_folder_response.py +123 -0
  63. byteplussdkkickart/models/create_item_request.py +227 -0
  64. byteplussdkkickart/models/create_item_response.py +149 -0
  65. byteplussdkkickart/models/create_material_request.py +851 -0
  66. byteplussdkkickart/models/create_material_response.py +95 -0
  67. byteplussdkkickart/models/create_media_request.py +357 -0
  68. byteplussdkkickart/models/create_media_response.py +149 -0
  69. byteplussdkkickart/models/create_project_from_template_request.py +123 -0
  70. byteplussdkkickart/models/create_project_from_template_response.py +123 -0
  71. byteplussdkkickart/models/create_project_request.py +487 -0
  72. byteplussdkkickart/models/create_project_response.py +201 -0
  73. byteplussdkkickart/models/create_template_project_request.py +149 -0
  74. byteplussdkkickart/models/create_template_project_response.py +175 -0
  75. byteplussdkkickart/models/delete_all_task_item_request.py +124 -0
  76. byteplussdkkickart/models/delete_all_task_item_response.py +95 -0
  77. byteplussdkkickart/models/delete_api_key_request.py +123 -0
  78. byteplussdkkickart/models/delete_api_key_response.py +95 -0
  79. byteplussdkkickart/models/delete_task_item_request.py +123 -0
  80. byteplussdkkickart/models/delete_task_item_response.py +95 -0
  81. byteplussdkkickart/models/download_asset_request.py +149 -0
  82. byteplussdkkickart/models/download_asset_response.py +149 -0
  83. byteplussdkkickart/models/export_editor_video_request.py +279 -0
  84. byteplussdkkickart/models/export_editor_video_response.py +123 -0
  85. byteplussdkkickart/models/export_video_request.py +149 -0
  86. byteplussdkkickart/models/export_video_response.py +123 -0
  87. byteplussdkkickart/models/gen_ad_variations_analysis_request.py +124 -0
  88. byteplussdkkickart/models/gen_ad_variations_analysis_response.py +123 -0
  89. byteplussdkkickart/models/gen_ad_variations_video_request.py +124 -0
  90. byteplussdkkickart/models/gen_ad_variations_video_response.py +123 -0
  91. byteplussdkkickart/models/gen_bgm_by_product_request.py +175 -0
  92. byteplussdkkickart/models/gen_bgm_by_product_response.py +123 -0
  93. byteplussdkkickart/models/gen_bgm_by_video_request.py +175 -0
  94. byteplussdkkickart/models/gen_bgm_by_video_response.py +123 -0
  95. byteplussdkkickart/models/gen_main_video_request.py +175 -0
  96. byteplussdkkickart/models/gen_main_video_response.py +149 -0
  97. byteplussdkkickart/models/gen_pic_by_prompt_request.py +175 -0
  98. byteplussdkkickart/models/gen_pic_by_prompt_response.py +123 -0
  99. byteplussdkkickart/models/gen_pics_video_by_story_request.py +175 -0
  100. byteplussdkkickart/models/gen_pics_video_by_story_response.py +123 -0
  101. byteplussdkkickart/models/gen_product_intro_creative_request.py +149 -0
  102. byteplussdkkickart/models/gen_product_intro_creative_response.py +123 -0
  103. byteplussdkkickart/models/gen_product_intro_script_request.py +149 -0
  104. byteplussdkkickart/models/gen_product_intro_script_response.py +123 -0
  105. byteplussdkkickart/models/gen_product_intro_video_request.py +149 -0
  106. byteplussdkkickart/models/gen_product_intro_video_response.py +149 -0
  107. byteplussdkkickart/models/gen_product_storyboard_outline_request.py +149 -0
  108. byteplussdkkickart/models/gen_product_storyboard_outline_response.py +149 -0
  109. byteplussdkkickart/models/gen_product_storyboard_video_request.py +175 -0
  110. byteplussdkkickart/models/gen_product_storyboard_video_response.py +175 -0
  111. byteplussdkkickart/models/gen_story_by_prompt_request.py +123 -0
  112. byteplussdkkickart/models/gen_story_by_prompt_response.py +123 -0
  113. byteplussdkkickart/models/gen_template_script_request.py +175 -0
  114. byteplussdkkickart/models/gen_template_script_response.py +175 -0
  115. byteplussdkkickart/models/gen_template_video_request.py +201 -0
  116. byteplussdkkickart/models/gen_template_video_response.py +149 -0
  117. byteplussdkkickart/models/gen_video_by_prompt_request.py +175 -0
  118. byteplussdkkickart/models/gen_video_by_prompt_response.py +123 -0
  119. byteplussdkkickart/models/get_ai_template_task_status_request.py +123 -0
  120. byteplussdkkickart/models/get_ai_template_task_status_response.py +123 -0
  121. byteplussdkkickart/models/get_ai_template_template_info_request.py +123 -0
  122. byteplussdkkickart/models/get_ai_template_template_info_response.py +123 -0
  123. byteplussdkkickart/models/get_avatar_request.py +123 -0
  124. byteplussdkkickart/models/get_avatar_response.py +123 -0
  125. byteplussdkkickart/models/get_block_detail_request.py +149 -0
  126. byteplussdkkickart/models/get_block_detail_response.py +123 -0
  127. byteplussdkkickart/models/get_block_request.py +124 -0
  128. byteplussdkkickart/models/get_block_response.py +123 -0
  129. byteplussdkkickart/models/get_category_detail_request.py +201 -0
  130. byteplussdkkickart/models/get_category_detail_response.py +123 -0
  131. byteplussdkkickart/models/get_combo_balance_request.py +124 -0
  132. byteplussdkkickart/models/get_combo_balance_response.py +149 -0
  133. byteplussdkkickart/models/get_composition_request.py +123 -0
  134. byteplussdkkickart/models/get_composition_response.py +253 -0
  135. byteplussdkkickart/models/get_create_cost_request.py +123 -0
  136. byteplussdkkickart/models/get_create_cost_response.py +123 -0
  137. byteplussdkkickart/models/get_creator_info_request.py +123 -0
  138. byteplussdkkickart/models/get_creator_info_response.py +123 -0
  139. byteplussdkkickart/models/get_draft_request.py +123 -0
  140. byteplussdkkickart/models/get_draft_response.py +123 -0
  141. byteplussdkkickart/models/get_film_detail_request.py +175 -0
  142. byteplussdkkickart/models/get_film_detail_response.py +123 -0
  143. byteplussdkkickart/models/get_genius_project_request.py +124 -0
  144. byteplussdkkickart/models/get_genius_project_response.py +123 -0
  145. byteplussdkkickart/models/get_genius_template_request.py +123 -0
  146. byteplussdkkickart/models/get_genius_template_response.py +123 -0
  147. byteplussdkkickart/models/get_home_bootstrap2_request.py +149 -0
  148. byteplussdkkickart/models/get_home_bootstrap2_response.py +253 -0
  149. byteplussdkkickart/models/get_home_bootstrap_request.py +149 -0
  150. byteplussdkkickart/models/get_home_bootstrap_response.py +253 -0
  151. byteplussdkkickart/models/get_list_request.py +177 -0
  152. byteplussdkkickart/models/get_list_response.py +175 -0
  153. byteplussdkkickart/models/get_material_detail_request.py +227 -0
  154. byteplussdkkickart/models/get_material_detail_response.py +123 -0
  155. byteplussdkkickart/models/get_material_transcoding_list_request.py +331 -0
  156. byteplussdkkickart/models/get_material_transcoding_list_response.py +149 -0
  157. byteplussdkkickart/models/get_media_request.py +123 -0
  158. byteplussdkkickart/models/get_media_response.py +123 -0
  159. byteplussdkkickart/models/get_meta_list_request.py +201 -0
  160. byteplussdkkickart/models/get_meta_list_response.py +175 -0
  161. byteplussdkkickart/models/get_price_request.py +123 -0
  162. byteplussdkkickart/models/get_price_response.py +123 -0
  163. byteplussdkkickart/models/get_product_info_request.py +123 -0
  164. byteplussdkkickart/models/get_product_info_response.py +149 -0
  165. byteplussdkkickart/models/get_public_template_list_request.py +436 -0
  166. byteplussdkkickart/models/get_public_template_list_response.py +149 -0
  167. byteplussdkkickart/models/get_publish_draft_by_task_request.py +124 -0
  168. byteplussdkkickart/models/get_publish_draft_by_task_response.py +149 -0
  169. byteplussdkkickart/models/get_publish_draft_request.py +175 -0
  170. byteplussdkkickart/models/get_publish_draft_response.py +149 -0
  171. byteplussdkkickart/models/get_raw_api_key_request.py +123 -0
  172. byteplussdkkickart/models/get_raw_api_key_response.py +123 -0
  173. byteplussdkkickart/models/get_special_zone_config_request.py +124 -0
  174. byteplussdkkickart/models/get_special_zone_config_response.py +227 -0
  175. byteplussdkkickart/models/get_task_item_request.py +149 -0
  176. byteplussdkkickart/models/get_task_item_response.py +565 -0
  177. byteplussdkkickart/models/get_tasks_detail_request.py +123 -0
  178. byteplussdkkickart/models/get_tasks_detail_response.py +123 -0
  179. byteplussdkkickart/models/get_tenant_config_request.py +124 -0
  180. byteplussdkkickart/models/get_tenant_config_response.py +929 -0
  181. byteplussdkkickart/models/get_voice_recommendation_request.py +227 -0
  182. byteplussdkkickart/models/get_voice_recommendation_response.py +123 -0
  183. byteplussdkkickart/models/get_watermark_switch_status_request.py +124 -0
  184. byteplussdkkickart/models/get_watermark_switch_status_response.py +253 -0
  185. byteplussdkkickart/models/handle_o_auth_callback_request.py +177 -0
  186. byteplussdkkickart/models/handle_o_auth_callback_response.py +123 -0
  187. byteplussdkkickart/models/health_check_request.py +123 -0
  188. byteplussdkkickart/models/health_check_response.py +123 -0
  189. byteplussdkkickart/models/invoke_project_event_request.py +201 -0
  190. byteplussdkkickart/models/invoke_project_event_response.py +123 -0
  191. byteplussdkkickart/models/list_api_key_request.py +149 -0
  192. byteplussdkkickart/models/list_api_key_response.py +201 -0
  193. byteplussdkkickart/models/list_avatar_request.py +201 -0
  194. byteplussdkkickart/models/list_avatar_response.py +201 -0
  195. byteplussdkkickart/models/list_avatar_voice_request.py +279 -0
  196. byteplussdkkickart/models/list_avatar_voice_response.py +201 -0
  197. byteplussdkkickart/models/list_block_request.py +201 -0
  198. byteplussdkkickart/models/list_block_response.py +149 -0
  199. byteplussdkkickart/models/list_combo_request.py +149 -0
  200. byteplussdkkickart/models/list_combo_response.py +149 -0
  201. byteplussdkkickart/models/list_create_cost_request.py +149 -0
  202. byteplussdkkickart/models/list_create_cost_response.py +123 -0
  203. byteplussdkkickart/models/list_creative_point_logs_request.py +253 -0
  204. byteplussdkkickart/models/list_creative_point_logs_response.py +149 -0
  205. byteplussdkkickart/models/list_genius_project_request.py +149 -0
  206. byteplussdkkickart/models/list_genius_project_response.py +149 -0
  207. byteplussdkkickart/models/list_genius_template_request.py +175 -0
  208. byteplussdkkickart/models/list_genius_template_response.py +149 -0
  209. byteplussdkkickart/models/list_prompt_request.py +95 -0
  210. byteplussdkkickart/models/list_prompt_response.py +123 -0
  211. byteplussdkkickart/models/list_publish_accounts_request.py +149 -0
  212. byteplussdkkickart/models/list_publish_accounts_response.py +123 -0
  213. byteplussdkkickart/models/list_resources_request.py +95 -0
  214. byteplussdkkickart/models/list_resources_response.py +123 -0
  215. byteplussdkkickart/models/list_select_item_request.py +123 -0
  216. byteplussdkkickart/models/list_select_item_response.py +149 -0
  217. byteplussdkkickart/models/list_tasks_request.py +177 -0
  218. byteplussdkkickart/models/list_tasks_response.py +175 -0
  219. byteplussdkkickart/models/query_creative_point_logs_request.py +253 -0
  220. byteplussdkkickart/models/query_creative_point_logs_response.py +149 -0
  221. byteplussdkkickart/models/query_select_item_request.py +123 -0
  222. byteplussdkkickart/models/query_select_item_response.py +149 -0
  223. byteplussdkkickart/models/reorder_check_request.py +123 -0
  224. byteplussdkkickart/models/reorder_check_response.py +123 -0
  225. byteplussdkkickart/models/retry_risk_task_request.py +123 -0
  226. byteplussdkkickart/models/retry_risk_task_response.py +123 -0
  227. byteplussdkkickart/models/retry_task_request.py +149 -0
  228. byteplussdkkickart/models/retry_task_response.py +123 -0
  229. byteplussdkkickart/models/save_publish_draft_request.py +149 -0
  230. byteplussdkkickart/models/save_publish_draft_response.py +123 -0
  231. byteplussdkkickart/models/search_asset_request.py +487 -0
  232. byteplussdkkickart/models/search_asset_response.py +201 -0
  233. byteplussdkkickart/models/search_list_media_request.py +617 -0
  234. byteplussdkkickart/models/search_list_media_response.py +201 -0
  235. byteplussdkkickart/models/set_watermark_switch_status_request.py +253 -0
  236. byteplussdkkickart/models/set_watermark_switch_status_response.py +95 -0
  237. byteplussdkkickart/models/show_popup_request.py +124 -0
  238. byteplussdkkickart/models/show_popup_response.py +175 -0
  239. byteplussdkkickart/models/submit_publish_request.py +124 -0
  240. byteplussdkkickart/models/submit_publish_response.py +123 -0
  241. byteplussdkkickart/models/unbind_publish_account_request.py +124 -0
  242. byteplussdkkickart/models/unbind_publish_account_response.py +95 -0
  243. byteplussdkkickart/models/update_api_key_request.py +175 -0
  244. byteplussdkkickart/models/update_api_key_response.py +95 -0
  245. byteplussdkkickart/models/update_asset_request.py +149 -0
  246. byteplussdkkickart/models/update_asset_response.py +95 -0
  247. byteplussdkkickart/models/update_composition_product_info_request.py +151 -0
  248. byteplussdkkickart/models/update_composition_product_info_response.py +123 -0
  249. byteplussdkkickart/models/update_composition_request.py +149 -0
  250. byteplussdkkickart/models/update_composition_response.py +123 -0
  251. byteplussdkkickart/models/update_draft_request.py +227 -0
  252. byteplussdkkickart/models/update_draft_response.py +95 -0
  253. byteplussdkkickart/models/update_draft_title_request.py +151 -0
  254. byteplussdkkickart/models/update_draft_title_response.py +123 -0
  255. byteplussdkkickart/models/update_film_request.py +435 -0
  256. byteplussdkkickart/models/update_film_response.py +95 -0
  257. byteplussdkkickart/models/update_folder_media_path_request.py +175 -0
  258. byteplussdkkickart/models/update_folder_media_path_response.py +95 -0
  259. byteplussdkkickart/models/update_material_request.py +513 -0
  260. byteplussdkkickart/models/update_material_response.py +95 -0
  261. byteplussdkkickart/models/validate_avatar_image_request.py +123 -0
  262. byteplussdkkickart/models/validate_avatar_image_response.py +149 -0
  263. byteplussdkllmshield/models/llm_shield_sign.py +1 -1
  264. byteplussdkrdsmssql/__init__.py +1 -1
  265. byteplussdkrdsmssql/models/__init__.py +1 -1
  266. byteplussdkrdsmssql/models/describe_db_instance_specs_response.py +17 -17
  267. byteplussdkrdsmssql/models/{instance_spec_info_for_describe_db_instance_specs_output.py → instance_specs_info_for_describe_db_instance_specs_output.py} +45 -45
  268. byteplussdkvepfs/__init__.py +26 -0
  269. byteplussdkvepfs/api/vepfs_api.py +582 -0
  270. byteplussdkvepfs/models/__init__.py +26 -0
  271. byteplussdkvepfs/models/add_mount_service_clients_request.py +202 -0
  272. byteplussdkvepfs/models/add_mount_service_clients_response.py +123 -0
  273. byteplussdkvepfs/models/client_for_add_mount_service_clients_input.py +149 -0
  274. byteplussdkvepfs/models/client_for_describe_mount_service_tasks_output.py +149 -0
  275. byteplussdkvepfs/models/client_for_remove_mount_service_clients_input.py +149 -0
  276. byteplussdkvepfs/models/client_for_verify_mount_service_clients_input.py +149 -0
  277. byteplussdkvepfs/models/client_snapshot_for_describe_mount_service_task_results_output.py +305 -0
  278. byteplussdkvepfs/models/describe_lens_tasks_request.py +60 -1
  279. byteplussdkvepfs/models/describe_mount_service_clients_request.py +440 -0
  280. byteplussdkvepfs/models/describe_mount_service_clients_response.py +201 -0
  281. byteplussdkvepfs/models/describe_mount_service_task_results_request.py +415 -0
  282. byteplussdkvepfs/models/describe_mount_service_task_results_response.py +201 -0
  283. byteplussdkvepfs/models/describe_mount_service_tasks_request.py +267 -0
  284. byteplussdkvepfs/models/describe_mount_service_tasks_response.py +201 -0
  285. byteplussdkvepfs/models/instance_for_describe_mount_service_clients_output.py +253 -0
  286. byteplussdkvepfs/models/instance_for_describe_mount_service_task_results_output.py +253 -0
  287. byteplussdkvepfs/models/monitor_for_describe_mount_service_clients_output.py +123 -0
  288. byteplussdkvepfs/models/monitor_for_describe_mount_service_task_results_output.py +123 -0
  289. byteplussdkvepfs/models/mount_service_client_for_describe_mount_service_clients_output.py +305 -0
  290. byteplussdkvepfs/models/mount_service_task_result_for_describe_mount_service_task_results_output.py +201 -0
  291. byteplussdkvepfs/models/progress_for_describe_mount_service_tasks_output.py +201 -0
  292. byteplussdkvepfs/models/remove_mount_service_clients_request.py +150 -0
  293. byteplussdkvepfs/models/remove_mount_service_clients_response.py +123 -0
  294. byteplussdkvepfs/models/result_for_verify_mount_service_clients_output.py +175 -0
  295. byteplussdkvepfs/models/task_for_describe_mount_service_tasks_output.py +305 -0
  296. byteplussdkvepfs/models/verify_mount_service_clients_request.py +150 -0
  297. byteplussdkvepfs/models/verify_mount_service_clients_response.py +123 -0
  298. byteplussdkvke/__init__.py +69 -0
  299. byteplussdkvke/api/vke_api.py +1273 -206
  300. byteplussdkvke/models/__init__.py +69 -0
  301. byteplussdkvke/models/action_for_list_remedy_configs_output.py +149 -0
  302. byteplussdkvke/models/affinity_group_config_for_create_node_pool_input.py +149 -0
  303. byteplussdkvke/models/affinity_group_config_for_list_node_pools_output.py +149 -0
  304. byteplussdkvke/models/affinity_group_config_for_update_node_pool_config_input.py +149 -0
  305. byteplussdkvke/models/binding_remedy_config_request.py +262 -0
  306. byteplussdkvke/models/binding_remedy_config_response.py +123 -0
  307. byteplussdkvke/models/cluster_config_for_list_clusters_output.py +27 -1
  308. byteplussdkvke/models/cluster_config_for_update_cluster_config_input.py +53 -1
  309. byteplussdkvke/models/cluster_connector_config_request_for_update_cluster_config_input.py +215 -0
  310. byteplussdkvke/models/config_for_list_remedy_configs_output.py +253 -0
  311. byteplussdkvke/models/container_image_commitment_for_describe_container_image_commitments_output.py +227 -0
  312. byteplussdkvke/models/containerd_config_for_create_default_node_pool_input.py +149 -0
  313. byteplussdkvke/models/containerd_config_for_create_node_pool_input.py +149 -0
  314. byteplussdkvke/models/containerd_config_for_list_node_pools_output.py +149 -0
  315. byteplussdkvke/models/containerd_config_for_update_node_pool_config_input.py +149 -0
  316. byteplussdkvke/models/create_node_pool_request.py +27 -1
  317. byteplussdkvke/models/create_nodes_request.py +81 -3
  318. byteplussdkvke/models/create_snapshot_request.py +255 -0
  319. byteplussdkvke/models/create_snapshot_response.py +123 -0
  320. byteplussdkvke/models/data_volume_for_create_node_pool_input.py +87 -2
  321. byteplussdkvke/models/data_volume_for_list_node_pools_output.py +79 -1
  322. byteplussdkvke/models/data_volume_for_update_node_pool_config_input.py +87 -2
  323. byteplussdkvke/models/delete_nodes_request.py +2 -3
  324. byteplussdkvke/models/delete_snapshot_request.py +124 -0
  325. byteplussdkvke/models/delete_snapshot_response.py +123 -0
  326. byteplussdkvke/models/describe_container_image_commitments_request.py +227 -0
  327. byteplussdkvke/models/describe_container_image_commitments_response.py +149 -0
  328. byteplussdkvke/models/describe_snapshots_request.py +175 -0
  329. byteplussdkvke/models/describe_snapshots_response.py +149 -0
  330. byteplussdkvke/models/drain_for_list_remedy_configs_output.py +123 -0
  331. byteplussdkvke/models/eviction_hard_for_create_default_node_pool_input.py +62 -1
  332. byteplussdkvke/models/eviction_hard_for_create_node_pool_input.py +62 -1
  333. byteplussdkvke/models/eviction_hard_for_list_node_pools_output.py +55 -1
  334. byteplussdkvke/models/eviction_hard_for_update_node_pool_config_input.py +62 -1
  335. byteplussdkvke/models/exec_container_image_commitment_request.py +27 -1
  336. byteplussdkvke/models/exec_container_image_commitment_response.py +29 -1
  337. byteplussdkvke/models/filter_for_list_clusters_input.py +1 -1
  338. byteplussdkvke/models/filter_for_list_nodes_input.py +53 -1
  339. byteplussdkvke/models/filter_for_list_remedy_configs_input.py +234 -0
  340. byteplussdkvke/models/flannel_config_for_list_clusters_output.py +29 -3
  341. byteplussdkvke/models/flannel_config_for_update_cluster_config_input.py +123 -0
  342. byteplussdkvke/models/image_spec_for_describe_container_image_commitments_output.py +201 -0
  343. byteplussdkvke/models/instances_distribution_for_create_node_pool_input.py +201 -0
  344. byteplussdkvke/models/instances_distribution_for_list_node_pools_output.py +201 -0
  345. byteplussdkvke/models/instances_distribution_for_update_node_pool_config_input.py +201 -0
  346. byteplussdkvke/models/intersection_item_for_list_supported_images_output.py +149 -0
  347. byteplussdkvke/models/intervene_cordon_for_list_remedy_configs_output.py +149 -0
  348. byteplussdkvke/models/intervene_drain_for_list_remedy_configs_output.py +149 -0
  349. byteplussdkvke/models/irsa_config_for_list_clusters_output.py +253 -0
  350. byteplussdkvke/models/item_for_list_clusters_output.py +27 -1
  351. byteplussdkvke/models/item_for_list_instance_type_labels_output.py +175 -0
  352. byteplussdkvke/models/item_for_list_node_pools_output.py +27 -1
  353. byteplussdkvke/models/item_for_list_nodes_output.py +105 -1
  354. byteplussdkvke/models/item_for_list_remedy_configs_output.py +305 -0
  355. byteplussdkvke/models/item_for_list_supported_images_output.py +149 -0
  356. byteplussdkvke/models/kube_reserved_for_create_default_node_pool_input.py +7 -0
  357. byteplussdkvke/models/kube_reserved_for_create_node_pool_input.py +7 -0
  358. byteplussdkvke/models/kube_reserved_for_update_node_pool_config_input.py +7 -0
  359. byteplussdkvke/models/kubelet_config_for_create_default_node_pool_input.py +7 -24
  360. byteplussdkvke/models/kubelet_config_for_create_node_pool_input.py +7 -24
  361. byteplussdkvke/models/kubelet_config_for_update_node_pool_config_input.py +7 -24
  362. byteplussdkvke/models/kubernetes_config_for_create_default_node_pool_input.py +105 -1
  363. byteplussdkvke/models/kubernetes_config_for_create_node_pool_input.py +105 -1
  364. byteplussdkvke/models/kubernetes_config_for_list_node_pools_output.py +105 -1
  365. byteplussdkvke/models/kubernetes_config_for_update_node_pool_config_input.py +105 -1
  366. byteplussdkvke/models/label_for_list_instance_type_labels_output.py +149 -0
  367. byteplussdkvke/models/label_for_list_remedy_configs_output.py +149 -0
  368. byteplussdkvke/models/list_instance_type_labels_request.py +123 -0
  369. byteplussdkvke/models/list_instance_type_labels_response.py +123 -0
  370. byteplussdkvke/models/list_remedy_configs_request.py +175 -0
  371. byteplussdkvke/models/list_remedy_configs_response.py +201 -0
  372. byteplussdkvke/models/list_supported_add_instance_types_request.py +95 -0
  373. byteplussdkvke/models/list_supported_add_instance_types_response.py +123 -0
  374. byteplussdkvke/models/list_supported_gpu_driver_versions_request.py +176 -0
  375. byteplussdkvke/models/list_supported_gpu_driver_versions_response.py +123 -0
  376. byteplussdkvke/models/list_supported_images_request.py +175 -0
  377. byteplussdkvke/models/list_supported_images_response.py +149 -0
  378. byteplussdkvke/models/log_setup_for_create_cluster_input.py +1 -1
  379. byteplussdkvke/models/log_setup_for_update_cluster_config_input.py +1 -1
  380. byteplussdkvke/models/management_for_create_node_pool_input.py +149 -0
  381. byteplussdkvke/models/management_for_list_node_pools_output.py +149 -0
  382. byteplussdkvke/models/management_for_update_node_pool_config_input.py +149 -0
  383. byteplussdkvke/models/monitoring_config_for_list_clusters_output.py +27 -1
  384. byteplussdkvke/models/monitoring_config_for_update_cluster_config_input.py +27 -1
  385. byteplussdkvke/models/node_config_for_create_default_node_pool_input.py +27 -1
  386. byteplussdkvke/models/node_config_for_create_node_pool_input.py +216 -1
  387. byteplussdkvke/models/node_config_for_list_node_pools_output.py +209 -1
  388. byteplussdkvke/models/node_config_for_update_node_pool_config_input.py +216 -1
  389. byteplussdkvke/models/pods_config_for_update_cluster_config_input.py +27 -1
  390. byteplussdkvke/models/proxy_config_for_update_cluster_config_input.py +227 -0
  391. byteplussdkvke/models/public_access_config_for_create_node_pool_input.py +1 -1
  392. byteplussdkvke/models/public_access_config_for_update_node_pool_config_input.py +1 -1
  393. byteplussdkvke/models/public_access_network_config_for_create_cluster_input.py +1 -1
  394. byteplussdkvke/models/public_access_network_config_for_update_cluster_config_input.py +1 -1
  395. byteplussdkvke/models/registry_proxy_config_for_create_default_node_pool_input.py +149 -0
  396. byteplussdkvke/models/registry_proxy_config_for_create_node_pool_input.py +149 -0
  397. byteplussdkvke/models/registry_proxy_config_for_list_node_pools_output.py +149 -0
  398. byteplussdkvke/models/registry_proxy_config_for_update_node_pool_config_input.py +149 -0
  399. byteplussdkvke/models/remedy_config_for_create_node_pool_input.py +149 -0
  400. byteplussdkvke/models/remedy_config_for_list_node_pools_output.py +149 -0
  401. byteplussdkvke/models/remedy_config_for_update_node_pool_config_input.py +149 -0
  402. byteplussdkvke/models/remedy_strategy_for_list_remedy_configs_output.py +149 -0
  403. byteplussdkvke/models/rule_for_list_remedy_configs_output.py +175 -0
  404. byteplussdkvke/models/runtime_for_create_default_node_pool_input.py +156 -0
  405. byteplussdkvke/models/runtime_for_create_node_pool_input.py +156 -0
  406. byteplussdkvke/models/runtime_for_list_node_pools_output.py +149 -0
  407. byteplussdkvke/models/runtime_for_update_node_pool_config_input.py +156 -0
  408. byteplussdkvke/models/scheduled_instance_policy_for_create_scaling_policy_input.py +27 -1
  409. byteplussdkvke/models/scheduled_instance_policy_for_list_scaling_policies_output.py +27 -1
  410. byteplussdkvke/models/scheduled_instance_policy_for_update_scaling_policy_input.py +27 -1
  411. byteplussdkvke/models/snapshot_for_describe_snapshots_output.py +461 -0
  412. byteplussdkvke/models/status_for_list_clusters_input.py +1 -1
  413. byteplussdkvke/models/status_for_list_node_pools_input.py +1 -1
  414. byteplussdkvke/models/status_for_list_nodes_input.py +2 -2
  415. byteplussdkvke/models/supported_image_for_list_supported_images_output.py +149 -0
  416. byteplussdkvke/models/system_reserved_for_create_default_node_pool_input.py +7 -0
  417. byteplussdkvke/models/system_reserved_for_create_node_pool_input.py +7 -0
  418. byteplussdkvke/models/system_reserved_for_update_node_pool_config_input.py +7 -0
  419. byteplussdkvke/models/system_volume_for_create_node_pool_input.py +1 -1
  420. byteplussdkvke/models/system_volume_for_update_node_pool_config_input.py +1 -1
  421. byteplussdkvke/models/tag_for_create_snapshot_input.py +149 -0
  422. byteplussdkvke/models/unbinding_remedy_config_request.py +211 -0
  423. byteplussdkvke/models/unbinding_remedy_config_response.py +95 -0
  424. byteplussdkvke/models/update_cluster_config_request.py +27 -1
  425. byteplussdkvke/models/update_node_pool_config_request.py +27 -1
  426. byteplussdkvke/models/vpc_cni_config_for_list_clusters_output.py +29 -3
  427. byteplussdkvke/models/vpc_cni_config_for_update_cluster_config_input.py +29 -3
  428. byteplussdkvpc20250901/__init__.py +149 -0
  429. byteplussdkvpc20250901/api/__init__.py +6 -0
  430. byteplussdkvpc20250901/api/vpc20250901_api.py +4399 -0
  431. byteplussdkvpc20250901/models/__init__.py +145 -0
  432. byteplussdkvpc20250901/models/assign_private_ip_addresses_request.py +202 -0
  433. byteplussdkvpc20250901/models/assign_private_ip_addresses_response.py +201 -0
  434. byteplussdkvpc20250901/models/associate_route_table_request.py +176 -0
  435. byteplussdkvpc20250901/models/associate_route_table_response.py +149 -0
  436. byteplussdkvpc20250901/models/associate_vpc_cidr_block_request.py +150 -0
  437. byteplussdkvpc20250901/models/associate_vpc_cidr_block_response.py +201 -0
  438. byteplussdkvpc20250901/models/associated_elastic_ip_for_describe_network_interface_attributes_output.py +175 -0
  439. byteplussdkvpc20250901/models/associated_elastic_ip_for_describe_network_interfaces_output.py +175 -0
  440. byteplussdkvpc20250901/models/attach_network_interface_request.py +151 -0
  441. byteplussdkvpc20250901/models/attach_network_interface_response.py +149 -0
  442. byteplussdkvpc20250901/models/attachment_for_describe_network_interfaces_output.py +149 -0
  443. byteplussdkvpc20250901/models/authorize_security_group_egress_request.py +309 -0
  444. byteplussdkvpc20250901/models/authorize_security_group_egress_response.py +149 -0
  445. byteplussdkvpc20250901/models/authorize_security_group_ingress_request.py +309 -0
  446. byteplussdkvpc20250901/models/authorize_security_group_ingress_response.py +149 -0
  447. byteplussdkvpc20250901/models/create_network_interface_request.py +396 -0
  448. byteplussdkvpc20250901/models/create_network_interface_response.py +175 -0
  449. byteplussdkvpc20250901/models/create_route_entry_request.py +294 -0
  450. byteplussdkvpc20250901/models/create_route_entry_response.py +175 -0
  451. byteplussdkvpc20250901/models/create_route_table_request.py +266 -0
  452. byteplussdkvpc20250901/models/create_route_table_response.py +175 -0
  453. byteplussdkvpc20250901/models/create_security_group_request.py +254 -0
  454. byteplussdkvpc20250901/models/create_security_group_response.py +175 -0
  455. byteplussdkvpc20250901/models/create_subnet_request.py +294 -0
  456. byteplussdkvpc20250901/models/create_subnet_response.py +175 -0
  457. byteplussdkvpc20250901/models/create_vpc_request.py +292 -0
  458. byteplussdkvpc20250901/models/create_vpc_response.py +201 -0
  459. byteplussdkvpc20250901/models/delete_network_interface_request.py +124 -0
  460. byteplussdkvpc20250901/models/delete_network_interface_response.py +149 -0
  461. byteplussdkvpc20250901/models/delete_route_entry_request.py +124 -0
  462. byteplussdkvpc20250901/models/delete_route_entry_response.py +149 -0
  463. byteplussdkvpc20250901/models/delete_route_table_request.py +124 -0
  464. byteplussdkvpc20250901/models/delete_route_table_response.py +149 -0
  465. byteplussdkvpc20250901/models/delete_security_group_request.py +124 -0
  466. byteplussdkvpc20250901/models/delete_security_group_response.py +149 -0
  467. byteplussdkvpc20250901/models/delete_subnet_request.py +124 -0
  468. byteplussdkvpc20250901/models/delete_subnet_response.py +149 -0
  469. byteplussdkvpc20250901/models/delete_vpc_request.py +124 -0
  470. byteplussdkvpc20250901/models/delete_vpc_response.py +149 -0
  471. byteplussdkvpc20250901/models/describe_network_interface_attributes_request.py +124 -0
  472. byteplussdkvpc20250901/models/describe_network_interface_attributes_response.py +695 -0
  473. byteplussdkvpc20250901/models/describe_network_interfaces_request.py +548 -0
  474. byteplussdkvpc20250901/models/describe_network_interfaces_response.py +253 -0
  475. byteplussdkvpc20250901/models/describe_route_entry_list_request.py +393 -0
  476. byteplussdkvpc20250901/models/describe_route_entry_list_response.py +253 -0
  477. byteplussdkvpc20250901/models/describe_route_table_list_request.py +334 -0
  478. byteplussdkvpc20250901/models/describe_route_table_list_response.py +253 -0
  479. byteplussdkvpc20250901/models/describe_security_group_attributes_request.py +228 -0
  480. byteplussdkvpc20250901/models/describe_security_group_attributes_response.py +461 -0
  481. byteplussdkvpc20250901/models/describe_security_groups_request.py +340 -0
  482. byteplussdkvpc20250901/models/describe_security_groups_response.py +253 -0
  483. byteplussdkvpc20250901/models/describe_subnet_attributes_request.py +124 -0
  484. byteplussdkvpc20250901/models/describe_subnet_attributes_response.py +539 -0
  485. byteplussdkvpc20250901/models/describe_subnets_request.py +438 -0
  486. byteplussdkvpc20250901/models/describe_subnets_response.py +253 -0
  487. byteplussdkvpc20250901/models/describe_vpc_attributes_request.py +124 -0
  488. byteplussdkvpc20250901/models/describe_vpc_attributes_response.py +565 -0
  489. byteplussdkvpc20250901/models/describe_vpcs_request.py +366 -0
  490. byteplussdkvpc20250901/models/describe_vpcs_response.py +253 -0
  491. byteplussdkvpc20250901/models/detach_network_interface_request.py +151 -0
  492. byteplussdkvpc20250901/models/detach_network_interface_response.py +149 -0
  493. byteplussdkvpc20250901/models/disassociate_route_table_request.py +176 -0
  494. byteplussdkvpc20250901/models/disassociate_route_table_response.py +149 -0
  495. byteplussdkvpc20250901/models/disassociate_vpc_cidr_block_request.py +150 -0
  496. byteplussdkvpc20250901/models/disassociate_vpc_cidr_block_response.py +149 -0
  497. byteplussdkvpc20250901/models/list_tags_for_resources_request.py +264 -0
  498. byteplussdkvpc20250901/models/list_tags_for_resources_response.py +175 -0
  499. byteplussdkvpc20250901/models/modify_network_interface_attributes_request.py +266 -0
  500. byteplussdkvpc20250901/models/modify_network_interface_attributes_response.py +149 -0
  501. byteplussdkvpc20250901/models/modify_route_entry_request.py +188 -0
  502. byteplussdkvpc20250901/models/modify_route_entry_response.py +123 -0
  503. byteplussdkvpc20250901/models/modify_route_table_attributes_request.py +188 -0
  504. byteplussdkvpc20250901/models/modify_route_table_attributes_response.py +123 -0
  505. byteplussdkvpc20250901/models/modify_security_group_attributes_request.py +176 -0
  506. byteplussdkvpc20250901/models/modify_security_group_attributes_response.py +123 -0
  507. byteplussdkvpc20250901/models/modify_security_group_rule_descriptions_egress_request.py +283 -0
  508. byteplussdkvpc20250901/models/modify_security_group_rule_descriptions_egress_response.py +123 -0
  509. byteplussdkvpc20250901/models/modify_security_group_rule_descriptions_ingress_request.py +283 -0
  510. byteplussdkvpc20250901/models/modify_security_group_rule_descriptions_ingress_response.py +123 -0
  511. byteplussdkvpc20250901/models/modify_subnet_attributes_request.py +188 -0
  512. byteplussdkvpc20250901/models/modify_subnet_attributes_response.py +149 -0
  513. byteplussdkvpc20250901/models/modify_vpc_attributes_request.py +214 -0
  514. byteplussdkvpc20250901/models/modify_vpc_attributes_response.py +149 -0
  515. byteplussdkvpc20250901/models/network_interface_set_for_describe_network_interfaces_output.py +695 -0
  516. byteplussdkvpc20250901/models/permission_for_describe_security_group_attributes_output.py +331 -0
  517. byteplussdkvpc20250901/models/private_ip_set_for_describe_network_interface_attributes_output.py +175 -0
  518. byteplussdkvpc20250901/models/private_ip_set_for_describe_network_interfaces_output.py +175 -0
  519. byteplussdkvpc20250901/models/private_ip_sets_for_describe_network_interface_attributes_output.py +123 -0
  520. byteplussdkvpc20250901/models/private_ip_sets_for_describe_network_interfaces_output.py +123 -0
  521. byteplussdkvpc20250901/models/resource_tag_for_list_tags_for_resources_output.py +201 -0
  522. byteplussdkvpc20250901/models/revoke_security_group_egress_request.py +283 -0
  523. byteplussdkvpc20250901/models/revoke_security_group_egress_response.py +149 -0
  524. byteplussdkvpc20250901/models/revoke_security_group_ingress_request.py +283 -0
  525. byteplussdkvpc20250901/models/revoke_security_group_ingress_response.py +149 -0
  526. byteplussdkvpc20250901/models/route_entry_for_describe_route_entry_list_output.py +357 -0
  527. byteplussdkvpc20250901/models/route_table_for_describe_subnet_attributes_output.py +149 -0
  528. byteplussdkvpc20250901/models/route_table_for_describe_subnets_output.py +149 -0
  529. byteplussdkvpc20250901/models/router_table_list_for_describe_route_table_list_output.py +435 -0
  530. byteplussdkvpc20250901/models/security_group_for_describe_security_groups_output.py +383 -0
  531. byteplussdkvpc20250901/models/subnet_for_describe_subnets_output.py +513 -0
  532. byteplussdkvpc20250901/models/tag_filter_for_describe_network_interfaces_input.py +149 -0
  533. byteplussdkvpc20250901/models/tag_filter_for_describe_route_table_list_input.py +149 -0
  534. byteplussdkvpc20250901/models/tag_filter_for_describe_security_groups_input.py +149 -0
  535. byteplussdkvpc20250901/models/tag_filter_for_describe_subnets_input.py +149 -0
  536. byteplussdkvpc20250901/models/tag_filter_for_describe_vpcs_input.py +149 -0
  537. byteplussdkvpc20250901/models/tag_filter_for_list_tags_for_resources_input.py +149 -0
  538. byteplussdkvpc20250901/models/tag_for_create_network_interface_input.py +149 -0
  539. byteplussdkvpc20250901/models/tag_for_create_route_table_input.py +149 -0
  540. byteplussdkvpc20250901/models/tag_for_create_security_group_input.py +149 -0
  541. byteplussdkvpc20250901/models/tag_for_create_subnet_input.py +149 -0
  542. byteplussdkvpc20250901/models/tag_for_create_vpc_input.py +149 -0
  543. byteplussdkvpc20250901/models/tag_for_describe_network_interface_attributes_output.py +149 -0
  544. byteplussdkvpc20250901/models/tag_for_describe_network_interfaces_output.py +149 -0
  545. byteplussdkvpc20250901/models/tag_for_describe_route_table_list_output.py +149 -0
  546. byteplussdkvpc20250901/models/tag_for_describe_security_group_attributes_output.py +149 -0
  547. byteplussdkvpc20250901/models/tag_for_describe_security_groups_output.py +149 -0
  548. byteplussdkvpc20250901/models/tag_for_describe_subnet_attributes_output.py +149 -0
  549. byteplussdkvpc20250901/models/tag_for_describe_subnets_output.py +149 -0
  550. byteplussdkvpc20250901/models/tag_for_describe_vpc_attributes_output.py +149 -0
  551. byteplussdkvpc20250901/models/tag_for_describe_vpcs_output.py +149 -0
  552. byteplussdkvpc20250901/models/tag_for_tag_resources_input.py +150 -0
  553. byteplussdkvpc20250901/models/tag_resources_request.py +183 -0
  554. byteplussdkvpc20250901/models/tag_resources_response.py +123 -0
  555. byteplussdkvpc20250901/models/unassign_private_ip_addresses_request.py +150 -0
  556. byteplussdkvpc20250901/models/unassign_private_ip_addresses_response.py +149 -0
  557. byteplussdkvpc20250901/models/untag_resources_request.py +183 -0
  558. byteplussdkvpc20250901/models/untag_resources_response.py +123 -0
  559. byteplussdkvpc20250901/models/vpc_for_describe_vpcs_output.py +539 -0
  560. {byteplus_python_sdk_v2-3.0.43.dist-info → byteplus_python_sdk_v2-3.0.45.dist-info}/WHEEL +0 -0
  561. {byteplus_python_sdk_v2-3.0.43.dist-info → byteplus_python_sdk_v2-3.0.45.dist-info}/licenses/LICENSE.txt +0 -0
  562. {byteplus_python_sdk_v2-3.0.43.dist-info → byteplus_python_sdk_v2-3.0.45.dist-info}/licenses/NOTICE.md +0 -0
@@ -0,0 +1,123 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ kickart
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 byteplussdkcore.configuration import Configuration
20
+
21
+
22
+ class ListCreateCostResponse(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
+ 'cost': 'str'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'cost': 'Cost'
41
+ }
42
+
43
+ def __init__(self, cost=None, _configuration=None): # noqa: E501
44
+ """ListCreateCostResponse - a model defined in Swagger""" # noqa: E501
45
+ if _configuration is None:
46
+ _configuration = Configuration()
47
+ self._configuration = _configuration
48
+
49
+ self._cost = None
50
+ self.discriminator = None
51
+
52
+ if cost is not None:
53
+ self.cost = cost
54
+
55
+ @property
56
+ def cost(self):
57
+ """Gets the cost of this ListCreateCostResponse. # noqa: E501
58
+
59
+
60
+ :return: The cost of this ListCreateCostResponse. # noqa: E501
61
+ :rtype: str
62
+ """
63
+ return self._cost
64
+
65
+ @cost.setter
66
+ def cost(self, cost):
67
+ """Sets the cost of this ListCreateCostResponse.
68
+
69
+
70
+ :param cost: The cost of this ListCreateCostResponse. # noqa: E501
71
+ :type: str
72
+ """
73
+
74
+ self._cost = cost
75
+
76
+ def to_dict(self):
77
+ """Returns the model properties as a dict"""
78
+ result = {}
79
+
80
+ for attr, _ in six.iteritems(self.swagger_types):
81
+ value = getattr(self, attr)
82
+ if isinstance(value, list):
83
+ result[attr] = list(map(
84
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
85
+ value
86
+ ))
87
+ elif hasattr(value, "to_dict"):
88
+ result[attr] = value.to_dict()
89
+ elif isinstance(value, dict):
90
+ result[attr] = dict(map(
91
+ lambda item: (item[0], item[1].to_dict())
92
+ if hasattr(item[1], "to_dict") else item,
93
+ value.items()
94
+ ))
95
+ else:
96
+ result[attr] = value
97
+ if issubclass(ListCreateCostResponse, dict):
98
+ for key, value in self.items():
99
+ result[key] = value
100
+
101
+ return result
102
+
103
+ def to_str(self):
104
+ """Returns the string representation of the model"""
105
+ return pprint.pformat(self.to_dict())
106
+
107
+ def __repr__(self):
108
+ """For `print` and `pprint`"""
109
+ return self.to_str()
110
+
111
+ def __eq__(self, other):
112
+ """Returns true if both objects are equal"""
113
+ if not isinstance(other, ListCreateCostResponse):
114
+ return False
115
+
116
+ return self.to_dict() == other.to_dict()
117
+
118
+ def __ne__(self, other):
119
+ """Returns true if both objects are not equal"""
120
+ if not isinstance(other, ListCreateCostResponse):
121
+ return True
122
+
123
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,253 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ kickart
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 byteplussdkcore.configuration import Configuration
20
+
21
+
22
+ class ListCreativePointLogsRequest(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
+ 'consumer_item_ids': 'list[int]',
37
+ 'from_ts': 'int',
38
+ 'operator_ids': 'list[str]',
39
+ 'page': 'int',
40
+ 'page_size': 'int',
41
+ 'to_ts': 'int'
42
+ }
43
+
44
+ attribute_map = {
45
+ 'consumer_item_ids': 'ConsumerItemIds',
46
+ 'from_ts': 'FromTs',
47
+ 'operator_ids': 'OperatorIds',
48
+ 'page': 'Page',
49
+ 'page_size': 'PageSize',
50
+ 'to_ts': 'ToTs'
51
+ }
52
+
53
+ def __init__(self, consumer_item_ids=None, from_ts=None, operator_ids=None, page=None, page_size=None, to_ts=None, _configuration=None): # noqa: E501
54
+ """ListCreativePointLogsRequest - a model defined in Swagger""" # noqa: E501
55
+ if _configuration is None:
56
+ _configuration = Configuration()
57
+ self._configuration = _configuration
58
+
59
+ self._consumer_item_ids = None
60
+ self._from_ts = None
61
+ self._operator_ids = None
62
+ self._page = None
63
+ self._page_size = None
64
+ self._to_ts = None
65
+ self.discriminator = None
66
+
67
+ if consumer_item_ids is not None:
68
+ self.consumer_item_ids = consumer_item_ids
69
+ if from_ts is not None:
70
+ self.from_ts = from_ts
71
+ if operator_ids is not None:
72
+ self.operator_ids = operator_ids
73
+ if page is not None:
74
+ self.page = page
75
+ if page_size is not None:
76
+ self.page_size = page_size
77
+ if to_ts is not None:
78
+ self.to_ts = to_ts
79
+
80
+ @property
81
+ def consumer_item_ids(self):
82
+ """Gets the consumer_item_ids of this ListCreativePointLogsRequest. # noqa: E501
83
+
84
+
85
+ :return: The consumer_item_ids of this ListCreativePointLogsRequest. # noqa: E501
86
+ :rtype: list[int]
87
+ """
88
+ return self._consumer_item_ids
89
+
90
+ @consumer_item_ids.setter
91
+ def consumer_item_ids(self, consumer_item_ids):
92
+ """Sets the consumer_item_ids of this ListCreativePointLogsRequest.
93
+
94
+
95
+ :param consumer_item_ids: The consumer_item_ids of this ListCreativePointLogsRequest. # noqa: E501
96
+ :type: list[int]
97
+ """
98
+
99
+ self._consumer_item_ids = consumer_item_ids
100
+
101
+ @property
102
+ def from_ts(self):
103
+ """Gets the from_ts of this ListCreativePointLogsRequest. # noqa: E501
104
+
105
+
106
+ :return: The from_ts of this ListCreativePointLogsRequest. # noqa: E501
107
+ :rtype: int
108
+ """
109
+ return self._from_ts
110
+
111
+ @from_ts.setter
112
+ def from_ts(self, from_ts):
113
+ """Sets the from_ts of this ListCreativePointLogsRequest.
114
+
115
+
116
+ :param from_ts: The from_ts of this ListCreativePointLogsRequest. # noqa: E501
117
+ :type: int
118
+ """
119
+
120
+ self._from_ts = from_ts
121
+
122
+ @property
123
+ def operator_ids(self):
124
+ """Gets the operator_ids of this ListCreativePointLogsRequest. # noqa: E501
125
+
126
+
127
+ :return: The operator_ids of this ListCreativePointLogsRequest. # noqa: E501
128
+ :rtype: list[str]
129
+ """
130
+ return self._operator_ids
131
+
132
+ @operator_ids.setter
133
+ def operator_ids(self, operator_ids):
134
+ """Sets the operator_ids of this ListCreativePointLogsRequest.
135
+
136
+
137
+ :param operator_ids: The operator_ids of this ListCreativePointLogsRequest. # noqa: E501
138
+ :type: list[str]
139
+ """
140
+
141
+ self._operator_ids = operator_ids
142
+
143
+ @property
144
+ def page(self):
145
+ """Gets the page of this ListCreativePointLogsRequest. # noqa: E501
146
+
147
+
148
+ :return: The page of this ListCreativePointLogsRequest. # noqa: E501
149
+ :rtype: int
150
+ """
151
+ return self._page
152
+
153
+ @page.setter
154
+ def page(self, page):
155
+ """Sets the page of this ListCreativePointLogsRequest.
156
+
157
+
158
+ :param page: The page of this ListCreativePointLogsRequest. # noqa: E501
159
+ :type: int
160
+ """
161
+
162
+ self._page = page
163
+
164
+ @property
165
+ def page_size(self):
166
+ """Gets the page_size of this ListCreativePointLogsRequest. # noqa: E501
167
+
168
+
169
+ :return: The page_size of this ListCreativePointLogsRequest. # noqa: E501
170
+ :rtype: int
171
+ """
172
+ return self._page_size
173
+
174
+ @page_size.setter
175
+ def page_size(self, page_size):
176
+ """Sets the page_size of this ListCreativePointLogsRequest.
177
+
178
+
179
+ :param page_size: The page_size of this ListCreativePointLogsRequest. # noqa: E501
180
+ :type: int
181
+ """
182
+
183
+ self._page_size = page_size
184
+
185
+ @property
186
+ def to_ts(self):
187
+ """Gets the to_ts of this ListCreativePointLogsRequest. # noqa: E501
188
+
189
+
190
+ :return: The to_ts of this ListCreativePointLogsRequest. # noqa: E501
191
+ :rtype: int
192
+ """
193
+ return self._to_ts
194
+
195
+ @to_ts.setter
196
+ def to_ts(self, to_ts):
197
+ """Sets the to_ts of this ListCreativePointLogsRequest.
198
+
199
+
200
+ :param to_ts: The to_ts of this ListCreativePointLogsRequest. # noqa: E501
201
+ :type: int
202
+ """
203
+
204
+ self._to_ts = to_ts
205
+
206
+ def to_dict(self):
207
+ """Returns the model properties as a dict"""
208
+ result = {}
209
+
210
+ for attr, _ in six.iteritems(self.swagger_types):
211
+ value = getattr(self, attr)
212
+ if isinstance(value, list):
213
+ result[attr] = list(map(
214
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
215
+ value
216
+ ))
217
+ elif hasattr(value, "to_dict"):
218
+ result[attr] = value.to_dict()
219
+ elif isinstance(value, dict):
220
+ result[attr] = dict(map(
221
+ lambda item: (item[0], item[1].to_dict())
222
+ if hasattr(item[1], "to_dict") else item,
223
+ value.items()
224
+ ))
225
+ else:
226
+ result[attr] = value
227
+ if issubclass(ListCreativePointLogsRequest, dict):
228
+ for key, value in self.items():
229
+ result[key] = value
230
+
231
+ return result
232
+
233
+ def to_str(self):
234
+ """Returns the string representation of the model"""
235
+ return pprint.pformat(self.to_dict())
236
+
237
+ def __repr__(self):
238
+ """For `print` and `pprint`"""
239
+ return self.to_str()
240
+
241
+ def __eq__(self, other):
242
+ """Returns true if both objects are equal"""
243
+ if not isinstance(other, ListCreativePointLogsRequest):
244
+ return False
245
+
246
+ return self.to_dict() == other.to_dict()
247
+
248
+ def __ne__(self, other):
249
+ """Returns true if both objects are not equal"""
250
+ if not isinstance(other, ListCreativePointLogsRequest):
251
+ return True
252
+
253
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,149 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ kickart
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 byteplussdkcore.configuration import Configuration
20
+
21
+
22
+ class ListCreativePointLogsResponse(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
+ 'logs': 'list[str]',
37
+ 'total': 'int'
38
+ }
39
+
40
+ attribute_map = {
41
+ 'logs': 'Logs',
42
+ 'total': 'Total'
43
+ }
44
+
45
+ def __init__(self, logs=None, total=None, _configuration=None): # noqa: E501
46
+ """ListCreativePointLogsResponse - a model defined in Swagger""" # noqa: E501
47
+ if _configuration is None:
48
+ _configuration = Configuration()
49
+ self._configuration = _configuration
50
+
51
+ self._logs = None
52
+ self._total = None
53
+ self.discriminator = None
54
+
55
+ if logs is not None:
56
+ self.logs = logs
57
+ if total is not None:
58
+ self.total = total
59
+
60
+ @property
61
+ def logs(self):
62
+ """Gets the logs of this ListCreativePointLogsResponse. # noqa: E501
63
+
64
+
65
+ :return: The logs of this ListCreativePointLogsResponse. # noqa: E501
66
+ :rtype: list[str]
67
+ """
68
+ return self._logs
69
+
70
+ @logs.setter
71
+ def logs(self, logs):
72
+ """Sets the logs of this ListCreativePointLogsResponse.
73
+
74
+
75
+ :param logs: The logs of this ListCreativePointLogsResponse. # noqa: E501
76
+ :type: list[str]
77
+ """
78
+
79
+ self._logs = logs
80
+
81
+ @property
82
+ def total(self):
83
+ """Gets the total of this ListCreativePointLogsResponse. # noqa: E501
84
+
85
+
86
+ :return: The total of this ListCreativePointLogsResponse. # noqa: E501
87
+ :rtype: int
88
+ """
89
+ return self._total
90
+
91
+ @total.setter
92
+ def total(self, total):
93
+ """Sets the total of this ListCreativePointLogsResponse.
94
+
95
+
96
+ :param total: The total of this ListCreativePointLogsResponse. # noqa: E501
97
+ :type: int
98
+ """
99
+
100
+ self._total = total
101
+
102
+ def to_dict(self):
103
+ """Returns the model properties as a dict"""
104
+ result = {}
105
+
106
+ for attr, _ in six.iteritems(self.swagger_types):
107
+ value = getattr(self, attr)
108
+ if isinstance(value, list):
109
+ result[attr] = list(map(
110
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
111
+ value
112
+ ))
113
+ elif hasattr(value, "to_dict"):
114
+ result[attr] = value.to_dict()
115
+ elif isinstance(value, dict):
116
+ result[attr] = dict(map(
117
+ lambda item: (item[0], item[1].to_dict())
118
+ if hasattr(item[1], "to_dict") else item,
119
+ value.items()
120
+ ))
121
+ else:
122
+ result[attr] = value
123
+ if issubclass(ListCreativePointLogsResponse, dict):
124
+ for key, value in self.items():
125
+ result[key] = value
126
+
127
+ return result
128
+
129
+ def to_str(self):
130
+ """Returns the string representation of the model"""
131
+ return pprint.pformat(self.to_dict())
132
+
133
+ def __repr__(self):
134
+ """For `print` and `pprint`"""
135
+ return self.to_str()
136
+
137
+ def __eq__(self, other):
138
+ """Returns true if both objects are equal"""
139
+ if not isinstance(other, ListCreativePointLogsResponse):
140
+ return False
141
+
142
+ return self.to_dict() == other.to_dict()
143
+
144
+ def __ne__(self, other):
145
+ """Returns true if both objects are not equal"""
146
+ if not isinstance(other, ListCreativePointLogsResponse):
147
+ return True
148
+
149
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,149 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ kickart
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 byteplussdkcore.configuration import Configuration
20
+
21
+
22
+ class ListGeniusProjectRequest(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
+ 'page_number': 'int',
37
+ 'page_size': 'int'
38
+ }
39
+
40
+ attribute_map = {
41
+ 'page_number': 'PageNumber',
42
+ 'page_size': 'PageSize'
43
+ }
44
+
45
+ def __init__(self, page_number=None, page_size=None, _configuration=None): # noqa: E501
46
+ """ListGeniusProjectRequest - a model defined in Swagger""" # noqa: E501
47
+ if _configuration is None:
48
+ _configuration = Configuration()
49
+ self._configuration = _configuration
50
+
51
+ self._page_number = None
52
+ self._page_size = None
53
+ self.discriminator = None
54
+
55
+ if page_number is not None:
56
+ self.page_number = page_number
57
+ if page_size is not None:
58
+ self.page_size = page_size
59
+
60
+ @property
61
+ def page_number(self):
62
+ """Gets the page_number of this ListGeniusProjectRequest. # noqa: E501
63
+
64
+
65
+ :return: The page_number of this ListGeniusProjectRequest. # noqa: E501
66
+ :rtype: int
67
+ """
68
+ return self._page_number
69
+
70
+ @page_number.setter
71
+ def page_number(self, page_number):
72
+ """Sets the page_number of this ListGeniusProjectRequest.
73
+
74
+
75
+ :param page_number: The page_number of this ListGeniusProjectRequest. # noqa: E501
76
+ :type: int
77
+ """
78
+
79
+ self._page_number = page_number
80
+
81
+ @property
82
+ def page_size(self):
83
+ """Gets the page_size of this ListGeniusProjectRequest. # noqa: E501
84
+
85
+
86
+ :return: The page_size of this ListGeniusProjectRequest. # noqa: E501
87
+ :rtype: int
88
+ """
89
+ return self._page_size
90
+
91
+ @page_size.setter
92
+ def page_size(self, page_size):
93
+ """Sets the page_size of this ListGeniusProjectRequest.
94
+
95
+
96
+ :param page_size: The page_size of this ListGeniusProjectRequest. # noqa: E501
97
+ :type: int
98
+ """
99
+
100
+ self._page_size = page_size
101
+
102
+ def to_dict(self):
103
+ """Returns the model properties as a dict"""
104
+ result = {}
105
+
106
+ for attr, _ in six.iteritems(self.swagger_types):
107
+ value = getattr(self, attr)
108
+ if isinstance(value, list):
109
+ result[attr] = list(map(
110
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
111
+ value
112
+ ))
113
+ elif hasattr(value, "to_dict"):
114
+ result[attr] = value.to_dict()
115
+ elif isinstance(value, dict):
116
+ result[attr] = dict(map(
117
+ lambda item: (item[0], item[1].to_dict())
118
+ if hasattr(item[1], "to_dict") else item,
119
+ value.items()
120
+ ))
121
+ else:
122
+ result[attr] = value
123
+ if issubclass(ListGeniusProjectRequest, dict):
124
+ for key, value in self.items():
125
+ result[key] = value
126
+
127
+ return result
128
+
129
+ def to_str(self):
130
+ """Returns the string representation of the model"""
131
+ return pprint.pformat(self.to_dict())
132
+
133
+ def __repr__(self):
134
+ """For `print` and `pprint`"""
135
+ return self.to_str()
136
+
137
+ def __eq__(self, other):
138
+ """Returns true if both objects are equal"""
139
+ if not isinstance(other, ListGeniusProjectRequest):
140
+ return False
141
+
142
+ return self.to_dict() == other.to_dict()
143
+
144
+ def __ne__(self, other):
145
+ """Returns true if both objects are not equal"""
146
+ if not isinstance(other, ListGeniusProjectRequest):
147
+ return True
148
+
149
+ return self.to_dict() != other.to_dict()