aws-sdk-neptune 1.92.0 → 1.93.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptune/client.rb +4 -2
- data/lib/aws-sdk-neptune/types.rb +3 -1
- data/lib/aws-sdk-neptune.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 699cd7a53e60565bace39dad2947db4a4deb969b13d5984c8003ba8e3a5db095
|
4
|
+
data.tar.gz: 5da2395071b8b78052d9a0d52849d0bdfea8a0c836f82b33ef1b176549fe7921
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41ab4eb71060e48b1602df81b1aa2d1909726790f2519b47b00ddb695d2e7de6e5451d6f65fcfe68f47661b7d4a6967b5786f43de6f44f63cf546b9673d54c62
|
7
|
+
data.tar.gz: cbc606e5f0385b2433d165b5ab5a4699c38429d09516d2e4a19b8f04656bf619b5eabd89daeaf5bb3ec1a356384657d6f8d860817630045b0c975eb0bea37c3a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.93.0
|
@@ -762,7 +762,9 @@ module Aws::Neptune
|
|
762
762
|
#
|
763
763
|
# @option params [required, String] :source_db_cluster_snapshot_identifier
|
764
764
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
765
|
-
# not case-sensitive.
|
765
|
+
# not case-sensitive. If the source DB cluster snapshot is in a
|
766
|
+
# different region or owned by another account, specify the snapshot
|
767
|
+
# ARN.
|
766
768
|
#
|
767
769
|
# Constraints:
|
768
770
|
#
|
@@ -7781,7 +7783,7 @@ module Aws::Neptune
|
|
7781
7783
|
tracer: tracer
|
7782
7784
|
)
|
7783
7785
|
context[:gem_name] = 'aws-sdk-neptune'
|
7784
|
-
context[:gem_version] = '1.
|
7786
|
+
context[:gem_version] = '1.93.0'
|
7785
7787
|
Seahorse::Client::Request.new(handlers, context)
|
7786
7788
|
end
|
7787
7789
|
|
@@ -389,7 +389,9 @@ module Aws::Neptune
|
|
389
389
|
|
390
390
|
# @!attribute [rw] source_db_cluster_snapshot_identifier
|
391
391
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
392
|
-
# not case-sensitive.
|
392
|
+
# not case-sensitive. If the source DB cluster snapshot is in a
|
393
|
+
# different region or owned by another account, specify the snapshot
|
394
|
+
# ARN.
|
393
395
|
#
|
394
396
|
# Constraints:
|
395
397
|
#
|
data/lib/aws-sdk-neptune.rb
CHANGED