aws-sdk-costexplorer 1.89.0 → 1.90.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: '094f8b338f6e5883fb40f498dbdb21fa505f2ff4e908556cebeb6538abc39f87'
4
- data.tar.gz: c0e3205a80ccb3760d64cdd601b378912318144e4d79974f4ca795f5b5806de6
3
+ metadata.gz: 3b8e8cb02fa7b31cf2b1445ca56a6da49f579d8880d7ef7c6b510b62fc783a58
4
+ data.tar.gz: b4f316ed2a7941088c37c65971ca9962f51e937bf510f9645d127445b1519b36
5
5
  SHA512:
6
- metadata.gz: 7db8c6acbf859d831e9a68425bfa1a14d90c3052cd0ba515ef5529fa4b68b9e4f05bec913990509cad9713cf62f70a85f4a11aab2bce9be5d0dc03f89db1ac2a
7
- data.tar.gz: 9f395cc78bb1a510202dce526d1be1d5a159a2c59e0d8b87bc617b29efbeb40f138f3d77ca0479c57c029a832dcc7b2991e99ea1110937bcb677f1a62c59d29a
6
+ metadata.gz: 67b71613f08bc464003b8f10983d248ab899afe73c336a02964f2be55df652af7fc254cfd6191fc080be1c093f8a7d9462619fd7324f10308e9a3a669be04acc
7
+ data.tar.gz: bcb1e455acb54110267bfc9a849427dee9d245f0b962da5ec1ba86da456d544989f7c55b167322483e173ea3084a83e55b9e505004d936eb0cecf065fe8de894
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.90.0 (2023-08-22)
5
+ ------------------
6
+
7
+ * Feature - This release adds the LastUpdatedDate and LastUsedDate timestamps to help you manage your cost allocation tags.
8
+
4
9
  1.89.0 (2023-07-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.89.0
1
+ 1.90.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.90.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.90.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.90.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-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core