aws-sdk-redshift 1.59.0 → 1.60.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: 723ba244e70317f9eacefdd1517884d7f3d824c8af69656053035713973d3a5a
4
- data.tar.gz: 750df94c5c6f73d4ecf5be2ed517cb9ed6537c6ae7d5bf0dfe7d2fb19ca609a9
3
+ metadata.gz: 98db7e14a5b9e72a572371999cf9b56d73931877bcd29fbfe75c60887f12c2d1
4
+ data.tar.gz: e842c60aac3b0329835c3c66b2f653ee03459c12bbc9190759aea32df70bee09
5
5
  SHA512:
6
- metadata.gz: caf2026301a7853c56c51de99c9185ac41ebcd3b09b7ab5f50d0ad2729ceb4ddbe2f2d3d959062de38ce9d12fab1251bb72b73f4cfe533cf4141f94403bf2860
7
- data.tar.gz: 40bec118fbc54298b73c3a4ab40817b7b04faa8e82b5d4919a8d8b4af4f9a5e001721d05373b42eaaf68acc72dfc74495a947cf54203bc092ebeaff99376bd1b
6
+ metadata.gz: 81b958efc0e7fe96bac8370d88b94f3e0e1289118adce4f8ab909aa4c95973c083d15b729874976784425693aaf6e25c71c6a1e61ba406d7cfdc649bc74057c3
7
+ data.tar.gz: 67ed91fdb7da473cb5cd4f5d8d0c174eda2d65d1127605524e95dbf2621079a6db64eb4d97dafbb73b2a9d8a977f70a2a01acaa30f9cc56791fb16df91516789
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2021-04-09)
5
+ ------------------
6
+
7
+ * Feature - Add support for case sensitive table level restore
8
+
4
9
  1.59.0 (2021-03-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.60.0
@@ -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.59.0'
52
+ GEM_VERSION = '1.60.0'
53
53
 
54
54
  end
@@ -1963,12 +1963,12 @@ module Aws::Redshift
1963
1963
  # addition to creating the HSM certificate, you must create an Amazon
1964
1964
  # Redshift HSM configuration that provides a cluster the information
1965
1965
  # needed to store and use encryption keys in the HSM. For more
1966
- # information, go to [Hardware Security Modules][1] in the Amazon
1967
- # Redshift Cluster Management Guide.
1966
+ # information, go to [Hardware Security Modules][1] in the *Amazon
1967
+ # Redshift Cluster Management Guide*.
1968
1968
  #
1969
1969
  #
1970
1970
  #
1971
- # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html
1971
+ # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html#working-with-HSM
1972
1972
  #
1973
1973
  # @option params [required, String] :hsm_client_certificate_identifier
1974
1974
  # The identifier to be assigned to the new HSM client certificate that
@@ -9157,6 +9157,11 @@ module Aws::Redshift
9157
9157
  # @option params [required, String] :new_table_name
9158
9158
  # The name of the table to create as a result of the current request.
9159
9159
  #
9160
+ # @option params [Boolean] :enable_case_sensitive_identifier
9161
+ # Indicates whether name identifiers for database, schema, and table are
9162
+ # case sensitive. If `true`, the names are case sensitive. If `false`
9163
+ # (default), the names are not case sensitive.
9164
+ #
9160
9165
  # @return [Types::RestoreTableFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9161
9166
  #
9162
9167
  # * {Types::RestoreTableFromClusterSnapshotResult#table_restore_status #table_restore_status} => Types::TableRestoreStatus
@@ -9172,6 +9177,7 @@ module Aws::Redshift
9172
9177
  # target_database_name: "String",
9173
9178
  # target_schema_name: "String",
9174
9179
  # new_table_name: "String", # required
9180
+ # enable_case_sensitive_identifier: false,
9175
9181
  # })
9176
9182
  #
9177
9183
  # @example Response structure
@@ -9708,7 +9714,7 @@ module Aws::Redshift
9708
9714
  params: params,
9709
9715
  config: config)
9710
9716
  context[:gem_name] = 'aws-sdk-redshift'
9711
- context[:gem_version] = '1.59.0'
9717
+ context[:gem_version] = '1.60.0'
9712
9718
  Seahorse::Client::Request.new(handlers, context)
9713
9719
  end
9714
9720
 
@@ -1887,6 +1887,7 @@ module Aws::Redshift
1887
1887
  RestoreTableFromClusterSnapshotMessage.add_member(:target_database_name, Shapes::ShapeRef.new(shape: String, location_name: "TargetDatabaseName"))
1888
1888
  RestoreTableFromClusterSnapshotMessage.add_member(:target_schema_name, Shapes::ShapeRef.new(shape: String, location_name: "TargetSchemaName"))
1889
1889
  RestoreTableFromClusterSnapshotMessage.add_member(:new_table_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "NewTableName"))
1890
+ RestoreTableFromClusterSnapshotMessage.add_member(:enable_case_sensitive_identifier, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCaseSensitiveIdentifier"))
1890
1891
  RestoreTableFromClusterSnapshotMessage.struct_class = Types::RestoreTableFromClusterSnapshotMessage
1891
1892
 
1892
1893
  RestoreTableFromClusterSnapshotResult.add_member(:table_restore_status, Shapes::ShapeRef.new(shape: TableRestoreStatus, location_name: "TableRestoreStatus"))
@@ -9230,6 +9230,7 @@ module Aws::Redshift
9230
9230
  # target_database_name: "String",
9231
9231
  # target_schema_name: "String",
9232
9232
  # new_table_name: "String", # required
9233
+ # enable_case_sensitive_identifier: false,
9233
9234
  # }
9234
9235
  #
9235
9236
  # @!attribute [rw] cluster_identifier
@@ -9270,6 +9271,12 @@ module Aws::Redshift
9270
9271
  # The name of the table to create as a result of the current request.
9271
9272
  # @return [String]
9272
9273
  #
9274
+ # @!attribute [rw] enable_case_sensitive_identifier
9275
+ # Indicates whether name identifiers for database, schema, and table
9276
+ # are case sensitive. If `true`, the names are case sensitive. If
9277
+ # `false` (default), the names are not case sensitive.
9278
+ # @return [Boolean]
9279
+ #
9273
9280
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreTableFromClusterSnapshotMessage AWS API Documentation
9274
9281
  #
9275
9282
  class RestoreTableFromClusterSnapshotMessage < Struct.new(
@@ -9280,7 +9287,8 @@ module Aws::Redshift
9280
9287
  :source_table_name,
9281
9288
  :target_database_name,
9282
9289
  :target_schema_name,
9283
- :new_table_name)
9290
+ :new_table_name,
9291
+ :enable_case_sensitive_identifier)
9284
9292
  SENSITIVE = []
9285
9293
  include Aws::Structure
9286
9294
  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.59.0
4
+ version: 1.60.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-03-31 00:00:00.000000000 Z
11
+ date: 2021-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core