aws-sdk-costexplorer 1.67.0 → 1.71.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7bcd41519e94183ac15c633a082fcdbf67580192efb69f5fe9fe90eb87f3121
4
- data.tar.gz: a3349b3c4f3e567f9fee90e71d94b3856205370df9a473cf5dcbe487e9f0f94f
3
+ metadata.gz: 28f9d0a2203ab77104f736169c34cc4ed2004e3bf8f66fdebb19c2687b76ee2f
4
+ data.tar.gz: 666a7d4a8cef6cd2c7d40373dea88298172e34474f4f2ef9a7d05dc3d2853095
5
5
  SHA512:
6
- metadata.gz: 9e1f3ff791542e6daf5c6d26b8ccdb6f6309bde1ef1f999056218dbfe9e823c653b20c9508f5bc80e80e9c5e58b942161080c491a727d582796cd8f4ea2ab4bc
7
- data.tar.gz: 12abee5901e5f9464e68a2aab1f8516295204fb986f9bdb5d625aa0aef717b46e7a1f87f7864f5d35092dc89805b6d2e76127216c4087e59dfd4663439adec2b
6
+ metadata.gz: d88353b54a5759d6f57242a3bfb07c7a7b3233562ae9b67d266006370747fc1d88e4f40104c58e853c1e3ff289e6c593217ab308172e229d5b8e8701b17ed474
7
+ data.tar.gz: 94cc0e5b43d25c66fc24d7b0cd0f323637d01e4a667b7edd86b1471688ba3ce4094bcfb8e6ef97026c6de0602f851be63370c2a1da23e6778a44486d733b0208
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2022-01-11)
5
+ ------------------
6
+
7
+ * Feature - Doc only update for Cost Explorer API that fixes missing clarifications for MatchOptions definitions
8
+
9
+ 1.70.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.69.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.68.0 (2021-11-04)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.67.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.71.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::CostExplorer
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
80
 
@@ -119,7 +121,9 @@ module Aws::CostExplorer
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::CostExplorer
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -285,6 +293,15 @@ module Aws::CostExplorer
285
293
  # ** Please note ** When response stubbing is enabled, no HTTP
286
294
  # requests are made, and retries are disabled.
287
295
  #
296
+ # @option options [Boolean] :use_dualstack_endpoint
297
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
298
+ # will be used if available.
299
+ #
300
+ # @option options [Boolean] :use_fips_endpoint
301
+ # When set to `true`, fips compatible endpoints will be used if available.
302
+ # When a `fips` region is used, the region is normalized and this config
303
+ # is set to `true`.
304
+ #
288
305
  # @option options [Boolean] :validate_params (true)
289
306
  # When `true`, request parameters are validated before
290
307
  # sending the request.
@@ -296,7 +313,7 @@ module Aws::CostExplorer
296
313
  # seconds to wait when opening a HTTP session before raising a
297
314
  # `Timeout::Error`.
298
315
  #
299
- # @option options [Integer] :http_read_timeout (60) The default
316
+ # @option options [Float] :http_read_timeout (60) The default
300
317
  # number of seconds to wait for response data. This value can
301
318
  # safely be set per-request on the session.
302
319
  #
@@ -312,6 +329,9 @@ module Aws::CostExplorer
312
329
  # disables this behaviour. This value can safely be set per
313
330
  # request on the session.
314
331
  #
332
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
333
+ # in seconds.
334
+ #
315
335
  # @option options [Boolean] :http_wire_trace (false) When `true`,
316
336
  # HTTP debug output will be sent to the `:logger`.
317
337
  #
@@ -954,6 +974,12 @@ module Aws::CostExplorer
954
974
  # You can nest `Expression` objects to define any combination of
955
975
  # dimension filters. For more information, see [Expression][1].
956
976
  #
977
+ # The default values are `EQUALS` and `CASE_SENSITIVE`. Valid values for
978
+ # `MatchOptions` for `Dimensions` are `EQUALS` and `CASE_SENSITIVE`.
979
+ #
980
+ # Valid values for `MatchOptions` for `CostCategories` and `Tags` are
981
+ # `EQUALS`, `ABSENT`, and `CASE_SENSITIVE`.
982
+ #
957
983
  #
958
984
  #
959
985
  # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html
@@ -1136,6 +1162,12 @@ module Aws::CostExplorer
1136
1162
  # group by or filter by a `ResourceId`. It requires the [Expression][1]
