aws-sdk-costexplorer 1.112.0 → 1.114.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-costexplorer/client.rb +74 -76
- data/lib/aws-sdk-costexplorer/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-costexplorer/endpoints.rb +2 -449
- data/lib/aws-sdk-costexplorer/plugins/endpoints.rb +1 -88
- data/lib/aws-sdk-costexplorer/types.rb +108 -114
- data/lib/aws-sdk-costexplorer.rb +1 -1
- metadata +4 -4
@@ -150,8 +150,8 @@ module Aws::CostExplorer
|
|
150
150
|
# Virginia)`.
|
151
151
|
#
|
152
152
|
# * The corresponding `Expression` for this example is as follows:
|
153
|
-
#
|
154
|
-
# "us-west-1" ]
|
153
|
+
# `{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1",
|
154
|
+
# "us-west-1" ] } }`
|
155
155
|
#
|
156
156
|
# * As shown in the previous example, lists of dimension values
|
157
157
|
# are combined with `OR` when applying the filter.
|
@@ -165,8 +165,8 @@ module Aws::CostExplorer
|
|
165
165
|
# start with "a".
|
166
166
|
#
|
167
167
|
# * The corresponding `Expression` for this example is as follows:
|
168
|
-
#
|
169
|
-
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ]
|
168
|
+
# `{ "Dimensions": { "Key": "LINKED_ACCOUNT_NAME",
|
169
|
+
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }`
|
170
170
|
#
|
171
171
|
# * Compound `Expression` types with logical operations.
|
172
172
|
#
|
@@ -180,17 +180,16 @@ module Aws::CostExplorer
|
|
180
180
|
# DataTransfer)`.
|
181
181
|
#
|
182
182
|
# * The corresponding `Expression` for this example is as follows:
|
183
|
-
#
|
184
|
-
#
|
185
|
-
# "
|
186
|
-
#
|
187
|
-
# ["DataTransfer"] \}\}\} ] \} `
|
183
|
+
# `{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values":
|
184
|
+
# [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName",
|
185
|
+
# "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key":
|
186
|
+
# "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } `
|
188
187
|
#
|
189
188
|
# <note markdown="1"> Because each `Expression` can have only one operator, the service
|
190
189
|
# returns an error if more than one is specified. The following
|
191
|
-
# example shows an `Expression` object that creates an error: `
|
192
|
-
# "And": [ ... ], "Dimensions":
|
193
|
-
# "DataTransfer" ]
|
190
|
+
# example shows an `Expression` object that creates an error: ` {
|
191
|
+
# "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [
|
192
|
+
# "DataTransfer" ] } } `
|
194
193
|
#
|
195
194
|
# The following is an example of the corresponding error message:
|
196
195
|
# `"Expression has more than one roots. Only one root operator is
|
@@ -345,27 +344,27 @@ module Aws::CostExplorer
|
|
345
344
|
#
|
346
345
|
# The following are examples of valid ThresholdExpressions:
|
347
346
|
#
|
348
|
-
# * Absolute threshold:
|
347
|
+
# * Absolute threshold: `{ "Dimensions": { "Key":
|
349
348
|
# "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [
|
350
|
-
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
349
|
+
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }`
|
351
350
|
#
|
352
|
-
# * Percentage threshold:
|
351
|
+
# * Percentage threshold: `{ "Dimensions": { "Key":
|
353
352
|
# "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [
|
354
|
-
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
353
|
+
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }`
|
355
354
|
#
|
356
|
-
# * `AND` two thresholds together:
|
355
|
+
# * `AND` two thresholds together: `{ "And": [ { "Dimensions": {
|
357
356
|
# "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [
|
358
|
-
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
359
|
-
# "Dimensions":
|
360
|
-
# "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
361
|
-
#
|
357
|
+
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, {
|
358
|
+
# "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
359
|
+
# "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] }
|
360
|
+
# } ] }`
|
362
361
|
#
|
363
|
-
# * `OR` two thresholds together:
|
364
|
-
# "
|
365
|
-
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
366
|
-
# "Dimensions":
|
367
|
-
# "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
368
|
-
#
|
362
|
+
# * `OR` two thresholds together: `{ "Or": [ { "Dimensions": { "Key":
|
363
|
+
# "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [
|
364
|
+
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, {
|
365
|
+
# "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
366
|
+
# "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] }
|
367
|
+
# } ] }`
|
369
368
|
#
|
370
369
|
#
|
371
370
|
#
|
@@ -1814,8 +1813,8 @@ module Aws::CostExplorer
|
|
1814
1813
|
# Virginia)`.
|
1815
1814
|
#
|
1816
1815
|
# * The corresponding `Expression` for this example is as follows:
|
1817
|
-
#
|
1818
|
-
# "us-west-1" ]
|
1816
|
+
# `{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1",
|
1817
|
+
# "us-west-1" ] } }`
|
1819
1818
|
#
|
1820
1819
|
# * As shown in the previous example, lists of dimension values are
|
1821
1820
|
# combined with `OR` when applying the filter.
|
@@ -1828,8 +1827,8 @@ module Aws::CostExplorer
|
|
1828
1827
|
# with "a".
|
1829
1828
|
#
|
1830
1829
|
# * The corresponding `Expression` for this example is as follows:
|
1831
|
-
#
|
1832
|
-
#
|
1830
|
+
# `{ "Dimensions": { "Key": "LINKED_ACCOUNT_NAME", "MatchOptions":
|
1831
|
+
# [ "STARTS_WITH" ], "Values": [ "a" ] } }`
|
1833
1832
|
#
|
1834
1833
|
# * Compound `Expression` types with logical operations.
|
1835
1834
|
#
|
@@ -1841,17 +1840,17 @@ module Aws::CostExplorer
|
|
1841
1840
|
# us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE !=
|
1842
1841
|
# DataTransfer)`.
|
1843
1842
|
#
|
1844
|
-
# * The corresponding `Expression` for this example is as follows:
|
1845
|
-
# "And": [
|
1846
|
-
# "us-east-1", "us-west-1" ]
|
1847
|
-
# "Values": ["Value1"]
|
1848
|
-
# "USAGE_TYPE", "Values": ["DataTransfer"]
|
1843
|
+
# * The corresponding `Expression` for this example is as follows: `{
|
1844
|
+
# "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [
|
1845
|
+
# "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName",
|
1846
|
+
# "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key":
|
1847
|
+
# "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } `
|
1849
1848
|
#
|
1850
1849
|
# <note markdown="1"> Because each `Expression` can have only one operator, the service
|
1851
1850
|
# returns an error if more than one is specified. The following
|
1852
|
-
# example shows an `Expression` object that creates an error: `
|
1853
|
-
# "And": [ ... ], "Dimensions":
|
1854
|
-
# "DataTransfer" ]
|
1851
|
+
# example shows an `Expression` object that creates an error: ` {
|
1852
|
+
# "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [
|
1853
|
+
# "DataTransfer" ] } } `
|
1855
1854
|
#
|
1856
1855
|
# The following is an example of the corresponding error message:
|
1857
1856
|
# `"Expression has more than one roots. Only one root operator is
|
@@ -2492,8 +2491,8 @@ module Aws::CostExplorer
|
|
2492
2491
|
# Virginia)`.
|
2493
2492
|
#
|
2494
2493
|
# * The corresponding `Expression` for this example is as follows:
|
2495
|
-
#
|
2496
|
-
# "us-west-1" ]
|
2494
|
+
# `{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1",
|
2495
|
+
# "us-west-1" ] } }`
|
2497
2496
|
#
|
2498
2497
|
# * As shown in the previous example, lists of dimension values
|
2499
2498
|
# are combined with `OR` when applying the filter.
|
@@ -2507,8 +2506,8 @@ module Aws::CostExplorer
|
|
2507
2506
|
# start with "a".
|
2508
2507
|
#
|
2509
2508
|
# * The corresponding `Expression` for this example is as follows:
|
2510
|
-
#
|
2511
|
-
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ]
|
2509
|
+
# `{ "Dimensions": { "Key": "LINKED_ACCOUNT_NAME",
|
2510
|
+
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }`
|
2512
2511
|
#
|
2513
2512
|
# * Compound `Expression` types with logical operations.
|
2514
2513
|
#
|
@@ -2522,17 +2521,16 @@ module Aws::CostExplorer
|
|
2522
2521
|
# DataTransfer)`.
|
2523
2522
|
#
|
2524
2523
|
# * The corresponding `Expression` for this example is as follows:
|
2525
|
-
#
|
2526
|
-
#
|
2527
|
-
# "
|
2528
|
-
#
|
2529
|
-
# ["DataTransfer"] \}\}\} ] \} `
|
2524
|
+
# `{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values":
|
2525
|
+
# [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName",
|
2526
|
+
# "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key":
|
2527
|
+
# "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } `
|
2530
2528
|
#
|
2531
2529
|
# <note markdown="1"> Because each `Expression` can have only one operator, the service
|
2532
2530
|
# returns an error if more than one is specified. The following
|
2533
|
-
# example shows an `Expression` object that creates an error: `
|
2534
|
-
# "And": [ ... ], "Dimensions":
|
2535
|
-
# "DataTransfer" ]
|
2531
|
+
# example shows an `Expression` object that creates an error: ` {
|
2532
|
+
# "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [
|
2533
|
+
# "DataTransfer" ] } } `
|
2536
2534
|
#
|
2537
2535
|
# The following is an example of the corresponding error message:
|
2538
2536
|
# `"Expression has more than one roots. Only one root operator is
|
@@ -2989,8 +2987,8 @@ module Aws::CostExplorer
|
|
2989
2987
|
# Virginia)`.
|
2990
2988
|
#
|
2991
2989
|
# * The corresponding `Expression` for this example is as follows:
|
2992
|
-
#
|
2993
|
-
# "us-west-1" ]
|
2990
|
+
# `{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1",
|
2991
|
+
# "us-west-1" ] } }`
|
2994
2992
|
#
|
2995
2993
|
# * As shown in the previous example, lists of dimension values
|
2996
2994
|
# are combined with `OR` when applying the filter.
|
@@ -3004,8 +3002,8 @@ module Aws::CostExplorer
|
|
3004
3002
|
# start with "a".
|
3005
3003
|
#
|
3006
3004
|
# * The corresponding `Expression` for this example is as follows:
|
3007
|
-
#
|
3008
|
-
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ]
|
3005
|
+
# `{ "Dimensions": { "Key": "LINKED_ACCOUNT_NAME",
|
3006
|
+
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }`
|
3009
3007
|
#
|
3010
3008
|
# * Compound `Expression` types with logical operations.
|
3011
3009
|
#
|
@@ -3019,17 +3017,16 @@ module Aws::CostExplorer
|
|
3019
3017
|
# DataTransfer)`.
|
3020
3018
|
#
|
3021
3019
|
# * The corresponding `Expression` for this example is as follows:
|
3022
|
-
#
|
3023
|
-
#
|
3024
|
-
# "
|
3025
|
-
#
|
3026
|
-
# ["DataTransfer"] \}\}\} ] \} `
|
3020
|
+
# `{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values":
|
3021
|
+
# [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName",
|
3022
|
+
# "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key":
|
3023
|
+
# "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } `
|
3027
3024
|
#
|
3028
3025
|
# <note markdown="1"> Because each `Expression` can have only one operator, the service
|
3029
3026
|
# returns an error if more than one is specified. The following
|
3030
|
-
# example shows an `Expression` object that creates an error: `
|
3031
|
-
# "And": [ ... ], "Dimensions":
|
3032
|
-
# "DataTransfer" ]
|
3027
|
+
# example shows an `Expression` object that creates an error: ` {
|
3028
|
+
# "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [
|
3029
|
+
# "DataTransfer" ] } } `
|
3033
3030
|
#
|
3034
3031
|
# The following is an example of the corresponding error message:
|
3035
3032
|
# `"Expression has more than one roots. Only one root operator is
|
@@ -3464,8 +3461,8 @@ module Aws::CostExplorer
|
|
3464
3461
|
# Virginia)`.
|
3465
3462
|
#
|
3466
3463
|
# * The corresponding `Expression` for this example is as follows:
|
3467
|
-
#
|
3468
|
-
# "us-west-1" ]
|
3464
|
+
# `{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1",
|
3465
|
+
# "us-west-1" ] } }`
|
3469
3466
|
#
|
3470
3467
|
# * As shown in the previous example, lists of dimension values
|
3471
3468
|
# are combined with `OR` when applying the filter.
|
@@ -3479,8 +3476,8 @@ module Aws::CostExplorer
|
|
3479
3476
|
# start with "a".
|
3480
3477
|
#
|
3481
3478
|
# * The corresponding `Expression` for this example is as follows:
|
3482
|
-
#
|
3483
|
-
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ]
|
3479
|
+
# `{ "Dimensions": { "Key": "LINKED_ACCOUNT_NAME",
|
3480
|
+
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }`
|
3484
3481
|
#
|
3485
3482
|
# * Compound `Expression` types with logical operations.
|
3486
3483
|
#
|
@@ -3494,17 +3491,16 @@ module Aws::CostExplorer
|
|
3494
3491
|
# DataTransfer)`.
|
3495
3492
|
#
|
3496
3493
|
# * The corresponding `Expression` for this example is as follows:
|
3497
|
-
#
|
3498
|
-
#
|
3499
|
-
# "
|
3500
|
-
#
|
3501
|
-
# ["DataTransfer"] \}\}\} ] \} `
|
3494
|
+
# `{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values":
|
3495
|
+
# [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName",
|
3496
|
+
# "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key":
|
3497
|
+
# "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } `
|
3502
3498
|
#
|
3503
3499
|
# <note markdown="1"> Because each `Expression` can have only one operator, the service
|
3504
3500
|
# returns an error if more than one is specified. The following
|
3505
|
-
# example shows an `Expression` object that creates an error: `
|
3506
|
-
# "And": [ ... ], "Dimensions":
|
3507
|
-
# "DataTransfer" ]
|
3501
|
+
# example shows an `Expression` object that creates an error: ` {
|
3502
|
+
# "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [
|
3503
|
+
# "DataTransfer" ] } } `
|
3508
3504
|
#
|
3509
3505
|
# The following is an example of the corresponding error message:
|
3510
3506
|
# `"Expression has more than one roots. Only one root operator is
|
@@ -3792,8 +3788,8 @@ module Aws::CostExplorer
|
|
3792
3788
|
# Virginia)`.
|
3793
3789
|
#
|
3794
3790
|
# * The corresponding `Expression` for this example is as follows:
|
3795
|
-
#
|
3796
|
-
# "us-west-1" ]
|
3791
|
+
# `{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1",
|
3792
|
+
# "us-west-1" ] } }`
|
3797
3793
|
#
|
3798
3794
|
# * As shown in the previous example, lists of dimension values
|
3799
3795
|
# are combined with `OR` when applying the filter.
|
@@ -3807,8 +3803,8 @@ module Aws::CostExplorer
|
|
3807
3803
|
# start with "a".
|
3808
3804
|
#
|
3809
3805
|
# * The corresponding `Expression` for this example is as follows:
|
3810
|
-
#
|
3811
|
-
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ]
|
3806
|
+
# `{ "Dimensions": { "Key": "LINKED_ACCOUNT_NAME",
|
3807
|
+
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }`
|
3812
3808
|
#
|
3813
3809
|
# * Compound `Expression` types with logical operations.
|
3814
3810
|
#
|
@@ -3822,17 +3818,16 @@ module Aws::CostExplorer
|
|
3822
3818
|
# DataTransfer)`.
|
3823
3819
|
#
|
3824
3820
|
# * The corresponding `Expression` for this example is as follows:
|
3825
|
-
#
|
3826
|
-
#
|
3827
|
-
# "
|
3828
|
-
#
|
3829
|
-
# ["DataTransfer"] \}\}\} ] \} `
|
3821
|
+
# `{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values":
|
3822
|
+
# [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName",
|
3823
|
+
# "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key":
|
3824
|
+
# "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } `
|
3830
3825
|
#
|
3831
3826
|
# <note markdown="1"> Because each `Expression` can have only one operator, the service
|
3832
3827
|
# returns an error if more than one is specified. The following
|
3833
|
-
# example shows an `Expression` object that creates an error: `
|
3834
|
-
# "And": [ ... ], "Dimensions":
|
3835
|
-
# "DataTransfer" ]
|
3828
|
+
# example shows an `Expression` object that creates an error: ` {
|
3829
|
+
# "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [
|
3830
|
+
# "DataTransfer" ] } } `
|
3836
3831
|
#
|
3837
3832
|
# The following is an example of the corresponding error message:
|
3838
3833
|
# `"Expression has more than one roots. Only one root operator is
|
@@ -4416,8 +4411,8 @@ module Aws::CostExplorer
|
|
4416
4411
|
# Virginia)`.
|
4417
4412
|
#
|
4418
4413
|
# * The corresponding `Expression` for this example is as follows:
|
4419
|
-
#
|
4420
|
-
# "us-west-1" ]
|
4414
|
+
# `{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1",
|
4415
|
+
# "us-west-1" ] } }`
|
4421
4416
|
#
|
4422
4417
|
# * As shown in the previous example, lists of dimension values
|
4423
4418
|
# are combined with `OR` when applying the filter.
|
@@ -4431,8 +4426,8 @@ module Aws::CostExplorer
|
|
4431
4426
|
# start with "a".
|
4432
4427
|
#
|
4433
4428
|
# * The corresponding `Expression` for this example is as follows:
|
4434
|
-
#
|
4435
|
-
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ]
|
4429
|
+
# `{ "Dimensions": { "Key": "LINKED_ACCOUNT_NAME",
|
4430
|
+
# "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }`
|
4436
4431
|
#
|
4437
4432
|
# * Compound `Expression` types with logical operations.
|
4438
4433
|
#
|
@@ -4446,17 +4441,16 @@ module Aws::CostExplorer
|
|
4446
4441
|
# DataTransfer)`.
|
4447
4442
|
#
|
4448
4443
|
# * The corresponding `Expression` for this example is as follows:
|
4449
|
-
#
|
4450
|
-
#
|
4451
|
-
# "
|
4452
|
-
#
|
4453
|
-
# ["DataTransfer"] \}\}\} ] \} `
|
4444
|
+
# `{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values":
|
4445
|
+
# [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName",
|
4446
|
+
# "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key":
|
4447
|
+
# "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] } `
|
4454
4448
|
#
|
4455
4449
|
# <note markdown="1"> Because each `Expression` can have only one operator, the service
|
4456
4450
|
# returns an error if more than one is specified. The following
|
4457
|
-
# example shows an `Expression` object that creates an error: `
|
4458
|
-
# "And": [ ... ], "Dimensions":
|
4459
|
-
# "DataTransfer" ]
|
4451
|
+
# example shows an `Expression` object that creates an error: ` {
|
4452
|
+
# "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [
|
4453
|
+
# "DataTransfer" ] } } `
|
4460
4454
|
#
|
4461
4455
|
# The following is an example of the corresponding error message:
|
4462
4456
|
# `"Expression has more than one roots. Only one root operator is
|
@@ -7250,27 +7244,27 @@ module Aws::CostExplorer
|
|
7250
7244
|
#
|
7251
7245
|
# The following are examples of valid ThresholdExpressions:
|
7252
7246
|
#
|
7253
|
-
# * Absolute threshold:
|
7247
|
+
# * Absolute threshold: `{ "Dimensions": { "Key":
|
7254
7248
|
# "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [
|
7255
|
-
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
7249
|
+
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }`
|
7256
7250
|
#
|
7257
|
-
# * Percentage threshold:
|
7251
|
+
# * Percentage threshold: `{ "Dimensions": { "Key":
|
7258
7252
|
# "ANOMALY_TOTAL_IMPACT_PERCENTAGE", "MatchOptions": [
|
7259
|
-
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
7253
|
+
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }`
|
7260
7254
|
#
|
7261
|
-
# * `AND` two thresholds together:
|
7255
|
+
# * `AND` two thresholds together: `{ "And": [ { "Dimensions": {
|
7262
7256
|
# "Key": "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [
|
7263
|
-
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
7264
|
-
# "Dimensions":
|
7265
|
-
# "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
7266
|
-
#
|
7257
|
+
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, {
|
7258
|
+
# "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
7259
|
+
# "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] }
|
7260
|
+
# } ] }`
|
7267
7261
|
#
|
7268
|
-
# * `OR` two thresholds together:
|
7269
|
-
# "
|
7270
|
-
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
7271
|
-
# "Dimensions":
|
7272
|
-
# "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ]
|
7273
|
-
#
|
7262
|
+
# * `OR` two thresholds together: `{ "Or": [ { "Dimensions": { "Key":
|
7263
|
+
# "ANOMALY_TOTAL_IMPACT_ABSOLUTE", "MatchOptions": [
|
7264
|
+
# "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] } }, {
|
7265
|
+
# "Dimensions": { "Key": "ANOMALY_TOTAL_IMPACT_PERCENTAGE",
|
7266
|
+
# "MatchOptions": [ "GREATER_THAN_OR_EQUAL" ], "Values": [ "100" ] }
|
7267
|
+
# } ] }`
|
7274
7268
|
#
|
7275
7269
|
#
|
7276
7270
|
#
|
data/lib/aws-sdk-costexplorer.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-costexplorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.114.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|