@@ -56,6 +56,8 @@ def create(
56
56
align_billing_with_subscription_start_date : bool | NotGiven = NOT_GIVEN ,
57
57
auto_collection : Optional [bool ] | NotGiven = NOT_GIVEN ,
58
58
aws_region : Optional [str ] | NotGiven = NOT_GIVEN ,
59
+ billing_cycle_anchor_configuration : Optional [subscription_create_params .BillingCycleAnchorConfiguration ]
60
+ | NotGiven = NOT_GIVEN ,
59
61
coupon_redemption_code : Optional [str ] | NotGiven = NOT_GIVEN ,
60
62
credits_overage_rate : Optional [float ] | NotGiven = NOT_GIVEN ,
61
63
customer_id : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -504,6 +506,7 @@ def create(
504
506
"align_billing_with_subscription_start_date" : align_billing_with_subscription_start_date ,
505
507
"auto_collection" : auto_collection ,
506
508
"aws_region" : aws_region ,
509
+ "billing_cycle_anchor_configuration" : billing_cycle_anchor_configuration ,
507
510
"coupon_redemption_code" : coupon_redemption_code ,
508
511
"credits_overage_rate" : credits_overage_rate ,
509
512
"customer_id" : customer_id ,
@@ -1787,6 +1790,8 @@ async def create(
1787
1790
align_billing_with_subscription_start_date : bool | NotGiven = NOT_GIVEN ,
1788
1791
auto_collection : Optional [bool ] | NotGiven = NOT_GIVEN ,
1789
1792
aws_region : Optional [str ] | NotGiven = NOT_GIVEN ,
1793
+ billing_cycle_anchor_configuration : Optional [subscription_create_params .BillingCycleAnchorConfiguration ]
1794
+ | NotGiven = NOT_GIVEN ,
1790
1795
coupon_redemption_code : Optional [str ] | NotGiven = NOT_GIVEN ,
1791
1796
credits_overage_rate : Optional [float ] | NotGiven = NOT_GIVEN ,
1792
1797
customer_id : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -2235,6 +2240,7 @@ async def create(
2235
2240
"align_billing_with_subscription_start_date" : align_billing_with_subscription_start_date ,
2236
2241
"auto_collection" : auto_collection ,
2237
2242
"aws_region" : aws_region ,
2243
+ "billing_cycle_anchor_configuration" : billing_cycle_anchor_configuration ,
2238
2244
"coupon_redemption_code" : coupon_redemption_code ,
2239
2245
"credits_overage_rate" : credits_overage_rate ,
2240
2246
"customer_id" : customer_id ,
0 commit comments