aws-sdk-rds 1.121.0 → 1.122.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: 67b544e9fb4f538501cdfab6d32b0dab2399d41cbf4741dc9f91acc1da2d0a08
4
- data.tar.gz: 279168bbbc7ba2400fe68ea0bb83c50fb64c901f964131490c2c5984fad825ef
3
+ metadata.gz: 38315f0d283be59d1ca54ab60ce8539d30c2acc590aac6b3e988b594dced9f51
4
+ data.tar.gz: 03517d41672df929823982787fc75de30274021260d38e4cbc2b26f02b400df7
5
5
  SHA512:
6
- metadata.gz: 1419fe011fc01af7d1fd4801b4c94e872c933a73ae5b215be158ece98ce0e84632a8c8a6c150849ce56e1cde6edf3f7f0d262c209d6ac59245217915e53dbf78
7
- data.tar.gz: 7208d04938132c838e60281395590715518e4fec0fa7a763767db6733977c1fc32e6b456b34bc0a4ee453ad06ee02bde9e4f239e02d2315844ddc5858db8edad
6
+ metadata.gz: 0160dc2af6c1326a73736df31d02e391279c3b3b12ac01ba2348963fbe7440a6f49c78819ef092caf2e4e547e8b3dfa796aec135eb055930d9cc0910af0fa40a
7
+ data.tar.gz: c4c5cde20ca864ce776fc5f1d06876ac64844f9d3e69593f524e835f8d128957c2b67d3523e063f4100be22bbb9476f70f9233f3765cac3ca010613c49d33795
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.122.0 (2021-07-21)
5
+ ------------------
6
+
7
+ * Feature - Adds the OriginalSnapshotCreateTime field to the DBSnapshot response object. This field timestamps the underlying data of a snapshot and doesn't change when the snapshot is copied.
8
+
4
9
  1.121.0 (2021-06-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.121.0
1
+ 1.122.0
data/lib/aws-sdk-rds.rb CHANGED
@@ -74,6 +74,6 @@ require_relative 'aws-sdk-rds/customizations'
74
74
  # @!group service
75
75
  module Aws::RDS
76
76
 
77
- GEM_VERSION = '1.121.0'
77
+ GEM_VERSION = '1.122.0'
78
78
 
79
79
  end
@@ -1657,6 +1657,7 @@ module Aws::RDS
1657
1657
  # resp.db_snapshot.tag_list #=> Array
1658
1658
  # resp.db_snapshot.tag_list[0].key #=> String
1659
1659
  # resp.db_snapshot.tag_list[0].value #=> String
1660
+ # resp.db_snapshot.original_snapshot_create_time #=> Time
1660
1661
  #
1661
1662
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
1662
1663
  #
@@ -5167,6 +5168,7 @@ module Aws::RDS
5167
5168
  # resp.db_snapshot.tag_list #=> Array
5168
5169
  # resp.db_snapshot.tag_list[0].key #=> String
5169
5170
  # resp.db_snapshot.tag_list[0].value #=> String
5171
+ # resp.db_snapshot.original_snapshot_create_time #=> Time
5170
5172
  #
5171
5173
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
5172
5174
  #
@@ -6645,6 +6647,7 @@ module Aws::RDS
6645
6647
  # resp.db_snapshot.tag_list #=> Array
6646
6648
  # resp.db_snapshot.tag_list[0].key #=> String
6647
6649
  # resp.db_snapshot.tag_list[0].value #=> String
6650
+ # resp.db_snapshot.original_snapshot_create_time #=> Time
6648
6651
  #
6649
6652
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
6650
6653
  #
@@ -7850,11 +7853,20 @@ module Aws::RDS
7850
7853
  #
7851
7854
  # Supported filters:
7852
7855
  #
7856
+ # * `clone-group-id` - Accepts clone group identifiers. The results list
7857
+ # will only include information about the DB clusters associated with
7858
+ # these clone groups.
7859
+ #
7853
7860
  # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
7854
7861
  # Amazon Resource Names (ARNs). The results list will only include
7855
7862
  # information about the DB clusters identified by these ARNs.
7856
7863
  #
7857
- # ^
7864
+ # * `domain` - Accepts Active Directory directory IDs. The results list
7865
+ # will only include information about the DB clusters associated with
7866
+ # these domains.
7867
+ #
7868
+ # * `engine` - Accepts engine names. The results list will only include
7869
+ # information about the DB clusters for these engines.
7858
7870
  #
7859
7871
  # @option params [Integer] :max_records
7860
7872
  # The maximum number of records to include in the response. If more
@@ -9507,6 +9519,7 @@ module Aws::RDS
9507
9519
  # resp.db_snapshots[0].tag_list #=> Array
9508
9520
  # resp.db_snapshots[0].tag_list[0].key #=> String
9509
9521
  # resp.db_snapshots[0].tag_list[0].value #=> String
9522
+ # resp.db_snapshots[0].original_snapshot_create_time #=> Time
9510
9523
  #
9511
9524
  #
9512
9525
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -10227,15 +10240,7 @@ module Aws::RDS
10227
10240
  # ^
10228
10241
  #
10229
10242
  # @option params [Array<Types::Filter>] :filters
10230
- # A filter that specifies one or more global DB clusters to describe.
10231
- #
10232
- # Supported filters:
10233
- #
10234
- # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
10235
- # Amazon Resource Names (ARNs). The results list will only include
10236
- # information about the DB clusters identified by these ARNs.
10237
- #
10238
- # ^
10243
+ # This parameter isn't currently supported.
10239
10244
  #
10240
10245
  # @option params [Integer] :max_records
10241
10246
  # The maximum number of records to include in the response. If more
@@ -14165,6 +14170,7 @@ module Aws::RDS
14165
14170
  # resp.db_snapshot.tag_list #=> Array
14166
14171
  # resp.db_snapshot.tag_list[0].key #=> String
14167
14172
  # resp.db_snapshot.tag_list[0].value #=> String
14173
+ # resp.db_snapshot.original_snapshot_create_time #=> Time
14168
14174
  #
14169
14175
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
14170
14176
  #
@@ -20069,7 +20075,7 @@ module Aws::RDS
20069
20075
  params: params,
20070
20076
  config: config)
