aws-sdk-redshift 1.79.0 → 1.80.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: da2016b84e90681f2122ac30a3c63c5674c3e0b5ff1ad63cdb9553af7752d82b
4
- data.tar.gz: 7e855242a3d2d7ce501498f1b72cae2030f47c7bab934afdcec3fc8fac85f437
3
+ metadata.gz: 8acbad17b7838dd36967fe5f1a73775ec9fd751e1233fbc3806afee1d210f37d
4
+ data.tar.gz: b1032f5b71ccd35801324aa3a9d74e5df0bbb30331ed20494f14dae6f554b057
5
5
  SHA512:
6
- metadata.gz: ff3c8c990e162602145913b4886b0f86aba159ee3c25b9f3606be5662f619aadddeafc86be4e9b21e0d50874d6d1e6e1e0e1ff3e25bf266148325102e0465600
7
- data.tar.gz: 6f27b135cb4b6d268662a5599a52a0bd09b2d962bd79c74c2743b635ce2e5378fa270890523b1635adb98dc44ed3afd2aadc82b31355321084617dba4f20ff1e
6
+ metadata.gz: 22fd0890847ab270cb3ec265b4145fa3ff2a4f169e4dc5ea6f902588d05c5c1f8189e53b80da44f0988f6bd5c835745d119dc5dc3e7affce32bb7ed1674daa77
7
+ data.tar.gz: 58b364d7bd9497bc767cd4bcf0572a269801fa62a8e72ba5c520e74e0da3382c32fa0bba2ec3ca9255edc69db8e3c7fd1130732b92a663fb1c5cf1bccab4eca8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.80.0 (2022-03-23)
5
+ ------------------
6
+
7
+ * Feature - This release adds a new [--encrypted | --no-encrypted] field in restore-from-cluster-snapshot API. Customers can now restore an unencrypted snapshot to a cluster encrypted with AWS Managed Key or their own KMS key.
8
+
4
9
  1.79.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.79.0
1
+ 1.80.0
@@ -10089,9 +10089,13 @@ module Aws::Redshift
10089
10089
  # The value must be either -1 or an integer between 1 and 3,653.
10090
10090
  #
10091
10091
  # @option params [String] :kms_key_id
10092
- # The Key Management Service (KMS) key ID of the encryption key that you
10093
- # want to use to encrypt data in the cluster that you restore from a
10094
- # shared snapshot.
10092
+ # The Key Management Service (KMS) key ID of the encryption key to
10093
+ # encrypt data in the cluster restored from a shared snapshot. You can
10094
+ # also provide the key ID when you restore from an unencrypted snapshot
10095
+ # to an encrypted cluster in the same account. Additionally, you can
10096
+ # specify a new KMS key ID when you restore from an encrypted snapshot
10097
+ # in the same account in order to change it. In that case, the restored
10098
+ # cluster is encrypted with the new KMS key ID.
10095
10099
  #
10096
10100
  # @option params [String] :node_type
10097
10101
  # The node type that the restored cluster will be provisioned with.
@@ -10186,6 +10190,10 @@ module Aws::Redshift
10186
10190
  # @option params [String] :target_reserved_node_offering_id
10187
10191
  # The identifier of the target reserved node offering.
10188
10192
  #
10193
+ # @option params [Boolean] :encrypted
10194
+ # Enables support for restoring an unencrypted snapshot to a cluster
10195
+ # encrypted with Key Management Service (KMS) and a CMK.
10196
+ #
10189
10197
  # @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10190
10198
  #
10191
10199
  # * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
@@ -10224,6 +10232,7 @@ module Aws::Redshift
10224
10232
  # default_iam_role_arn: "String",
10225
10233
  # reserved_node_id: "String",
10226
10234
  # target_reserved_node_offering_id: "String",
10235
+ # encrypted: false,
10227
10236
  # })
10228
10237
  #
10229
10238
  # @example Response structure