1137
1163
  # `"SERVICE = Amazon Elastic Compute Cloud - Compute"` in the filter.
1138
1164
  #
1165
+ # The default values are `EQUALS` and `CASE_SENSITIVE`. Valid values for
1166
+ # `MatchOptions` for `Dimensions` are `EQUALS` and `CASE_SENSITIVE`.
1167
+ #
1168
+ # Valid values for `MatchOptions` for `CostCategories` and `Tags` are
1169
+ # `EQUALS`, `ABSENT`, and `CASE_SENSITIVE`.
1170
+ #
1139
1171
  #
1140
1172
  #
1141
1173
  # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html
@@ -1631,7 +1663,11 @@ module Aws::CostExplorer
1631
1663
  #
1632
1664
  # @option params [required, String] :dimension
1633
1665
  # The name of the dimension. Each `Dimension` is available for a
1634
- # different `Context`. For more information, see `Context`.
1666
+ # different `Context`. For more information, see [Context][1].
1667
+ #
1668
+ #
1669
+ #
1670
+ # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_GetDimensionValues.html#awscostmanagement-GetDimensionValues-request-Context
1635
1671
  #
1636
1672
  # @option params [String] :context
1637
1673
  # The context for the call to `GetDimensionValues`. This can be
@@ -2020,8 +2056,7 @@ module Aws::CostExplorer
2020
2056
  #
2021
2057
  # `GetReservationCoverage` uses the same [Expression][1] object as the
2022
2058
  # other operations, but only `AND` is supported among each dimension.
2023
- # You can nest only one level deep. If there are multiple values for a
2024
- # dimension, they are OR'd together.
2059
+ # You can nest only one level deep.
2025
2060
  #
2026
2061
  # If you don't provide a `SERVICE` filter, Cost Explorer defaults to
2027
2062
  # EC2.
@@ -2476,8 +2511,7 @@ module Aws::CostExplorer
2476
2511
  #
2477
2512
  # `GetReservationUtilization` uses the same [Expression][1] object as
2478
2513
  # the other operations, but only `AND` is supported among each
2479
- # dimension, and nesting is supported up to only one level deep. If
2480
- # there are multiple values for a dimension, they are OR'd together.
2514
+ # dimension, and nesting is supported up to only one level deep.
2481
2515
  #
2482
2516
  #
2483
2517
  #
@@ -2915,9 +2949,20 @@ module Aws::CostExplorer
2915
2949
  #
2916
2950
  # * `INSTANCE_FAMILY`
2917
2951
  #
2952
+ # <note markdown="1"> `GetSavingsPlansCoverage` doesn't support filtering by tags.
2953
+ # `GetSavingsPlansCoverage` also doesn't support the `OR` operator
2954
+ # between filter dimensions. For the full request syntax with supported
2955
+ # parameters, see [Examples][1].
2956
+ #
2957
+ # </note>
2958
+ #
2918
2959
  # To determine valid values for a dimension, use the
2919
2960
  # `GetDimensionValues` operation.
2920
2961
  #
2962
+ #
2963
+ #
2964
+ # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_GetSavingsPlansCoverage.html#API_GetSavingsPlansCoverage_Examples
2965
+ #
2921
2966
  # @option params [required, Types::DateInterval] :time_period
2922
2967
  # The time period that you want the usage and costs for. The `Start`
2923
2968
  # date must be within 13 months. The `End` date must be after the
@@ -2948,10 +2993,9 @@ module Aws::CostExplorer
2948
2993
  # * `INSTANCE_FAMILY`
2949
2994
  #
2950
2995
  # `GetSavingsPlansCoverage` uses the same [Expression][1] object as the
2951
- # other operations, but only `AND` is supported among each dimension. If
2952
- # there are multiple values for a dimension, they are OR'd together.
2996
+ # other operations, but only `AND` is supported among each dimension.
2953
2997
  #
2954
- # Cost category is also supported.
2998
+ # Cost category is supported. Tags are not supported.
2955
2999
  #
2956
3000
  #
2957
3001
  #
@@ -3227,8 +3271,17 @@ module Aws::CostExplorer
3227
3271
  # <note markdown="1"> You cannot group by any dimension values for
3228
3272
  # `GetSavingsPlansUtilization`.
3229
3273
  #