20071
20077
  context[:gem_name] = 'aws-sdk-rds'
20072
- context[:gem_version] = '1.121.0'
20078
+ context[:gem_version] = '1.122.0'
20073
20079
  Seahorse::Client::Request.new(handlers, context)
20074
20080
  end
20075
20081
 
@@ -1608,6 +1608,7 @@ module Aws::RDS
1608
1608
  DBSnapshot.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
1609
1609
  DBSnapshot.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
1610
1610
  DBSnapshot.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
1611
+ DBSnapshot.add_member(:original_snapshot_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "OriginalSnapshotCreateTime"))
1611
1612
  DBSnapshot.struct_class = Types::DBSnapshot
1612
1613
 
1613
1614
  DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
@@ -45,7 +45,7 @@ module Aws::RDS
45
45
  alias :db_snapshot_identifier :snapshot_id
46
46
 
47
47
  # Specifies when the snapshot was taken in Coordinated Universal Time
48
- # (UTC).
48
+ # (UTC). Changes for the copy when the snapshot is copied.
49
49
  # @return [Time]
50
50
  def snapshot_create_time
51
51
  data[:snapshot_create_time]
@@ -147,8 +147,8 @@ module Aws::RDS
147
147
  end
148
148
 
149
149
  # The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was
150
- # copied from. It only has value in case of cross-customer or
151
- # cross-region copy.
150
+ # copied from. It only has a value in the case of a cross-account or
151
+ # cross-Region copy.
152
152
  # @return [String]
153
153
  def source_db_snapshot_identifier
154
154
  data[:source_db_snapshot_identifier]
@@ -231,6 +231,13 @@ module Aws::RDS
231
231
  data[:tag_list]
232
232
  end
233
233
 
234
+ # Specifies the time of the CreateDBSnapshot operation in Coordinated
235
+ # Universal Time (UTC). Doesn't change when the snapshot is copied.
236
+ # @return [Time]
237
+ def original_snapshot_create_time
238
+ data[:original_snapshot_create_time]
239
+ end
240
+
234
241
  # @!endgroup
235
242
 
236
243
  # @return [Client]
@@ -1997,11 +1997,20 @@ module Aws::RDS
1997
1997
  #
1998
1998
  # Supported filters:
1999
1999
  #
2000
+ # * `clone-group-id` - Accepts clone group identifiers. The results list
2001
+ # will only include information about the DB clusters associated with
2002
+ # these clone groups.
2003
+ #
2000
2004
  # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
