volcengine-python-sdk 5.0.24__py2.py3-none-any.whl → 5.0.25__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.
- {volcengine_python_sdk-5.0.24.dist-info → volcengine_python_sdk-5.0.25.dist-info}/METADATA +1 -1
- {volcengine_python_sdk-5.0.24.dist-info → volcengine_python_sdk-5.0.25.dist-info}/RECORD +103 -34
- volcenginesdkarkclaw/__init__.py +4 -0
- volcenginesdkarkclaw/api/arkclaw_api.py +97 -0
- volcenginesdkarkclaw/models/__init__.py +4 -0
- volcenginesdkarkclaw/models/create_claw_omni_instance_request.py +27 -1
- volcenginesdkarkclaw/models/env_var_for_create_claw_omni_instance_input.py +150 -0
- volcenginesdkarkclaw/models/env_var_for_execute_claw_omni_instance_command_input.py +150 -0
- volcenginesdkarkclaw/models/execute_claw_omni_instance_command_request.py +229 -0
- volcenginesdkarkclaw/models/execute_claw_omni_instance_command_response.py +175 -0
- volcenginesdkarkclaw/models/model_config_for_create_claw_omni_instance_input.py +1 -27
- volcenginesdkcore/api_client.py +1 -1
- volcenginesdkcore/configuration.py +1 -1
- volcenginesdkfwcenter/__init__.py +65 -0
- volcenginesdkfwcenter/api/fwcenter_api.py +2677 -543
- volcenginesdkfwcenter/models/__init__.py +65 -0
- volcenginesdkfwcenter/models/add_acl_backup_request.py +150 -0
- volcenginesdkfwcenter/models/add_acl_backup_response.py +123 -0
- volcenginesdkfwcenter/models/add_control_policy_request.py +34 -1
- volcenginesdkfwcenter/models/add_nat_firewall_control_policy_request.py +34 -1
- volcenginesdkfwcenter/models/add_vpc_firewall_acl_rule_request.py +67 -1
- volcenginesdkfwcenter/models/asset_list_request.py +53 -1
- volcenginesdkfwcenter/models/conflict_detail_for_get_policy_analyze_detail_output.py +149 -0
- volcenginesdkfwcenter/models/conflict_rule_id_list_for_get_policy_analyze_detail_output.py +149 -0
- volcenginesdkfwcenter/models/create_fw_instance_for_user_request.py +647 -0
- volcenginesdkfwcenter/models/create_fw_instance_for_user_response.py +123 -0
- volcenginesdkfwcenter/models/create_vpc_firewall_request.py +404 -0
- volcenginesdkfwcenter/models/create_vpc_firewall_response.py +123 -0
- volcenginesdkfwcenter/models/create_vpc_firewall_route_policy_request.py +263 -0
- volcenginesdkfwcenter/models/create_vpc_firewall_route_policy_response.py +123 -0
- volcenginesdkfwcenter/models/data_for_describe_acl_backup_output.py +305 -0
- volcenginesdkfwcenter/models/data_for_describe_control_policy_by_rule_id_output.py +27 -1
- volcenginesdkfwcenter/models/data_for_describe_control_policy_output.py +27 -1
- volcenginesdkfwcenter/models/data_for_describe_nat_firewall_control_policy_output.py +53 -1
- volcenginesdkfwcenter/models/data_for_describe_nat_firewall_list_output.py +15 -15
- volcenginesdkfwcenter/models/data_for_describe_transit_router_resources_list_output.py +227 -0
- volcenginesdkfwcenter/models/data_for_describe_vpc_firewall_acl_rule_list_output.py +27 -1
- volcenginesdkfwcenter/models/data_for_describe_vpc_firewall_list_output.py +41 -15
- volcenginesdkfwcenter/models/data_for_describe_vpc_firewall_route_policy_list_output.py +331 -0
- volcenginesdkfwcenter/models/data_for_get_policy_analyze_detail_output.py +279 -0
- volcenginesdkfwcenter/models/delete_acl_backup_request.py +149 -0
- volcenginesdkfwcenter/models/delete_acl_backup_response.py +123 -0
- volcenginesdkfwcenter/models/delete_vpc_firewall_request.py +124 -0
- volcenginesdkfwcenter/models/delete_vpc_firewall_response.py +123 -0
- volcenginesdkfwcenter/models/delete_vpc_firewall_route_policy_request.py +151 -0
- volcenginesdkfwcenter/models/delete_vpc_firewall_route_policy_response.py +123 -0
- volcenginesdkfwcenter/models/describe_acl_backup_request.py +289 -0
- volcenginesdkfwcenter/models/describe_acl_backup_response.py +227 -0
- volcenginesdkfwcenter/models/describe_address_book_request.py +0 -3
- volcenginesdkfwcenter/models/describe_nat_firewall_list_request.py +34 -1
- volcenginesdkfwcenter/models/describe_transit_router_resources_list_request.py +150 -0
- volcenginesdkfwcenter/models/describe_transit_router_resources_list_response.py +123 -0
- volcenginesdkfwcenter/models/describe_vpc_firewall_acl_rule_list_request.py +34 -1
- volcenginesdkfwcenter/models/describe_vpc_firewall_list_request.py +34 -1
- volcenginesdkfwcenter/models/describe_vpc_firewall_route_policy_list_request.py +124 -0
- volcenginesdkfwcenter/models/describe_vpc_firewall_route_policy_list_response.py +123 -0
- volcenginesdkfwcenter/models/detail_risk_list_for_get_policy_analyze_overview_output.py +149 -0
- volcenginesdkfwcenter/models/dst_candidate_list_for_create_vpc_firewall_route_policy_input.py +208 -0
- volcenginesdkfwcenter/models/dst_candidate_list_for_describe_vpc_firewall_route_policy_list_output.py +201 -0
- volcenginesdkfwcenter/models/dst_candidate_list_for_modify_vpc_firewall_route_policy_input.py +208 -0
- volcenginesdkfwcenter/models/get_policy_analyze_detail_request.py +381 -0
- volcenginesdkfwcenter/models/get_policy_analyze_detail_response.py +227 -0
- volcenginesdkfwcenter/models/get_policy_analyze_overview_request.py +175 -0
- volcenginesdkfwcenter/models/get_policy_analyze_overview_response.py +149 -0
- volcenginesdkfwcenter/models/get_policy_analyze_result_request.py +175 -0
- volcenginesdkfwcenter/models/get_policy_analyze_result_response.py +279 -0
- volcenginesdkfwcenter/models/get_policy_check_result_request.py +391 -0
- volcenginesdkfwcenter/models/get_policy_check_result_response.py +175 -0
- volcenginesdkfwcenter/models/hit_rule_list_for_get_policy_check_result_output.py +357 -0
- volcenginesdkfwcenter/models/modify_control_policy_request.py +34 -1
- volcenginesdkfwcenter/models/modify_nat_firewall_control_policy_request.py +34 -1
- volcenginesdkfwcenter/models/modify_vpc_firewall_acl_rule_request.py +67 -1
- volcenginesdkfwcenter/models/modify_vpc_firewall_request.py +182 -0
- volcenginesdkfwcenter/models/modify_vpc_firewall_response.py +123 -0
- volcenginesdkfwcenter/models/modify_vpc_firewall_route_policy_request.py +264 -0
- volcenginesdkfwcenter/models/modify_vpc_firewall_route_policy_response.py +123 -0
- volcenginesdkfwcenter/models/nat_firewall_info_list_for_describe_acl_backup_output.py +175 -0
- volcenginesdkfwcenter/models/policy_analyze_result_list_for_get_policy_analyze_result_output.py +253 -0
- volcenginesdkfwcenter/models/query_user_alarm_config_request.py +123 -0
- volcenginesdkfwcenter/models/query_user_alarm_config_response.py +279 -0
- volcenginesdkfwcenter/models/src_candidate_list_for_create_vpc_firewall_route_policy_input.py +208 -0
- volcenginesdkfwcenter/models/src_candidate_list_for_describe_vpc_firewall_route_policy_list_output.py +201 -0
- volcenginesdkfwcenter/models/src_candidate_list_for_modify_vpc_firewall_route_policy_input.py +208 -0
- volcenginesdkfwcenter/models/start_policy_analyze_task_request.py +209 -0
- volcenginesdkfwcenter/models/start_policy_analyze_task_response.py +123 -0
- volcenginesdkfwcenter/models/tag_for_create_fw_instance_for_user_input.py +158 -0
- volcenginesdkfwcenter/models/tag_for_create_vpc_firewall_input.py +158 -0
- volcenginesdkfwcenter/models/task_list_for_start_policy_analyze_task_output.py +175 -0
- volcenginesdkfwcenter/models/update_policy_result_status_request.py +235 -0
- volcenginesdkfwcenter/models/update_policy_result_status_response.py +123 -0
- volcenginesdkfwcenter/models/update_user_alarm_config_request.py +415 -0
- volcenginesdkfwcenter/models/update_user_alarm_config_response.py +123 -0
- volcenginesdkfwcenter/models/update_vpc_firewall_route_policy_switch_request.py +178 -0
- volcenginesdkfwcenter/models/update_vpc_firewall_route_policy_switch_response.py +123 -0
- volcenginesdkfwcenter/models/use_acl_backup_request.py +228 -0
- volcenginesdkfwcenter/models/use_acl_backup_response.py +123 -0
- volcenginesdkfwcenter/models/user_alarm_config_list_for_query_user_alarm_config_output.py +357 -0
- volcenginesdkfwcenter/models/vpc_firewall_info_list_for_describe_acl_backup_output.py +175 -0
- volcenginesdkinsight/models/item_doc_for_pull_post_output.py +27 -1
- {volcengine_python_sdk-5.0.24.dist-info → volcengine_python_sdk-5.0.25.dist-info}/WHEEL +0 -0
- {volcengine_python_sdk-5.0.24.dist-info → volcengine_python_sdk-5.0.25.dist-info}/licenses/LICENSE.txt +0 -0
- {volcengine_python_sdk-5.0.24.dist-info → volcengine_python_sdk-5.0.25.dist-info}/licenses/NOTICE.md +0 -0
- {volcengine_python_sdk-5.0.24.dist-info → volcengine_python_sdk-5.0.25.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
volcengine_python_sdk-5.0.
|
|
2
|
-
volcengine_python_sdk-5.0.
|
|
1
|
+
volcengine_python_sdk-5.0.25.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
2
|
+
volcengine_python_sdk-5.0.25.dist-info/licenses/NOTICE.md,sha256=dqWX0O4-gFqGLdHJsXAiF6Q8JHlu_3nFaQSmrMHzujM,254
|
|
3
3
|
volcenginesdkacep/__init__.py,sha256=Snz-rkdDSeBz7hU3wEf1RFXiqShKtCbJooRNuFlGp0Y,30707
|
|
4
4
|
volcenginesdkacep/api/__init__.py,sha256=MCzGEBg4XwY5aDIDy8nitUz4vu_2xmRRY83V6lqt460,138
|
|
5
5
|
volcenginesdkacep/api/acep_api.py,sha256=LS5qwTW5RcBRWUILrtjk2UWQu35BbLt1WCUe96xMq2c,402873
|
|
@@ -1680,22 +1680,26 @@ volcenginesdkark/models/training_set_for_list_model_customization_jobs_output.py
|
|
|
1680
1680
|
volcenginesdkark/models/validation_set_for_create_model_customization_job_input.py,sha256=ozx5AiDYe03UV-KpcmnoY6Cf_cFDRmvlnHbCXWanyGw,5535
|
|
1681
1681
|
volcenginesdkark/models/validation_set_for_get_model_customization_job_output.py,sha256=dqwetViiHB9vpBy23CdV5Eoy-Wxtes3tRfYSBUOQLs8,5495
|
|
1682
1682
|
volcenginesdkark/models/validation_set_for_list_model_customization_jobs_output.py,sha256=dFb4WCUsjz8yn5xW2uT2meRKwDKt7kt6u2ug1n3sOCE,5535
|
|
1683
|
-
volcenginesdkarkclaw/__init__.py,sha256=
|
|
1683
|
+
volcenginesdkarkclaw/__init__.py,sha256=fh_LeTY8Yr57i5plA-Ads1eqCMnAa17S49Sop9d7F6U,3307
|
|
1684
1684
|
volcenginesdkarkclaw/api/__init__.py,sha256=SA9OUfG6Ki23s9v3M5vQDPUL_48S0b92TMaHMp_tRDg,147
|
|
1685
|
-
volcenginesdkarkclaw/api/arkclaw_api.py,sha256=
|
|
1686
|
-
volcenginesdkarkclaw/models/__init__.py,sha256=
|
|
1685
|
+
volcenginesdkarkclaw/api/arkclaw_api.py,sha256=6DFurnCBst0ew83DiIVDOMphc2oKvC-FDdTTmVSVl9o,28402
|
|
1686
|
+
volcenginesdkarkclaw/models/__init__.py,sha256=sD3GS9XL9gdWRSOpBeI4xX0ojMomZUGoyJzipRKAI5c,3216
|
|
1687
1687
|
volcenginesdkarkclaw/models/claw_omni_instance_for_get_claw_omni_instance_output.py,sha256=gaqgk_J2ZeCPwTKtNAnrQFvZZvPME60r_j8LrAXQ26o,17455
|
|
1688
|
-
volcenginesdkarkclaw/models/create_claw_omni_instance_request.py,sha256=
|
|
1688
|
+
volcenginesdkarkclaw/models/create_claw_omni_instance_request.py,sha256=6oHqi-pJBm324BqGlSH6lgKorJB1RmO7VdfYhZwrNA0,13315
|
|
1689
1689
|
volcenginesdkarkclaw/models/create_claw_omni_instance_response.py,sha256=bZvHB68MLdYyFBs7X47vXZr7IdXIvGYKHwejiuEt7WY,3444
|
|
1690
1690
|
volcenginesdkarkclaw/models/delete_claw_omni_instance_request.py,sha256=V91DVF5fqDJXcB4TwyMYJS5I0GXRMZ8v9625z9pL40A,4367
|
|
1691
1691
|
volcenginesdkarkclaw/models/delete_claw_omni_instance_response.py,sha256=bCfuBdPOe_vUAkhMSZ0L0aXLXjgP4p7m__EDHauskSs,3444
|
|
1692
|
+
volcenginesdkarkclaw/models/env_var_for_create_claw_omni_instance_input.py,sha256=mrR3o0OcEEKQlVEAIp_RHCjsPxH-bJE4qY9C8yrKO14,4340
|
|
1693
|
+
volcenginesdkarkclaw/models/env_var_for_execute_claw_omni_instance_command_input.py,sha256=1TgSr-8d3r5imzNSPYmREEb7gcfL7YBxo136TvtLq0o,4444
|
|
1694
|
+
volcenginesdkarkclaw/models/execute_claw_omni_instance_command_request.py,sha256=8JgLI2oAPNzCqUEPJkzGJkDnZM1zTwcEtp8fHZqzJmY,6955
|
|
1695
|
+
volcenginesdkarkclaw/models/execute_claw_omni_instance_command_response.py,sha256=3Sh8oL3johfC8j7adjSVuF6v0wI_2BZy0FZ9QTDqBFw,5216
|
|
1692
1696
|
volcenginesdkarkclaw/models/filter_for_list_claw_omni_instances_input.py,sha256=XvFz_43Wyp_fwGJzCucbFU3dU-Ozg3_hi2peghH72ng,5104
|
|
1693
1697
|
volcenginesdkarkclaw/models/get_claw_omni_instance_request.py,sha256=34my3t7YmllQGs2LSvryfft5BvKbpJd3nJ4z60eTIzs,4328
|
|
1694
1698
|
volcenginesdkarkclaw/models/get_claw_omni_instance_response.py,sha256=3aypu61FANQz-EMhhe2Lxuhs3XyUFvHEkeejeeqTYhU,3858
|
|
1695
1699
|
volcenginesdkarkclaw/models/instance_for_list_claw_omni_instances_output.py,sha256=F3_Enm0RT3jxjFAZkR374d4Lysm1dcV3awCbh4s5mTY,17005
|
|
1696
1700
|
volcenginesdkarkclaw/models/list_claw_omni_instances_request.py,sha256=qBeKqQV10l29wi4JOU90uKZG3gQ1ozRwFDTMvExb2Uw,8274
|
|
1697
1701
|
volcenginesdkarkclaw/models/list_claw_omni_instances_response.py,sha256=OVQ9zk2fRfn7w45f6leBRIqAOFWHBPanQQmy-J3RXn4,6010
|
|
1698
|
-
volcenginesdkarkclaw/models/model_config_for_create_claw_omni_instance_input.py,sha256=
|
|
1702
|
+
volcenginesdkarkclaw/models/model_config_for_create_claw_omni_instance_input.py,sha256=8chP-S3WS5A9TkOZMmEmvIFWQ6SVYq0lNL5Rd637tc0,4514
|
|
1699
1703
|
volcenginesdkarkclaw/models/model_config_for_get_claw_omni_instance_output.py,sha256=bGUJCpQKSaeFzIgnuI4i9V6bB9uFQNnzaakiK-toinA,5292
|
|
1700
1704
|
volcenginesdkarkclaw/models/model_config_for_list_claw_omni_instances_output.py,sha256=ZjCdDTCmMNXi823Jive1w4ZO35NgCiW4p082_VWoPV0,5326
|
|
1701
1705
|
volcenginesdkarkclaw/models/pause_claw_omni_instance_request.py,sha256=UPKZo-TH4c1k0HqmTSrgMGmiUunzbO9KX5z1nPZpzdQ,3554
|
|
@@ -4897,8 +4901,8 @@ volcenginesdkconfig/models/tag_for_list_discovered_resources_output.py,sha256=gs
|
|
|
4897
4901
|
volcenginesdkconfig/models/update_account_group_request.py,sha256=E-63Vq7Fgmi5oXU8NGyNsMyy2v1KhyWZprrpgVZA2h0,5608
|
|
4898
4902
|
volcenginesdkconfig/models/update_account_group_response.py,sha256=NwAkFJCOSds-noYdJhcn6Mu0psvvWV9mwA4RNXyMxfE,2814
|
|
4899
4903
|
volcenginesdkcore/__init__.py,sha256=WkgQAEhL6zg4ofQI82LD-3K-ij28yT-lpMiDoKmppwM,318
|
|
4900
|
-
volcenginesdkcore/api_client.py,sha256=
|
|
4901
|
-
volcenginesdkcore/configuration.py,sha256=
|
|
4904
|
+
volcenginesdkcore/api_client.py,sha256=uotnRPED3PDvbiZv4vH7T9yXJyMZXI5fa6pReQkXi6w,18324
|
|
4905
|
+
volcenginesdkcore/configuration.py,sha256=8W3UqqS4ISGuPf58-TbqprhYgYJuD3Tw-k2NIF4O8lc,12082
|
|
4902
4906
|
volcenginesdkcore/flatten.py,sha256=g3r61JS_AO7WV6ClRDkXgtnVXcw3c7tbZjeLAJxkSLc,3811
|
|
4903
4907
|
volcenginesdkcore/metadata.py,sha256=lHsOz9JcwdM7oqBb5dhSl6z3qF-M3TnTFbCzxRV89f4,4529
|
|
4904
4908
|
volcenginesdkcore/model.py,sha256=f3cvQ6QiQfecClucu-_-l5xVI3W5_vF-EKkjwZu7Vjc,177
|
|
@@ -7898,19 +7902,21 @@ volcenginesdkflink20250101/models/restart_gws_application_response.py,sha256=RBl
|
|
|
7898
7902
|
volcenginesdkflink20250101/models/restore_strategy_for_start_application_instance_input.py,sha256=utE9658ODo7ng39sOTQrPGDRRG9sRsYaMreLQvoVYWE,4519
|
|
7899
7903
|
volcenginesdkflink20250101/models/start_application_instance_request.py,sha256=uevip6cAENZBs_zwbOo6DEz4mjdY0svyhJoLw5yGBbc,5212
|
|
7900
7904
|
volcenginesdkflink20250101/models/start_application_instance_response.py,sha256=2vQhdTncm9ZAzQwQugc5fm5fhxe-2A8WznDMuUtKnV8,4984
|
|
7901
|
-
volcenginesdkfwcenter/__init__.py,sha256=
|
|
7905
|
+
volcenginesdkfwcenter/__init__.py,sha256=Ex_0urkgP052NdbzFjkD4CzdrSYNgnOzClMpJFizXnU,21895
|
|
7902
7906
|
volcenginesdkfwcenter/api/__init__.py,sha256=BPSUu0Hl1Yyj3EAqo5W1yYPCmU986UCWeAlw60fZ69g,150
|
|
7903
|
-
volcenginesdkfwcenter/api/fwcenter_api.py,sha256=
|
|
7904
|
-
volcenginesdkfwcenter/models/__init__.py,sha256=
|
|
7907
|
+
volcenginesdkfwcenter/api/fwcenter_api.py,sha256=zin3b2krV67PLFWB0rf1VqKfhgZpm2XFaQOPLjplm9I,247147
|
|
7908
|
+
volcenginesdkfwcenter/models/__init__.py,sha256=G-aDvWvgIk58g7XYcLouoiiiFfOg30CEKY_DVQzhM4c,21801
|
|
7909
|
+
volcenginesdkfwcenter/models/add_acl_backup_request.py,sha256=wz1U88FkPzd0jfDBVJxX_t7p09xSs6ku_s-Kn4DF7Vc,4608
|
|
7910
|
+
volcenginesdkfwcenter/models/add_acl_backup_response.py,sha256=uD6YMjbnxzbMupnu_kOK_Edg7X9_Dw-J3istLxJT0IM,3613
|
|
7905
7911
|
volcenginesdkfwcenter/models/add_address_book_request.py,sha256=QLbf8Dhn6EY5BZl1iEgWoyoVdbJSQH5x_AV85Y61GBU,13703
|
|
7906
7912
|
volcenginesdkfwcenter/models/add_address_book_response.py,sha256=Y0_n8Y-pSkFtrNS6XnSC8m9NiuqpHnQjksLESr7OCXw,3532
|
|
7907
|
-
volcenginesdkfwcenter/models/add_control_policy_request.py,sha256=
|
|
7913
|
+
volcenginesdkfwcenter/models/add_control_policy_request.py,sha256=VkASYFDYRswe15jCuzJJYIyMjuM4LP1rpVnACn5LFJ0,22971
|
|
7908
7914
|
volcenginesdkfwcenter/models/add_control_policy_response.py,sha256=Ahnfe92dndWiJyjo9R1LnIO-BfeRuk1C07LdbWbuVcw,3490
|
|
7909
7915
|
volcenginesdkfwcenter/models/add_dns_control_policy_request.py,sha256=JPmqGDzRPDrt5VXD6MeVer4virU9bCU0ZvrwEAcRkXc,7867
|
|
7910
7916
|
volcenginesdkfwcenter/models/add_dns_control_policy_response.py,sha256=IW_PKBoOTG23jJO2Vr8UaaTCGzlbbFXuAzBRfyBZPDA,3517
|
|
7911
|
-
volcenginesdkfwcenter/models/add_nat_firewall_control_policy_request.py,sha256=
|
|
7917
|
+
volcenginesdkfwcenter/models/add_nat_firewall_control_policy_request.py,sha256=Vs8PmnkwBK0eue4kqSkO1Mw8Q1aXfqFaQnciQ-kWNZ8,22929
|
|
7912
7918
|
volcenginesdkfwcenter/models/add_nat_firewall_control_policy_response.py,sha256=Mb7XqFBeTUYyRCs0Ks5sWeUPRoLWVlHOm2keSmhf0cI,3589
|
|
7913
|
-
volcenginesdkfwcenter/models/add_vpc_firewall_acl_rule_request.py,sha256=
|
|
7919
|
+
volcenginesdkfwcenter/models/add_vpc_firewall_acl_rule_request.py,sha256=73vlE8k3aZ-wpwEQExHld_b015rfdwnHst8ueSWu5F4,22212
|
|
7914
7920
|
volcenginesdkfwcenter/models/add_vpc_firewall_acl_rule_response.py,sha256=_hQwK7o4QDS2Z7c732NR8K3qcIjpOR5DwKH4aHOx6SI,3535
|
|
7915
7921
|
volcenginesdkfwcenter/models/address_detail_list_for_add_address_book_input.py,sha256=0M2dNTQdrL152Ks1WSl4_2iFK-DdzlYwm7G5jd7usAQ,4699
|
|
7916
7922
|
volcenginesdkfwcenter/models/address_detail_list_for_describe_address_book_output.py,sha256=2ixtglWkE_tI-Bzwf4cdWhR3uA00GJ0sbafEruvrZiU,5238
|
|
@@ -7918,21 +7924,35 @@ volcenginesdkfwcenter/models/address_detail_list_for_modify_address_book_input.p
|
|
|
7918
7924
|
volcenginesdkfwcenter/models/address_detail_list_for_modify_address_book_list_input.py,sha256=1DoNkEWbxks98c_JKCUgt2mZLEKLx6hFWDiWlzqMJAY,4790
|
|
7919
7925
|
volcenginesdkfwcenter/models/asset_list_for_update_asset_switch_input.py,sha256=XtFCQwHxRTqqWvc3FELgib3FfhNbnyQZLV9deZ9wJ4k,4186
|
|
7920
7926
|
volcenginesdkfwcenter/models/asset_list_for_update_asset_switch_output.py,sha256=b94eKDD4ZWq9cwGDvrrOiTGBLvpHhzxn9ZHQlE9eFs0,4199
|
|
7921
|
-
volcenginesdkfwcenter/models/asset_list_request.py,sha256=
|
|
7927
|
+
volcenginesdkfwcenter/models/asset_list_request.py,sha256=E-dvi3VckqOZthB3Pa75d7ulGF4wkpHHhqwaC42IRJc,12317
|
|
7922
7928
|
volcenginesdkfwcenter/models/asset_list_response.py,sha256=uo3WpIZCdJidmS29miGapdaqVGCv71Latuy4fX6vABY,6228
|
|
7929
|
+
volcenginesdkfwcenter/models/conflict_detail_for_get_policy_analyze_detail_output.py,sha256=OiDyft78z5pweJGYYjq8pTLFDFb9vHTn2xN_7vUd4HQ,5001
|
|
7930
|
+
volcenginesdkfwcenter/models/conflict_rule_id_list_for_get_policy_analyze_detail_output.py,sha256=TrVzqxVmIvH3rjxUMhI7guNgOaE8akw8UZk0X8sUMaE,4463
|
|
7923
7931
|
volcenginesdkfwcenter/models/control_policy_list_for_update_asset_switch_output.py,sha256=xkPHAym_WY7pZ_05xIo3ajlMCP2INzjeLsC0CU4HTkE,6982
|
|
7932
|
+
volcenginesdkfwcenter/models/create_fw_instance_for_user_request.py,sha256=G-0vzGUdAmEoUsQ3QHptJpvO2a4m--tTrv2C2da1m5c,23574
|
|
7933
|
+
volcenginesdkfwcenter/models/create_fw_instance_for_user_response.py,sha256=St0NTpZ8KbFO_EiD5drmELOG9qiWLrec-VYCpUmtZbA,3573
|
|
7924
7934
|
volcenginesdkfwcenter/models/create_nat_firewall_request.py,sha256=XZ1Gx_GKIUHPX6cpsWWSDWzmBRK67fPHmWWj6Qcx0zg,9238
|
|
7925
7935
|
volcenginesdkfwcenter/models/create_nat_firewall_response.py,sha256=doJFjCKe5-T0yc08raTFZqs4LamOY0RNehMY6Voyexw,4406
|
|
7936
|
+
volcenginesdkfwcenter/models/create_vpc_firewall_request.py,sha256=OyaPTslTHaW13VhfECrRscFV-SWQnmfYLBiF-3IRTzo,14331
|
|
7937
|
+
volcenginesdkfwcenter/models/create_vpc_firewall_response.py,sha256=5UmT9jUH2VGF8zkrKLM8gmDcptU6X_hNZqdX_hulxt8,3658
|
|
7938
|
+
volcenginesdkfwcenter/models/create_vpc_firewall_route_policy_request.py,sha256=u2Cb5APXpZwDPoHZN8o8akSDfSLgG34Qh_ngSa4W0M0,9329
|
|
7939
|
+
volcenginesdkfwcenter/models/create_vpc_firewall_route_policy_response.py,sha256=f-c1QHJ7U9m1R-ARs2l33f2CIZG9-FHqXHBJ0yMdrFw,4015
|
|
7926
7940
|
volcenginesdkfwcenter/models/data_for_asset_list_output.py,sha256=5qNlUHfrAmqTMWG0j6_JQgTE0cfA7vk9Qzgx2LEC5gU,11300
|
|
7941
|
+
volcenginesdkfwcenter/models/data_for_describe_acl_backup_output.py,sha256=Srl-xuspwxZk6geEs4fjxLOkLQQaSg36rdPcvubro1M,10218
|
|
7927
7942
|
volcenginesdkfwcenter/models/data_for_describe_address_book_output.py,sha256=k2mYu7io98qBMUCBSkCs-zokbenbGz9qJYUjSHvB1Qk,13596
|
|
7928
|
-
volcenginesdkfwcenter/models/data_for_describe_control_policy_by_rule_id_output.py,sha256=
|
|
7929
|
-
volcenginesdkfwcenter/models/data_for_describe_control_policy_output.py,sha256=
|
|
7943
|
+
volcenginesdkfwcenter/models/data_for_describe_control_policy_by_rule_id_output.py,sha256=VtYVkmHuGNzcUVYuAouGavtcTj5NTZUdf_siVmoHXrA,35696
|
|
7944
|
+
volcenginesdkfwcenter/models/data_for_describe_control_policy_output.py,sha256=9gacKu7M7uLf2v7xj86dudHW_lIPtpNGHfwAb9uuDMU,34400
|
|
7930
7945
|
volcenginesdkfwcenter/models/data_for_describe_dns_control_policy_output.py,sha256=b8dBevwF06kGPBsv44qIVy2PRF5VX_FxxS9Th4l95cA,13789
|
|
7931
|
-
volcenginesdkfwcenter/models/data_for_describe_nat_firewall_control_policy_output.py,sha256
|
|
7932
|
-
volcenginesdkfwcenter/models/data_for_describe_nat_firewall_list_output.py,sha256=
|
|
7933
|
-
volcenginesdkfwcenter/models/
|
|
7934
|
-
volcenginesdkfwcenter/models/
|
|
7946
|
+
volcenginesdkfwcenter/models/data_for_describe_nat_firewall_control_policy_output.py,sha256=KMQdBNl8hevE5us0Q0IRtv1j2QYfwjX8_b18EkGaiXM,41879
|
|
7947
|
+
volcenginesdkfwcenter/models/data_for_describe_nat_firewall_list_output.py,sha256=K21R87keuSC1Q3aBZEZIQUGPOIyWyQjYo7y3Vy1TQ1g,17424
|
|
7948
|
+
volcenginesdkfwcenter/models/data_for_describe_transit_router_resources_list_output.py,sha256=0dO_VQ_79H_7keoEAuDRcd_IGfBN0gcuCmM3_X2E2Z0,7241
|
|
7949
|
+
volcenginesdkfwcenter/models/data_for_describe_vpc_firewall_acl_rule_list_output.py,sha256=kuDPIIzitGBS8IkQP6saU0JIDkFJ3NDcxUYsjCdViHk,36175
|
|
7950
|
+
volcenginesdkfwcenter/models/data_for_describe_vpc_firewall_list_output.py,sha256=GT7u3RA30_NepASoef_rtX0WKPQ2pT2CNKluegIHmSU,22728
|
|
7951
|
+
volcenginesdkfwcenter/models/data_for_describe_vpc_firewall_route_policy_list_output.py,sha256=N5iCiE3gQOun28ihv8Cr3nZi-18hKgPATR5Di5UixGM,11831
|
|
7935
7952
|
volcenginesdkfwcenter/models/data_for_describe_vpcs_output.py,sha256=uZitZiVdIVW7mxqSRR9r6KUuWB9XxQhSyFS0zfaw1tM,4777
|
|
7953
|
+
volcenginesdkfwcenter/models/data_for_get_policy_analyze_detail_output.py,sha256=ipBW632Jmn6LmWrO77xRe1REo2vDbBenSQNbt41mazQ,8445
|
|
7954
|
+
volcenginesdkfwcenter/models/delete_acl_backup_request.py,sha256=s_toTwyjtukBQ9ylXj9EnTosAuTSPfdIYOBRB0L5yGc,4544
|
|
7955
|
+
volcenginesdkfwcenter/models/delete_acl_backup_response.py,sha256=8ipx54cJy2NT-nPjEdKAZVRLXsY9rx9AkuSj3kTOlPU,3678
|
|
7936
7956
|
volcenginesdkfwcenter/models/delete_address_book_request.py,sha256=F2d-QYbALFwQHcrRt4xkKTXOCbJPhR95leCRvVecFI4,5294
|
|
7937
7957
|
volcenginesdkfwcenter/models/delete_address_book_response.py,sha256=yz6Ppef9DLkqrNEcsL4V0lZGxQEsALH4a6odf8usD3M,4424
|
|
7938
7958
|
volcenginesdkfwcenter/models/delete_control_policy_request.py,sha256=oje1SrzUDn79dpEALzV_5PnQZV2wBo62iAPdMeBc9_o,6481
|
|
@@ -7945,7 +7965,13 @@ volcenginesdkfwcenter/models/delete_nat_firewall_request.py,sha256=-rRA1Fo4BromQ
|
|
|
7945
7965
|
volcenginesdkfwcenter/models/delete_nat_firewall_response.py,sha256=W468q4vLKysGSr9AxifhlhxmswTDZcj6h--lxSQ5ajA,3658
|
|
7946
7966
|
volcenginesdkfwcenter/models/delete_vpc_firewall_acl_rule_request.py,sha256=wDOgXd7nBWP0c9FBGdR8xAk5fT_EU9EEWl2EKXh-hyk,5432
|
|
7947
7967
|
volcenginesdkfwcenter/models/delete_vpc_firewall_acl_rule_response.py,sha256=HwpzQKyRyq9875dgj9QP0q3iZrxNP8NxwdqgEDwtW4Y,4433
|
|
7948
|
-
volcenginesdkfwcenter/models/
|
|
7968
|
+
volcenginesdkfwcenter/models/delete_vpc_firewall_request.py,sha256=bPlLbRc_6TO8_gsLguqyfNgeUG013CCEaIjIfh0mK24,3790
|
|
7969
|
+
volcenginesdkfwcenter/models/delete_vpc_firewall_response.py,sha256=_RbMRy4F4cCR6agPC2XYNMtMixljI9fOs2Kz_qmEb40,3658
|
|
7970
|
+
volcenginesdkfwcenter/models/delete_vpc_firewall_route_policy_request.py,sha256=WCUwIyqhhbQVfl9OD30CqsdzhTD2js0g1xs3ecFToVw,5188
|
|
7971
|
+
volcenginesdkfwcenter/models/delete_vpc_firewall_route_policy_response.py,sha256=tcmCEgi6fqAihsLVyzu2I2loiVkO_CTxyisTLX4rFl4,3757
|
|
7972
|
+
volcenginesdkfwcenter/models/describe_acl_backup_request.py,sha256=o8Oi94g4o6KFHO0Cy0LfklRJQy6fMA9DTgL-IkOYbnc,8894
|
|
7973
|
+
volcenginesdkfwcenter/models/describe_acl_backup_response.py,sha256=jnOgsbGdHVSYAKC26flJiwR7YYnhpiDEH41wvu6PvGc,6452
|
|
7974
|
+
volcenginesdkfwcenter/models/describe_address_book_request.py,sha256=IVuDgKxtALW8fFfznfosyACz_-qxbC1f_pZgXTQR2go,7239
|
|
7949
7975
|
volcenginesdkfwcenter/models/describe_address_book_response.py,sha256=aS5itXJoRCiBbTbFW2eVhfCw9LGe2axqalVDVjmBFh8,6508
|
|
7950
7976
|
volcenginesdkfwcenter/models/describe_control_policy_by_rule_id_request.py,sha256=hXaiN1RTR2u2dpNDTEgtoaalodWw4H85PafIuq3RjIA,5880
|
|
7951
7977
|
volcenginesdkfwcenter/models/describe_control_policy_by_rule_id_response.py,sha256=pMpB6jz_W2SaMwg_1-hcQj39XJrZt0SMSX3lhN0RZsE,6788
|
|
@@ -7959,14 +7985,18 @@ volcenginesdkfwcenter/models/describe_nat_firewall_control_policy_priority_used_
|
|
|
7959
7985
|
volcenginesdkfwcenter/models/describe_nat_firewall_control_policy_priority_used_response.py,sha256=14guV6Ce3gx9iZBh_j9aLbi3iJD0hN4HQkIiGnFfPXY,6231
|
|
7960
7986
|
volcenginesdkfwcenter/models/describe_nat_firewall_control_policy_request.py,sha256=Jz7r-rB4tk6-yZtMR0cGaPYyDso_RwwZMMOwHyC-1V4,16019
|
|
7961
7987
|
volcenginesdkfwcenter/models/describe_nat_firewall_control_policy_response.py,sha256=8UfsTlhSF2sggSrKJsqKvmQdnJvK9Bw6QkUFVDvu3D4,6872
|
|
7962
|
-
volcenginesdkfwcenter/models/describe_nat_firewall_list_request.py,sha256=
|
|
7988
|
+
volcenginesdkfwcenter/models/describe_nat_firewall_list_request.py,sha256=4lM4OEjrbNYME07auqzw477MsdaNuy8EgImyWT6gQUA,14054
|
|
7963
7989
|
volcenginesdkfwcenter/models/describe_nat_firewall_list_response.py,sha256=hBTRktE8wjqrQxZH5iVoaasMNXBXcr3IWNXjTj2j_rs,6620
|
|
7964
|
-
volcenginesdkfwcenter/models/
|
|
7990
|
+
volcenginesdkfwcenter/models/describe_transit_router_resources_list_request.py,sha256=aQXGG4omZvH2hmOTKiT046VGv3vvya7LhWSXXrqyDPs,4815
|
|
7991
|
+
volcenginesdkfwcenter/models/describe_transit_router_resources_list_response.py,sha256=8cb9K9_ahGn8dh07iLGbPoHJdYirrCBPCH_FSTAukL0,3743
|
|
7992
|
+
volcenginesdkfwcenter/models/describe_vpc_firewall_acl_rule_list_request.py,sha256=tDmEJ0EBsJ_khZdmcgqSHIUO5xzJRwg0aUukCvlxr_4,14061
|
|
7965
7993
|
volcenginesdkfwcenter/models/describe_vpc_firewall_acl_rule_list_response.py,sha256=YBy_rKPblcXhDBUthuXrGQ3bxPmA2hTEOuwGZ7TLEoI,6816
|
|
7966
7994
|
volcenginesdkfwcenter/models/describe_vpc_firewall_acl_rule_prior_used_request.py,sha256=_RuHVElDEHZ_YV8qMyfC1lNjGp5paEb_lDY84ZR_vus,3952
|
|
7967
7995
|
volcenginesdkfwcenter/models/describe_vpc_firewall_acl_rule_prior_used_response.py,sha256=El6L7HbHLVO4ZqZAE-B2TfQGk6cTe4Re68dNFuSgWIM,6042
|
|
7968
|
-
volcenginesdkfwcenter/models/describe_vpc_firewall_list_request.py,sha256=
|
|
7996
|
+
volcenginesdkfwcenter/models/describe_vpc_firewall_list_request.py,sha256=gDde24Hoi-R4B8QgqQOm0-d5TW958hBdDBxPou4DW_U,14509
|
|
7969
7997
|
volcenginesdkfwcenter/models/describe_vpc_firewall_list_response.py,sha256=5Q8Sj3BLZ3rJ-oFMApcxoO8LaO9SjN7gc897mQi7Glw,6620
|
|
7998
|
+
volcenginesdkfwcenter/models/describe_vpc_firewall_route_policy_list_request.py,sha256=D6uEv_pcCK0KvYAU1qZwb29-t_hEvqBpQz6XFP7o49g,3943
|
|
7999
|
+
volcenginesdkfwcenter/models/describe_vpc_firewall_route_policy_list_response.py,sha256=gJFwRkSijBynXkP9pSntIkjexYHM1Dwd9J5dC6DYjpo,3743
|
|
7970
8000
|
volcenginesdkfwcenter/models/describe_vpcs_request.py,sha256=OIiIFDBdApVdtj-MpumxVHGQLIcbstFGSmy2JQLi1uY,3704
|
|
7971
8001
|
volcenginesdkfwcenter/models/describe_vpcs_response.py,sha256=7kOTlli3yskNjyneBbcDWdsFdBoo45hrlWkjChxuvNo,3479
|
|
7972
8002
|
volcenginesdkfwcenter/models/dest_port_list_v1_for_describe_control_policy_by_rule_id_output.py,sha256=aLBibCytjSFEa2M_HnMCBh2bhbbS0IBDlZKW30aY02c,5357
|
|
@@ -7977,25 +8007,46 @@ volcenginesdkfwcenter/models/destination_cidr_list_v1_for_describe_control_polic
|
|
|
7977
8007
|
volcenginesdkfwcenter/models/destination_cidr_list_v1_for_describe_control_policy_output.py,sha256=CfamzLsACyaXiEwQdvlZxrLhbrqObw2It7Xmp0FT39o,5340
|
|
7978
8008
|
volcenginesdkfwcenter/models/destination_cidr_list_v1_for_describe_nat_firewall_control_policy_output.py,sha256=5XJCsCHq0v_xBQpd-bqd-gnzbMD9EljKkUmuf-cvGPE,5527
|
|
7979
8009
|
volcenginesdkfwcenter/models/destination_cidr_list_v1_for_describe_vpc_firewall_acl_rule_list_output.py,sha256=cTi1oXmNDIcUzDxfH6HvBUGzV7Upwi0ZbIx8wWIxco4,5493
|
|
8010
|
+
volcenginesdkfwcenter/models/detail_risk_list_for_get_policy_analyze_overview_output.py,sha256=G9zTwZlE6hS8ZSZwOGDMkIBPwhZjYu64oBXNQVm8Mjc,4613
|
|
7980
8011
|
volcenginesdkfwcenter/models/domain_list_v1_for_describe_dns_control_policy_output.py,sha256=4-UyFZkwtAi9T-u3nfqojLFnM1xwaJ7_jOHM6AIF0qc,5238
|
|
8012
|
+
volcenginesdkfwcenter/models/dst_candidate_list_for_create_vpc_firewall_route_policy_input.py,sha256=nxYWhpIqs8puoiGzTOXzy04FKHMwnobNa-K-FjmYlFc,7015
|
|
8013
|
+
volcenginesdkfwcenter/models/dst_candidate_list_for_describe_vpc_firewall_route_policy_list_output.py,sha256=YvKWdYbuS9ZGOL4OGUOPNFbsQScz6dmD7zSLX58g-9o,6777
|
|
8014
|
+
volcenginesdkfwcenter/models/dst_candidate_list_for_modify_vpc_firewall_route_policy_input.py,sha256=fusTzqx6tiC0xbJZOp2G6yATTT7VwKIX4TmdeAKYi5w,7015
|
|
8015
|
+
volcenginesdkfwcenter/models/get_policy_analyze_detail_request.py,sha256=TdxM4HP8ZbnddQIJvFX_8eNRlmM-eQdrl4U8S_HoW2Y,12115
|
|
8016
|
+
volcenginesdkfwcenter/models/get_policy_analyze_detail_response.py,sha256=oXRp-Xcj3CvkrWFg9y26vWm1nDAbAp1OqQ586yR1nww,6592
|
|
8017
|
+
volcenginesdkfwcenter/models/get_policy_analyze_overview_request.py,sha256=tYc6nF_XNcxL4M9EO3OjniZ84vQg-y4IeBx2B3DQHbw,5630
|
|
8018
|
+
volcenginesdkfwcenter/models/get_policy_analyze_overview_response.py,sha256=CDEToF7T0tJw9aGenQXDF9_aQI_oB-lsLHA6i_1wtSI,4627
|
|
8019
|
+
volcenginesdkfwcenter/models/get_policy_analyze_result_request.py,sha256=4rmDa4TlIN7XAzs3FMG3nxOnBgW4o6uW6v6DwVJDaQY,5596
|
|
8020
|
+
volcenginesdkfwcenter/models/get_policy_analyze_result_response.py,sha256=s2QPguSAm6WE7R9EGwTtT_aaRfYUfTUfGIdNE5VMdv8,8821
|
|
8021
|
+
volcenginesdkfwcenter/models/get_policy_check_result_request.py,sha256=bM0N_tfm46lcY7K431ZmZPFeKT0RQHRqCyZfvCdHIQk,12775
|
|
8022
|
+
volcenginesdkfwcenter/models/get_policy_check_result_response.py,sha256=lggq4ErDj2dDZCwOzxQN6Mq8mZ3iLMMfC_WcM0cxxdY,5218
|
|
8023
|
+
volcenginesdkfwcenter/models/hit_rule_list_for_get_policy_check_result_output.py,sha256=XQkaAiAAbfzXZwVDHhYmHLbt_Nlm8-laDDdxMynZ9A8,11184
|
|
7981
8024
|
volcenginesdkfwcenter/models/modify_address_book_list_request.py,sha256=2Obt_mwU7uMCrisqUgGWuDJfL6DKcT3X5A26KeErjHE,6979
|
|
7982
8025
|
volcenginesdkfwcenter/models/modify_address_book_list_response.py,sha256=IgJbHU0sImdYXibgwsequBC-cvP7A5T5qyR_qdklOxg,3595
|
|
7983
8026
|
volcenginesdkfwcenter/models/modify_address_book_request.py,sha256=jjoVPWeANA3MTvl-cn0DPcQbNwLtb_8Ep5nGZiVIpuw,13501
|
|
7984
8027
|
volcenginesdkfwcenter/models/modify_address_book_response.py,sha256=0UjjPGUTy9VfIGCfPLoXm_l3-1X1rx5TQBLNcxhbcOI,3559
|
|
7985
8028
|
volcenginesdkfwcenter/models/modify_control_policy_position_request.py,sha256=QTWiKt9wCF23KxLgJbroRmfOgXUiFfvLq0_h9KNbcj4,7069
|
|
7986
8029
|
volcenginesdkfwcenter/models/modify_control_policy_position_response.py,sha256=196AyzmawER--GBzqvLem4NxRGPxjvkGp2_TWIKiPGU,3589
|
|
7987
|
-
volcenginesdkfwcenter/models/modify_control_policy_request.py,sha256=
|
|
8030
|
+
volcenginesdkfwcenter/models/modify_control_policy_request.py,sha256=01pWRhlr9gIpKSaIJBipjbH3DvhuVqGvxM9kHG6YvM0,23430
|
|
7988
8031
|
volcenginesdkfwcenter/models/modify_control_policy_response.py,sha256=FOgRwhExzysoE9dtLf1X6J-XOwREu-qDlZySIr-L9PQ,3517
|
|
7989
8032
|
volcenginesdkfwcenter/models/modify_dns_control_policy_request.py,sha256=ziOq28oabVt8hpoatL-129Yoo4VuPmgD_VeoxHV7oNc,9476
|
|
7990
8033
|
volcenginesdkfwcenter/models/modify_dns_control_policy_response.py,sha256=0Y3Z3dwwtRwB_9kaYR8-U3DZ8FB-BNY1cXuJVgmYwnM,3544
|
|
7991
8034
|
volcenginesdkfwcenter/models/modify_nat_firewall_control_policy_position_request.py,sha256=tEesU7cNTTNjGwnDOgRzJoawbpa13T69YnWCillwe3I,7341
|
|
7992
8035
|
volcenginesdkfwcenter/models/modify_nat_firewall_control_policy_position_response.py,sha256=vRwSCApkxfCvTy0ArHiGaOiQxCIuUZBHw3s8Xi9NX9k,3688
|
|
7993
|
-
volcenginesdkfwcenter/models/modify_nat_firewall_control_policy_request.py,sha256=
|
|
8036
|
+
volcenginesdkfwcenter/models/modify_nat_firewall_control_policy_request.py,sha256=4wyRb0e637XWOTna72nFms8Oucfza36SQ-qxjTcai94,23376
|
|
7994
8037
|
volcenginesdkfwcenter/models/modify_nat_firewall_control_policy_response.py,sha256=wURkG7IC6Erw4feSafXxO-yWXMYHE15JCWFA_SVzFRE,3616
|
|
7995
8038
|
volcenginesdkfwcenter/models/modify_vpc_firewall_acl_rule_position_request.py,sha256=TFH-K37HrZ8RK-E9eSjIlm03MhOL60YbTNo5GwUNb7I,5950
|
|
7996
8039
|
volcenginesdkfwcenter/models/modify_vpc_firewall_acl_rule_position_response.py,sha256=2Ox6NUWSGOjkoc3nHVVo6la7DsgEgGI44A4b1oPmKBc,3634
|
|
7997
|
-
volcenginesdkfwcenter/models/modify_vpc_firewall_acl_rule_request.py,sha256=
|
|
8040
|
+
volcenginesdkfwcenter/models/modify_vpc_firewall_acl_rule_request.py,sha256=a-y6gclOzjb3Heh2oSaMpJnEcUi-wDYcFo4bu0bc6cE,22659
|
|
7998
8041
|
volcenginesdkfwcenter/models/modify_vpc_firewall_acl_rule_response.py,sha256=zik32Q-i-99Z42e6kxpWILrhXTaazdZCYxl5IbIIgAw,3562
|
|
8042
|
+
volcenginesdkfwcenter/models/modify_vpc_firewall_request.py,sha256=zknEOqlNnILeLurKO6A_ms3iY9EdK_lXQM1Lw8txO4U,5913
|
|
8043
|
+
volcenginesdkfwcenter/models/modify_vpc_firewall_response.py,sha256=TrqwPf2hEhnpH2UPov8Kx0Yduwrzl9si7eHO1q_H5c8,3658
|
|
8044
|
+
volcenginesdkfwcenter/models/modify_vpc_firewall_route_policy_request.py,sha256=Se0IoOkllsTMieh6i6d03wggAlJttU4FDEQF1_PCneY,9680
|
|
8045
|
+
volcenginesdkfwcenter/models/modify_vpc_firewall_route_policy_response.py,sha256=vAh9_Bj2dCFbJkelxgiE77jRLTIaoTy1RO8G0rp3l_c,3757
|
|
8046
|
+
volcenginesdkfwcenter/models/nat_firewall_info_list_for_describe_acl_backup_output.py,sha256=SYlZ86y-jY8cxqool1qviCYVVPm49Qo_4uixTnuABlg,5554
|
|
8047
|
+
volcenginesdkfwcenter/models/policy_analyze_result_list_for_get_policy_analyze_result_output.py,sha256=o91mX4_WqSHX489rb8XAGSHYv21GQiQIFigGlP1hu7w,8260
|
|
8048
|
+
volcenginesdkfwcenter/models/query_user_alarm_config_request.py,sha256=J5Mtfaaz7CQqARqRxXT1_baJ5wy6ffyE645FsRq0juk,3716
|
|
8049
|
+
volcenginesdkfwcenter/models/query_user_alarm_config_response.py,sha256=UW5hJ5LD_QM8zAs1j5H1zFV89Tow9Ki2KGUWDdh3ZeA,8955
|
|
7999
8050
|
volcenginesdkfwcenter/models/source_cidr_list_v1_for_describe_control_policy_by_rule_id_output.py,sha256=4_BDg6iVNhgc8jYSTts-eNlcgbFs1j2F548Mahqu8YM,5391
|
|
8000
8051
|
volcenginesdkfwcenter/models/source_cidr_list_v1_for_describe_control_policy_output.py,sha256=pfOldZ_DMBKO9_AytnOJgV9tAiIJJHSWXDmMLtD5aYs,5255
|
|
8001
8052
|
volcenginesdkfwcenter/models/source_cidr_list_v1_for_describe_nat_firewall_control_policy_output.py,sha256=nykAx9nVnE0-uYTQXecfvzv2GuGZaJt2G_YnLKUCsys,5442
|
|
@@ -8003,10 +8054,18 @@ volcenginesdkfwcenter/models/source_cidr_list_v1_for_describe_vpc_firewall_acl_r
|
|
|
8003
8054
|
volcenginesdkfwcenter/models/source_for_add_dns_control_policy_input.py,sha256=WHmLiTg7H2rcynngMIf_3BcyF9lR5uJYSyAmZW8uNL4,4252
|
|
8004
8055
|
volcenginesdkfwcenter/models/source_for_describe_dns_control_policy_output.py,sha256=8jcp0u9ChVk9-mtreKz8AZvTSURNcjY_ror_KgVi92M,4330
|
|
8005
8056
|
volcenginesdkfwcenter/models/source_for_modify_dns_control_policy_input.py,sha256=B4ysVmaefXiaWFrYR4bLRtMpF3cs8vjni0RvbT5frsw,4291
|
|
8057
|
+
volcenginesdkfwcenter/models/src_candidate_list_for_create_vpc_firewall_route_policy_input.py,sha256=wyn1VYKhpB4mauocJWNkY8Xwe6TIj69JDHhVKpFMgbs,7015
|
|
8058
|
+
volcenginesdkfwcenter/models/src_candidate_list_for_describe_vpc_firewall_route_policy_list_output.py,sha256=kniK1BjH1e8IhMUF_X88OGjmUZER79vnc14A0ql7sfM,6777
|
|
8059
|
+
volcenginesdkfwcenter/models/src_candidate_list_for_modify_vpc_firewall_route_policy_input.py,sha256=SmNSZu_xGJEYgBJSPeYyvNOZ5PL4IhTRVqVj8j_pua0,7015
|
|
8060
|
+
volcenginesdkfwcenter/models/start_policy_analyze_task_request.py,sha256=luy36_5vmlwqLK_3W1-XTrSyNXB59UOEv2vgEwaRroM,6849
|
|
8061
|
+
volcenginesdkfwcenter/models/start_policy_analyze_task_response.py,sha256=1JyjdzDIVH_aFud2fXsHNDKXWcO7FWgEcBy8LpEAWGU,3710
|
|
8006
8062
|
volcenginesdkfwcenter/models/tag_for_add_address_book_input.py,sha256=HVctmlXeTqrskMUz6qUM-e3VjyrrWE6HP39-6cHleZI,4752
|
|
8063
|
+
volcenginesdkfwcenter/models/tag_for_create_fw_instance_for_user_input.py,sha256=uEL3OBMJF94IHNigEmQn5E7Gp5P4qYlFKRrho8Ufrdw,4869
|
|
8007
8064
|
volcenginesdkfwcenter/models/tag_for_create_nat_firewall_input.py,sha256=BJvF6F67a-40Ff1xUApZESwI2IBWHvi4haJQTU3j54A,4791
|
|
8065
|
+
volcenginesdkfwcenter/models/tag_for_create_vpc_firewall_input.py,sha256=BCFf7mDklgmzVB9WkKzl0eYzIE7h4DBHBa4IvoQ5USU,4791
|
|
8008
8066
|
volcenginesdkfwcenter/models/tag_for_describe_address_book_output.py,sha256=n8qKqu33OLTRNlzwIQSZZGiiqUXTh4WLXwnDzxdz9wk,4147
|
|
8009
8067
|
volcenginesdkfwcenter/models/tag_for_modify_address_book_input.py,sha256=bpYWqGQGkNF1tEY1Jx6By_hAevqjXARqddANtQG6FhI,4791
|
|
8068
|
+
volcenginesdkfwcenter/models/task_list_for_start_policy_analyze_task_output.py,sha256=3Fx7IRvfKYgpyMw5U4ucK2kM4DkMtAe_Qa_XOe0sp_o,5333
|
|
8010
8069
|
volcenginesdkfwcenter/models/update_asset_switch_request.py,sha256=X6iFT9yKC3JWrydn_AwPb3d54cMcHUSv19G_c9ahK5g,5401
|
|
8011
8070
|
volcenginesdkfwcenter/models/update_asset_switch_response.py,sha256=xcNz7FMP4rxR2ExrIWweHUNj-aULMV1hmWtMORh8E5I,4738
|
|
8012
8071
|
volcenginesdkfwcenter/models/update_assets_request.py,sha256=ZBZOOjbnOjTiOoqEuwxTVxPeQfqDDTQEVqGHMBiNZns,5075
|
|
@@ -8017,8 +8076,18 @@ volcenginesdkfwcenter/models/update_dns_control_policy_switch_request.py,sha256=
|
|
|
8017
8076
|
volcenginesdkfwcenter/models/update_dns_control_policy_switch_response.py,sha256=oyDuGM1X7CrdFC6qliMgJcpDnrgd0FeqyQ-vaQCf-8A,3598
|
|
8018
8077
|
volcenginesdkfwcenter/models/update_nat_firewall_control_policy_switch_request.py,sha256=RWhCHKzThENi6RPOFg3CnJ7eBDaEbMAdvHNu43_iSGo,6784
|
|
8019
8078
|
volcenginesdkfwcenter/models/update_nat_firewall_control_policy_switch_response.py,sha256=AamBAS6PDiORzBL-b96ZfhNPa6ifFWX9REttsjXVDu8,3708
|
|
8079
|
+
volcenginesdkfwcenter/models/update_policy_result_status_request.py,sha256=MhVSagKWDwEuwCHzu3I3X_SUEvD4Q4pulDtAxqG7QRg,7627
|
|
8080
|
+
volcenginesdkfwcenter/models/update_policy_result_status_response.py,sha256=zerCFy35Z85SuuPlhg5N2WiKGNAY3R9ngevOmoRymPE,3679
|
|
8081
|
+
volcenginesdkfwcenter/models/update_user_alarm_config_request.py,sha256=Mp35y3izGXH5lhd3q5rJIYBQfn4jcBNc8YLnfiBH0XY,14832
|
|
8082
|
+
volcenginesdkfwcenter/models/update_user_alarm_config_response.py,sha256=aEHyjmyQW78Vy9MPCZofiJ_m4DyauQiVw3w2_6PA3pU,3734
|
|
8020
8083
|
volcenginesdkfwcenter/models/update_vpc_firewall_acl_rule_switch_request.py,sha256=B6RsNhyCwGSVLqgWefCpJ0w7mmrQmJdleYfaYeLfPHs,5401
|
|
8021
8084
|
volcenginesdkfwcenter/models/update_vpc_firewall_acl_rule_switch_response.py,sha256=PAIAVfTs_ouxYasGvRIsi0k9VLRXhZ-zWOlofgrX1iU,3654
|
|
8085
|
+
volcenginesdkfwcenter/models/update_vpc_firewall_route_policy_switch_request.py,sha256=BWDgt_kqaDqHKRebQEo4rxwTGqHToCb9sWS54mJnQHM,6423
|
|
8086
|
+
volcenginesdkfwcenter/models/update_vpc_firewall_route_policy_switch_response.py,sha256=c1REAYxP9X7se5fdlPab4oCeMPYV4SkwyYEoLNFG1bA,3811
|
|
8087
|
+
volcenginesdkfwcenter/models/use_acl_backup_request.py,sha256=kEwhQL_bsa7FDPbCh4VD6bel0_T4D0Rnl-HQ4LTbuHQ,6918
|
|
8088
|
+
volcenginesdkfwcenter/models/use_acl_backup_response.py,sha256=qfPq-XbILp5H_fJMTFQ9JQx9pVaEP2NuMo4ZTjXYuwc,3613
|
|
8089
|
+
volcenginesdkfwcenter/models/user_alarm_config_list_for_query_user_alarm_config_output.py,sha256=H4BiEcc17ojte2eSGMdXZkLt0TcExoGwOY9Ihpn3p0s,11898
|
|
8090
|
+
volcenginesdkfwcenter/models/vpc_firewall_info_list_for_describe_acl_backup_output.py,sha256=scWMOkewFxTJDcpDd4Jw68RKcYXZ_akxE6nc5T_3tBU,5554
|
|
8022
8091
|
volcenginesdkga/__init__.py,sha256=TFpb0UiH9f3sqaXOOuE-tnZSMLnxyHr52iEdVKNN1wA,23163
|
|
8023
8092
|
volcenginesdkga/api/__init__.py,sha256=-nLrURekwzrDDM-s8oMDKet-cj4inqmg-dU3nIjO5DY,132
|
|
8024
8093
|
volcenginesdkga/api/ga_api.py,sha256=Cq5m27hG-pcEzwFf2LJYWHA8Oi-93pqik4OtWUKdkhw,258075
|
|
@@ -10096,7 +10165,7 @@ volcenginesdkinsight/models/get_task_result_request.py,sha256=-yzNn3w1xZ2TRcgIQl
|
|
|
10096
10165
|
volcenginesdkinsight/models/get_task_result_response.py,sha256=h1BeO-R1IzsZ7UJ2CO237OwBm9HhkxuKU0DPDxwbldw,6741
|
|
10097
10166
|
volcenginesdkinsight/models/insight_saas_task_list_for_list_custom_subs_task_output.py,sha256=ca2glPEegCrFJzAiwe52X2-bleFDRyNaQI1I81s37t0,13993
|
|
10098
10167
|
volcenginesdkinsight/models/insight_saas_task_list_for_list_subs_task_api_output.py,sha256=xrewTamNjhnXvQyFHee05POupPGgKnJEPK86n89yH_8,13801
|
|
10099
|
-
volcenginesdkinsight/models/item_doc_for_pull_post_output.py,sha256=
|
|
10168
|
+
volcenginesdkinsight/models/item_doc_for_pull_post_output.py,sha256=rML-X1OsqVHyfQ7BKE6FXWDzEBWGuZDfwLaGH6nKelU,16859
|
|
10100
10169
|
volcenginesdkinsight/models/list_custom_subs_task_request.py,sha256=6cr8ScMXPHMi16Y7LZoYGaa30T6tuFp-fPy3nmBentM,5643
|
|
10101
10170
|
volcenginesdkinsight/models/list_custom_subs_task_response.py,sha256=byoO3gWMSLzzusx-1jQ8ZzyDEgAhfp1xk9Pse3j81tk,4605
|
|
10102
10171
|
volcenginesdkinsight/models/list_subs_task_api_request.py,sha256=6NW_c3aKpKnM0-Q1JZYZ4SiXlITBB4XARG0GxBbqMtA,5580
|
|
@@ -20770,7 +20839,7 @@ volcenginesdkwafruntime/api/__init__.py,sha256=di_9IIKQ0HCuzkGrTyZ6h38iP7y1xelH8
|
|
|
20770
20839
|
volcenginesdkwafruntime/api/waf_runtime_api.py,sha256=eWgdzFcwflEkhkNrPzZL1mqSid7O1OWiwHGUyWJvZNA,4035
|
|
20771
20840
|
volcenginesdkwafruntime/models/__init__.py,sha256=di_9IIKQ0HCuzkGrTyZ6h38iP7y1xelH8_IJbKi4aWA,71
|
|
20772
20841
|
volcenginesdkwafruntime/models/llm_stream_session.py,sha256=U9cig3fuZRBT4Ov8_cUsWDKXcMLNjBDxKt-7IoewoUw,1589
|
|
20773
|
-
volcengine_python_sdk-5.0.
|
|
20774
|
-
volcengine_python_sdk-5.0.
|
|
20775
|
-
volcengine_python_sdk-5.0.
|
|
20776
|
-
volcengine_python_sdk-5.0.
|
|
20842
|
+
volcengine_python_sdk-5.0.25.dist-info/METADATA,sha256=z9eG6X1YRXkmlKcKB262mg374_Dn00Fwv7Nai_259TY,8200
|
|
20843
|
+
volcengine_python_sdk-5.0.25.dist-info/WHEEL,sha256=TdQ5LtNwLuxTCjgxN51AgdU5w-KkB9ttmLbzjTH02pg,109
|
|
20844
|
+
volcengine_python_sdk-5.0.25.dist-info/top_level.txt,sha256=EcEBsal9yHF6A8zZblcdcwZLuIy0s6npA-d11YeJn9w,2779
|
|
20845
|
+
volcengine_python_sdk-5.0.25.dist-info/RECORD,,
|
volcenginesdkarkclaw/__init__.py
CHANGED
|
@@ -24,6 +24,10 @@ from volcenginesdkarkclaw.models.create_claw_omni_instance_request import Create
|
|
|
24
24
|
from volcenginesdkarkclaw.models.create_claw_omni_instance_response import CreateClawOmniInstanceResponse
|
|
25
25
|
from volcenginesdkarkclaw.models.delete_claw_omni_instance_request import DeleteClawOmniInstanceRequest
|
|
26
26
|
from volcenginesdkarkclaw.models.delete_claw_omni_instance_response import DeleteClawOmniInstanceResponse
|
|
27
|
+
from volcenginesdkarkclaw.models.env_var_for_create_claw_omni_instance_input import EnvVarForCreateClawOmniInstanceInput
|
|
28
|
+
from volcenginesdkarkclaw.models.env_var_for_execute_claw_omni_instance_command_input import EnvVarForExecuteClawOmniInstanceCommandInput
|
|
29
|
+
from volcenginesdkarkclaw.models.execute_claw_omni_instance_command_request import ExecuteClawOmniInstanceCommandRequest
|
|
30
|
+
from volcenginesdkarkclaw.models.execute_claw_omni_instance_command_response import ExecuteClawOmniInstanceCommandResponse
|
|
27
31
|
from volcenginesdkarkclaw.models.filter_for_list_claw_omni_instances_input import FilterForListClawOmniInstancesInput
|
|
28
32
|
from volcenginesdkarkclaw.models.get_claw_omni_instance_request import GetClawOmniInstanceRequest
|
|
29
33
|
from volcenginesdkarkclaw.models.get_claw_omni_instance_response import GetClawOmniInstanceResponse
|
|
@@ -227,6 +227,103 @@ class ARKCLAWApi(object):
|
|
|
227
227
|
_request_timeout=params.get('_request_timeout'),
|
|
228
228
|
collection_formats=collection_formats)
|
|
229
229
|
|
|
230
|
+
def execute_claw_omni_instance_command(self, body, **kwargs): # noqa: E501
|
|
231
|
+
"""execute_claw_omni_instance_command # noqa: E501
|
|
232
|
+
|
|
233
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
234
|
+
asynchronous HTTP request, please pass async_req=True
|
|
235
|
+
>>> thread = api.execute_claw_omni_instance_command(body, async_req=True)
|
|
236
|
+
>>> result = thread.get()
|
|
237
|
+
|
|
238
|
+
:param async_req bool
|
|
239
|
+
:param ExecuteClawOmniInstanceCommandRequest body: (required)
|
|
240
|
+
:return: ExecuteClawOmniInstanceCommandResponse
|
|
241
|
+
If the method is called asynchronously,
|
|
242
|
+
returns the request thread.
|
|
243
|
+
"""
|
|
244
|
+
kwargs['_return_http_data_only'] = True
|
|
245
|
+
if kwargs.get('async_req'):
|
|
246
|
+
return self.execute_claw_omni_instance_command_with_http_info(body, **kwargs) # noqa: E501
|
|
247
|
+
else:
|
|
248
|
+
(data) = self.execute_claw_omni_instance_command_with_http_info(body, **kwargs) # noqa: E501
|
|
249
|
+
return data
|
|
250
|
+
|
|
251
|
+
def execute_claw_omni_instance_command_with_http_info(self, body, **kwargs): # noqa: E501
|
|
252
|
+
"""execute_claw_omni_instance_command # noqa: E501
|
|
253
|
+
|
|
254
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
255
|
+
asynchronous HTTP request, please pass async_req=True
|
|
256
|
+
>>> thread = api.execute_claw_omni_instance_command_with_http_info(body, async_req=True)
|
|
257
|
+
>>> result = thread.get()
|
|
258
|
+
|
|
259
|
+
:param async_req bool
|
|
260
|
+
:param ExecuteClawOmniInstanceCommandRequest body: (required)
|
|
261
|
+
:return: ExecuteClawOmniInstanceCommandResponse
|
|
262
|
+
If the method is called asynchronously,
|
|
263
|
+
returns the request thread.
|
|
264
|
+
"""
|
|
265
|
+
|
|
266
|
+
all_params = ['body'] # noqa: E501
|
|
267
|
+
all_params.append('async_req')
|
|
268
|
+
all_params.append('_return_http_data_only')
|
|
269
|
+
all_params.append('_preload_content')
|
|
270
|
+
all_params.append('_request_timeout')
|
|
271
|
+
|
|
272
|
+
params = locals()
|
|
273
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
274
|
+
if key not in all_params:
|
|
275
|
+
raise TypeError(
|
|
276
|
+
"Got an unexpected keyword argument '%s'"
|
|
277
|
+
" to method execute_claw_omni_instance_command" % key
|
|
278
|
+
)
|
|
279
|
+
params[key] = val
|
|
280
|
+
del params['kwargs']
|
|
281
|
+
# verify the required parameter 'body' is set
|
|
282
|
+
if self.api_client.client_side_validation and ('body' not in params or
|
|
283
|
+
params['body'] is None): # noqa: E501
|
|
284
|
+
raise ValueError("Missing the required parameter `body` when calling `execute_claw_omni_instance_command`") # noqa: E501
|
|
285
|
+
|
|
286
|
+
collection_formats = {}
|
|
287
|
+
|
|
288
|
+
path_params = {}
|
|
289
|
+
|
|
290
|
+
query_params = []
|
|
291
|
+
|
|
292
|
+
header_params = {}
|
|
293
|
+
|
|
294
|
+
form_params = []
|
|
295
|
+
local_var_files = {}
|
|
296
|
+
|
|
297
|
+
body_params = None
|
|
298
|
+
if 'body' in params:
|
|
299
|
+
body_params = params['body']
|
|
300
|
+
# HTTP header `Accept`
|
|
301
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
302
|
+
['application/json']) # noqa: E501
|
|
303
|
+
|
|
304
|
+
# HTTP header `Content-Type`
|
|
305
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
306
|
+
['text/plain']) # noqa: E501
|
|
307
|
+
|
|
308
|
+
# Authentication setting
|
|
309
|
+
auth_settings = ['volcengineSign'] # noqa: E501
|
|
310
|
+
|
|
311
|
+
return self.api_client.call_api(
|
|
312
|
+
'/ExecuteClawOmniInstanceCommand/2026-03-01/arkclaw/get/text_plain/', 'GET',
|
|
313
|
+
path_params,
|
|
314
|
+
query_params,
|
|
315
|
+
header_params,
|
|
316
|
+
body=body_params,
|
|
317
|
+
post_params=form_params,
|
|
318
|
+
files=local_var_files,
|
|
319
|
+
response_type='ExecuteClawOmniInstanceCommandResponse', # noqa: E501
|
|
320
|
+
auth_settings=auth_settings,
|
|
321
|
+
async_req=params.get('async_req'),
|
|
322
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
323
|
+
_preload_content=params.get('_preload_content', True),
|
|
324
|
+
_request_timeout=params.get('_request_timeout'),
|
|
325
|
+
collection_formats=collection_formats)
|
|
326
|
+
|
|
230
327
|
def get_claw_omni_instance(self, body, **kwargs): # noqa: E501
|
|
231
328
|
"""get_claw_omni_instance # noqa: E501
|
|
232
329
|
|
|
@@ -20,6 +20,10 @@ from volcenginesdkarkclaw.models.create_claw_omni_instance_request import Create
|
|
|
20
20
|
from volcenginesdkarkclaw.models.create_claw_omni_instance_response import CreateClawOmniInstanceResponse
|
|
21
21
|
from volcenginesdkarkclaw.models.delete_claw_omni_instance_request import DeleteClawOmniInstanceRequest
|
|
22
22
|
from volcenginesdkarkclaw.models.delete_claw_omni_instance_response import DeleteClawOmniInstanceResponse
|
|
23
|
+
from volcenginesdkarkclaw.models.env_var_for_create_claw_omni_instance_input import EnvVarForCreateClawOmniInstanceInput
|
|
24
|
+
from volcenginesdkarkclaw.models.env_var_for_execute_claw_omni_instance_command_input import EnvVarForExecuteClawOmniInstanceCommandInput
|
|
25
|
+
from volcenginesdkarkclaw.models.execute_claw_omni_instance_command_request import ExecuteClawOmniInstanceCommandRequest
|
|
26
|
+
from volcenginesdkarkclaw.models.execute_claw_omni_instance_command_response import ExecuteClawOmniInstanceCommandResponse
|
|
23
27
|
from volcenginesdkarkclaw.models.filter_for_list_claw_omni_instances_input import FilterForListClawOmniInstancesInput
|
|
24
28
|
from volcenginesdkarkclaw.models.get_claw_omni_instance_request import GetClawOmniInstanceRequest
|
|
25
29
|
from volcenginesdkarkclaw.models.get_claw_omni_instance_response import GetClawOmniInstanceResponse
|
|
@@ -35,6 +35,7 @@ class CreateClawOmniInstanceRequest(object):
|
|
|
35
35
|
swagger_types = {
|
|
36
36
|
'cpu_milli': 'int',
|
|
37
37
|
'description': 'str',
|
|
38
|
+
'env_vars': 'list[EnvVarForCreateClawOmniInstanceInput]',
|
|
38
39
|
'expired_action': 'str',
|
|
39
40
|
'image': 'str',
|
|
40
41
|
'memory_mb': 'int',
|
|
@@ -50,6 +51,7 @@ class CreateClawOmniInstanceRequest(object):
|
|
|
50
51
|
attribute_map = {
|
|
51
52
|
'cpu_milli': 'CpuMilli',
|
|
52
53
|
'description': 'Description',
|
|
54
|
+
'env_vars': 'EnvVars',
|
|
53
55
|
'expired_action': 'ExpiredAction',
|
|
54
56
|
'image': 'Image',
|
|
55
57
|
'memory_mb': 'MemoryMb',
|
|
@@ -62,7 +64,7 @@ class CreateClawOmniInstanceRequest(object):
|
|
|
62
64
|
'timeout': 'Timeout'
|
|
63
65
|
}
|
|
64
66
|
|
|
65
|
-
def __init__(self, cpu_milli=None, description=None, expired_action=None, image=None, memory_mb=None, model_config=None, name=None, project_name=None, soul=None, space_id=None, tags=None, timeout=None, _configuration=None): # noqa: E501
|
|
67
|
+
def __init__(self, cpu_milli=None, description=None, env_vars=None, expired_action=None, image=None, memory_mb=None, model_config=None, name=None, project_name=None, soul=None, space_id=None, tags=None, timeout=None, _configuration=None): # noqa: E501
|
|
66
68
|
"""CreateClawOmniInstanceRequest - a model defined in Swagger""" # noqa: E501
|
|
67
69
|
if _configuration is None:
|
|
68
70
|
_configuration = Configuration()
|
|
@@ -70,6 +72,7 @@ class CreateClawOmniInstanceRequest(object):
|
|
|
70
72
|
|
|
71
73
|
self._cpu_milli = None
|
|
72
74
|
self._description = None
|
|
75
|
+
self._env_vars = None
|
|
73
76
|
self._expired_action = None
|
|
74
77
|
self._image = None
|
|
75
78
|
self._memory_mb = None
|
|
@@ -85,6 +88,8 @@ class CreateClawOmniInstanceRequest(object):
|
|
|
85
88
|
self.cpu_milli = cpu_milli
|
|
86
89
|
if description is not None:
|
|
87
90
|
self.description = description
|
|
91
|
+
if env_vars is not None:
|
|
92
|
+
self.env_vars = env_vars
|
|
88
93
|
if expired_action is not None:
|
|
89
94
|
self.expired_action = expired_action
|
|
90
95
|
self.image = image
|
|
@@ -146,6 +151,27 @@ class CreateClawOmniInstanceRequest(object):
|
|
|
146
151
|
|
|
147
152
|
self._description = description
|
|
148
153
|
|
|
154
|
+
@property
|
|
155
|
+
def env_vars(self):
|
|
156
|
+
"""Gets the env_vars of this CreateClawOmniInstanceRequest. # noqa: E501
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
:return: The env_vars of this CreateClawOmniInstanceRequest. # noqa: E501
|
|
160
|
+
:rtype: list[EnvVarForCreateClawOmniInstanceInput]
|
|
161
|
+
"""
|
|
162
|
+
return self._env_vars
|
|
163
|
+
|
|
164
|
+
@env_vars.setter
|
|
165
|
+
def env_vars(self, env_vars):
|
|
166
|
+
"""Sets the env_vars of this CreateClawOmniInstanceRequest.
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
:param env_vars: The env_vars of this CreateClawOmniInstanceRequest. # noqa: E501
|
|
170
|
+
:type: list[EnvVarForCreateClawOmniInstanceInput]
|
|
171
|
+
"""
|
|
172
|
+
|
|
173
|
+
self._env_vars = env_vars
|
|
174
|
+
|
|
149
175
|
@property
|
|
150
176
|
def expired_action(self):
|
|
151
177
|
"""Gets the expired_action of this CreateClawOmniInstanceRequest. # noqa: E501
|