@@ -11033,7 +11042,7 @@ module Aws::Redshift
11033
11042
  params: params,
11034
11043
  config: config)
11035
11044
  context[:gem_name] = 'aws-sdk-redshift'
11036
- context[:gem_version] = '1.79.0'
11045
+ context[:gem_version] = '1.80.0'
11037
11046
  Seahorse::Client::Request.new(handlers, context)
11038
11047
  end
11039
11048
 
@@ -2145,6 +2145,7 @@ module Aws::Redshift
2145
2145
  RestoreFromClusterSnapshotMessage.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
2146
2146
  RestoreFromClusterSnapshotMessage.add_member(:reserved_node_id, Shapes::ShapeRef.new(shape: String, location_name: "ReservedNodeId"))
2147
2147
  RestoreFromClusterSnapshotMessage.add_member(:target_reserved_node_offering_id, Shapes::ShapeRef.new(shape: String, location_name: "TargetReservedNodeOfferingId"))
2148
+ RestoreFromClusterSnapshotMessage.add_member(:encrypted, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "Encrypted"))
2148
2149
  RestoreFromClusterSnapshotMessage.struct_class = Types::RestoreFromClusterSnapshotMessage
2149
2150
 
2150
2151
  RestoreFromClusterSnapshotResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
@@ -10102,6 +10102,7 @@ module Aws::Redshift
10102
10102
  # default_iam_role_arn: "String",
10103
10103
  # reserved_node_id: "String",
10104
10104
  # target_reserved_node_offering_id: "String",
10105
+ # encrypted: false,
10105
10106
  # }
10106
10107
  #
10107
10108
  # @!attribute [rw] cluster_identifier
@@ -10275,9 +10276,13 @@ module Aws::Redshift
10275
10276
  # @return [Integer]
10276
10277
  #
10277
10278
  # @!attribute [rw] kms_key_id
10278
- # The Key Management Service (KMS) key ID of the encryption key that
10279
- # you want to use to encrypt data in the cluster that you restore from
10280
- # a shared snapshot.
10279
+ # The Key Management Service (KMS) key ID of the encryption key to
10280
+ # encrypt data in the cluster restored from a shared snapshot. You can
10281
+ # also provide the key ID when you restore from an unencrypted
10282
+ # snapshot to an encrypted cluster in the same account. Additionally,
10283
+ # you can specify a new KMS key ID when you restore from an encrypted
10284
+ # snapshot in the same account in order to change it. In that case,
10285
+ # the restored cluster is encrypted with the new KMS key ID.
10281
10286
  # @return [String]
10282
10287
  #
10283
10288
  # @!attribute [rw] node_type
@@ -10388,6 +10393,11 @@ module Aws::Redshift
10388
10393
  # The identifier of the target reserved node offering.
10389
10394
  # @return [String]
10390
10395
  #
10396
+ # @!attribute [rw] encrypted
10397
+ # Enables support for restoring an unencrypted snapshot to a cluster
10398
+ # encrypted with Key Management Service (KMS) and a CMK.
10399
+ # @return [Boolean]
10400
+ #
10391
10401
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
10392
10402
  #
10393
10403
  class RestoreFromClusterSnapshotMessage < Struct.new(
@@ -10421,7 +10431,8 @@ module Aws::Redshift
10421
10431
  :aqua_configuration_status,
10422
10432
  :default_iam_role_arn,
10423
10433
  :reserved_node_id,
10424
- :target_reserved_node_offering_id)
10434
+ :target_reserved_node_offering_id,
10435
+ :encrypted)
10425
10436
  SENSITIVE = []
10426
10437
  include Aws::Structure
10427
10438
  end
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-redshift/customizations'
49
49
  # @!group service
50
50
  module Aws::Redshift
51
51
 
52
- GEM_VERSION = '1.79.0'
52
+ GEM_VERSION = '1.80.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-redshift
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.79.0
4
+ version: 1.80.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: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core