3274
+ # `GetSavingsPlansUtilization` doesn't support filtering by tags.
3275
+ # `GetSavingsPlansUtilization` also doesn't support the `OR` operator
3276
+ # between filter dimensions. For the full request syntax with supported
3277
+ # parameters, see [Examples][1].
3278
+ #
3230
3279
  # </note>
3231
3280
  #
3281
+ #
3282
+ #
3283
+ # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_GetSavingsPlansUtilization.html#API_GetSavingsPlansUtilization_Examples
3284
+ #
3232
3285
  # @option params [required, Types::DateInterval] :time_period
3233
3286
  # The time period that you want the usage and costs for. The `Start`
3234
3287
  # date must be within 13 months. The `End` date must be after the
@@ -3262,6 +3315,8 @@ module Aws::CostExplorer
3262
3315
  # the other operations, but only `AND` is supported among each
3263
3316
  # dimension.
3264
3317
  #
3318
+ # Filtering by tags isn't supported.
3319
+ #
3265
3320
  #
3266
3321
  #
3267
3322
  # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html
@@ -3377,8 +3432,17 @@ module Aws::CostExplorer
3377
3432
  # <note markdown="1"> `GetSavingsPlanUtilizationDetails` internally groups data by
3378
3433
  # `SavingsPlansArn`.
3379
3434
  #
3435
+ # `GetSavingsPlansUtilizationDetails` doesn't support filtering by
3436
+ # tags. `GetSavingsPlansUtilizationDetails` also doesn't support the
3437
+ # `OR` operator between filter dimensions. For the full request syntax
3438
+ # with supported parameters, see [Examples][1].
3439
+ #
3380
3440
  # </note>
3381
3441
  #
3442
+ #
3443
+ #
3444
+ # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_GetSavingsPlansUtilizationDetails.html#API_GetSavingsPlansUtilizationDetails_Examples
3445
+ #
3382
3446
  # @option params [required, Types::DateInterval] :time_period
3383
3447
  # The time period that you want the usage and costs for. The `Start`
3384
3448
  # date must be within 13 months. The `End` date must be after the
@@ -3403,6 +3467,8 @@ module Aws::CostExplorer
3403
3467
  # object as the other operations, but only `AND` is supported among each
3404
3468
  # dimension.
3405
3469
  #
3470
+ # Filtering by tags isn't supported.
3471
+ #
3406
3472
  #
3407
3473
  #
3408
3474
  # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html
@@ -4166,7 +4232,7 @@ module Aws::CostExplorer
4166
4232
  params: params,
4167
4233
  config: config)
4168
4234
  context[:gem_name] = 'aws-sdk-costexplorer'
4169
- context[:gem_version] = '1.67.0'
4235
+ context[:gem_version] = '1.71.0'
4170
4236
  Seahorse::Client::Request.new(handlers, context)
4171
4237
  end
4172
4238
 
@@ -1662,8 +1662,8 @@ module Aws::CostExplorer
1662
1662
  include Aws::Structure
1663
1663
  end
1664
1664
 
1665
- # Details about the Amazon ES instances that Amazon Web Services
1666
- # recommends that you purchase.
1665
+ # Details about the Amazon OpenSearch Service instances that Amazon Web
1666
+ # Services recommends that you purchase.
1667
1667
  #
1668
1668
  # @!attribute [rw] instance_class
1669
1669
  # The class of instance that Amazon Web Services recommends.
@@ -2230,6 +2230,13 @@ module Aws::CostExplorer
2230
2230
  # service. You can nest `Expression` objects to define any combination
2231
2231
  # of dimension filters. For more information, see [Expression][1].
2232
2232
  #
2233
+ # The default values are `EQUALS` and `CASE_SENSITIVE`. Valid values
2234
+ # for `MatchOptions` for `Dimensions` are `EQUALS` and
2235
+ # `CASE_SENSITIVE`.
2236
+ #
2237
+ # Valid values for `MatchOptions` for `CostCategories` and `Tags` are
2238
+ # `EQUALS`, `ABSENT`, and `CASE_SENSITIVE`.
2239
+ #
2233
2240
  #
2234
2241
  #
2235
2242
  # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html
@@ -2403,6 +2410,13 @@ module Aws::CostExplorer
2403
2410
  # [Expression][1] `"SERVICE = Amazon Elastic Compute Cloud - Compute"`
2404
2411
  # in the filter.
2405
2412
  #
