aws-sdk-costexplorer 1.50.0 → 1.51.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/lib/aws-sdk-costexplorer.rb +1 -1
- data/lib/aws-sdk-costexplorer/client.rb +27 -1
- data/lib/aws-sdk-costexplorer/client_api.rb +17 -0
- data/lib/aws-sdk-costexplorer/types.rb +69 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 186271036364d635e314e828afb21f4172a645a098180243ae539587243ac5ea
|
|
4
|
+
data.tar.gz: d6de989a97940d29746bc2b20c5d3338c9760bb171e7ee5296a73b7edb8aba0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b0fc574a6b7b894248722f84390e68081321f6c972789431c809b776a067764eb3c972d091d02df892e4e70ca6e34f53477abea14afcfdf5ab8876803de14d2
|
|
7
|
+
data.tar.gz: 5a735e15f69fd7904139e7d066fdd535a3dfe9fa2f3078b62363c57af390454aec0c07df3709470211adee95987b242812363bd0b4ff9ecaaad8d4800d38c6b1
|
data/lib/aws-sdk-costexplorer.rb
CHANGED
|
@@ -385,6 +385,7 @@ module Aws::CostExplorer
|
|
|
385
385
|
# cost_categories: {
|
|
386
386
|
# key: "CostCategoryName",
|
|
387
387
|
# values: ["Value"],
|
|
388
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
388
389
|
# },
|
|
389
390
|
# },
|
|
390
391
|
# dimensional_value_count: 1,
|
|
@@ -505,6 +506,7 @@ module Aws::CostExplorer
|
|
|
505
506
|
# cost_categories: {
|
|
506
507
|
# key: "CostCategoryName",
|
|
507
508
|
# values: ["Value"],
|
|
509
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
508
510
|
# },
|
|
509
511
|
# },
|
|
510
512
|
# },
|
|
@@ -655,6 +657,11 @@ module Aws::CostExplorer
|
|
|
655
657
|
# resp.cost_category.rules[0].rule.cost_categories.key #=> String
|
|
656
658
|
# resp.cost_category.rules[0].rule.cost_categories.values #=> Array
|
|
657
659
|
# resp.cost_category.rules[0].rule.cost_categories.values[0] #=> String
|
|
660
|
+
# resp.cost_category.rules[0].rule.cost_categories.match_options #=> Array
|
|
661
|
+
# resp.cost_category.rules[0].rule.cost_categories.match_options[0] #=> String, one of "EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS", "CASE_SENSITIVE", "CASE_INSENSITIVE"
|
|
662
|
+
# resp.cost_category.processing_status #=> Array
|
|
663
|
+
# resp.cost_category.processing_status[0].component #=> String, one of "COST_EXPLORER"
|
|
664
|
+
# resp.cost_category.processing_status[0].status #=> String, one of "PROCESSING", "APPLIED"
|
|
658
665
|
#
|
|
659
666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/DescribeCostCategoryDefinition AWS API Documentation
|
|
660
667
|
#
|
|
@@ -801,6 +808,8 @@ module Aws::CostExplorer
|
|
|
801
808
|
# resp.anomaly_monitors[0].monitor_specification.cost_categories.key #=> String
|
|
802
809
|
# resp.anomaly_monitors[0].monitor_specification.cost_categories.values #=> Array
|
|
803
810
|
# resp.anomaly_monitors[0].monitor_specification.cost_categories.values[0] #=> String
|
|
811
|
+
# resp.anomaly_monitors[0].monitor_specification.cost_categories.match_options #=> Array
|
|
812
|
+
# resp.anomaly_monitors[0].monitor_specification.cost_categories.match_options[0] #=> String, one of "EQUALS", "STARTS_WITH", "ENDS_WITH", "CONTAINS", "CASE_SENSITIVE", "CASE_INSENSITIVE"
|
|
804
813
|
# resp.anomaly_monitors[0].dimensional_value_count #=> Integer
|
|
805
814
|
# resp.next_page_token #=> String
|
|
806
815
|
#
|
|
@@ -988,6 +997,7 @@ module Aws::CostExplorer
|
|
|
988
997
|
# cost_categories: {
|
|
989
998
|
# key: "CostCategoryName",
|
|
990
999
|
# values: ["Value"],
|
|
1000
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
991
1001
|
# },
|
|
992
1002
|
# },
|
|
993
1003
|
# metrics: ["MetricName"], # required
|
|
@@ -1155,6 +1165,7 @@ module Aws::CostExplorer
|
|
|
1155
1165
|
# cost_categories: {
|
|
1156
1166
|
# key: "CostCategoryName",
|
|
1157
1167
|
# values: ["Value"],
|
|
1168
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
1158
1169
|
# },
|
|
1159
1170
|
# },
|
|
1160
1171
|
# metrics: ["MetricName"],
|
|
@@ -1286,6 +1297,7 @@ module Aws::CostExplorer
|
|
|
1286
1297
|
# cost_categories: {
|
|
1287
1298
|
# key: "CostCategoryName",
|
|
1288
1299
|
# values: ["Value"],
|
|
1300
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
1289
1301
|
# },
|
|
1290
1302
|
# },
|
|
1291
1303
|
# prediction_interval_level: 1,
|
|
@@ -1662,6 +1674,7 @@ module Aws::CostExplorer
|
|
|
1662
1674
|
# cost_categories: {
|
|
1663
1675
|
# key: "CostCategoryName",
|
|
1664
1676
|
# values: ["Value"],
|
|
1677
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
1665
1678
|
# },
|
|
1666
1679
|
# },
|
|
1667
1680
|
# metrics: ["MetricName"],
|
|
@@ -1983,6 +1996,7 @@ module Aws::CostExplorer
|
|
|
1983
1996
|
# cost_categories: {
|
|
1984
1997
|
# key: "CostCategoryName",
|
|
1985
1998
|
# values: ["Value"],
|
|
1999
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
1986
2000
|
# },
|
|
1987
2001
|
# },
|
|
1988
2002
|
# next_page_token: "NextPageToken",
|
|
@@ -2170,6 +2184,7 @@ module Aws::CostExplorer
|
|
|
2170
2184
|
# cost_categories: {
|
|
2171
2185
|
# key: "CostCategoryName",
|
|
2172
2186
|
# values: ["Value"],
|
|
2187
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2173
2188
|
# },
|
|
2174
2189
|
# },
|
|
2175
2190
|
# configuration: {
|
|
@@ -2377,6 +2392,7 @@ module Aws::CostExplorer
|
|
|
2377
2392
|
# cost_categories: {
|
|
2378
2393
|
# key: "CostCategoryName",
|
|
2379
2394
|
# values: ["Value"],
|
|
2395
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2380
2396
|
# },
|
|
2381
2397
|
# },
|
|
2382
2398
|
# metrics: ["MetricName"],
|
|
@@ -2495,6 +2511,7 @@ module Aws::CostExplorer
|
|
|
2495
2511
|
# cost_categories: {
|
|
2496
2512
|
# key: "CostCategoryName",
|
|
2497
2513
|
# values: ["Value"],
|
|
2514
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2498
2515
|
# },
|
|
2499
2516
|
# },
|
|
2500
2517
|
# })
|
|
@@ -2637,6 +2654,7 @@ module Aws::CostExplorer
|
|
|
2637
2654
|
# cost_categories: {
|
|
2638
2655
|
# key: "CostCategoryName",
|
|
2639
2656
|
# values: ["Value"],
|
|
2657
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2640
2658
|
# },
|
|
2641
2659
|
# },
|
|
2642
2660
|
# })
|
|
@@ -2768,6 +2786,7 @@ module Aws::CostExplorer
|
|
|
2768
2786
|
# cost_categories: {
|
|
2769
2787
|
# key: "CostCategoryName",
|
|
2770
2788
|
# values: ["Value"],
|
|
2789
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2771
2790
|
# },
|
|
2772
2791
|
# },
|
|
2773
2792
|
# next_token: "NextPageToken",
|
|
@@ -2950,6 +2969,7 @@ module Aws::CostExplorer
|
|
|
2950
2969
|
# cost_categories: {
|
|
2951
2970
|
# key: "CostCategoryName",
|
|
2952
2971
|
# values: ["Value"],
|
|
2972
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2953
2973
|
# },
|
|
2954
2974
|
# },
|
|
2955
2975
|
# prediction_interval_level: 1,
|
|
@@ -3018,6 +3038,11 @@ module Aws::CostExplorer
|
|
|
3018
3038
|
# resp.cost_category_references[0].effective_start #=> String
|
|
3019
3039
|
# resp.cost_category_references[0].effective_end #=> String
|
|
3020
3040
|
# resp.cost_category_references[0].number_of_rules #=> Integer
|
|
3041
|
+
# resp.cost_category_references[0].processing_status #=> Array
|
|
3042
|
+
# resp.cost_category_references[0].processing_status[0].component #=> String, one of "COST_EXPLORER"
|
|
3043
|
+
# resp.cost_category_references[0].processing_status[0].status #=> String, one of "PROCESSING", "APPLIED"
|
|
3044
|
+
# resp.cost_category_references[0].values #=> Array
|
|
3045
|
+
# resp.cost_category_references[0].values[0] #=> String
|
|
3021
3046
|
# resp.next_token #=> String
|
|
3022
3047
|
#
|
|
3023
3048
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ListCostCategoryDefinitions AWS API Documentation
|
|
@@ -3209,6 +3234,7 @@ module Aws::CostExplorer
|
|
|
3209
3234
|
# cost_categories: {
|
|
3210
3235
|
# key: "CostCategoryName",
|
|
3211
3236
|
# values: ["Value"],
|
|
3237
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
3212
3238
|
# },
|
|
3213
3239
|
# },
|
|
3214
3240
|
# },
|
|
@@ -3242,7 +3268,7 @@ module Aws::CostExplorer
|
|
|
3242
3268
|
params: params,
|
|
3243
3269
|
config: config)
|
|
3244
3270
|
context[:gem_name] = 'aws-sdk-costexplorer'
|
|
3245
|
-
context[:gem_version] = '1.
|
|
3271
|
+
context[:gem_version] = '1.51.0'
|
|
3246
3272
|
Seahorse::Client::Request.new(handlers, context)
|
|
3247
3273
|
end
|
|
3248
3274
|
|
|
@@ -35,13 +35,18 @@ module Aws::CostExplorer
|
|
|
35
35
|
CostCategory = Shapes::StructureShape.new(name: 'CostCategory')
|
|
36
36
|
CostCategoryMaxResults = Shapes::IntegerShape.new(name: 'CostCategoryMaxResults')
|
|
37
37
|
CostCategoryName = Shapes::StringShape.new(name: 'CostCategoryName')
|
|
38
|
+
CostCategoryProcessingStatus = Shapes::StructureShape.new(name: 'CostCategoryProcessingStatus')
|
|
39
|
+
CostCategoryProcessingStatusList = Shapes::ListShape.new(name: 'CostCategoryProcessingStatusList')
|
|
38
40
|
CostCategoryReference = Shapes::StructureShape.new(name: 'CostCategoryReference')
|
|
39
41
|
CostCategoryReferencesList = Shapes::ListShape.new(name: 'CostCategoryReferencesList')
|
|
40
42
|
CostCategoryRule = Shapes::StructureShape.new(name: 'CostCategoryRule')
|
|
41
43
|
CostCategoryRuleVersion = Shapes::StringShape.new(name: 'CostCategoryRuleVersion')
|
|
42
44
|
CostCategoryRulesList = Shapes::ListShape.new(name: 'CostCategoryRulesList')
|
|
45
|
+
CostCategoryStatus = Shapes::StringShape.new(name: 'CostCategoryStatus')
|
|
46
|
+
CostCategoryStatusComponent = Shapes::StringShape.new(name: 'CostCategoryStatusComponent')
|
|
43
47
|
CostCategoryValue = Shapes::StringShape.new(name: 'CostCategoryValue')
|
|
44
48
|
CostCategoryValues = Shapes::StructureShape.new(name: 'CostCategoryValues')
|
|
49
|
+
CostCategoryValuesList = Shapes::ListShape.new(name: 'CostCategoryValuesList')
|
|
45
50
|
Coverage = Shapes::StructureShape.new(name: 'Coverage')
|
|
46
51
|
CoverageByTime = Shapes::StructureShape.new(name: 'CoverageByTime')
|
|
47
52
|
CoverageCost = Shapes::StructureShape.new(name: 'CoverageCost')
|
|
@@ -319,13 +324,22 @@ module Aws::CostExplorer
|
|
|
319
324
|
CostCategory.add_member(:name, Shapes::ShapeRef.new(shape: CostCategoryName, required: true, location_name: "Name"))
|
|
320
325
|
CostCategory.add_member(:rule_version, Shapes::ShapeRef.new(shape: CostCategoryRuleVersion, required: true, location_name: "RuleVersion"))
|
|
321
326
|
CostCategory.add_member(:rules, Shapes::ShapeRef.new(shape: CostCategoryRulesList, required: true, location_name: "Rules"))
|
|
327
|
+
CostCategory.add_member(:processing_status, Shapes::ShapeRef.new(shape: CostCategoryProcessingStatusList, location_name: "ProcessingStatus"))
|
|
322
328
|
CostCategory.struct_class = Types::CostCategory
|
|
323
329
|
|
|
330
|
+
CostCategoryProcessingStatus.add_member(:component, Shapes::ShapeRef.new(shape: CostCategoryStatusComponent, location_name: "Component"))
|
|
331
|
+
CostCategoryProcessingStatus.add_member(:status, Shapes::ShapeRef.new(shape: CostCategoryStatus, location_name: "Status"))
|
|
332
|
+
CostCategoryProcessingStatus.struct_class = Types::CostCategoryProcessingStatus
|
|
333
|
+
|
|
334
|
+
CostCategoryProcessingStatusList.member = Shapes::ShapeRef.new(shape: CostCategoryProcessingStatus)
|
|
335
|
+
|
|
324
336
|
CostCategoryReference.add_member(:cost_category_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CostCategoryArn"))
|
|
325
337
|
CostCategoryReference.add_member(:name, Shapes::ShapeRef.new(shape: CostCategoryName, location_name: "Name"))
|
|
326
338
|
CostCategoryReference.add_member(:effective_start, Shapes::ShapeRef.new(shape: ZonedDateTime, location_name: "EffectiveStart"))
|
|
327
339
|
CostCategoryReference.add_member(:effective_end, Shapes::ShapeRef.new(shape: ZonedDateTime, location_name: "EffectiveEnd"))
|
|
328
340
|
CostCategoryReference.add_member(:number_of_rules, Shapes::ShapeRef.new(shape: NonNegativeInteger, location_name: "NumberOfRules"))
|
|
341
|
+
CostCategoryReference.add_member(:processing_status, Shapes::ShapeRef.new(shape: CostCategoryProcessingStatusList, location_name: "ProcessingStatus"))
|
|
342
|
+
CostCategoryReference.add_member(:values, Shapes::ShapeRef.new(shape: CostCategoryValuesList, location_name: "Values"))
|
|
329
343
|
CostCategoryReference.struct_class = Types::CostCategoryReference
|
|
330
344
|
|
|
331
345
|
CostCategoryReferencesList.member = Shapes::ShapeRef.new(shape: CostCategoryReference)
|
|
@@ -338,8 +352,11 @@ module Aws::CostExplorer
|
|
|
338
352
|
|
|
339
353
|
CostCategoryValues.add_member(:key, Shapes::ShapeRef.new(shape: CostCategoryName, location_name: "Key"))
|
|
340
354
|
CostCategoryValues.add_member(:values, Shapes::ShapeRef.new(shape: Values, location_name: "Values"))
|
|
355
|
+
CostCategoryValues.add_member(:match_options, Shapes::ShapeRef.new(shape: MatchOptions, location_name: "MatchOptions"))
|
|
341
356
|
CostCategoryValues.struct_class = Types::CostCategoryValues
|
|
342
357
|
|
|
358
|
+
CostCategoryValuesList.member = Shapes::ShapeRef.new(shape: CostCategoryValue)
|
|
359
|
+
|
|
343
360
|
Coverage.add_member(:coverage_hours, Shapes::ShapeRef.new(shape: CoverageHours, location_name: "CoverageHours"))
|
|
344
361
|
Coverage.add_member(:coverage_normalized_units, Shapes::ShapeRef.new(shape: CoverageNormalizedUnits, location_name: "CoverageNormalizedUnits"))
|
|
345
362
|
Coverage.add_member(:coverage_cost, Shapes::ShapeRef.new(shape: CoverageCost, location_name: "CoverageCost"))
|
|
@@ -137,6 +137,7 @@ module Aws::CostExplorer
|
|
|
137
137
|
# cost_categories: {
|
|
138
138
|
# key: "CostCategoryName",
|
|
139
139
|
# values: ["Value"],
|
|
140
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
140
141
|
# },
|
|
141
142
|
# },
|
|
142
143
|
# dimensional_value_count: 1,
|
|
@@ -370,6 +371,11 @@ module Aws::CostExplorer
|
|
|
370
371
|
# that Cost Category value.
|
|
371
372
|
# @return [Array<Types::CostCategoryRule>]
|
|
372
373
|
#
|
|
374
|
+
# @!attribute [rw] processing_status
|
|
375
|
+
# The list of processing statuses for Cost Management products for a
|
|
376
|
+
# specific cost category.
|
|
377
|
+
# @return [Array<Types::CostCategoryProcessingStatus>]
|
|
378
|
+
#
|
|
373
379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategory AWS API Documentation
|
|
374
380
|
#
|
|
375
381
|
class CostCategory < Struct.new(
|
|
@@ -378,7 +384,28 @@ module Aws::CostExplorer
|
|
|
378
384
|
:effective_end,
|
|
379
385
|
:name,
|
|
380
386
|
:rule_version,
|
|
381
|
-
:rules
|
|
387
|
+
:rules,
|
|
388
|
+
:processing_status)
|
|
389
|
+
SENSITIVE = []
|
|
390
|
+
include Aws::Structure
|
|
391
|
+
end
|
|
392
|
+
|
|
393
|
+
# The list of processing statuses for Cost Management products for a
|
|
394
|
+
# specific cost category.
|
|
395
|
+
#
|
|
396
|
+
# @!attribute [rw] component
|
|
397
|
+
# The Cost Management product name of the applied status.
|
|
398
|
+
# @return [String]
|
|
399
|
+
#
|
|
400
|
+
# @!attribute [rw] status
|
|
401
|
+
# The process status for a specific cost category.
|
|
402
|
+
# @return [String]
|
|
403
|
+
#
|
|
404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategoryProcessingStatus AWS API Documentation
|
|
405
|
+
#
|
|
406
|
+
class CostCategoryProcessingStatus < Struct.new(
|
|
407
|
+
:component,
|
|
408
|
+
:status)
|
|
382
409
|
SENSITIVE = []
|
|
383
410
|
include Aws::Structure
|
|
384
411
|
end
|
|
@@ -409,6 +436,15 @@ module Aws::CostExplorer
|
|
|
409
436
|
# The number of rules associated with a specific Cost Category.
|
|
410
437
|
# @return [Integer]
|
|
411
438
|
#
|
|
439
|
+
# @!attribute [rw] processing_status
|
|
440
|
+
# The list of processing statuses for Cost Management products for a
|
|
441
|
+
# specific cost category.
|
|
442
|
+
# @return [Array<Types::CostCategoryProcessingStatus>]
|
|
443
|
+
#
|
|
444
|
+
# @!attribute [rw] values
|
|
445
|
+
# A list of unique cost category values in a specific cost category.
|
|
446
|
+
# @return [Array<String>]
|
|
447
|
+
#
|
|
412
448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategoryReference AWS API Documentation
|
|
413
449
|
#
|
|
414
450
|
class CostCategoryReference < Struct.new(
|
|
@@ -416,7 +452,9 @@ module Aws::CostExplorer
|
|
|
416
452
|
:name,
|
|
417
453
|
:effective_start,
|
|
418
454
|
:effective_end,
|
|
419
|
-
:number_of_rules
|
|
455
|
+
:number_of_rules,
|
|
456
|
+
:processing_status,
|
|
457
|
+
:values)
|
|
420
458
|
SENSITIVE = []
|
|
421
459
|
include Aws::Structure
|
|
422
460
|
end
|
|
@@ -457,6 +495,7 @@ module Aws::CostExplorer
|
|
|
457
495
|
# cost_categories: {
|
|
458
496
|
# key: "CostCategoryName",
|
|
459
497
|
# values: ["Value"],
|
|
498
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
460
499
|
# },
|
|
461
500
|
# },
|
|
462
501
|
# }
|
|
@@ -504,6 +543,7 @@ module Aws::CostExplorer
|
|
|
504
543
|
# {
|
|
505
544
|
# key: "CostCategoryName",
|
|
506
545
|
# values: ["Value"],
|
|
546
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
507
547
|
# }
|
|
508
548
|
#
|
|
509
549
|
# @!attribute [rw] key
|
|
@@ -514,11 +554,19 @@ module Aws::CostExplorer
|
|
|
514
554
|
# The specific value of the Cost Category.
|
|
515
555
|
# @return [Array<String>]
|
|
516
556
|
#
|
|
557
|
+
# @!attribute [rw] match_options
|
|
558
|
+
# The match options that you can use to filter your results.
|
|
559
|
+
# MatchOptions is only applicable for only applicable for actions
|
|
560
|
+
# related to cost category. The default values for `MatchOptions` is
|
|
561
|
+
# `EQUALS` and `CASE_SENSITIVE`.
|
|
562
|
+
# @return [Array<String>]
|
|
563
|
+
#
|
|
517
564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostCategoryValues AWS API Documentation
|
|
518
565
|
#
|
|
519
566
|
class CostCategoryValues < Struct.new(
|
|
520
567
|
:key,
|
|
521
|
-
:values
|
|
568
|
+
:values,
|
|
569
|
+
:match_options)
|
|
522
570
|
SENSITIVE = []
|
|
523
571
|
include Aws::Structure
|
|
524
572
|
end
|
|
@@ -702,6 +750,7 @@ module Aws::CostExplorer
|
|
|
702
750
|
# cost_categories: {
|
|
703
751
|
# key: "CostCategoryName",
|
|
704
752
|
# values: ["Value"],
|
|
753
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
705
754
|
# },
|
|
706
755
|
# },
|
|
707
756
|
# dimensional_value_count: 1,
|
|
@@ -815,6 +864,7 @@ module Aws::CostExplorer
|
|
|
815
864
|
# cost_categories: {
|
|
816
865
|
# key: "CostCategoryName",
|
|
817
866
|
# values: ["Value"],
|
|
867
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
818
868
|
# },
|
|
819
869
|
# },
|
|
820
870
|
# },
|
|
@@ -1508,6 +1558,7 @@ module Aws::CostExplorer
|
|
|
1508
1558
|
# cost_categories: {
|
|
1509
1559
|
# key: "CostCategoryName",
|
|
1510
1560
|
# values: ["Value"],
|
|
1561
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
1511
1562
|
# },
|
|
1512
1563
|
# },
|
|
1513
1564
|
# ],
|
|
@@ -1535,6 +1586,7 @@ module Aws::CostExplorer
|
|
|
1535
1586
|
# cost_categories: {
|
|
1536
1587
|
# key: "CostCategoryName",
|
|
1537
1588
|
# values: ["Value"],
|
|
1589
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
1538
1590
|
# },
|
|
1539
1591
|
# },
|
|
1540
1592
|
# ],
|
|
@@ -1565,6 +1617,7 @@ module Aws::CostExplorer
|
|
|
1565
1617
|
# cost_categories: {
|
|
1566
1618
|
# key: "CostCategoryName",
|
|
1567
1619
|
# values: ["Value"],
|
|
1620
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
1568
1621
|
# },
|
|
1569
1622
|
# },
|
|
1570
1623
|
# dimensions: {
|
|
@@ -1580,6 +1633,7 @@ module Aws::CostExplorer
|
|
|
1580
1633
|
# cost_categories: {
|
|
1581
1634
|
# key: "CostCategoryName",
|
|
1582
1635
|
# values: ["Value"],
|
|
1636
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
1583
1637
|
# },
|
|
1584
1638
|
# }
|
|
1585
1639
|
#
|
|
@@ -1880,6 +1934,7 @@ module Aws::CostExplorer
|
|
|
1880
1934
|
# cost_categories: {
|
|
1881
1935
|
# key: "CostCategoryName",
|
|
1882
1936
|
# values: ["Value"],
|
|
1937
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
1883
1938
|
# },
|
|
1884
1939
|
# },
|
|
1885
1940
|
# metrics: ["MetricName"], # required
|
|
@@ -2036,6 +2091,7 @@ module Aws::CostExplorer
|
|
|
2036
2091
|
# cost_categories: {
|
|
2037
2092
|
# key: "CostCategoryName",
|
|
2038
2093
|
# values: ["Value"],
|
|
2094
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2039
2095
|
# },
|
|
2040
2096
|
# },
|
|
2041
2097
|
# metrics: ["MetricName"],
|
|
@@ -2193,6 +2249,7 @@ module Aws::CostExplorer
|
|
|
2193
2249
|
# cost_categories: {
|
|
2194
2250
|
# key: "CostCategoryName",
|
|
2195
2251
|
# values: ["Value"],
|
|
2252
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2196
2253
|
# },
|
|
2197
2254
|
# },
|
|
2198
2255
|
# prediction_interval_level: 1,
|
|
@@ -2616,6 +2673,7 @@ module Aws::CostExplorer
|
|
|
2616
2673
|
# cost_categories: {
|
|
2617
2674
|
# key: "CostCategoryName",
|
|
2618
2675
|
# values: ["Value"],
|
|
2676
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2619
2677
|
# },
|
|
2620
2678
|
# },
|
|
2621
2679
|
# metrics: ["MetricName"],
|
|
@@ -2906,6 +2964,7 @@ module Aws::CostExplorer
|
|
|
2906
2964
|
# cost_categories: {
|
|
2907
2965
|
# key: "CostCategoryName",
|
|
2908
2966
|
# values: ["Value"],
|
|
2967
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
2909
2968
|
# },
|
|
2910
2969
|
# },
|
|
2911
2970
|
# next_page_token: "NextPageToken",
|
|
@@ -3042,6 +3101,7 @@ module Aws::CostExplorer
|
|
|
3042
3101
|
# cost_categories: {
|
|
3043
3102
|
# key: "CostCategoryName",
|
|
3044
3103
|
# values: ["Value"],
|
|
3104
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
3045
3105
|
# },
|
|
3046
3106
|
# },
|
|
3047
3107
|
# configuration: {
|
|
@@ -3219,6 +3279,7 @@ module Aws::CostExplorer
|
|
|
3219
3279
|
# cost_categories: {
|
|
3220
3280
|
# key: "CostCategoryName",
|
|
3221
3281
|
# values: ["Value"],
|
|
3282
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
3222
3283
|
# },
|
|
3223
3284
|
# },
|
|
3224
3285
|
# metrics: ["MetricName"],
|
|
@@ -3357,6 +3418,7 @@ module Aws::CostExplorer
|
|
|
3357
3418
|
# cost_categories: {
|
|
3358
3419
|
# key: "CostCategoryName",
|
|
3359
3420
|
# values: ["Value"],
|
|
3421
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
3360
3422
|
# },
|
|
3361
3423
|
# },
|
|
3362
3424
|
# }
|
|
@@ -3487,6 +3549,7 @@ module Aws::CostExplorer
|
|
|
3487
3549
|
# cost_categories: {
|
|
3488
3550
|
# key: "CostCategoryName",
|
|
3489
3551
|
# values: ["Value"],
|
|
3552
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
3490
3553
|
# },
|
|
3491
3554
|
# },
|
|
3492
3555
|
# next_token: "NextPageToken",
|
|
@@ -3611,6 +3674,7 @@ module Aws::CostExplorer
|
|
|
3611
3674
|
# cost_categories: {
|
|
3612
3675
|
# key: "CostCategoryName",
|
|
3613
3676
|
# values: ["Value"],
|
|
3677
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
3614
3678
|
# },
|
|
3615
3679
|
# },
|
|
3616
3680
|
# }
|
|
@@ -3796,6 +3860,7 @@ module Aws::CostExplorer
|
|
|
3796
3860
|
# cost_categories: {
|
|
3797
3861
|
# key: "CostCategoryName",
|
|
3798
3862
|
# values: ["Value"],
|
|
3863
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
3799
3864
|
# },
|
|
3800
3865
|
# },
|
|
3801
3866
|
# prediction_interval_level: 1,
|
|
@@ -5728,6 +5793,7 @@ module Aws::CostExplorer
|
|
|
5728
5793
|
# cost_categories: {
|
|
5729
5794
|
# key: "CostCategoryName",
|
|
5730
5795
|
# values: ["Value"],
|
|
5796
|
+
# match_options: ["EQUALS"], # accepts EQUALS, STARTS_WITH, ENDS_WITH, CONTAINS, CASE_SENSITIVE, CASE_INSENSITIVE
|
|
5731
5797
|
# },
|
|
5732
5798
|
# },
|
|
5733
5799
|
# },
|
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.51.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: 2020-10-
|
|
11
|
+
date: 2020-10-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|