2001
2005
  # Amazon Resource Names (ARNs). The results list will only include
2002
2006
  # information about the DB clusters identified by these ARNs.
2003
2007
  #
2004
- # ^
2008
+ # * `domain` - Accepts Active Directory directory IDs. The results list
2009
+ # will only include information about the DB clusters associated with
2010
+ # these domains.
2011
+ #
2012
+ # * `engine` - Accepts engine names. The results list will only include
2013
+ # information about the DB clusters for these engines.
2005
2014
  # @option options [Boolean] :include_shared
2006
2015
  # Optional Boolean parameter that specifies whether the output includes
2007
2016
  # information about clusters shared from other Amazon Web Services
@@ -7919,7 +7919,7 @@ module Aws::RDS
7919
7919
  #
7920
7920
  # @!attribute [rw] snapshot_create_time
7921
7921
  # Specifies when the snapshot was taken in Coordinated Universal Time
7922
- # (UTC).
7922
+ # (UTC). Changes for the copy when the snapshot is copied.
7923
7923
  # @return [Time]
7924
7924
  #
7925
7925
  # @!attribute [rw] engine
@@ -7989,8 +7989,8 @@ module Aws::RDS
7989
7989
  #
7990
7990
  # @!attribute [rw] source_db_snapshot_identifier
7991
7991
  # The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was
7992
- # copied from. It only has value in case of cross-customer or
7993
- # cross-region copy.
7992
+ # copied from. It only has a value in the case of a cross-account or
7993
+ # cross-Region copy.
7994
7994
  # @return [String]
7995
7995
  #
7996
7996
  # @!attribute [rw] storage_type
@@ -8052,6 +8052,11 @@ module Aws::RDS
8052
8052
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
8053
8053
  # @return [Array<Types::Tag>]
8054
8054
  #
8055
+ # @!attribute [rw] original_snapshot_create_time
8056
+ # Specifies the time of the CreateDBSnapshot operation in Coordinated
8057
+ # Universal Time (UTC). Doesn't change when the snapshot is copied.
8058
+ # @return [Time]
8059
+ #
8055
8060
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
8056
8061
  #
8057
8062
  class DBSnapshot < Struct.new(
@@ -8083,7 +8088,8 @@ module Aws::RDS
8083
8088
  :iam_database_authentication_enabled,
8084
8089
  :processor_features,
8085
8090
  :dbi_resource_id,
8086
- :tag_list)
8091
+ :tag_list,
8092
+ :original_snapshot_create_time)
8087
8093
  SENSITIVE = []
8088
8094
  include Aws::Structure
8089
8095
  end
@@ -9610,11 +9616,20 @@ module Aws::RDS
9610
9616
  #
9611
9617
  # Supported filters:
9612
9618
  #
9619
+ # * `clone-group-id` - Accepts clone group identifiers. The results
9620
+ # list will only include information about the DB clusters
9621
+ # associated with these clone groups.
9622
+ #
9613
9623
  # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
9614
9624
  # Amazon Resource Names (ARNs). The results list will only include
9615
9625
  # information about the DB clusters identified by these ARNs.
9616
9626
  #
9617
- # ^
9627
+ # * `domain` - Accepts Active Directory directory IDs. The results
9628
+ # list will only include information about the DB clusters
9629
+ # associated with these domains.
9630
+ #
9631
+ # * `engine` - Accepts engine names. The results list will only
9632
+ # include information about the DB clusters for these engines.
9618
9633
  # @return [Array<Types::Filter>]
9619
9634
  #
9620
9635
  # @!attribute [rw] max_records
@@ -11269,15 +11284,7 @@ module Aws::RDS
11269
11284
  # @return [String]
11270
11285
  #
11271
11286
  # @!attribute [rw] filters
11272
- # A filter that specifies one or more global DB clusters to describe.
11273
- #
11274
- # Supported filters:
11275
- #
11276
- # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
11277
- # Amazon Resource Names (ARNs). The results list will only include
11278
- # information about the DB clusters identified by these ARNs.
11279
- #
11280
- # ^
11287
+ # This parameter isn't currently supported.
11281
11288
  # @return [Array<Types::Filter>]
11282
11289
  #
11283
11290
  # @!attribute [rw] max_records
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.121.0
4
+ version: 1.122.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-06-17 00:00:00.000000000 Z
11
+ date: 2021-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4