2413
+ # The default values are `EQUALS` and `CASE_SENSITIVE`. Valid values
2414
+ # for `MatchOptions` for `Dimensions` are `EQUALS` and
2415
+ # `CASE_SENSITIVE`.
2416
+ #
2417
+ # Valid values for `MatchOptions` for `CostCategories` and `Tags` are
2418
+ # `EQUALS`, `ABSENT`, and `CASE_SENSITIVE`.
2419
+ #
2406
2420
  #
2407
2421
  #
2408
2422
  # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html
@@ -2945,7 +2959,11 @@ module Aws::CostExplorer
2945
2959
  #
2946
2960
  # @!attribute [rw] dimension
2947
2961
  # The name of the dimension. Each `Dimension` is available for a
2948
- # different `Context`. For more information, see `Context`.
2962
+ # different `Context`. For more information, see [Context][1].
2963
+ #
2964
+ #
2965
+ #
2966
+ # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_GetDimensionValues.html#awscostmanagement-GetDimensionValues-request-Context
2949
2967
  # @return [String]
2950
2968
  #
2951
2969
  # @!attribute [rw] context
@@ -3435,8 +3453,7 @@ module Aws::CostExplorer
3435
3453
  #
3436
3454
  # `GetReservationCoverage` uses the same [Expression][1] object as the
3437
3455
  # other operations, but only `AND` is supported among each dimension.
3438
- # You can nest only one level deep. If there are multiple values for a
3439
- # dimension, they are OR'd together.
3456
+ # You can nest only one level deep.
3440
3457
  #
3441
3458
  # If you don't provide a `SERVICE` filter, Cost Explorer defaults to
3442
3459
  # EC2.
@@ -3827,8 +3844,7 @@ module Aws::CostExplorer
3827
3844
  #
3828
3845
  # `GetReservationUtilization` uses the same [Expression][1] object as
3829
3846
  # the other operations, but only `AND` is supported among each
3830
- # dimension, and nesting is supported up to only one level deep. If
3831
- # there are multiple values for a dimension, they are OR'd together.
3847
+ # dimension, and nesting is supported up to only one level deep.
3832
3848
  #
3833
3849
  #
3834
3850
  #
@@ -4187,10 +4203,9 @@ module Aws::CostExplorer
4187
4203
  #
4188
4204
  # `GetSavingsPlansCoverage` uses the same [Expression][1] object as
4189
4205
  # the other operations, but only `AND` is supported among each
4190
- # dimension. If there are multiple values for a dimension, they are
4191
- # OR'd together.
4206
+ # dimension.
4192
4207
  #
4193
- # Cost category is also supported.
4208
+ # Cost category is supported. Tags are not supported.
4194
4209
  #
4195
4210
  #
4196
4211
  #
@@ -4475,6 +4490,8 @@ module Aws::CostExplorer
4475
4490
  # object as the other operations, but only `AND` is supported among
4476
4491
  # each dimension.
4477
4492
  #
4493
+ # Filtering by tags isn't supported.
4494
+ #
4478
4495
  #
4479
4496
  #
4480
4497
  # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html
@@ -4640,6 +4657,8 @@ module Aws::CostExplorer
4640
4657
  # the other operations, but only `AND` is supported among each
4641
4658
  # dimension.
4642
4659
  #
4660
+ # Filtering by tags isn't supported.
4661
+ #
4643
4662
  #
4644
4663
  #
4645
4664
  # [1]: https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_Expression.html
@@ -5152,8 +5171,8 @@ module Aws::CostExplorer
5152
5171
  # @return [Types::ElastiCacheInstanceDetails]
5153
5172
  #
5154
5173
  # @!attribute [rw] es_instance_details
5155
- # The Amazon ES instances that Amazon Web Services recommends that you
5156
- # purchase.
5174
+ # The Amazon OpenSearch Service instances that Amazon Web Services
5175
+ # recommends that you purchase.
5157
5176
  # @return [Types::ESInstanceDetails]
5158
5177
  #
5159
5178
  # @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/InstanceDetails AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-costexplorer/customizations'
48
48
  # @!group service
49
49
  module Aws::CostExplorer
50
50
 
51
- GEM_VERSION = '1.67.0'
51
+ GEM_VERSION = '1.71.0'
52
52
 
53
53
  end
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.67.0
4
+ version: 1.71.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: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2022-01-11 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.121.2
22
+ version: 3.125.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.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement