byteplus-python-sdk-v2 3.0.45__py2.py3-none-any.whl → 3.0.46__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.
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.46.dist-info}/METADATA +1 -1
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.46.dist-info}/RECORD +70 -19
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.46.dist-info}/top_level.txt +1 -0
- byteplussdkbilling/models/list_for_list_amortized_cost_bill_daily_output.py +27 -1
- byteplussdkbilling/models/list_for_list_amortized_cost_bill_detail_output.py +53 -1
- byteplussdkbilling/models/list_for_list_amortized_cost_bill_monthly_output.py +53 -1
- byteplussdkbilling/models/list_for_list_bill_detail_output.py +79 -1
- byteplussdkbilling/models/list_for_list_coupons_output.py +29 -3
- byteplussdkbilling/models/list_for_list_split_bill_detail_output.py +79 -1
- byteplussdkcore/api_client.py +1 -1
- byteplussdkcore/configuration.py +1 -1
- byteplussdkcore/endpoint/providers/default_provider.py +7 -0
- byteplussdkcore/endpoint/providers/standard_provider.py +1 -0
- byteplussdkcpaas/__init__.py +56 -0
- byteplussdkcpaas/api/__init__.py +6 -0
- byteplussdkcpaas/api/cpaas_api.py +519 -0
- byteplussdkcpaas/models/__init__.py +52 -0
- byteplussdkcpaas/models/action_for_create_template_v2_input.py +201 -0
- byteplussdkcpaas/models/action_for_get_template_v2_output.py +201 -0
- byteplussdkcpaas/models/create_template_v2_request.py +306 -0
- byteplussdkcpaas/models/create_template_v2_response.py +175 -0
- byteplussdkcpaas/models/data_for_create_template_v2_output.py +149 -0
- byteplussdkcpaas/models/data_for_get_template_v2_output.py +253 -0
- byteplussdkcpaas/models/data_for_list_template_v2_output.py +305 -0
- byteplussdkcpaas/models/data_for_send_batch_message_output.py +123 -0
- byteplussdkcpaas/models/data_for_send_message_output.py +123 -0
- byteplussdkcpaas/models/element_style_for_create_template_v2_input.py +305 -0
- byteplussdkcpaas/models/element_style_for_get_template_v2_output.py +305 -0
- byteplussdkcpaas/models/extend_attrs_for_create_template_v2_input.py +227 -0
- byteplussdkcpaas/models/extend_attrs_for_get_template_v2_output.py +227 -0
- byteplussdkcpaas/models/get_template_v2_request.py +150 -0
- byteplussdkcpaas/models/get_template_v2_response.py +201 -0
- byteplussdkcpaas/models/list_template_v2_request.py +255 -0
- byteplussdkcpaas/models/list_template_v2_response.py +201 -0
- byteplussdkcpaas/models/page_dto_list_for_create_template_v2_input.py +175 -0
- byteplussdkcpaas/models/page_dto_list_for_get_template_v2_output.py +175 -0
- byteplussdkcpaas/models/page_element_dto_list_for_create_template_v2_input.py +149 -0
- byteplussdkcpaas/models/page_element_dto_list_for_get_template_v2_output.py +149 -0
- byteplussdkcpaas/models/page_link_list_for_create_template_v2_input.py +227 -0
- byteplussdkcpaas/models/page_link_list_for_get_template_v2_output.py +227 -0
- byteplussdkcpaas/models/priority_for_send_batch_message_input.py +279 -0
- byteplussdkcpaas/models/priority_for_send_message_input.py +279 -0
- byteplussdkcpaas/models/receiver_for_send_batch_message_input.py +149 -0
- byteplussdkcpaas/models/send_batch_message_request.py +281 -0
- byteplussdkcpaas/models/send_batch_message_response.py +175 -0
- byteplussdkcpaas/models/send_message_request.py +281 -0
- byteplussdkcpaas/models/send_message_response.py +175 -0
- byteplussdkcpaas/models/template_list_for_create_template_v2_input.py +305 -0
- byteplussdkcpaas/models/template_list_for_get_template_v2_output.py +305 -0
- byteplussdkcpaas/models/template_status_for_list_template_v2_output.py +175 -0
- byteplussdkcpaas/models/variables_dto_list_for_create_template_v2_input.py +227 -0
- byteplussdkcpaas/models/variables_dto_list_for_get_template_v2_output.py +227 -0
- byteplussdkrdsmssql/__init__.py +12 -0
- byteplussdkrdsmssql/api/rds_mssql_api.py +485 -0
- byteplussdkrdsmssql/models/__init__.py +12 -0
- byteplussdkrdsmssql/models/db_status_for_describe_db_instance_tde_output.py +149 -0
- byteplussdkrdsmssql/models/db_status_for_modify_db_instance_tde_input.py +149 -0
- byteplussdkrdsmssql/models/describe_db_instance_ssl_request.py +124 -0
- byteplussdkrdsmssql/models/describe_db_instance_ssl_response.py +331 -0
- byteplussdkrdsmssql/models/describe_db_instance_tde_request.py +124 -0
- byteplussdkrdsmssql/models/describe_db_instance_tde_response.py +201 -0
- byteplussdkrdsmssql/models/download_ssl_certificate_request.py +124 -0
- byteplussdkrdsmssql/models/download_ssl_certificate_response.py +123 -0
- byteplussdkrdsmssql/models/modify_db_instance_ssl_request.py +229 -0
- byteplussdkrdsmssql/models/modify_db_instance_ssl_response.py +95 -0
- byteplussdkrdsmssql/models/modify_db_instance_tde_request.py +296 -0
- byteplussdkrdsmssql/models/modify_db_instance_tde_response.py +95 -0
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.46.dist-info}/WHEEL +0 -0
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.46.dist-info}/licenses/LICENSE.txt +0 -0
- {byteplus_python_sdk_v2-3.0.45.dist-info → byteplus_python_sdk_v2-3.0.46.dist-info}/licenses/NOTICE.md +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
byteplus_python_sdk_v2-3.0.
|
|
2
|
-
byteplus_python_sdk_v2-3.0.
|
|
1
|
+
byteplus_python_sdk_v2-3.0.46.dist-info/licenses/LICENSE.txt,sha256=jG2zQEdRNt88EgHUWPpXVWmOrOduUQRx7MnYV9YIPaw,11359
|
|
2
|
+
byteplus_python_sdk_v2-3.0.46.dist-info/licenses/NOTICE.md,sha256=vSw_bTkZl1MYBrGol3tpO6B6OLLFRpaw0z5cun0_0QE,85
|
|
3
3
|
byteplussdkalb/__init__.py,sha256=hgNQF2o0CFabtxQHh0xHHZ5oHcz3bQ6wHpRkA9B8nuo,30746
|
|
4
4
|
byteplussdkalb/api/__init__.py,sha256=H6iQBCnNKuvuPDr57uNOlglabIkEAd4CncI0rnwwEoE,133
|
|
5
5
|
byteplussdkalb/api/alb_api.py,sha256=kWP7DNDolXb02v4nD5VmEjSmeddM-aBrHPGCIdC7ogY,249907
|
|
@@ -1245,10 +1245,10 @@ byteplussdkbilling/models/list_coupons_request.py,sha256=rUYTle2vuRhuEPGyjIJtnzZ
|
|
|
1245
1245
|
byteplussdkbilling/models/list_coupons_response.py,sha256=Y_vxJy8InUE_PLjop8nC_EeCrUXRavuW5EoWKnkZrcg,5359
|
|
1246
1246
|
byteplussdkbilling/models/list_financial_relation_request.py,sha256=lkLQaBwSuuxjmtct1B-SEsBzpi9spL-SmlGmFv8QdYw,6619
|
|
1247
1247
|
byteplussdkbilling/models/list_financial_relation_response.py,sha256=Ao8AwH6ft3a6oaIoleJkDX9FUry_luuzQ761ftxBsB4,5599
|
|
1248
|
-
byteplussdkbilling/models/list_for_list_amortized_cost_bill_daily_output.py,sha256=
|
|
1249
|
-
byteplussdkbilling/models/list_for_list_amortized_cost_bill_detail_output.py,sha256=
|
|
1250
|
-
byteplussdkbilling/models/list_for_list_amortized_cost_bill_monthly_output.py,sha256=
|
|
1251
|
-
byteplussdkbilling/models/list_for_list_bill_detail_output.py,sha256=
|
|
1248
|
+
byteplussdkbilling/models/list_for_list_amortized_cost_bill_daily_output.py,sha256=gyMWYk_7i-N34ZM6qFb3r_4EBk4u4QE_1XXF2yFf_b4,128243
|
|
1249
|
+
byteplussdkbilling/models/list_for_list_amortized_cost_bill_detail_output.py,sha256=tbjsZzIwdXNOjBXU5aQGtza-JmQWV0t1T0HSftov5UU,113951
|
|
1250
|
+
byteplussdkbilling/models/list_for_list_amortized_cost_bill_monthly_output.py,sha256=8kUVVBk6JLZgofKcKvTnvSmq1WALRcpPgO_BMrHlY1o,185121
|
|
1251
|
+
byteplussdkbilling/models/list_for_list_bill_detail_output.py,sha256=RBvrarphnS0XqCuEq5EM6ncLQUrVJeFfgOcCTboKqMI,87248
|
|
1252
1252
|
byteplussdkbilling/models/list_for_list_bill_output.py,sha256=sV89fJQfFEBPPBjRQH-g0auMIbEvmvpDmm9gPuu4eCc,46006
|
|
1253
1253
|
byteplussdkbilling/models/list_for_list_bill_overview_by_category_output.py,sha256=wbKt8jp_hwgLalF32YIdcBj-3LJWChjuhkfSkuIFj0Y,39476
|
|
1254
1254
|
byteplussdkbilling/models/list_for_list_bill_overview_by_prod_output.py,sha256=ucfgjE3LNIyy2mK0GJdwDnNIbU9-zB8O8L6A6Ody3fI,41539
|
|
@@ -1256,12 +1256,12 @@ byteplussdkbilling/models/list_for_list_budget_filter_owner_id_output.py,sha256=
|
|
|
1256
1256
|
byteplussdkbilling/models/list_for_list_budget_filter_payer_id_output.py,sha256=9ahX0bd8xjAnayiSm3NBHE7DOHNhjnx4L0Am3p6ZAVQ,4506
|
|
1257
1257
|
byteplussdkbilling/models/list_for_list_budget_filter_product_output.py,sha256=sYLouI-jirPhw9nuwklcZzhp4l8H2IPLloPSqM6hnzI,4527
|
|
1258
1258
|
byteplussdkbilling/models/list_for_list_coupon_usage_records_output.py,sha256=jQYaz2vRfDj7-VwBqqfsCd6zOszFdXmUncPsVvXnSFQ,11930
|
|
1259
|
-
byteplussdkbilling/models/list_for_list_coupons_output.py,sha256=
|
|
1259
|
+
byteplussdkbilling/models/list_for_list_coupons_output.py,sha256=yDT9ZHc791ficic9gWuxnEHgBAlj0NWp1S1wbd4q0Fc,16361
|
|
1260
1260
|
byteplussdkbilling/models/list_for_list_financial_relation_output.py,sha256=s0qauMEV5kN-keNUuiiMM5eFmHRiKZnOhm1WXzk1aPE,14531
|
|
1261
1261
|
byteplussdkbilling/models/list_for_list_invitation_output.py,sha256=3L_3dzZxRpP4R-GS7QGK98EKQt-aS1DFR7pWBFLItNo,5184
|
|
1262
1262
|
byteplussdkbilling/models/list_for_list_package_usage_details_output.py,sha256=nUg-ebUXbJT53tHOAq6h6XOsp03mlE69offFtVP9aQU,34435
|
|
1263
1263
|
byteplussdkbilling/models/list_for_list_resource_packages_output.py,sha256=RNQU3Baugd7qQ77UhfBi-qB2Rjw2J-khhe0Qb3ER3UI,22689
|
|
1264
|
-
byteplussdkbilling/models/list_for_list_split_bill_detail_output.py,sha256=
|
|
1264
|
+
byteplussdkbilling/models/list_for_list_split_bill_detail_output.py,sha256=F4HNb50OzzvkOhRZH3bc5Bsf-D8WJZIeT1hw3B9e4cA,91134
|
|
1265
1265
|
byteplussdkbilling/models/list_invitation_request.py,sha256=Gn5229OEdm3OYA1FVlICxCDLWmWzed0RtlaF9wYqM7A,2788
|
|
1266
1266
|
byteplussdkbilling/models/list_invitation_response.py,sha256=OS1IZYTyZ9HH5y7mtDxwkNd_iHgzUr8YCfnQdUt-gcI,3500
|
|
1267
1267
|
byteplussdkbilling/models/list_order_product_details_request.py,sha256=dTAkEqYbAvnhl8EeI7pK35LL3T70eI-O6aenuvQIr9E,5251
|
|
@@ -1931,8 +1931,8 @@ byteplussdkcloudmonitor/models/update_silence_policy_response.py,sha256=3PZTcDF2
|
|
|
1931
1931
|
byteplussdkcloudmonitor/models/update_webhook_request.py,sha256=UuA9Ua57eLThwa7cVq5xPegHf-e3W2aGti5CLTBYf1U,7041
|
|
1932
1932
|
byteplussdkcloudmonitor/models/update_webhook_response.py,sha256=Icjg1daq1uG0V3l7R_QVPkHvLCe1uXU1OphnDhoZ91A,3424
|
|
1933
1933
|
byteplussdkcore/__init__.py,sha256=QD2qSwKMsMeYxsEQIdWce5ekPilRexqkWCP_q3YOqvo,308
|
|
1934
|
-
byteplussdkcore/api_client.py,sha256=
|
|
1935
|
-
byteplussdkcore/configuration.py,sha256=
|
|
1934
|
+
byteplussdkcore/api_client.py,sha256=CNyBvOdCxWDAXoBIB70Ii0U55o7pvLlx-PVyF7aXXiw,28066
|
|
1935
|
+
byteplussdkcore/configuration.py,sha256=buhYl_L3CoE13SPBwaMVw9u5COh-x5yLyO9nidxdZ1M,11924
|
|
1936
1936
|
byteplussdkcore/endpoint.py,sha256=L5Dw0-Cia9ezYxGJFgZ9td-mCM4AqSIZv67ll1sSzMY,1630
|
|
1937
1937
|
byteplussdkcore/flatten.py,sha256=g3r61JS_AO7WV6ClRDkXgtnVXcw3c7tbZjeLAJxkSLc,3811
|
|
1938
1938
|
byteplussdkcore/metadata.py,sha256=Km5jOllvPViXn0rdx604nIq0OF1RBF3Q2x-xA2cDXc8,4518
|
|
@@ -1955,8 +1955,8 @@ byteplussdkcore/auth/providers/sts_saml_provider.py,sha256=yedLynY4rwG81Xm9y2vfa
|
|
|
1955
1955
|
byteplussdkcore/endpoint/__init__.py,sha256=K7dXFGGh0QYiALOLgtPxboGYzwCJB5IHseGSQPObZdQ,117
|
|
1956
1956
|
byteplussdkcore/endpoint/endpoint_provider.py,sha256=9ajUjf2N2NmThuWrMm5QgLtmh8YbPas5TdvkAZYQ9lM,330
|
|
1957
1957
|
byteplussdkcore/endpoint/providers/__init__.py,sha256=FmxBi_siUNTZod9GFOk5VG-UVYT7daNt4hZ2zifqYY8,76
|
|
1958
|
-
byteplussdkcore/endpoint/providers/default_provider.py,sha256=
|
|
1959
|
-
byteplussdkcore/endpoint/providers/standard_provider.py,sha256=
|
|
1958
|
+
byteplussdkcore/endpoint/providers/default_provider.py,sha256=4uSuK4Ys8AFyPbVdvcpHhIeHKNlz1qbRbjrJNK4w1gg,9829
|
|
1959
|
+
byteplussdkcore/endpoint/providers/standard_provider.py,sha256=H7v5kCKkQOkX40-yX9DorXUG9tqI1wPNHTcuSKvoDPE,12352
|
|
1960
1960
|
byteplussdkcore/feature/__init__.py,sha256=ev2S2XGLZUjbL7sylBd3NWmqGmcDcYV-Oj4qPZOztHU,154
|
|
1961
1961
|
byteplussdkcore/feature/rds/__init__.py,sha256=g4-6e-OdBADN9_WzILg8P69KdSVSc5TyOg5CrXglE5A,119
|
|
1962
1962
|
byteplussdkcore/feature/rds/connect_utils.py,sha256=Re8TelxMQQSNO2dJci_wQ58EsCfN6l-87Q78pHASM5U,3177
|
|
@@ -1980,6 +1980,45 @@ byteplussdkcore/retryer/retry_condition.py,sha256=RSQSfxNk-Sz1OlHILa-39b9m_PcF-w
|
|
|
1980
1980
|
byteplussdkcore/retryer/retryer.py,sha256=12dAyqxaeTOHCSDUdnhaBKlK8n_3DoBxJebZFW4og30,2683
|
|
1981
1981
|
byteplussdkcore/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1982
1982
|
byteplussdkcore/utils/six_utils.py,sha256=jk7KYvEsiw71Uf-hbi9izkjd77awopqovtgOuekp0ts,192
|
|
1983
|
+
byteplussdkcpaas/__init__.py,sha256=Ldkk3NRNp64H3VoXLPfS4yZbXFLk9r-SrQz1IgxSnrc,4037
|
|
1984
|
+
byteplussdkcpaas/api/__init__.py,sha256=fxPobQRAW-RAsgCIStya1D33Fv72TNN3uR_4-Q8Gyao,139
|
|
1985
|
+
byteplussdkcpaas/api/cpaas_api.py,sha256=K2FPfOEKm05rlysuHAHixePQB8QPrKC9MssNeW54oxM,19850
|
|
1986
|
+
byteplussdkcpaas/models/__init__.py,sha256=BhLEDI7wkQG-TyQyCbVDrDJ4-AjHnIS421fi2WomALc,3954
|
|
1987
|
+
byteplussdkcpaas/models/action_for_create_template_v2_input.py,sha256=zJg-lE5Fvq9elsvMVKGsOyIpZaDLL8UbUDQ36u9FRW0,5960
|
|
1988
|
+
byteplussdkcpaas/models/action_for_get_template_v2_output.py,sha256=tDu5OGRFWmoDAGC2TaAtlnS3IQCnckzCQYFYN2FMiig,5912
|
|
1989
|
+
byteplussdkcpaas/models/create_template_v2_request.py,sha256=bS3kqnsicfGkQp9WrAfPZL4DrqSkA0sa8oyuLg79IfU,9357
|
|
1990
|
+
byteplussdkcpaas/models/create_template_v2_response.py,sha256=0bzD44UeDqZkso7Zw1iHQB7SDUl1FlDPSbOGzc7i37k,4877
|
|
1991
|
+
byteplussdkcpaas/models/data_for_create_template_v2_output.py,sha256=OSVm9FPPR52olUT0SlfVa-0qpVmL2ezasd4ETwL7smo,4712
|
|
1992
|
+
byteplussdkcpaas/models/data_for_get_template_v2_output.py,sha256=o0PaSNIQYkEYKfcq3fXeN3VkNhHrxerNuWEiKLImzhU,8032
|
|
1993
|
+
byteplussdkcpaas/models/data_for_list_template_v2_output.py,sha256=U7aBGdeqkqJmV-u0h7toCpVFDn8LfXt2YoWl8cshcRo,9662
|
|
1994
|
+
byteplussdkcpaas/models/data_for_send_batch_message_output.py,sha256=T12Uh-BA7pheMlJ94DdvZYPRBLTYiyVdWrPGMeX0_DM,3590
|
|
1995
|
+
byteplussdkcpaas/models/data_for_send_message_output.py,sha256=-CVThJwt1C0kM4TmTZFT9Zl7muef3N0gaFcKjn4LSWM,3545
|
|
1996
|
+
byteplussdkcpaas/models/element_style_for_create_template_v2_input.py,sha256=5lF2QaBOUqo-lf_B0YFxXXFZ7vR70IU9ib5UVDDXLxg,9543
|
|
1997
|
+
byteplussdkcpaas/models/element_style_for_get_template_v2_output.py,sha256=jiwWoQB2T1-xUNifU3WXOT9wzPGIKrJqiaVSNC-9O80,9469
|
|
1998
|
+
byteplussdkcpaas/models/extend_attrs_for_create_template_v2_input.py,sha256=mEWXPlddPmYKDdGKFazZ1n01OoWPuaNC0z8dg1SKyWg,6956
|
|
1999
|
+
byteplussdkcpaas/models/extend_attrs_for_get_template_v2_output.py,sha256=0yLo27NYfdWHTk8RXoLKyWANX99S8Z0o67BUT5Ffo-8,6906
|
|
2000
|
+
byteplussdkcpaas/models/get_template_v2_request.py,sha256=xqkmRSvPc1z7ypkMZiZbIbawuhoZkjBXaO38HVrbd-Q,4798
|
|
2001
|
+
byteplussdkcpaas/models/get_template_v2_response.py,sha256=VjaRipX8JF7_aiShgeRM2qkXIT3BB86Ua9HdLW-lhnM,5450
|
|
2002
|
+
byteplussdkcpaas/models/list_template_v2_request.py,sha256=oXdkdQlVWFCQOlIKE0QafkWgc9G0PUcsbUN88zcgZgY,7764
|
|
2003
|
+
byteplussdkcpaas/models/list_template_v2_response.py,sha256=kacL7efqh6k1hVPh0oYaQto35mZPhVIkXJcZ9vqx_gE,5492
|
|
2004
|
+
byteplussdkcpaas/models/page_dto_list_for_create_template_v2_input.py,sha256=L4xPvf4unG3wI9MzM_ZUMSx5bnID5t6Wy-_N-S0ZeDI,5749
|
|
2005
|
+
byteplussdkcpaas/models/page_dto_list_for_get_template_v2_output.py,sha256=I7IZfxfrbvKdG6FqdwRJvvWuoED4h499vf9s2YvMMS4,5703
|
|
2006
|
+
byteplussdkcpaas/models/page_element_dto_list_for_create_template_v2_input.py,sha256=eSguuKbcn3l4wJuRb3V-AETeDIXJtEOZGwq_8h3B07I,4722
|
|
2007
|
+
byteplussdkcpaas/models/page_element_dto_list_for_get_template_v2_output.py,sha256=g3fXtzBJm9OGJQRHNtVMhxF7ao89Zp6rpQIFsg-7rTo,4690
|
|
2008
|
+
byteplussdkcpaas/models/page_link_list_for_create_template_v2_input.py,sha256=NYUengEUmjfi1LdQEn5ETRMRshkeW1KcoYpxn4iFFbo,6783
|
|
2009
|
+
byteplussdkcpaas/models/page_link_list_for_get_template_v2_output.py,sha256=PFjQBNqwpiD-AvQIMQ8cNzuU6VbO62VCTGbHVRVHB64,6727
|
|
2010
|
+
byteplussdkcpaas/models/priority_for_send_batch_message_input.py,sha256=HVhCrse55M5GLQjKmZNxsfoN5__3uUcWRT_u2X3tzzw,7964
|
|
2011
|
+
byteplussdkcpaas/models/priority_for_send_message_input.py,sha256=C0QwmiTlq6jICQ9PFC_qmC0CSRJJVlHS7ukVbsKLOPg,7799
|
|
2012
|
+
byteplussdkcpaas/models/receiver_for_send_batch_message_input.py,sha256=ZsvmLLP0cBP4lpx9GA-zgYy4-74cYP2pO94Wj1rRx6g,4275
|
|
2013
|
+
byteplussdkcpaas/models/send_batch_message_request.py,sha256=MXzRgJv323TmbD41zNFkiGQGiL8lZULCc-XcHZuOiNI,8323
|
|
2014
|
+
byteplussdkcpaas/models/send_batch_message_response.py,sha256=QGt-W6a7ad9JwLKRsC6wigejqpSaG6WfT4zllxw4r3k,4877
|
|
2015
|
+
byteplussdkcpaas/models/send_message_request.py,sha256=nOcyVCrQho9-zy7jqFbyCYfHFhwbSMsRKdGrn2mAUY0,7979
|
|
2016
|
+
byteplussdkcpaas/models/send_message_response.py,sha256=3vUY602pgv05ZBc9bHbB7r9oVl0Jj6MqUkFRPUFe5m0,4777
|
|
2017
|
+
byteplussdkcpaas/models/template_list_for_create_template_v2_input.py,sha256=3JwF2rkxUr8NnRVjq-zyySLyi6ZyW0VXKUb93kQAXLs,10095
|
|
2018
|
+
byteplussdkcpaas/models/template_list_for_get_template_v2_output.py,sha256=ZeEKiuGjvC1Q1zu5DTe1NuqxZuDtZWBSCxOsiRCa6cc,10009
|
|
2019
|
+
byteplussdkcpaas/models/template_status_for_list_template_v2_output.py,sha256=RDDukjSM-6qKVXqrbdDSxybKMhcP_Zg6JVZ37xCi99g,5275
|
|
2020
|
+
byteplussdkcpaas/models/variables_dto_list_for_create_template_v2_input.py,sha256=IjeXixPePCYNeGTHMvy0jvHnLmLuk82I6WS1g6pEFYw,7221
|
|
2021
|
+
byteplussdkcpaas/models/variables_dto_list_for_get_template_v2_output.py,sha256=QY1rC2y9ZP_zUBo56w6HaNmWoxd4kc_pI1LLXvqBAPI,7171
|
|
1983
2022
|
byteplussdkcr/__init__.py,sha256=x2tpTwBt2F_dNc_7XGSAwVGHVQH3YVi6mPOf2C2bt0k,7918
|
|
1984
2023
|
byteplussdkcr/api/__init__.py,sha256=NQOCaOocCMSTrd8HhxZ-xu4zeY4t8d8jNRS8wu5-b7w,130
|
|
1985
2024
|
byteplussdkcr/api/cr_api.py,sha256=zQDFlXcJpxyuxJ6ZK-eTSaCcUqQY1aN1bB39xni8U1Q,107967
|
|
@@ -5314,10 +5353,10 @@ byteplussdkrabbitmq/models/tag_for_describe_instance_detail_output.py,sha256=jTC
|
|
|
5314
5353
|
byteplussdkrabbitmq/models/tag_for_describe_instances_output.py,sha256=GN5ZfdCMcSxY_TgXWiR6byCH3_1iHZh8KuZzq910rxc,4119
|
|
5315
5354
|
byteplussdkrabbitmq/models/tag_resource_for_describe_tags_by_resource_output.py,sha256=BgBeJVph484DAYVGZNOil4GHIMvAOJNtBbjclIiKDdU,5124
|
|
5316
5355
|
byteplussdkrabbitmq/models/zone_for_describe_availability_zones_output.py,sha256=dJ0z72HNqrWGbSXo7oZ_kofyPJMbukofMpTJgw9goHw,6756
|
|
5317
|
-
byteplussdkrdsmssql/__init__.py,sha256=
|
|
5356
|
+
byteplussdkrdsmssql/__init__.py,sha256=95wVcnNW-Hpzibtq3xEQ_YQwKVnn0dzu9beXFsfB1pw,14463
|
|
5318
5357
|
byteplussdkrdsmssql/api/__init__.py,sha256=fKY4cYBazb-w5kv4hdq8npsALPyEkc0UiRy_bLp8tgw,149
|
|
5319
|
-
byteplussdkrdsmssql/api/rds_mssql_api.py,sha256=
|
|
5320
|
-
byteplussdkrdsmssql/models/__init__.py,sha256=
|
|
5358
|
+
byteplussdkrdsmssql/api/rds_mssql_api.py,sha256=o6R97incotNV8IWxxJ5fUy01xIEFoRzkRdMlI6zRhwk,176613
|
|
5359
|
+
byteplussdkrdsmssql/models/__init__.py,sha256=qFwFuBEGzp4YbhB2EP4M1ArzDIrdq2RfJZM_7-TuQ34,14370
|
|
5321
5360
|
byteplussdkrdsmssql/models/account_for_describe_db_accounts_output.py,sha256=yN086BnT98h6vitxtH-EZFE1ijupdtVJLyCdFENwBP0,6449
|
|
5322
5361
|
byteplussdkrdsmssql/models/account_privilege_for_create_db_account_input.py,sha256=JRUDvvZtSo6VA00mNG7YJbgKsonGTULNg9lKbH6PUFY,5651
|
|
5323
5362
|
byteplussdkrdsmssql/models/account_privilege_for_describe_db_accounts_output.py,sha256=wlIoehgEMAI87sH-U4wwnV2GqY_7pNdW_nj91jxP7Xg,5719
|
|
@@ -5350,6 +5389,8 @@ byteplussdkrdsmssql/models/create_tos_restore_request.py,sha256=j2tfYgRPxkQA9dFF
|
|
|
5350
5389
|
byteplussdkrdsmssql/models/create_tos_restore_response.py,sha256=y-PLg1MWk_hYPaaGGu58O2hiyBDFfkD4gC5nhXgib1U,3648
|
|
5351
5390
|
byteplussdkrdsmssql/models/database_for_create_tos_restore_input.py,sha256=RDfZDFgRr62fXao_fLrfQn2EUfO-w8gb4of8Cebra7E,4356
|
|
5352
5391
|
byteplussdkrdsmssql/models/database_for_restore_to_existed_instance_input.py,sha256=veulOGxyWIi-qY6CYZrBRCcgpsDO4zZXUl7QV0myg3w,4460
|
|
5392
|
+
byteplussdkrdsmssql/models/db_status_for_describe_db_instance_tde_output.py,sha256=OcSDfbCnE8HXnXMKred7Uk6VNrTNXhBusvSq6LaHLmE,4339
|
|
5393
|
+
byteplussdkrdsmssql/models/db_status_for_modify_db_instance_tde_input.py,sha256=xtnKi34DLwWS1snL7PNyUDh64OPFHFZWcirT01VoGU4,4300
|
|
5353
5394
|
byteplussdkrdsmssql/models/delete_allow_list_request.py,sha256=jDgHWdf_-uQeKT99kJejgnq7AYSzb9fp9s1oZneZVWQ,4505
|
|
5354
5395
|
byteplussdkrdsmssql/models/delete_allow_list_response.py,sha256=xSKVtXyDQNn4qHT0ZrfPwAVuwq98wpkAxaGC2LrDvVc,2800
|
|
5355
5396
|
byteplussdkrdsmssql/models/delete_backup_request.py,sha256=yrkaBMTMe_3yWmUu-ssFRu_5DHLkg9i0SoWIiyTvhuw,4500
|
|
@@ -5380,6 +5421,10 @@ byteplussdkrdsmssql/models/describe_db_instance_parameters_request.py,sha256=7RW
|
|
|
5380
5421
|
byteplussdkrdsmssql/models/describe_db_instance_parameters_response.py,sha256=0ZKdl8p9aMTH10U-KqycPbaJfBHBRpZJ-sgIna-9Zp4,7415
|
|
5381
5422
|
byteplussdkrdsmssql/models/describe_db_instance_specs_request.py,sha256=9TAq4VUMotF5YODnDirhQ-GGEj0ikWJunjYbSFG7V5Y,5278
|
|
5382
5423
|
byteplussdkrdsmssql/models/describe_db_instance_specs_response.py,sha256=LIw4Fkb2b-LmFrb74XocT_jTgwLG88XQDvtWGw4RN3Y,3947
|
|
5424
|
+
byteplussdkrdsmssql/models/describe_db_instance_ssl_request.py,sha256=1i5CLQcB3tYrRhP49G_i1IjkXVQpJRs0p1l5waSWbEI,3742
|
|
5425
|
+
byteplussdkrdsmssql/models/describe_db_instance_ssl_response.py,sha256=lZHykEysrahgeO4kvqOSn4OpZX--RNmRE0VwNK5DQOw,9938
|
|
5426
|
+
byteplussdkrdsmssql/models/describe_db_instance_tde_request.py,sha256=YrLXCoOkxe8JcohIpphU1fTr9oR0qZt4I69sIXniY6Y,3742
|
|
5427
|
+
byteplussdkrdsmssql/models/describe_db_instance_tde_response.py,sha256=HpvDKn0gSQ2U7X_T4u93P-1iWO2wL6B31w_x2nDFO0U,5969
|
|
5383
5428
|
byteplussdkrdsmssql/models/describe_db_instances_request.py,sha256=UFDQ0j3mzMx15OibQLj8tlU848deuY8Jwyaa6q2A-Jw,16040
|
|
5384
5429
|
byteplussdkrdsmssql/models/describe_db_instances_response.py,sha256=e4CO-0ZMAR8ax5VhBUhsc-4q_hVw8YIAOiJYelnE9gA,4445
|
|
5385
5430
|
byteplussdkrdsmssql/models/describe_instance_allow_lists_request.py,sha256=LLH7O6pYhkfoS1Z2zusGQXLIIhoVROJLIriDxZQL4Bs,4410
|
|
@@ -5394,6 +5439,8 @@ byteplussdkrdsmssql/models/disassociate_allow_list_request.py,sha256=MTkX0IU-DEZ
|
|
|
5394
5439
|
byteplussdkrdsmssql/models/disassociate_allow_list_response.py,sha256=3u5J1u8b8ywTMtmdjZ2SR70a_9Kuls6Buz_Zj-mQZ6I,2830
|
|
5395
5440
|
byteplussdkrdsmssql/models/download_backup_request.py,sha256=CdR3-eUXZW_bGwYGgNZBMTf94RZg-jgsWCf7cl57DcA,4526
|
|
5396
5441
|
byteplussdkrdsmssql/models/download_backup_response.py,sha256=PcSWCDYaisy4mRDzgurA1lxuORRY2OnedJGIJYytmkE,4267
|
|
5442
|
+
byteplussdkrdsmssql/models/download_ssl_certificate_request.py,sha256=k28UEEJq2MtHoOu0zPyRsf7K8zmPD5DaU3BRBNTjg-I,3751
|
|
5443
|
+
byteplussdkrdsmssql/models/download_ssl_certificate_response.py,sha256=ZXfIHzqqRyyhHUCYsEWrbCh0wgP--9OxnOZHHd5_ajE,3642
|
|
5397
5444
|
byteplussdkrdsmssql/models/grant_db_account_privilege_request.py,sha256=T4dCHngDpupRSqABtkZDfKw_DV5pLupaQQje8yNR5jQ,5784
|
|
5398
5445
|
byteplussdkrdsmssql/models/grant_db_account_privilege_response.py,sha256=g1gAGYGlhmwuGAHaXos1NWmEQgyXhP8TMDik9UeaqZU,2840
|
|
5399
5446
|
byteplussdkrdsmssql/models/instance_parameter_for_describe_db_instance_parameters_output.py,sha256=3R_kAcI1C5qoXtE6Irx0o83F7XJcSMlAEPWuMS6hsfw,10772
|
|
@@ -5411,6 +5458,10 @@ byteplussdkrdsmssql/models/modify_db_failover_request.py,sha256=6rC4e3-yVdmZSCss
|
|
|
5411
5458
|
byteplussdkrdsmssql/models/modify_db_failover_response.py,sha256=5qPK4Y5ocCOqhJgeQMLeWZge74PAhLtPvizDr2_RXf0,2805
|
|
5412
5459
|
byteplussdkrdsmssql/models/modify_db_instance_name_request.py,sha256=5DS34hYC3hEyVJZmfc01CRs_BsZeIomBNYhvSc24Pqc,4771
|
|
5413
5460
|
byteplussdkrdsmssql/models/modify_db_instance_name_response.py,sha256=Oi1nboyLpTOz9nC0KeaTd6HXO7PV2JkclKJCY075qkU,2825
|
|
5461
|
+
byteplussdkrdsmssql/models/modify_db_instance_ssl_request.py,sha256=FJ8xh9RD5HlVH4GUFEVt4jtlBuVGQ7v1Nu_QnMfzgyU,6848
|
|
5462
|
+
byteplussdkrdsmssql/models/modify_db_instance_ssl_response.py,sha256=bWwf68Is4f_3JgTG35oebwFrg8Hz3X_Jzo0dboetC8Y,2820
|
|
5463
|
+
byteplussdkrdsmssql/models/modify_db_instance_tde_request.py,sha256=fTXY9iZoLGaqGz9Cd8uJwJsUsQhkfuf-lFlA6m3MOWA,9280
|
|
5464
|
+
byteplussdkrdsmssql/models/modify_db_instance_tde_response.py,sha256=sudsa3dk4QSLUj_oz1nyX4rw1mhgJOTJG_1_pt12KOo,2820
|
|
5414
5465
|
byteplussdkrdsmssql/models/modify_instance_advanced_features_request.py,sha256=rFyeBbvmDANyb6AXApJc3OWlPc6BQxWEvNnCZzhsM1U,4902
|
|
5415
5466
|
byteplussdkrdsmssql/models/modify_instance_advanced_features_response.py,sha256=NmKIpeRIe4ZpDfPTpNnfOQSOLVJPGSBndVZy8EVY6aQ,4635
|
|
5416
5467
|
byteplussdkrdsmssql/models/node_detail_info_for_describe_db_instance_detail_output.py,sha256=cARJjIoidOT-CyiOjLr95cvbjYY7TYOV3GWzF7GxUw8,13410
|
|
@@ -8884,7 +8935,7 @@ byteplussdkvpn/models/vpn_connection_for_describe_vpn_connections_output.py,sha2
|
|
|
8884
8935
|
byteplussdkvpn/models/vpn_gateway_for_describe_vpn_gateways_billing_output.py,sha256=PVoxecEDX9kyxj0C2lvvak-Dcj6Ob-S_dVO7cDUfONA,11033
|
|
8885
8936
|
byteplussdkvpn/models/vpn_gateway_for_describe_vpn_gateways_output.py,sha256=Vws178kEWlj6cvHc6Pknd6DS_kQCMvVFI1PalrlXcio,28961
|
|
8886
8937
|
byteplussdkvpn/models/vpn_gateway_route_for_describe_vpn_gateway_routes_output.py,sha256=f14Ld4PWButLCb0GGdne7tSbfN8NxNR4icaxRCRYkw0,12000
|
|
8887
|
-
byteplus_python_sdk_v2-3.0.
|
|
8888
|
-
byteplus_python_sdk_v2-3.0.
|
|
8889
|
-
byteplus_python_sdk_v2-3.0.
|
|
8890
|
-
byteplus_python_sdk_v2-3.0.
|
|
8938
|
+
byteplus_python_sdk_v2-3.0.46.dist-info/METADATA,sha256=e0h_5Za4r8CaGh9d_bVzUst2in80KerCaJ5AyPTTZ8c,4677
|
|
8939
|
+
byteplus_python_sdk_v2-3.0.46.dist-info/WHEEL,sha256=TdQ5LtNwLuxTCjgxN51AgdU5w-KkB9ttmLbzjTH02pg,109
|
|
8940
|
+
byteplus_python_sdk_v2-3.0.46.dist-info/top_level.txt,sha256=xf6giQwfXA0koZpHXj8--sbO2WjzAwpJ6aCGaGB_NX4,997
|
|
8941
|
+
byteplus_python_sdk_v2-3.0.46.dist-info/RECORD,,
|
|
@@ -46,6 +46,7 @@ class ListForListAmortizedCostBillDailyOutput(object):
|
|
|
46
46
|
'billing_mode': 'str',
|
|
47
47
|
'busi_period': 'str',
|
|
48
48
|
'business_mode': 'str',
|
|
49
|
+
'charge_item_code': 'str',
|
|
49
50
|
'config_name': 'str',
|
|
50
51
|
'configuration_code': 'str',
|
|
51
52
|
'count': 'str',
|
|
@@ -172,6 +173,7 @@ class ListForListAmortizedCostBillDailyOutput(object):
|
|
|
172
173
|
'billing_mode': 'BillingMode',
|
|
173
174
|
'busi_period': 'BusiPeriod',
|
|
174
175
|
'business_mode': 'BusinessMode',
|
|
176
|
+
'charge_item_code': 'ChargeItemCode',
|
|
175
177
|
'config_name': 'ConfigName',
|
|
176
178
|
'configuration_code': 'ConfigurationCode',
|
|
177
179
|
'count': 'Count',
|
|
@@ -284,7 +286,7 @@ class ListForListAmortizedCostBillDailyOutput(object):
|
|
|
284
286
|
'zone_code': 'ZoneCode'
|
|
285
287
|
}
|
|
286
288
|
|
|
287
|
-
def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_time=None, amortized_month=None, amortized_type=None, bill_category=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, config_name=None, configuration_code=None, count=None, country_region=None, coupon_amount=None, currency=None, currency_settlement=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_posttax_amount=None, daily_amortized_pre_tax_payable_amount=None, daily_amortized_pre_tax_real_value=None, daily_amortized_preferential_bill_amount=None, daily_amortized_pretax_amount=None, daily_amortized_real_value=None, daily_amortized_round_amount=None, daily_amortized_saving_plan_original_amount=None, daily_amortized_settle_payable_amount=None, daily_amortized_settle_posttax_amount=None, daily_amortized_settle_pre_tax_payable_amount=None, daily_amortized_settle_pre_tax_real_value=None, daily_amortized_settle_pretax_amount=None, daily_amortized_settle_real_value=None, daily_amortized_settle_tax_amount=None, daily_amortized_tax_amount=None, deduction_use_duration=None, discount_bill_amount=None, discount_biz_billing_function=None, effective_factor=None, element=None, element_code=None, expand_field=None, expense_time=None, factor=None, factor_code=None, instance_name=None, instance_no=None, main_contract_number=None, now_amortized_coupon_amount=None, now_amortized_discount_bill_amount=None, now_amortized_original_bill_amount=None, now_amortized_paid_amount=None, now_amortized_payable_amount=None, now_amortized_posttax_amount=None, now_amortized_pre_tax_payable_amount=None, now_amortized_pre_tax_real_value=None, now_amortized_preferential_bill_amount=None, now_amortized_pretax_amount=None, now_amortized_real_value=None, now_amortized_round_amount=None, now_amortized_saving_plan_original_amount=None, now_amortized_settle_payable_amount=None, now_amortized_settle_posttax_amount=None, now_amortized_settle_pre_tax_payable_amount=None, now_amortized_settle_pre_tax_real_value=None, now_amortized_settle_pretax_amount=None, now_amortized_settle_real_value=None, now_amortized_settle_tax_amount=None, now_amortized_tax_amount=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, pre_tax_real_value=None, preferential_bill_amount=None, pretax_amount=None, price=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, region_code=None, resource_id=None, round_amount=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pre_tax_real_value=None, settle_pretax_amount=None, settle_real_value=None, settle_tax_amount=None, split_item_id=None, split_item_name=None, subject_name=None, tag=None, tax=None, tax_rate=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, zone_code=None, _configuration=None): # noqa: E501
|
|
289
|
+
def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_time=None, amortized_month=None, amortized_type=None, bill_category=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, charge_item_code=None, config_name=None, configuration_code=None, count=None, country_region=None, coupon_amount=None, currency=None, currency_settlement=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_posttax_amount=None, daily_amortized_pre_tax_payable_amount=None, daily_amortized_pre_tax_real_value=None, daily_amortized_preferential_bill_amount=None, daily_amortized_pretax_amount=None, daily_amortized_real_value=None, daily_amortized_round_amount=None, daily_amortized_saving_plan_original_amount=None, daily_amortized_settle_payable_amount=None, daily_amortized_settle_posttax_amount=None, daily_amortized_settle_pre_tax_payable_amount=None, daily_amortized_settle_pre_tax_real_value=None, daily_amortized_settle_pretax_amount=None, daily_amortized_settle_real_value=None, daily_amortized_settle_tax_amount=None, daily_amortized_tax_amount=None, deduction_use_duration=None, discount_bill_amount=None, discount_biz_billing_function=None, effective_factor=None, element=None, element_code=None, expand_field=None, expense_time=None, factor=None, factor_code=None, instance_name=None, instance_no=None, main_contract_number=None, now_amortized_coupon_amount=None, now_amortized_discount_bill_amount=None, now_amortized_original_bill_amount=None, now_amortized_paid_amount=None, now_amortized_payable_amount=None, now_amortized_posttax_amount=None, now_amortized_pre_tax_payable_amount=None, now_amortized_pre_tax_real_value=None, now_amortized_preferential_bill_amount=None, now_amortized_pretax_amount=None, now_amortized_real_value=None, now_amortized_round_amount=None, now_amortized_saving_plan_original_amount=None, now_amortized_settle_payable_amount=None, now_amortized_settle_posttax_amount=None, now_amortized_settle_pre_tax_payable_amount=None, now_amortized_settle_pre_tax_real_value=None, now_amortized_settle_pretax_amount=None, now_amortized_settle_real_value=None, now_amortized_settle_tax_amount=None, now_amortized_tax_amount=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, pre_tax_real_value=None, preferential_bill_amount=None, pretax_amount=None, price=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, region_code=None, resource_id=None, round_amount=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pre_tax_real_value=None, settle_pretax_amount=None, settle_real_value=None, settle_tax_amount=None, split_item_id=None, split_item_name=None, subject_name=None, tag=None, tax=None, tax_rate=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, zone_code=None, _configuration=None): # noqa: E501
|
|
288
290
|
"""ListForListAmortizedCostBillDailyOutput - a model defined in Swagger""" # noqa: E501
|
|
289
291
|
if _configuration is None:
|
|
290
292
|
_configuration = Configuration()
|
|
@@ -303,6 +305,7 @@ class ListForListAmortizedCostBillDailyOutput(object):
|
|
|
303
305
|
self._billing_mode = None
|
|
304
306
|
self._busi_period = None
|
|
305
307
|
self._business_mode = None
|
|
308
|
+
self._charge_item_code = None
|
|
306
309
|
self._config_name = None
|
|
307
310
|
self._configuration_code = None
|
|
308
311
|
self._count = None
|
|
@@ -441,6 +444,8 @@ class ListForListAmortizedCostBillDailyOutput(object):
|
|
|
441
444
|
self.busi_period = busi_period
|
|
442
445
|
if business_mode is not None:
|
|
443
446
|
self.business_mode = business_mode
|
|
447
|
+
if charge_item_code is not None:
|
|
448
|
+
self.charge_item_code = charge_item_code
|
|
444
449
|
if config_name is not None:
|
|
445
450
|
self.config_name = config_name
|
|
446
451
|
if configuration_code is not None:
|
|
@@ -935,6 +940,27 @@ class ListForListAmortizedCostBillDailyOutput(object):
|
|
|
935
940
|
|
|
936
941
|
self._business_mode = business_mode
|
|
937
942
|
|
|
943
|
+
@property
|
|
944
|
+
def charge_item_code(self):
|
|
945
|
+
"""Gets the charge_item_code of this ListForListAmortizedCostBillDailyOutput. # noqa: E501
|
|
946
|
+
|
|
947
|
+
|
|
948
|
+
:return: The charge_item_code of this ListForListAmortizedCostBillDailyOutput. # noqa: E501
|
|
949
|
+
:rtype: str
|
|
950
|
+
"""
|
|
951
|
+
return self._charge_item_code
|
|
952
|
+
|
|
953
|
+
@charge_item_code.setter
|
|
954
|
+
def charge_item_code(self, charge_item_code):
|
|
955
|
+
"""Sets the charge_item_code of this ListForListAmortizedCostBillDailyOutput.
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
:param charge_item_code: The charge_item_code of this ListForListAmortizedCostBillDailyOutput. # noqa: E501
|
|
959
|
+
:type: str
|
|
960
|
+
"""
|
|
961
|
+
|
|
962
|
+
self._charge_item_code = charge_item_code
|
|
963
|
+
|
|
938
964
|
@property
|
|
939
965
|
def config_name(self):
|
|
940
966
|
"""Gets the config_name of this ListForListAmortizedCostBillDailyOutput. # noqa: E501
|
|
@@ -46,7 +46,9 @@ class ListForListAmortizedCostBillDetailOutput(object):
|
|
|
46
46
|
'billing_mode': 'str',
|
|
47
47
|
'busi_period': 'str',
|
|
48
48
|
'business_mode': 'str',
|
|
49
|
+
'charge_item_code': 'str',
|
|
49
50
|
'config_name': 'str',
|
|
51
|
+
'configuration_code': 'str',
|
|
50
52
|
'cost_id': 'str',
|
|
51
53
|
'count': 'str',
|
|
52
54
|
'country_area': 'str',
|
|
@@ -161,7 +163,9 @@ class ListForListAmortizedCostBillDetailOutput(object):
|
|
|
161
163
|
'billing_mode': 'BillingMode',
|
|
162
164
|
'busi_period': 'BusiPeriod',
|
|
163
165
|
'business_mode': 'BusinessMode',
|
|
166
|
+
'charge_item_code': 'ChargeItemCode',
|
|
164
167
|
'config_name': 'ConfigName',
|
|
168
|
+
'configuration_code': 'ConfigurationCode',
|
|
165
169
|
'cost_id': 'CostID',
|
|
166
170
|
'count': 'Count',
|
|
167
171
|
'country_area': 'CountryArea',
|
|
@@ -262,7 +266,7 @@ class ListForListAmortizedCostBillDetailOutput(object):
|
|
|
262
266
|
'zone': 'Zone'
|
|
263
267
|
}
|
|
264
268
|
|
|
265
|
-
def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_time=None, amortized_month=None, amortized_type=None, bill_category=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, config_name=None, cost_id=None, count=None, country_area=None, country_region=None, coupon_amount=None, currency=None, currency_settlement=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_posttax_amount=None, daily_amortized_pre_tax_payable_amount=None, daily_amortized_pre_tax_real_value=None, daily_amortized_preferential_bill_amount=None, daily_amortized_pretax_amount=None, daily_amortized_real_value=None, daily_amortized_round_amount=None, daily_amortized_saving_plan_original_amount=None, daily_amortized_settle_payable_amount=None, daily_amortized_settle_posttax_amount=None, daily_amortized_settle_pre_tax_payable_amount=None, daily_amortized_settle_pre_tax_real_value=None, daily_amortized_settle_pretax_amount=None, daily_amortized_settle_real_value=None, daily_amortized_settle_tax_amount=None, daily_amortized_tax_amount=None, deduction_use_duration=None, discount_bill_amount=None, discount_biz_billing_function=None, discount_biz_measure_interval=None, discount_biz_unit_price=None, discount_biz_unit_price_interval=None, discount_info=None, effective_factor=None, element=None, exchange_rate=None, expand_field=None, expense_begin_time=None, expense_end_time=None, factor=None, instance_name=None, instance_no=None, main_contract_number=None, market_price=None, measure_interval=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, pre_tax_real_value=None, preferential_bill_amount=None, pretax_amount=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, resource_id=None, round_amount=None, saving_plan_deduction_discount_amount=None, saving_plan_deduction_sp_id=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pre_tax_real_value=None, settle_pretax_amount=None, settle_real_value=None, settle_tax_amount=None, split_item_id=None, split_item_name=None, subject_name=None, tag=None, tax=None, tax_amount=None, tax_rate=None, trade_time=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, _configuration=None): # noqa: E501
|
|
269
|
+
def __init__(self, amortized_begin_time=None, amortized_day=None, amortized_end_time=None, amortized_month=None, amortized_type=None, bill_category=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, charge_item_code=None, config_name=None, configuration_code=None, cost_id=None, count=None, country_area=None, country_region=None, coupon_amount=None, currency=None, currency_settlement=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_posttax_amount=None, daily_amortized_pre_tax_payable_amount=None, daily_amortized_pre_tax_real_value=None, daily_amortized_preferential_bill_amount=None, daily_amortized_pretax_amount=None, daily_amortized_real_value=None, daily_amortized_round_amount=None, daily_amortized_saving_plan_original_amount=None, daily_amortized_settle_payable_amount=None, daily_amortized_settle_posttax_amount=None, daily_amortized_settle_pre_tax_payable_amount=None, daily_amortized_settle_pre_tax_real_value=None, daily_amortized_settle_pretax_amount=None, daily_amortized_settle_real_value=None, daily_amortized_settle_tax_amount=None, daily_amortized_tax_amount=None, deduction_use_duration=None, discount_bill_amount=None, discount_biz_billing_function=None, discount_biz_measure_interval=None, discount_biz_unit_price=None, discount_biz_unit_price_interval=None, discount_info=None, effective_factor=None, element=None, exchange_rate=None, expand_field=None, expense_begin_time=None, expense_end_time=None, factor=None, instance_name=None, instance_no=None, main_contract_number=None, market_price=None, measure_interval=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, pre_tax_real_value=None, preferential_bill_amount=None, pretax_amount=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, resource_id=None, round_amount=None, saving_plan_deduction_discount_amount=None, saving_plan_deduction_sp_id=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pre_tax_real_value=None, settle_pretax_amount=None, settle_real_value=None, settle_tax_amount=None, split_item_id=None, split_item_name=None, subject_name=None, tag=None, tax=None, tax_amount=None, tax_rate=None, trade_time=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, _configuration=None): # noqa: E501
|
|
266
270
|
"""ListForListAmortizedCostBillDetailOutput - a model defined in Swagger""" # noqa: E501
|
|
267
271
|
if _configuration is None:
|
|
268
272
|
_configuration = Configuration()
|
|
@@ -281,7 +285,9 @@ class ListForListAmortizedCostBillDetailOutput(object):
|
|
|
281
285
|
self._billing_mode = None
|
|
282
286
|
self._busi_period = None
|
|
283
287
|
self._business_mode = None
|
|
288
|
+
self._charge_item_code = None
|
|
284
289
|
self._config_name = None
|
|
290
|
+
self._configuration_code = None
|
|
285
291
|
self._cost_id = None
|
|
286
292
|
self._count = None
|
|
287
293
|
self._country_area = None
|
|
@@ -408,8 +414,12 @@ class ListForListAmortizedCostBillDetailOutput(object):
|
|
|
408
414
|
self.busi_period = busi_period
|
|
409
415
|
if business_mode is not None:
|
|
410
416
|
self.business_mode = business_mode
|
|
417
|
+
if charge_item_code is not None:
|
|
418
|
+
self.charge_item_code = charge_item_code
|
|
411
419
|
if config_name is not None:
|
|
412
420
|
self.config_name = config_name
|
|
421
|
+
if configuration_code is not None:
|
|
422
|
+
self.configuration_code = configuration_code
|
|
413
423
|
if cost_id is not None:
|
|
414
424
|
self.cost_id = cost_id
|
|
415
425
|
if count is not None:
|
|
@@ -880,6 +890,27 @@ class ListForListAmortizedCostBillDetailOutput(object):
|
|
|
880
890
|
|
|
881
891
|
self._business_mode = business_mode
|
|
882
892
|
|
|
893
|
+
@property
|
|
894
|
+
def charge_item_code(self):
|
|
895
|
+
"""Gets the charge_item_code of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
:return: The charge_item_code of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
|
|
899
|
+
:rtype: str
|
|
900
|
+
"""
|
|
901
|
+
return self._charge_item_code
|
|
902
|
+
|
|
903
|
+
@charge_item_code.setter
|
|
904
|
+
def charge_item_code(self, charge_item_code):
|
|
905
|
+
"""Sets the charge_item_code of this ListForListAmortizedCostBillDetailOutput.
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
:param charge_item_code: The charge_item_code of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
|
|
909
|
+
:type: str
|
|
910
|
+
"""
|
|
911
|
+
|
|
912
|
+
self._charge_item_code = charge_item_code
|
|
913
|
+
|
|
883
914
|
@property
|
|
884
915
|
def config_name(self):
|
|
885
916
|
"""Gets the config_name of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
|
|
@@ -901,6 +932,27 @@ class ListForListAmortizedCostBillDetailOutput(object):
|
|
|
901
932
|
|
|
902
933
|
self._config_name = config_name
|
|
903
934
|
|
|
935
|
+
@property
|
|
936
|
+
def configuration_code(self):
|
|
937
|
+
"""Gets the configuration_code of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
:return: The configuration_code of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
|
|
941
|
+
:rtype: str
|
|
942
|
+
"""
|
|
943
|
+
return self._configuration_code
|
|
944
|
+
|
|
945
|
+
@configuration_code.setter
|
|
946
|
+
def configuration_code(self, configuration_code):
|
|
947
|
+
"""Sets the configuration_code of this ListForListAmortizedCostBillDetailOutput.
|
|
948
|
+
|
|
949
|
+
|
|
950
|
+
:param configuration_code: The configuration_code of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
|
|
951
|
+
:type: str
|
|
952
|
+
"""
|
|
953
|
+
|
|
954
|
+
self._configuration_code = configuration_code
|
|
955
|
+
|
|
904
956
|
@property
|
|
905
957
|
def cost_id(self):
|
|
906
958
|
"""Gets the cost_id of this ListForListAmortizedCostBillDetailOutput. # noqa: E501
|
|
@@ -67,7 +67,9 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
|
|
|
67
67
|
'billing_mode': 'str',
|
|
68
68
|
'busi_period': 'str',
|
|
69
69
|
'business_mode': 'str',
|
|
70
|
+
'charge_item_code': 'str',
|
|
70
71
|
'config_name': 'str',
|
|
72
|
+
'configuration_code': 'str',
|
|
71
73
|
'count': 'str',
|
|
72
74
|
'country_region': 'str',
|
|
73
75
|
'coupon_amount': 'str',
|
|
@@ -236,7 +238,9 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
|
|
|
236
238
|
'billing_mode': 'BillingMode',
|
|
237
239
|
'busi_period': 'BusiPeriod',
|
|
238
240
|
'business_mode': 'BusinessMode',
|
|
241
|
+
'charge_item_code': 'ChargeItemCode',
|
|
239
242
|
'config_name': 'ConfigName',
|
|
243
|
+
'configuration_code': 'ConfigurationCode',
|
|
240
244
|
'count': 'Count',
|
|
241
245
|
'country_region': 'CountryRegion',
|
|
242
246
|
'coupon_amount': 'CouponAmount',
|
|
@@ -370,7 +374,7 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
|
|
|
370
374
|
'zone': 'Zone'
|
|
371
375
|
}
|
|
372
376
|
|
|
373
|
-
def __init__(self, amortized_begin_time=None, amortized_day_num=None, amortized_end_time=None, amortized_month=None, amortized_type=None, before_amortized_coupon_amount=None, before_amortized_discount_bill_amount=None, before_amortized_original_bill_amount=None, before_amortized_paid_amount=None, before_amortized_payable_amount=None, before_amortized_posttax_amount=None, before_amortized_pre_tax_payable_amount=None, before_amortized_pre_tax_real_value=None, before_amortized_preferential_bill_amount=None, before_amortized_pretax_amount=None, before_amortized_real_value=None, before_amortized_round_amount=None, before_amortized_saving_plan_original_amount=None, before_amortized_settle_payable_amount=None, before_amortized_settle_posttax_amount=None, before_amortized_settle_pre_tax_payable_amount=None, before_amortized_settle_pre_tax_real_value=None, before_amortized_settle_pretax_amount=None, before_amortized_settle_real_value=None, before_amortized_settle_tax_amount=None, before_amortized_tax_amount=None, bill_category=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, config_name=None, count=None, country_region=None, coupon_amount=None, currency=None, currency_settlement=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_posttax_amount=None, daily_amortized_pre_tax_payable_amount=None, daily_amortized_pre_tax_real_value=None, daily_amortized_preferential_bill_amount=None, daily_amortized_pretax_amount=None, daily_amortized_real_value=None, daily_amortized_round_amount=None, daily_amortized_saving_plan_original_amount=None, daily_amortized_settle_payable_amount=None, daily_amortized_settle_posttax_amount=None, daily_amortized_settle_pre_tax_payable_amount=None, daily_amortized_settle_pre_tax_real_value=None, daily_amortized_settle_pretax_amount=None, daily_amortized_settle_real_value=None, daily_amortized_settle_tax_amount=None, daily_amortized_tax_amount=None, deduction_use_duration=None, discount_bill_amount=None, discount_biz_billing_function=None, discount_biz_measure_interval=None, discount_biz_unit_price=None, discount_biz_unit_price_interval=None, effective_factor=None, element=None, expand_field=None, expense_time=None, factor=None, instance_name=None, instance_no=None, main_contract_number=None, market_price=None, measure_interval=None, now_amortized_coupon_amount=None, now_amortized_discount_bill_amount=None, now_amortized_original_bill_amount=None, now_amortized_paid_amount=None, now_amortized_payable_amount=None, now_amortized_posttax_amount=None, now_amortized_pre_tax_payable_amount=None, now_amortized_pre_tax_real_value=None, now_amortized_preferential_bill_amount=None, now_amortized_pretax_amount=None, now_amortized_real_value=None, now_amortized_round_amount=None, now_amortized_saving_plan_original_amount=None, now_amortized_settle_payable_amount=None, now_amortized_settle_posttax_amount=None, now_amortized_settle_pre_tax_payable_amount=None, now_amortized_settle_pre_tax_real_value=None, now_amortized_settle_pretax_amount=None, now_amortized_settle_real_value=None, now_amortized_settle_tax_amount=None, now_amortized_tax_amount=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, pre_tax_real_value=None, preferential_bill_amount=None, pretax_amount=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, resource_id=None, round_amount=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pre_tax_real_value=None, settle_pretax_amount=None, settle_real_value=None, settle_tax_amount=None, split_item_id=None, split_item_name=None, subject_name=None, tag=None, tax=None, tax_rate=None, un_amortized_saving_plan_original_amount=None, unamortized_coupon_amount=None, unamortized_discount_bill_amount=None, unamortized_original_bill_amount=None, unamortized_paid_amount=None, unamortized_payable_amount=None, unamortized_posttax_amount=None, unamortized_pre_tax_payable_amount=None, unamortized_pre_tax_real_value=None, unamortized_preferential_bill_amount=None, unamortized_pretax_amount=None, unamortized_real_value=None, unamortized_round_amount=None, unamortized_settle_payable_amount=None, unamortized_settle_posttax_amount=None, unamortized_settle_pre_tax_payable_amount=None, unamortized_settle_pre_tax_real_value=None, unamortized_settle_pretax_amount=None, unamortized_settle_real_value=None, unamortized_settle_tax_amount=None, unamortized_tax_amount=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, _configuration=None): # noqa: E501
|
|
377
|
+
def __init__(self, amortized_begin_time=None, amortized_day_num=None, amortized_end_time=None, amortized_month=None, amortized_type=None, before_amortized_coupon_amount=None, before_amortized_discount_bill_amount=None, before_amortized_original_bill_amount=None, before_amortized_paid_amount=None, before_amortized_payable_amount=None, before_amortized_posttax_amount=None, before_amortized_pre_tax_payable_amount=None, before_amortized_pre_tax_real_value=None, before_amortized_preferential_bill_amount=None, before_amortized_pretax_amount=None, before_amortized_real_value=None, before_amortized_round_amount=None, before_amortized_saving_plan_original_amount=None, before_amortized_settle_payable_amount=None, before_amortized_settle_posttax_amount=None, before_amortized_settle_pre_tax_payable_amount=None, before_amortized_settle_pre_tax_real_value=None, before_amortized_settle_pretax_amount=None, before_amortized_settle_real_value=None, before_amortized_settle_tax_amount=None, before_amortized_tax_amount=None, bill_category=None, bill_id=None, bill_period=None, billing_function=None, billing_method_code=None, billing_mode=None, busi_period=None, business_mode=None, charge_item_code=None, config_name=None, configuration_code=None, count=None, country_region=None, coupon_amount=None, currency=None, currency_settlement=None, daily_amortized_coupon_amount=None, daily_amortized_discount_bill_amount=None, daily_amortized_original_bill_amount=None, daily_amortized_paid_amount=None, daily_amortized_payable_amount=None, daily_amortized_posttax_amount=None, daily_amortized_pre_tax_payable_amount=None, daily_amortized_pre_tax_real_value=None, daily_amortized_preferential_bill_amount=None, daily_amortized_pretax_amount=None, daily_amortized_real_value=None, daily_amortized_round_amount=None, daily_amortized_saving_plan_original_amount=None, daily_amortized_settle_payable_amount=None, daily_amortized_settle_posttax_amount=None, daily_amortized_settle_pre_tax_payable_amount=None, daily_amortized_settle_pre_tax_real_value=None, daily_amortized_settle_pretax_amount=None, daily_amortized_settle_real_value=None, daily_amortized_settle_tax_amount=None, daily_amortized_tax_amount=None, deduction_use_duration=None, discount_bill_amount=None, discount_biz_billing_function=None, discount_biz_measure_interval=None, discount_biz_unit_price=None, discount_biz_unit_price_interval=None, effective_factor=None, element=None, expand_field=None, expense_time=None, factor=None, instance_name=None, instance_no=None, main_contract_number=None, market_price=None, measure_interval=None, now_amortized_coupon_amount=None, now_amortized_discount_bill_amount=None, now_amortized_original_bill_amount=None, now_amortized_paid_amount=None, now_amortized_payable_amount=None, now_amortized_posttax_amount=None, now_amortized_pre_tax_payable_amount=None, now_amortized_pre_tax_real_value=None, now_amortized_preferential_bill_amount=None, now_amortized_pretax_amount=None, now_amortized_real_value=None, now_amortized_round_amount=None, now_amortized_saving_plan_original_amount=None, now_amortized_settle_payable_amount=None, now_amortized_settle_posttax_amount=None, now_amortized_settle_pre_tax_payable_amount=None, now_amortized_settle_pre_tax_real_value=None, now_amortized_settle_pretax_amount=None, now_amortized_settle_real_value=None, now_amortized_settle_tax_amount=None, now_amortized_tax_amount=None, original_bill_amount=None, original_order_no=None, owner_customer_name=None, owner_id=None, owner_user_name=None, paid_amount=None, payable_amount=None, payer_customer_name=None, payer_id=None, payer_user_name=None, posttax_amount=None, pre_tax_payable_amount=None, pre_tax_real_value=None, preferential_bill_amount=None, pretax_amount=None, price=None, price_interval=None, price_unit=None, product=None, product_zh=None, project=None, project_display_name=None, real_value=None, region=None, resource_id=None, round_amount=None, saving_plan_original_amount=None, seller_customer_name=None, seller_id=None, seller_user_name=None, settle_payable_amount=None, settle_posttax_amount=None, settle_pre_tax_payable_amount=None, settle_pre_tax_real_value=None, settle_pretax_amount=None, settle_real_value=None, settle_tax_amount=None, split_item_id=None, split_item_name=None, subject_name=None, tag=None, tax=None, tax_rate=None, un_amortized_saving_plan_original_amount=None, unamortized_coupon_amount=None, unamortized_discount_bill_amount=None, unamortized_original_bill_amount=None, unamortized_paid_amount=None, unamortized_payable_amount=None, unamortized_posttax_amount=None, unamortized_pre_tax_payable_amount=None, unamortized_pre_tax_real_value=None, unamortized_preferential_bill_amount=None, unamortized_pretax_amount=None, unamortized_real_value=None, unamortized_round_amount=None, unamortized_settle_payable_amount=None, unamortized_settle_posttax_amount=None, unamortized_settle_pre_tax_payable_amount=None, unamortized_settle_pre_tax_real_value=None, unamortized_settle_pretax_amount=None, unamortized_settle_real_value=None, unamortized_settle_tax_amount=None, unamortized_tax_amount=None, unit=None, use_duration=None, use_duration_unit=None, zone=None, _configuration=None): # noqa: E501
|
|
374
378
|
"""ListForListAmortizedCostBillMonthlyOutput - a model defined in Swagger""" # noqa: E501
|
|
375
379
|
if _configuration is None:
|
|
376
380
|
_configuration = Configuration()
|
|
@@ -410,7 +414,9 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
|
|
|
410
414
|
self._billing_mode = None
|
|
411
415
|
self._busi_period = None
|
|
412
416
|
self._business_mode = None
|
|
417
|
+
self._charge_item_code = None
|
|
413
418
|
self._config_name = None
|
|
419
|
+
self._configuration_code = None
|
|
414
420
|
self._count = None
|
|
415
421
|
self._country_region = None
|
|
416
422
|
self._coupon_amount = None
|
|
@@ -612,8 +618,12 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
|
|
|
612
618
|
self.busi_period = busi_period
|
|
613
619
|
if business_mode is not None:
|
|
614
620
|
self.business_mode = business_mode
|
|
621
|
+
if charge_item_code is not None:
|
|
622
|
+
self.charge_item_code = charge_item_code
|
|
615
623
|
if config_name is not None:
|
|
616
624
|
self.config_name = config_name
|
|
625
|
+
if configuration_code is not None:
|
|
626
|
+
self.configuration_code = configuration_code
|
|
617
627
|
if count is not None:
|
|
618
628
|
self.count = count
|
|
619
629
|
if country_region is not None:
|
|
@@ -1591,6 +1601,27 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
|
|
|
1591
1601
|
|
|
1592
1602
|
self._business_mode = business_mode
|
|
1593
1603
|
|
|
1604
|
+
@property
|
|
1605
|
+
def charge_item_code(self):
|
|
1606
|
+
"""Gets the charge_item_code of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
|
|
1607
|
+
|
|
1608
|
+
|
|
1609
|
+
:return: The charge_item_code of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
|
|
1610
|
+
:rtype: str
|
|
1611
|
+
"""
|
|
1612
|
+
return self._charge_item_code
|
|
1613
|
+
|
|
1614
|
+
@charge_item_code.setter
|
|
1615
|
+
def charge_item_code(self, charge_item_code):
|
|
1616
|
+
"""Sets the charge_item_code of this ListForListAmortizedCostBillMonthlyOutput.
|
|
1617
|
+
|
|
1618
|
+
|
|
1619
|
+
:param charge_item_code: The charge_item_code of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
|
|
1620
|
+
:type: str
|
|
1621
|
+
"""
|
|
1622
|
+
|
|
1623
|
+
self._charge_item_code = charge_item_code
|
|
1624
|
+
|
|
1594
1625
|
@property
|
|
1595
1626
|
def config_name(self):
|
|
1596
1627
|
"""Gets the config_name of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
|
|
@@ -1612,6 +1643,27 @@ class ListForListAmortizedCostBillMonthlyOutput(object):
|
|
|
1612
1643
|
|
|
1613
1644
|
self._config_name = config_name
|
|
1614
1645
|
|
|
1646
|
+
@property
|
|
1647
|
+
def configuration_code(self):
|
|
1648
|
+
"""Gets the configuration_code of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
|
|
1649
|
+
|
|
1650
|
+
|
|
1651
|
+
:return: The configuration_code of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
|
|
1652
|
+
:rtype: str
|
|
1653
|
+
"""
|
|
1654
|
+
return self._configuration_code
|
|
1655
|
+
|
|
1656
|
+
@configuration_code.setter
|
|
1657
|
+
def configuration_code(self, configuration_code):
|
|
1658
|
+
"""Sets the configuration_code of this ListForListAmortizedCostBillMonthlyOutput.
|
|
1659
|
+
|
|
1660
|
+
|
|
1661
|
+
:param configuration_code: The configuration_code of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
|
|
1662
|
+
:type: str
|
|
1663
|
+
"""
|
|
1664
|
+
|
|
1665
|
+
self._configuration_code = configuration_code
|
|
1666
|
+
|
|
1615
1667
|
@property
|
|
1616
1668
|
def count(self):
|
|
1617
1669
|
"""Gets the count of this ListForListAmortizedCostBillMonthlyOutput. # noqa: E501
|