aws-sdk-costexplorer 1.89.0 → 1.91.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '094f8b338f6e5883fb40f498dbdb21fa505f2ff4e908556cebeb6538abc39f87'
4
- data.tar.gz: c0e3205a80ccb3760d64cdd601b378912318144e4d79974f4ca795f5b5806de6
3
+ metadata.gz: 736ea921ddedb6d4d0572c7dd45e0f6a3529191c7f691df6e624eafe3d0ee30a
4
+ data.tar.gz: 76f03b9f579ad73dfc85c2282020627838902c64f465c2593644478c94094e33
5
5
  SHA512:
6
- metadata.gz: 7db8c6acbf859d831e9a68425bfa1a14d90c3052cd0ba515ef5529fa4b68b9e4f05bec913990509cad9713cf62f70a85f4a11aab2bce9be5d0dc03f89db1ac2a
7
- data.tar.gz: 9f395cc78bb1a510202dce526d1be1d5a159a2c59e0d8b87bc617b29efbeb40f138f3d77ca0479c57c029a832dcc7b2991e99ea1110937bcb677f1a62c59d29a
6
+ metadata.gz: 8c4d0dacf0990be039362ec4623f116da8f44407c5301752ef44bfec227a02a383d27d92085797095c37a2d31d9b696b696cf00267b9e57e32af360ed709ee36
7
+ data.tar.gz: 6ec4912a7c54cca9549ee9352117be2c3983a54212fbd7e469f4878bad4c2d5e8ffd441deb06057844d9ba2679f8b97f9f47cbb8c167e2b8c2cfaabc446c3413
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.91.0 (2023-09-27)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.90.0 (2023-08-22)
10
+ ------------------
11
+
12
+ * Feature - This release adds the LastUpdatedDate and LastUsedDate timestamps to help you manage your cost allocation tags.
13
+
4
14
  1.89.0 (2023-07-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.89.0
1
+ 1.91.0
@@ -3355,8 +3355,8 @@ module Aws::CostExplorer
3355
3355
  end
3356
3356
 
3357
3357
  # Retrieves the details for a Savings Plan recommendation. These details
3358
- # include the hourly data-points that construct the new cost, coverage,
3359
- # and utilization charts.
3358
+ # include the hourly data-points that construct the cost, coverage, and
3359
+ # utilization charts.
3360
3360
  #
3361
3361
  # @option params [required, String] :recommendation_detail_id
3362
3362
  # The ID that is associated with the Savings Plan recommendation.
@@ -4479,6 +4479,8 @@ module Aws::CostExplorer
4479
4479
  # resp.cost_allocation_tags[0].tag_key #=> String
4480
4480
  # resp.cost_allocation_tags[0].type #=> String, one of "AWSGenerated", "UserDefined"
4481
4481
  # resp.cost_allocation_tags[0].status #=> String, one of "Active", "Inactive"
4482
+ # resp.cost_allocation_tags[0].last_updated_date #=> String
4483
+ # resp.cost_allocation_tags[0].last_used_date #=> String
4482
4484
  # resp.next_token #=> String
4483
4485
  #
4484
4486
  # @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ListCostAllocationTags AWS API Documentation
@@ -5150,7 +5152,7 @@ module Aws::CostExplorer
5150
5152
  params: params,
5151
5153
  config: config)
5152
5154
  context[:gem_name] = 'aws-sdk-costexplorer'
5153
- context[:gem_version] = '1.89.0'
5155
+ context[:gem_version] = '1.91.0'
5154
5156
  Seahorse::Client::Request.new(handlers, context)
5155
5157
  end
5156
5158
 
@@ -394,6 +394,8 @@ module Aws::CostExplorer
394
394
  CostAllocationTag.add_member(:tag_key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "TagKey"))
395
395
  CostAllocationTag.add_member(:type, Shapes::ShapeRef.new(shape: CostAllocationTagType, required: true, location_name: "Type"))
396
396
  CostAllocationTag.add_member(:status, Shapes::ShapeRef.new(shape: CostAllocationTagStatus, required: true, location_name: "Status"))
397
+ CostAllocationTag.add_member(:last_updated_date, Shapes::ShapeRef.new(shape: ZonedDateTime, location_name: "LastUpdatedDate"))
398
+ CostAllocationTag.add_member(:last_used_date, Shapes::ShapeRef.new(shape: ZonedDateTime, location_name: "LastUsedDate"))
397
399
  CostAllocationTag.struct_class = Types::CostAllocationTag
398
400
 
399
401
  CostAllocationTagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
@@ -420,12 +420,23 @@ module Aws::CostExplorer
420
420
  # The status of a cost allocation tag.
421
421
  # @return [String]
422
422
  #
423
+ # @!attribute [rw] last_updated_date
424
+ # The last date that the tag was either activated or deactivated.
425
+ # @return [String]
426
+ #
427
+ # @!attribute [rw] last_used_date
428
+ # The last month that the tag was used on an Amazon Web Services
429
+ # resource.
430
+ # @return [String]
431
+ #
423
432
  # @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/CostAllocationTag AWS API Documentation
424
433
  #
425
434
  class CostAllocationTag < Struct.new(
426
435
  :tag_key,
427
436
  :type,
428
- :status)
437
+ :status,
438
+ :last_updated_date,
439
+ :last_used_date)
429
440
  SENSITIVE = []
430
441
  include Aws::Structure
431
442
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-costexplorer/customizations'
52
52
  # @!group service
53
53
  module Aws::CostExplorer
54
54
 
55
- GEM_VERSION = '1.89.0'
55
+ GEM_VERSION = '1.91.0'
56
56
 
57
57
  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.89.0
4
+ version: 1.91.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: 2023-07-24 00:00:00.000000000 Z
11
+ date: 2023-09-27 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.177.0
22
+ version: 3.184.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.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement