aws-sdk-bcmpricingcalculator 1.19.0 → 1.20.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bcmpricingcalculator/client.rb +54 -2
- data/lib/aws-sdk-bcmpricingcalculator/client_api.rb +23 -0
- data/lib/aws-sdk-bcmpricingcalculator/types.rb +135 -9
- data/lib/aws-sdk-bcmpricingcalculator.rb +1 -1
- data/sig/client.rbs +22 -3
- data/sig/types.rbs +22 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ff80d9a3bef7cb5b0fda55517009275e0834470a6e1b09669363f42cd612a28
|
|
4
|
+
data.tar.gz: 0c6d0ed1133bdd068fe64a666cc5662b94ed917151551705ae3247688912a091
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe4dcbbef5f7b986ebd60d6aa7350cb26205043f6f110e1164cb3fce7405f5a72607418f544be63cba7efaeeed20dfeedf571bcec1ee7e2796d414d42d0525b0
|
|
7
|
+
data.tar.gz: acdef29394f7d7beafa9cf7ab82ea8fc2efe1707da0f88ece8edc5cad93e3dfb5f0b1040c61915e17f737dcddd65ba0fea3bf5ae1193a0946e1d3e09911e53f7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.20.0 (2025-11-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add GroupSharingPreference, CostCategoryGroupSharingPreferenceArn, and CostCategoryGroupSharingPreferenceEffectiveDate to Bill Estimate. Add GroupSharingPreference and CostCategoryGroupSharingPreferenceArn to Bill Scenario.
|
|
8
|
+
|
|
4
9
|
1.19.0 (2025-10-28)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.20.0
|
|
@@ -1336,6 +1336,9 @@ module Aws::BCMPricingCalculator
|
|
|
1336
1336
|
# * {Types::CreateBillEstimateResponse#cost_summary #cost_summary} => Types::BillEstimateCostSummary
|
|
1337
1337
|
# * {Types::CreateBillEstimateResponse#created_at #created_at} => Time
|
|
1338
1338
|
# * {Types::CreateBillEstimateResponse#expires_at #expires_at} => Time
|
|
1339
|
+
# * {Types::CreateBillEstimateResponse#group_sharing_preference #group_sharing_preference} => String
|
|
1340
|
+
# * {Types::CreateBillEstimateResponse#cost_category_group_sharing_preference_arn #cost_category_group_sharing_preference_arn} => String
|
|
1341
|
+
# * {Types::CreateBillEstimateResponse#cost_category_group_sharing_preference_effective_date #cost_category_group_sharing_preference_effective_date} => Time
|
|
1339
1342
|
#
|
|
1340
1343
|
# @example Request syntax with placeholder values
|
|
1341
1344
|
#
|
|
@@ -1367,6 +1370,9 @@ module Aws::BCMPricingCalculator
|
|
|
1367
1370
|
# resp.cost_summary.service_cost_differences["String"].estimated_cost.currency #=> String, one of "USD"
|
|
1368
1371
|
# resp.created_at #=> Time
|
|
1369
1372
|
# resp.expires_at #=> Time
|
|
1373
|
+
# resp.group_sharing_preference #=> String, one of "OPEN", "PRIORITIZED", "RESTRICTED"
|
|
1374
|
+
# resp.cost_category_group_sharing_preference_arn #=> String
|
|
1375
|
+
# resp.cost_category_group_sharing_preference_effective_date #=> Time
|
|
1370
1376
|
#
|
|
1371
1377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/CreateBillEstimate AWS API Documentation
|
|
1372
1378
|
#
|
|
@@ -1393,6 +1399,14 @@ module Aws::BCMPricingCalculator
|
|
|
1393
1399
|
# @option params [Hash<String,String>] :tags
|
|
1394
1400
|
# The tags to apply to the bill scenario.
|
|
1395
1401
|
#
|
|
1402
|
+
# @option params [String] :group_sharing_preference
|
|
1403
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
1404
|
+
# used in this estimate.
|
|
1405
|
+
#
|
|
1406
|
+
# @option params [String] :cost_category_group_sharing_preference_arn
|
|
1407
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
1408
|
+
# group sharing.
|
|
1409
|
+
#
|
|
1396
1410
|
# @return [Types::CreateBillScenarioResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1397
1411
|
#
|
|
1398
1412
|
# * {Types::CreateBillScenarioResponse#id #id} => String
|
|
@@ -1402,6 +1416,8 @@ module Aws::BCMPricingCalculator
|
|
|
1402
1416
|
# * {Types::CreateBillScenarioResponse#created_at #created_at} => Time
|
|
1403
1417
|
# * {Types::CreateBillScenarioResponse#expires_at #expires_at} => Time
|
|
1404
1418
|
# * {Types::CreateBillScenarioResponse#failure_message #failure_message} => String
|
|
1419
|
+
# * {Types::CreateBillScenarioResponse#group_sharing_preference #group_sharing_preference} => String
|
|
1420
|
+
# * {Types::CreateBillScenarioResponse#cost_category_group_sharing_preference_arn #cost_category_group_sharing_preference_arn} => String
|
|
1405
1421
|
#
|
|
1406
1422
|
# @example Request syntax with placeholder values
|
|
1407
1423
|
#
|
|
@@ -1411,6 +1427,8 @@ module Aws::BCMPricingCalculator
|
|
|
1411
1427
|
# tags: {
|
|
1412
1428
|
# "ResourceTagKey" => "ResourceTagValue",
|
|
1413
1429
|
# },
|
|
1430
|
+
# group_sharing_preference: "OPEN", # accepts OPEN, PRIORITIZED, RESTRICTED
|
|
1431
|
+
# cost_category_group_sharing_preference_arn: "CostCategoryArn",
|
|
1414
1432
|
# })
|
|
1415
1433
|
#
|
|
1416
1434
|
# @example Response structure
|
|
@@ -1423,6 +1441,8 @@ module Aws::BCMPricingCalculator
|
|
|
1423
1441
|
# resp.created_at #=> Time
|
|
1424
1442
|
# resp.expires_at #=> Time
|
|
1425
1443
|
# resp.failure_message #=> String
|
|
1444
|
+
# resp.group_sharing_preference #=> String, one of "OPEN", "PRIORITIZED", "RESTRICTED"
|
|
1445
|
+
# resp.cost_category_group_sharing_preference_arn #=> String
|
|
1426
1446
|
#
|
|
1427
1447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/CreateBillScenario AWS API Documentation
|
|
1428
1448
|
#
|
|
@@ -1579,6 +1599,9 @@ module Aws::BCMPricingCalculator
|
|
|
1579
1599
|
# * {Types::GetBillEstimateResponse#cost_summary #cost_summary} => Types::BillEstimateCostSummary
|
|
1580
1600
|
# * {Types::GetBillEstimateResponse#created_at #created_at} => Time
|
|
1581
1601
|
# * {Types::GetBillEstimateResponse#expires_at #expires_at} => Time
|
|
1602
|
+
# * {Types::GetBillEstimateResponse#group_sharing_preference #group_sharing_preference} => String
|
|
1603
|
+
# * {Types::GetBillEstimateResponse#cost_category_group_sharing_preference_arn #cost_category_group_sharing_preference_arn} => String
|
|
1604
|
+
# * {Types::GetBillEstimateResponse#cost_category_group_sharing_preference_effective_date #cost_category_group_sharing_preference_effective_date} => Time
|
|
1582
1605
|
#
|
|
1583
1606
|
# @example Request syntax with placeholder values
|
|
1584
1607
|
#
|
|
@@ -1605,6 +1628,9 @@ module Aws::BCMPricingCalculator
|
|
|
1605
1628
|
# resp.cost_summary.service_cost_differences["String"].estimated_cost.currency #=> String, one of "USD"
|
|
1606
1629
|
# resp.created_at #=> Time
|
|
1607
1630
|
# resp.expires_at #=> Time
|
|
1631
|
+
# resp.group_sharing_preference #=> String, one of "OPEN", "PRIORITIZED", "RESTRICTED"
|
|
1632
|
+
# resp.cost_category_group_sharing_preference_arn #=> String
|
|
1633
|
+
# resp.cost_category_group_sharing_preference_effective_date #=> Time
|
|
1608
1634
|
#
|
|
1609
1635
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/GetBillEstimate AWS API Documentation
|
|
1610
1636
|
#
|
|
@@ -1629,6 +1655,8 @@ module Aws::BCMPricingCalculator
|
|
|
1629
1655
|
# * {Types::GetBillScenarioResponse#created_at #created_at} => Time
|
|
1630
1656
|
# * {Types::GetBillScenarioResponse#expires_at #expires_at} => Time
|
|
1631
1657
|
# * {Types::GetBillScenarioResponse#failure_message #failure_message} => String
|
|
1658
|
+
# * {Types::GetBillScenarioResponse#group_sharing_preference #group_sharing_preference} => String
|
|
1659
|
+
# * {Types::GetBillScenarioResponse#cost_category_group_sharing_preference_arn #cost_category_group_sharing_preference_arn} => String
|
|
1632
1660
|
#
|
|
1633
1661
|
# @example Request syntax with placeholder values
|
|
1634
1662
|
#
|
|
@@ -1646,6 +1674,8 @@ module Aws::BCMPricingCalculator
|
|
|
1646
1674
|
# resp.created_at #=> Time
|
|
1647
1675
|
# resp.expires_at #=> Time
|
|
1648
1676
|
# resp.failure_message #=> String
|
|
1677
|
+
# resp.group_sharing_preference #=> String, one of "OPEN", "PRIORITIZED", "RESTRICTED"
|
|
1678
|
+
# resp.cost_category_group_sharing_preference_arn #=> String
|
|
1649
1679
|
#
|
|
1650
1680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/GetBillScenario AWS API Documentation
|
|
1651
1681
|
#
|
|
@@ -2226,7 +2256,7 @@ module Aws::BCMPricingCalculator
|
|
|
2226
2256
|
# resp = client.list_bill_scenarios({
|
|
2227
2257
|
# filters: [
|
|
2228
2258
|
# {
|
|
2229
|
-
# name: "STATUS", # required, accepts STATUS, NAME
|
|
2259
|
+
# name: "STATUS", # required, accepts STATUS, NAME, GROUP_SHARING_PREFERENCE, COST_CATEGORY_ARN
|
|
2230
2260
|
# values: ["String"], # required
|
|
2231
2261
|
# match_option: "EQUALS", # accepts EQUALS, STARTS_WITH, CONTAINS
|
|
2232
2262
|
# },
|
|
@@ -2254,6 +2284,8 @@ module Aws::BCMPricingCalculator
|
|
|
2254
2284
|
# resp.items[0].created_at #=> Time
|
|
2255
2285
|
# resp.items[0].expires_at #=> Time
|
|
2256
2286
|
# resp.items[0].failure_message #=> String
|
|
2287
|
+
# resp.items[0].group_sharing_preference #=> String, one of "OPEN", "PRIORITIZED", "RESTRICTED"
|
|
2288
|
+
# resp.items[0].cost_category_group_sharing_preference_arn #=> String
|
|
2257
2289
|
# resp.next_token #=> String
|
|
2258
2290
|
#
|
|
2259
2291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/ListBillScenarios AWS API Documentation
|
|
@@ -2528,6 +2560,9 @@ module Aws::BCMPricingCalculator
|
|
|
2528
2560
|
# * {Types::UpdateBillEstimateResponse#cost_summary #cost_summary} => Types::BillEstimateCostSummary
|
|
2529
2561
|
# * {Types::UpdateBillEstimateResponse#created_at #created_at} => Time
|
|
2530
2562
|
# * {Types::UpdateBillEstimateResponse#expires_at #expires_at} => Time
|
|
2563
|
+
# * {Types::UpdateBillEstimateResponse#group_sharing_preference #group_sharing_preference} => String
|
|
2564
|
+
# * {Types::UpdateBillEstimateResponse#cost_category_group_sharing_preference_arn #cost_category_group_sharing_preference_arn} => String
|
|
2565
|
+
# * {Types::UpdateBillEstimateResponse#cost_category_group_sharing_preference_effective_date #cost_category_group_sharing_preference_effective_date} => Time
|
|
2531
2566
|
#
|
|
2532
2567
|
# @example Request syntax with placeholder values
|
|
2533
2568
|
#
|
|
@@ -2556,6 +2591,9 @@ module Aws::BCMPricingCalculator
|
|
|
2556
2591
|
# resp.cost_summary.service_cost_differences["String"].estimated_cost.currency #=> String, one of "USD"
|
|
2557
2592
|
# resp.created_at #=> Time
|
|
2558
2593
|
# resp.expires_at #=> Time
|
|
2594
|
+
# resp.group_sharing_preference #=> String, one of "OPEN", "PRIORITIZED", "RESTRICTED"
|
|
2595
|
+
# resp.cost_category_group_sharing_preference_arn #=> String
|
|
2596
|
+
# resp.cost_category_group_sharing_preference_effective_date #=> Time
|
|
2559
2597
|
#
|
|
2560
2598
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/UpdateBillEstimate AWS API Documentation
|
|
2561
2599
|
#
|
|
@@ -2577,6 +2615,14 @@ module Aws::BCMPricingCalculator
|
|
|
2577
2615
|
# @option params [Time,DateTime,Date,Integer,String] :expires_at
|
|
2578
2616
|
# The new expiration date for the bill scenario.
|
|
2579
2617
|
#
|
|
2618
|
+
# @option params [String] :group_sharing_preference
|
|
2619
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
2620
|
+
# used in this estimate.
|
|
2621
|
+
#
|
|
2622
|
+
# @option params [String] :cost_category_group_sharing_preference_arn
|
|
2623
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
2624
|
+
# group sharing.
|
|
2625
|
+
#
|
|
2580
2626
|
# @return [Types::UpdateBillScenarioResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2581
2627
|
#
|
|
2582
2628
|
# * {Types::UpdateBillScenarioResponse#id #id} => String
|
|
@@ -2586,6 +2632,8 @@ module Aws::BCMPricingCalculator
|
|
|
2586
2632
|
# * {Types::UpdateBillScenarioResponse#created_at #created_at} => Time
|
|
2587
2633
|
# * {Types::UpdateBillScenarioResponse#expires_at #expires_at} => Time
|
|
2588
2634
|
# * {Types::UpdateBillScenarioResponse#failure_message #failure_message} => String
|
|
2635
|
+
# * {Types::UpdateBillScenarioResponse#group_sharing_preference #group_sharing_preference} => String
|
|
2636
|
+
# * {Types::UpdateBillScenarioResponse#cost_category_group_sharing_preference_arn #cost_category_group_sharing_preference_arn} => String
|
|
2589
2637
|
#
|
|
2590
2638
|
# @example Request syntax with placeholder values
|
|
2591
2639
|
#
|
|
@@ -2593,6 +2641,8 @@ module Aws::BCMPricingCalculator
|
|
|
2593
2641
|
# identifier: "ResourceId", # required
|
|
2594
2642
|
# name: "BillScenarioName",
|
|
2595
2643
|
# expires_at: Time.now,
|
|
2644
|
+
# group_sharing_preference: "OPEN", # accepts OPEN, PRIORITIZED, RESTRICTED
|
|
2645
|
+
# cost_category_group_sharing_preference_arn: "CostCategoryArn",
|
|
2596
2646
|
# })
|
|
2597
2647
|
#
|
|
2598
2648
|
# @example Response structure
|
|
@@ -2605,6 +2655,8 @@ module Aws::BCMPricingCalculator
|
|
|
2605
2655
|
# resp.created_at #=> Time
|
|
2606
2656
|
# resp.expires_at #=> Time
|
|
2607
2657
|
# resp.failure_message #=> String
|
|
2658
|
+
# resp.group_sharing_preference #=> String, one of "OPEN", "PRIORITIZED", "RESTRICTED"
|
|
2659
|
+
# resp.cost_category_group_sharing_preference_arn #=> String
|
|
2608
2660
|
#
|
|
2609
2661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/UpdateBillScenario AWS API Documentation
|
|
2610
2662
|
#
|
|
@@ -2730,7 +2782,7 @@ module Aws::BCMPricingCalculator
|
|
|
2730
2782
|
tracer: tracer
|
|
2731
2783
|
)
|
|
2732
2784
|
context[:gem_name] = 'aws-sdk-bcmpricingcalculator'
|
|
2733
|
-
context[:gem_version] = '1.
|
|
2785
|
+
context[:gem_version] = '1.20.0'
|
|
2734
2786
|
Seahorse::Client::Request.new(handlers, context)
|
|
2735
2787
|
end
|
|
2736
2788
|
|
|
@@ -110,6 +110,7 @@ module Aws::BCMPricingCalculator
|
|
|
110
110
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
111
111
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
112
112
|
CostAmount = Shapes::StructureShape.new(name: 'CostAmount')
|
|
113
|
+
CostCategoryArn = Shapes::StringShape.new(name: 'CostCategoryArn')
|
|
113
114
|
CostDifference = Shapes::StructureShape.new(name: 'CostDifference')
|
|
114
115
|
CreateBillEstimateRequest = Shapes::StructureShape.new(name: 'CreateBillEstimateRequest')
|
|
115
116
|
CreateBillEstimateResponse = Shapes::StructureShape.new(name: 'CreateBillEstimateResponse')
|
|
@@ -138,6 +139,7 @@ module Aws::BCMPricingCalculator
|
|
|
138
139
|
GetPreferencesResponse = Shapes::StructureShape.new(name: 'GetPreferencesResponse')
|
|
139
140
|
GetWorkloadEstimateRequest = Shapes::StructureShape.new(name: 'GetWorkloadEstimateRequest')
|
|
140
141
|
GetWorkloadEstimateResponse = Shapes::StructureShape.new(name: 'GetWorkloadEstimateResponse')
|
|
142
|
+
GroupSharingPreferenceEnum = Shapes::StringShape.new(name: 'GroupSharingPreferenceEnum')
|
|
141
143
|
HistoricalUsageEntity = Shapes::StructureShape.new(name: 'HistoricalUsageEntity')
|
|
142
144
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
|
143
145
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
|
@@ -592,6 +594,8 @@ module Aws::BCMPricingCalculator
|
|
|
592
594
|
BillScenarioSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
593
595
|
BillScenarioSummary.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
|
594
596
|
BillScenarioSummary.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "failureMessage"))
|
|
597
|
+
BillScenarioSummary.add_member(:group_sharing_preference, Shapes::ShapeRef.new(shape: GroupSharingPreferenceEnum, location_name: "groupSharingPreference"))
|
|
598
|
+
BillScenarioSummary.add_member(:cost_category_group_sharing_preference_arn, Shapes::ShapeRef.new(shape: CostCategoryArn, location_name: "costCategoryGroupSharingPreferenceArn"))
|
|
595
599
|
BillScenarioSummary.struct_class = Types::BillScenarioSummary
|
|
596
600
|
|
|
597
601
|
BillScenarioUsageModificationItem.add_member(:service_code, Shapes::ShapeRef.new(shape: ServiceCode, required: true, location_name: "serviceCode"))
|
|
@@ -635,11 +639,16 @@ module Aws::BCMPricingCalculator
|
|
|
635
639
|
CreateBillEstimateResponse.add_member(:cost_summary, Shapes::ShapeRef.new(shape: BillEstimateCostSummary, location_name: "costSummary"))
|
|
636
640
|
CreateBillEstimateResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
637
641
|
CreateBillEstimateResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
|
642
|
+
CreateBillEstimateResponse.add_member(:group_sharing_preference, Shapes::ShapeRef.new(shape: GroupSharingPreferenceEnum, location_name: "groupSharingPreference"))
|
|
643
|
+
CreateBillEstimateResponse.add_member(:cost_category_group_sharing_preference_arn, Shapes::ShapeRef.new(shape: CostCategoryArn, location_name: "costCategoryGroupSharingPreferenceArn"))
|
|
644
|
+
CreateBillEstimateResponse.add_member(:cost_category_group_sharing_preference_effective_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "costCategoryGroupSharingPreferenceEffectiveDate"))
|
|
638
645
|
CreateBillEstimateResponse.struct_class = Types::CreateBillEstimateResponse
|
|
639
646
|
|
|
640
647
|
CreateBillScenarioRequest.add_member(:name, Shapes::ShapeRef.new(shape: BillScenarioName, required: true, location_name: "name"))
|
|
641
648
|
CreateBillScenarioRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
642
649
|
CreateBillScenarioRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
650
|
+
CreateBillScenarioRequest.add_member(:group_sharing_preference, Shapes::ShapeRef.new(shape: GroupSharingPreferenceEnum, location_name: "groupSharingPreference"))
|
|
651
|
+
CreateBillScenarioRequest.add_member(:cost_category_group_sharing_preference_arn, Shapes::ShapeRef.new(shape: CostCategoryArn, location_name: "costCategoryGroupSharingPreferenceArn"))
|
|
643
652
|
CreateBillScenarioRequest.struct_class = Types::CreateBillScenarioRequest
|
|
644
653
|
|
|
645
654
|
CreateBillScenarioResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "id"))
|
|
@@ -649,6 +658,8 @@ module Aws::BCMPricingCalculator
|
|
|
649
658
|
CreateBillScenarioResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
650
659
|
CreateBillScenarioResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
|
651
660
|
CreateBillScenarioResponse.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "failureMessage"))
|
|
661
|
+
CreateBillScenarioResponse.add_member(:group_sharing_preference, Shapes::ShapeRef.new(shape: GroupSharingPreferenceEnum, location_name: "groupSharingPreference"))
|
|
662
|
+
CreateBillScenarioResponse.add_member(:cost_category_group_sharing_preference_arn, Shapes::ShapeRef.new(shape: CostCategoryArn, location_name: "costCategoryGroupSharingPreferenceArn"))
|
|
652
663
|
CreateBillScenarioResponse.struct_class = Types::CreateBillScenarioResponse
|
|
653
664
|
|
|
654
665
|
CreateWorkloadEstimateRequest.add_member(:name, Shapes::ShapeRef.new(shape: WorkloadEstimateName, required: true, location_name: "name"))
|
|
@@ -717,6 +728,9 @@ module Aws::BCMPricingCalculator
|
|
|
717
728
|
GetBillEstimateResponse.add_member(:cost_summary, Shapes::ShapeRef.new(shape: BillEstimateCostSummary, location_name: "costSummary"))
|
|
718
729
|
GetBillEstimateResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
719
730
|
GetBillEstimateResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
|
731
|
+
GetBillEstimateResponse.add_member(:group_sharing_preference, Shapes::ShapeRef.new(shape: GroupSharingPreferenceEnum, location_name: "groupSharingPreference"))
|
|
732
|
+
GetBillEstimateResponse.add_member(:cost_category_group_sharing_preference_arn, Shapes::ShapeRef.new(shape: CostCategoryArn, location_name: "costCategoryGroupSharingPreferenceArn"))
|
|
733
|
+
GetBillEstimateResponse.add_member(:cost_category_group_sharing_preference_effective_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "costCategoryGroupSharingPreferenceEffectiveDate"))
|
|
720
734
|
GetBillEstimateResponse.struct_class = Types::GetBillEstimateResponse
|
|
721
735
|
|
|
722
736
|
GetBillScenarioRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "identifier"))
|
|
@@ -729,6 +743,8 @@ module Aws::BCMPricingCalculator
|
|
|
729
743
|
GetBillScenarioResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
730
744
|
GetBillScenarioResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
|
731
745
|
GetBillScenarioResponse.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "failureMessage"))
|
|
746
|
+
GetBillScenarioResponse.add_member(:group_sharing_preference, Shapes::ShapeRef.new(shape: GroupSharingPreferenceEnum, location_name: "groupSharingPreference"))
|
|
747
|
+
GetBillScenarioResponse.add_member(:cost_category_group_sharing_preference_arn, Shapes::ShapeRef.new(shape: CostCategoryArn, location_name: "costCategoryGroupSharingPreferenceArn"))
|
|
732
748
|
GetBillScenarioResponse.struct_class = Types::GetBillScenarioResponse
|
|
733
749
|
|
|
734
750
|
GetPreferencesRequest.struct_class = Types::GetPreferencesRequest
|
|
@@ -980,11 +996,16 @@ module Aws::BCMPricingCalculator
|
|
|
980
996
|
UpdateBillEstimateResponse.add_member(:cost_summary, Shapes::ShapeRef.new(shape: BillEstimateCostSummary, location_name: "costSummary"))
|
|
981
997
|
UpdateBillEstimateResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
982
998
|
UpdateBillEstimateResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
|
999
|
+
UpdateBillEstimateResponse.add_member(:group_sharing_preference, Shapes::ShapeRef.new(shape: GroupSharingPreferenceEnum, location_name: "groupSharingPreference"))
|
|
1000
|
+
UpdateBillEstimateResponse.add_member(:cost_category_group_sharing_preference_arn, Shapes::ShapeRef.new(shape: CostCategoryArn, location_name: "costCategoryGroupSharingPreferenceArn"))
|
|
1001
|
+
UpdateBillEstimateResponse.add_member(:cost_category_group_sharing_preference_effective_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "costCategoryGroupSharingPreferenceEffectiveDate"))
|
|
983
1002
|
UpdateBillEstimateResponse.struct_class = Types::UpdateBillEstimateResponse
|
|
984
1003
|
|
|
985
1004
|
UpdateBillScenarioRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "identifier"))
|
|
986
1005
|
UpdateBillScenarioRequest.add_member(:name, Shapes::ShapeRef.new(shape: BillScenarioName, location_name: "name"))
|
|
987
1006
|
UpdateBillScenarioRequest.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
|
1007
|
+
UpdateBillScenarioRequest.add_member(:group_sharing_preference, Shapes::ShapeRef.new(shape: GroupSharingPreferenceEnum, location_name: "groupSharingPreference"))
|
|
1008
|
+
UpdateBillScenarioRequest.add_member(:cost_category_group_sharing_preference_arn, Shapes::ShapeRef.new(shape: CostCategoryArn, location_name: "costCategoryGroupSharingPreferenceArn"))
|
|
988
1009
|
UpdateBillScenarioRequest.struct_class = Types::UpdateBillScenarioRequest
|
|
989
1010
|
|
|
990
1011
|
UpdateBillScenarioResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "id"))
|
|
@@ -994,6 +1015,8 @@ module Aws::BCMPricingCalculator
|
|
|
994
1015
|
UpdateBillScenarioResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
995
1016
|
UpdateBillScenarioResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
|
996
1017
|
UpdateBillScenarioResponse.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "failureMessage"))
|
|
1018
|
+
UpdateBillScenarioResponse.add_member(:group_sharing_preference, Shapes::ShapeRef.new(shape: GroupSharingPreferenceEnum, location_name: "groupSharingPreference"))
|
|
1019
|
+
UpdateBillScenarioResponse.add_member(:cost_category_group_sharing_preference_arn, Shapes::ShapeRef.new(shape: CostCategoryArn, location_name: "costCategoryGroupSharingPreferenceArn"))
|
|
997
1020
|
UpdateBillScenarioResponse.struct_class = Types::UpdateBillScenarioResponse
|
|
998
1021
|
|
|
999
1022
|
UpdatePreferencesRequest.add_member(:management_account_rate_type_selections, Shapes::ShapeRef.new(shape: RateTypes, location_name: "managementAccountRateTypeSelections"))
|
|
@@ -1464,6 +1464,16 @@ module Aws::BCMPricingCalculator
|
|
|
1464
1464
|
# An error message if the bill scenario creation or processing failed.
|
|
1465
1465
|
# @return [String]
|
|
1466
1466
|
#
|
|
1467
|
+
# @!attribute [rw] group_sharing_preference
|
|
1468
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
1469
|
+
# used in this estimate.
|
|
1470
|
+
# @return [String]
|
|
1471
|
+
#
|
|
1472
|
+
# @!attribute [rw] cost_category_group_sharing_preference_arn
|
|
1473
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
1474
|
+
# group sharing.
|
|
1475
|
+
# @return [String]
|
|
1476
|
+
#
|
|
1467
1477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/BillScenarioSummary AWS API Documentation
|
|
1468
1478
|
#
|
|
1469
1479
|
class BillScenarioSummary < Struct.new(
|
|
@@ -1473,7 +1483,9 @@ module Aws::BCMPricingCalculator
|
|
|
1473
1483
|
:status,
|
|
1474
1484
|
:created_at,
|
|
1475
1485
|
:expires_at,
|
|
1476
|
-
:failure_message
|
|
1486
|
+
:failure_message,
|
|
1487
|
+
:group_sharing_preference,
|
|
1488
|
+
:cost_category_group_sharing_preference_arn)
|
|
1477
1489
|
SENSITIVE = []
|
|
1478
1490
|
include Aws::Structure
|
|
1479
1491
|
end
|
|
@@ -1704,6 +1716,21 @@ module Aws::BCMPricingCalculator
|
|
|
1704
1716
|
# becomes inaccessible after expiration.
|
|
1705
1717
|
# @return [Time]
|
|
1706
1718
|
#
|
|
1719
|
+
# @!attribute [rw] group_sharing_preference
|
|
1720
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
1721
|
+
# used in this estimate.
|
|
1722
|
+
# @return [String]
|
|
1723
|
+
#
|
|
1724
|
+
# @!attribute [rw] cost_category_group_sharing_preference_arn
|
|
1725
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
1726
|
+
# group sharing.
|
|
1727
|
+
# @return [String]
|
|
1728
|
+
#
|
|
1729
|
+
# @!attribute [rw] cost_category_group_sharing_preference_effective_date
|
|
1730
|
+
# Timestamp of the effective date of the cost category used in the
|
|
1731
|
+
# group sharing settings.
|
|
1732
|
+
# @return [Time]
|
|
1733
|
+
#
|
|
1707
1734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/CreateBillEstimateResponse AWS API Documentation
|
|
1708
1735
|
#
|
|
1709
1736
|
class CreateBillEstimateResponse < Struct.new(
|
|
@@ -1714,7 +1741,10 @@ module Aws::BCMPricingCalculator
|
|
|
1714
1741
|
:bill_interval,
|
|
1715
1742
|
:cost_summary,
|
|
1716
1743
|
:created_at,
|
|
1717
|
-
:expires_at
|
|
1744
|
+
:expires_at,
|
|
1745
|
+
:group_sharing_preference,
|
|
1746
|
+
:cost_category_group_sharing_preference_arn,
|
|
1747
|
+
:cost_category_group_sharing_preference_effective_date)
|
|
1718
1748
|
SENSITIVE = []
|
|
1719
1749
|
include Aws::Structure
|
|
1720
1750
|
end
|
|
@@ -1735,12 +1765,24 @@ module Aws::BCMPricingCalculator
|
|
|
1735
1765
|
# The tags to apply to the bill scenario.
|
|
1736
1766
|
# @return [Hash<String,String>]
|
|
1737
1767
|
#
|
|
1768
|
+
# @!attribute [rw] group_sharing_preference
|
|
1769
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
1770
|
+
# used in this estimate.
|
|
1771
|
+
# @return [String]
|
|
1772
|
+
#
|
|
1773
|
+
# @!attribute [rw] cost_category_group_sharing_preference_arn
|
|
1774
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
1775
|
+
# group sharing.
|
|
1776
|
+
# @return [String]
|
|
1777
|
+
#
|
|
1738
1778
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/CreateBillScenarioRequest AWS API Documentation
|
|
1739
1779
|
#
|
|
1740
1780
|
class CreateBillScenarioRequest < Struct.new(
|
|
1741
1781
|
:name,
|
|
1742
1782
|
:client_token,
|
|
1743
|
-
:tags
|
|
1783
|
+
:tags,
|
|
1784
|
+
:group_sharing_preference,
|
|
1785
|
+
:cost_category_group_sharing_preference_arn)
|
|
1744
1786
|
SENSITIVE = []
|
|
1745
1787
|
include Aws::Structure
|
|
1746
1788
|
end
|
|
@@ -1773,6 +1815,16 @@ module Aws::BCMPricingCalculator
|
|
|
1773
1815
|
# An error message if the bill scenario creation failed.
|
|
1774
1816
|
# @return [String]
|
|
1775
1817
|
#
|
|
1818
|
+
# @!attribute [rw] group_sharing_preference
|
|
1819
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
1820
|
+
# used in this estimate.
|
|
1821
|
+
# @return [String]
|
|
1822
|
+
#
|
|
1823
|
+
# @!attribute [rw] cost_category_group_sharing_preference_arn
|
|
1824
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
1825
|
+
# group sharing.
|
|
1826
|
+
# @return [String]
|
|
1827
|
+
#
|
|
1776
1828
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/CreateBillScenarioResponse AWS API Documentation
|
|
1777
1829
|
#
|
|
1778
1830
|
class CreateBillScenarioResponse < Struct.new(
|
|
@@ -1782,7 +1834,9 @@ module Aws::BCMPricingCalculator
|
|
|
1782
1834
|
:status,
|
|
1783
1835
|
:created_at,
|
|
1784
1836
|
:expires_at,
|
|
1785
|
-
:failure_message
|
|
1837
|
+
:failure_message,
|
|
1838
|
+
:group_sharing_preference,
|
|
1839
|
+
:cost_category_group_sharing_preference_arn)
|
|
1786
1840
|
SENSITIVE = []
|
|
1787
1841
|
include Aws::Structure
|
|
1788
1842
|
end
|
|
@@ -2064,6 +2118,21 @@ module Aws::BCMPricingCalculator
|
|
|
2064
2118
|
# The timestamp when the bill estimate will expire.
|
|
2065
2119
|
# @return [Time]
|
|
2066
2120
|
#
|
|
2121
|
+
# @!attribute [rw] group_sharing_preference
|
|
2122
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
2123
|
+
# used in this estimate.
|
|
2124
|
+
# @return [String]
|
|
2125
|
+
#
|
|
2126
|
+
# @!attribute [rw] cost_category_group_sharing_preference_arn
|
|
2127
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
2128
|
+
# group sharing.
|
|
2129
|
+
# @return [String]
|
|
2130
|
+
#
|
|
2131
|
+
# @!attribute [rw] cost_category_group_sharing_preference_effective_date
|
|
2132
|
+
# Timestamp of the effective date of the cost category used in the
|
|
2133
|
+
# group sharing settings.
|
|
2134
|
+
# @return [Time]
|
|
2135
|
+
#
|
|
2067
2136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/GetBillEstimateResponse AWS API Documentation
|
|
2068
2137
|
#
|
|
2069
2138
|
class GetBillEstimateResponse < Struct.new(
|
|
@@ -2074,7 +2143,10 @@ module Aws::BCMPricingCalculator
|
|
|
2074
2143
|
:bill_interval,
|
|
2075
2144
|
:cost_summary,
|
|
2076
2145
|
:created_at,
|
|
2077
|
-
:expires_at
|
|
2146
|
+
:expires_at,
|
|
2147
|
+
:group_sharing_preference,
|
|
2148
|
+
:cost_category_group_sharing_preference_arn,
|
|
2149
|
+
:cost_category_group_sharing_preference_effective_date)
|
|
2078
2150
|
SENSITIVE = []
|
|
2079
2151
|
include Aws::Structure
|
|
2080
2152
|
end
|
|
@@ -2119,6 +2191,16 @@ module Aws::BCMPricingCalculator
|
|
|
2119
2191
|
# An error message if the bill scenario retrieval failed.
|
|
2120
2192
|
# @return [String]
|
|
2121
2193
|
#
|
|
2194
|
+
# @!attribute [rw] group_sharing_preference
|
|
2195
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
2196
|
+
# used in this estimate.
|
|
2197
|
+
# @return [String]
|
|
2198
|
+
#
|
|
2199
|
+
# @!attribute [rw] cost_category_group_sharing_preference_arn
|
|
2200
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
2201
|
+
# group sharing.
|
|
2202
|
+
# @return [String]
|
|
2203
|
+
#
|
|
2122
2204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/GetBillScenarioResponse AWS API Documentation
|
|
2123
2205
|
#
|
|
2124
2206
|
class GetBillScenarioResponse < Struct.new(
|
|
@@ -2128,7 +2210,9 @@ module Aws::BCMPricingCalculator
|
|
|
2128
2210
|
:status,
|
|
2129
2211
|
:created_at,
|
|
2130
2212
|
:expires_at,
|
|
2131
|
-
:failure_message
|
|
2213
|
+
:failure_message,
|
|
2214
|
+
:group_sharing_preference,
|
|
2215
|
+
:cost_category_group_sharing_preference_arn)
|
|
2132
2216
|
SENSITIVE = []
|
|
2133
2217
|
include Aws::Structure
|
|
2134
2218
|
end
|
|
@@ -3102,6 +3186,21 @@ module Aws::BCMPricingCalculator
|
|
|
3102
3186
|
# The updated expiration timestamp for the bill estimate.
|
|
3103
3187
|
# @return [Time]
|
|
3104
3188
|
#
|
|
3189
|
+
# @!attribute [rw] group_sharing_preference
|
|
3190
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
3191
|
+
# used in this estimate.
|
|
3192
|
+
# @return [String]
|
|
3193
|
+
#
|
|
3194
|
+
# @!attribute [rw] cost_category_group_sharing_preference_arn
|
|
3195
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
3196
|
+
# group sharing.
|
|
3197
|
+
# @return [String]
|
|
3198
|
+
#
|
|
3199
|
+
# @!attribute [rw] cost_category_group_sharing_preference_effective_date
|
|
3200
|
+
# Timestamp of the effective date of the cost category used in the
|
|
3201
|
+
# group sharing settings.
|
|
3202
|
+
# @return [Time]
|
|
3203
|
+
#
|
|
3105
3204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/UpdateBillEstimateResponse AWS API Documentation
|
|
3106
3205
|
#
|
|
3107
3206
|
class UpdateBillEstimateResponse < Struct.new(
|
|
@@ -3112,7 +3211,10 @@ module Aws::BCMPricingCalculator
|
|
|
3112
3211
|
:bill_interval,
|
|
3113
3212
|
:cost_summary,
|
|
3114
3213
|
:created_at,
|
|
3115
|
-
:expires_at
|
|
3214
|
+
:expires_at,
|
|
3215
|
+
:group_sharing_preference,
|
|
3216
|
+
:cost_category_group_sharing_preference_arn,
|
|
3217
|
+
:cost_category_group_sharing_preference_effective_date)
|
|
3116
3218
|
SENSITIVE = []
|
|
3117
3219
|
include Aws::Structure
|
|
3118
3220
|
end
|
|
@@ -3129,12 +3231,24 @@ module Aws::BCMPricingCalculator
|
|
|
3129
3231
|
# The new expiration date for the bill scenario.
|
|
3130
3232
|
# @return [Time]
|
|
3131
3233
|
#
|
|
3234
|
+
# @!attribute [rw] group_sharing_preference
|
|
3235
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
3236
|
+
# used in this estimate.
|
|
3237
|
+
# @return [String]
|
|
3238
|
+
#
|
|
3239
|
+
# @!attribute [rw] cost_category_group_sharing_preference_arn
|
|
3240
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
3241
|
+
# group sharing.
|
|
3242
|
+
# @return [String]
|
|
3243
|
+
#
|
|
3132
3244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/UpdateBillScenarioRequest AWS API Documentation
|
|
3133
3245
|
#
|
|
3134
3246
|
class UpdateBillScenarioRequest < Struct.new(
|
|
3135
3247
|
:identifier,
|
|
3136
3248
|
:name,
|
|
3137
|
-
:expires_at
|
|
3249
|
+
:expires_at,
|
|
3250
|
+
:group_sharing_preference,
|
|
3251
|
+
:cost_category_group_sharing_preference_arn)
|
|
3138
3252
|
SENSITIVE = []
|
|
3139
3253
|
include Aws::Structure
|
|
3140
3254
|
end
|
|
@@ -3167,6 +3281,16 @@ module Aws::BCMPricingCalculator
|
|
|
3167
3281
|
# An error message if the bill scenario update failed.
|
|
3168
3282
|
# @return [String]
|
|
3169
3283
|
#
|
|
3284
|
+
# @!attribute [rw] group_sharing_preference
|
|
3285
|
+
# The setting for the reserved instance and savings plan group sharing
|
|
3286
|
+
# used in this estimate.
|
|
3287
|
+
# @return [String]
|
|
3288
|
+
#
|
|
3289
|
+
# @!attribute [rw] cost_category_group_sharing_preference_arn
|
|
3290
|
+
# The arn of the cost category used in the reserved and prioritized
|
|
3291
|
+
# group sharing.
|
|
3292
|
+
# @return [String]
|
|
3293
|
+
#
|
|
3170
3294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/UpdateBillScenarioResponse AWS API Documentation
|
|
3171
3295
|
#
|
|
3172
3296
|
class UpdateBillScenarioResponse < Struct.new(
|
|
@@ -3176,7 +3300,9 @@ module Aws::BCMPricingCalculator
|
|
|
3176
3300
|
:status,
|
|
3177
3301
|
:created_at,
|
|
3178
3302
|
:expires_at,
|
|
3179
|
-
:failure_message
|
|
3303
|
+
:failure_message,
|
|
3304
|
+
:group_sharing_preference,
|
|
3305
|
+
:cost_category_group_sharing_preference_arn)
|
|
3180
3306
|
SENSITIVE = []
|
|
3181
3307
|
include Aws::Structure
|
|
3182
3308
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -337,6 +337,9 @@ module Aws
|
|
|
337
337
|
def cost_summary: () -> Types::BillEstimateCostSummary
|
|
338
338
|
def created_at: () -> ::Time
|
|
339
339
|
def expires_at: () -> ::Time
|
|
340
|
+
def group_sharing_preference: () -> ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
341
|
+
def cost_category_group_sharing_preference_arn: () -> ::String
|
|
342
|
+
def cost_category_group_sharing_preference_effective_date: () -> ::Time
|
|
340
343
|
end
|
|
341
344
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BCMPricingCalculator/Client.html#create_bill_estimate-instance_method
|
|
342
345
|
def create_bill_estimate: (
|
|
@@ -356,12 +359,16 @@ module Aws
|
|
|
356
359
|
def created_at: () -> ::Time
|
|
357
360
|
def expires_at: () -> ::Time
|
|
358
361
|
def failure_message: () -> ::String
|
|
362
|
+
def group_sharing_preference: () -> ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
363
|
+
def cost_category_group_sharing_preference_arn: () -> ::String
|
|
359
364
|
end
|
|
360
365
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BCMPricingCalculator/Client.html#create_bill_scenario-instance_method
|
|
361
366
|
def create_bill_scenario: (
|
|
362
367
|
name: ::String,
|
|
363
368
|
?client_token: ::String,
|
|
364
|
-
?tags: Hash[::String, ::String]
|
|
369
|
+
?tags: Hash[::String, ::String],
|
|
370
|
+
?group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED"),
|
|
371
|
+
?cost_category_group_sharing_preference_arn: ::String
|
|
365
372
|
) -> _CreateBillScenarioResponseSuccess
|
|
366
373
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBillScenarioResponseSuccess
|
|
367
374
|
|
|
@@ -424,6 +431,9 @@ module Aws
|
|
|
424
431
|
def cost_summary: () -> Types::BillEstimateCostSummary
|
|
425
432
|
def created_at: () -> ::Time
|
|
426
433
|
def expires_at: () -> ::Time
|
|
434
|
+
def group_sharing_preference: () -> ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
435
|
+
def cost_category_group_sharing_preference_arn: () -> ::String
|
|
436
|
+
def cost_category_group_sharing_preference_effective_date: () -> ::Time
|
|
427
437
|
end
|
|
428
438
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BCMPricingCalculator/Client.html#get_bill_estimate-instance_method
|
|
429
439
|
def get_bill_estimate: (
|
|
@@ -440,6 +450,8 @@ module Aws
|
|
|
440
450
|
def created_at: () -> ::Time
|
|
441
451
|
def expires_at: () -> ::Time
|
|
442
452
|
def failure_message: () -> ::String
|
|
453
|
+
def group_sharing_preference: () -> ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
454
|
+
def cost_category_group_sharing_preference_arn: () -> ::String
|
|
443
455
|
end
|
|
444
456
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BCMPricingCalculator/Client.html#get_bill_scenario-instance_method
|
|
445
457
|
def get_bill_scenario: (
|
|
@@ -612,7 +624,7 @@ module Aws
|
|
|
612
624
|
def list_bill_scenarios: (
|
|
613
625
|
?filters: Array[
|
|
614
626
|
{
|
|
615
|
-
name: ("STATUS" | "NAME"),
|
|
627
|
+
name: ("STATUS" | "NAME" | "GROUP_SHARING_PREFERENCE" | "COST_CATEGORY_ARN"),
|
|
616
628
|
values: Array[::String],
|
|
617
629
|
match_option: ("EQUALS" | "STARTS_WITH" | "CONTAINS")?
|
|
618
630
|
},
|
|
@@ -717,6 +729,9 @@ module Aws
|
|
|
717
729
|
def cost_summary: () -> Types::BillEstimateCostSummary
|
|
718
730
|
def created_at: () -> ::Time
|
|
719
731
|
def expires_at: () -> ::Time
|
|
732
|
+
def group_sharing_preference: () -> ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
733
|
+
def cost_category_group_sharing_preference_arn: () -> ::String
|
|
734
|
+
def cost_category_group_sharing_preference_effective_date: () -> ::Time
|
|
720
735
|
end
|
|
721
736
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BCMPricingCalculator/Client.html#update_bill_estimate-instance_method
|
|
722
737
|
def update_bill_estimate: (
|
|
@@ -735,12 +750,16 @@ module Aws
|
|
|
735
750
|
def created_at: () -> ::Time
|
|
736
751
|
def expires_at: () -> ::Time
|
|
737
752
|
def failure_message: () -> ::String
|
|
753
|
+
def group_sharing_preference: () -> ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
754
|
+
def cost_category_group_sharing_preference_arn: () -> ::String
|
|
738
755
|
end
|
|
739
756
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BCMPricingCalculator/Client.html#update_bill_scenario-instance_method
|
|
740
757
|
def update_bill_scenario: (
|
|
741
758
|
identifier: ::String,
|
|
742
759
|
?name: ::String,
|
|
743
|
-
?expires_at: ::Time
|
|
760
|
+
?expires_at: ::Time,
|
|
761
|
+
?group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED"),
|
|
762
|
+
?cost_category_group_sharing_preference_arn: ::String
|
|
744
763
|
) -> _UpdateBillScenarioResponseSuccess
|
|
745
764
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBillScenarioResponseSuccess
|
|
746
765
|
|
data/sig/types.rbs
CHANGED
|
@@ -402,6 +402,8 @@ module Aws::BCMPricingCalculator
|
|
|
402
402
|
attr_accessor created_at: ::Time
|
|
403
403
|
attr_accessor expires_at: ::Time
|
|
404
404
|
attr_accessor failure_message: ::String
|
|
405
|
+
attr_accessor group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
406
|
+
attr_accessor cost_category_group_sharing_preference_arn: ::String
|
|
405
407
|
SENSITIVE: []
|
|
406
408
|
end
|
|
407
409
|
|
|
@@ -455,6 +457,9 @@ module Aws::BCMPricingCalculator
|
|
|
455
457
|
attr_accessor cost_summary: Types::BillEstimateCostSummary
|
|
456
458
|
attr_accessor created_at: ::Time
|
|
457
459
|
attr_accessor expires_at: ::Time
|
|
460
|
+
attr_accessor group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
461
|
+
attr_accessor cost_category_group_sharing_preference_arn: ::String
|
|
462
|
+
attr_accessor cost_category_group_sharing_preference_effective_date: ::Time
|
|
458
463
|
SENSITIVE: []
|
|
459
464
|
end
|
|
460
465
|
|
|
@@ -462,6 +467,8 @@ module Aws::BCMPricingCalculator
|
|
|
462
467
|
attr_accessor name: ::String
|
|
463
468
|
attr_accessor client_token: ::String
|
|
464
469
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
470
|
+
attr_accessor group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
471
|
+
attr_accessor cost_category_group_sharing_preference_arn: ::String
|
|
465
472
|
SENSITIVE: []
|
|
466
473
|
end
|
|
467
474
|
|
|
@@ -473,6 +480,8 @@ module Aws::BCMPricingCalculator
|
|
|
473
480
|
attr_accessor created_at: ::Time
|
|
474
481
|
attr_accessor expires_at: ::Time
|
|
475
482
|
attr_accessor failure_message: ::String
|
|
483
|
+
attr_accessor group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
484
|
+
attr_accessor cost_category_group_sharing_preference_arn: ::String
|
|
476
485
|
SENSITIVE: []
|
|
477
486
|
end
|
|
478
487
|
|
|
@@ -564,6 +573,9 @@ module Aws::BCMPricingCalculator
|
|
|
564
573
|
attr_accessor cost_summary: Types::BillEstimateCostSummary
|
|
565
574
|
attr_accessor created_at: ::Time
|
|
566
575
|
attr_accessor expires_at: ::Time
|
|
576
|
+
attr_accessor group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
577
|
+
attr_accessor cost_category_group_sharing_preference_arn: ::String
|
|
578
|
+
attr_accessor cost_category_group_sharing_preference_effective_date: ::Time
|
|
567
579
|
SENSITIVE: []
|
|
568
580
|
end
|
|
569
581
|
|
|
@@ -580,6 +592,8 @@ module Aws::BCMPricingCalculator
|
|
|
580
592
|
attr_accessor created_at: ::Time
|
|
581
593
|
attr_accessor expires_at: ::Time
|
|
582
594
|
attr_accessor failure_message: ::String
|
|
595
|
+
attr_accessor group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
596
|
+
attr_accessor cost_category_group_sharing_preference_arn: ::String
|
|
583
597
|
SENSITIVE: []
|
|
584
598
|
end
|
|
585
599
|
|
|
@@ -740,7 +754,7 @@ module Aws::BCMPricingCalculator
|
|
|
740
754
|
end
|
|
741
755
|
|
|
742
756
|
class ListBillScenariosFilter
|
|
743
|
-
attr_accessor name: ("STATUS" | "NAME")
|
|
757
|
+
attr_accessor name: ("STATUS" | "NAME" | "GROUP_SHARING_PREFERENCE" | "COST_CATEGORY_ARN")
|
|
744
758
|
attr_accessor values: ::Array[::String]
|
|
745
759
|
attr_accessor match_option: ("EQUALS" | "STARTS_WITH" | "CONTAINS")
|
|
746
760
|
SENSITIVE: []
|
|
@@ -882,6 +896,9 @@ module Aws::BCMPricingCalculator
|
|
|
882
896
|
attr_accessor cost_summary: Types::BillEstimateCostSummary
|
|
883
897
|
attr_accessor created_at: ::Time
|
|
884
898
|
attr_accessor expires_at: ::Time
|
|
899
|
+
attr_accessor group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
900
|
+
attr_accessor cost_category_group_sharing_preference_arn: ::String
|
|
901
|
+
attr_accessor cost_category_group_sharing_preference_effective_date: ::Time
|
|
885
902
|
SENSITIVE: []
|
|
886
903
|
end
|
|
887
904
|
|
|
@@ -889,6 +906,8 @@ module Aws::BCMPricingCalculator
|
|
|
889
906
|
attr_accessor identifier: ::String
|
|
890
907
|
attr_accessor name: ::String
|
|
891
908
|
attr_accessor expires_at: ::Time
|
|
909
|
+
attr_accessor group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
910
|
+
attr_accessor cost_category_group_sharing_preference_arn: ::String
|
|
892
911
|
SENSITIVE: []
|
|
893
912
|
end
|
|
894
913
|
|
|
@@ -900,6 +919,8 @@ module Aws::BCMPricingCalculator
|
|
|
900
919
|
attr_accessor created_at: ::Time
|
|
901
920
|
attr_accessor expires_at: ::Time
|
|
902
921
|
attr_accessor failure_message: ::String
|
|
922
|
+
attr_accessor group_sharing_preference: ("OPEN" | "PRIORITIZED" | "RESTRICTED")
|
|
923
|
+
attr_accessor cost_category_group_sharing_preference_arn: ::String
|
|
903
924
|
SENSITIVE: []
|
|
904
925
|
end
|
|
905
926
|
|