aws-sdk-redshift 1.133.0 → 1.134.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +10 -3
- data/lib/aws-sdk-redshift/types.rb +11 -2
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d8ae12bcaf7e4b4f228ada778664ba70a3b5f5cd67984e7e586c32261c15d47
|
4
|
+
data.tar.gz: e7e7cde2d711b3455b49a79a49f151e8d8051c93786bfe6c291c5c0b4b400a03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7c27338da09c30587979267bad1d97b53f05c98ee23a586f39cbe4a2f502faceec145c7a9431d5b5735a8bf6332c3663884251e4f6d26c6ba24d14d9d23058b
|
7
|
+
data.tar.gz: 2466ceb0a76f1e304f154519b8b52ac0d97d4ae4b020ad552257b591921044eb1c8177555e39d293ace6ac3936ba6ad0ff025c6e868bebfbabcb9e7a42b16daf
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.134.0
|
@@ -1535,10 +1535,13 @@ module Aws::Redshift
|
|
1535
1535
|
# @option params [Boolean] :publicly_accessible
|
1536
1536
|
# If `true`, the cluster can be accessed from a public network.
|
1537
1537
|
#
|
1538
|
+
# Default: false
|
1539
|
+
#
|
1538
1540
|
# @option params [Boolean] :encrypted
|
1539
|
-
# If `true`, the data in the cluster is encrypted at rest.
|
1541
|
+
# If `true`, the data in the cluster is encrypted at rest. If you set
|
1542
|
+
# the value on this parameter to `false`, the request will fail.
|
1540
1543
|
#
|
1541
|
-
# Default:
|
1544
|
+
# Default: true
|
1542
1545
|
#
|
1543
1546
|
# @option params [String] :hsm_client_certificate_identifier
|
1544
1547
|
# Specifies the name of the HSM client certificate the Amazon Redshift
|
@@ -9102,6 +9105,8 @@ module Aws::Redshift
|
|
9102
9105
|
# If `true`, the cluster can be accessed from a public network. Only
|
9103
9106
|
# clusters in VPCs can be set to be publicly available.
|
9104
9107
|
#
|
9108
|
+
# Default: false
|
9109
|
+
#
|
9105
9110
|
# @option params [String] :elastic_ip
|
9106
9111
|
# The Elastic IP (EIP) address for the cluster.
|
9107
9112
|
#
|
@@ -11814,6 +11819,8 @@ module Aws::Redshift
|
|
11814
11819
|
# @option params [Boolean] :publicly_accessible
|
11815
11820
|
# If `true`, the cluster can be accessed from a public network.
|
11816
11821
|
#
|
11822
|
+
# Default: false
|
11823
|
+
#
|
11817
11824
|
# @option params [String] :owner_account
|
11818
11825
|
# The Amazon Web Services account used to create or copy the snapshot.
|
11819
11826
|
# Required if you are restoring a snapshot you do not own, optional if
|
@@ -12932,7 +12939,7 @@ module Aws::Redshift
|
|
12932
12939
|
tracer: tracer
|
12933
12940
|
)
|
12934
12941
|
context[:gem_name] = 'aws-sdk-redshift'
|
12935
|
-
context[:gem_version] = '1.
|
12942
|
+
context[:gem_version] = '1.134.0'
|
12936
12943
|
Seahorse::Client::Request.new(handlers, context)
|
12937
12944
|
end
|
12938
12945
|
|
@@ -757,6 +757,8 @@ module Aws::Redshift
|
|
757
757
|
# @!attribute [rw] publicly_accessible
|
758
758
|
# A boolean value that, if `true`, indicates that the cluster can be
|
759
759
|
# accessed from a public network.
|
760
|
+
#
|
761
|
+
# Default: false
|
760
762
|
# @return [Boolean]
|
761
763
|
#
|
762
764
|
# @!attribute [rw] encrypted
|
@@ -2196,12 +2198,15 @@ module Aws::Redshift
|
|
2196
2198
|
#
|
2197
2199
|
# @!attribute [rw] publicly_accessible
|
2198
2200
|
# If `true`, the cluster can be accessed from a public network.
|
2201
|
+
#
|
2202
|
+
# Default: false
|
2199
2203
|
# @return [Boolean]
|
2200
2204
|
#
|
2201
2205
|
# @!attribute [rw] encrypted
|
2202
|
-
# If `true`, the data in the cluster is encrypted at rest.
|
2206
|
+
# If `true`, the data in the cluster is encrypted at rest. If you set
|
2207
|
+
# the value on this parameter to `false`, the request will fail.
|
2203
2208
|
#
|
2204
|
-
# Default:
|
2209
|
+
# Default: true
|
2205
2210
|
# @return [Boolean]
|
2206
2211
|
#
|
2207
2212
|
# @!attribute [rw] hsm_client_certificate_identifier
|
@@ -8381,6 +8386,8 @@ module Aws::Redshift
|
|
8381
8386
|
# @!attribute [rw] publicly_accessible
|
8382
8387
|
# If `true`, the cluster can be accessed from a public network. Only
|
8383
8388
|
# clusters in VPCs can be set to be publicly available.
|
8389
|
+
#
|
8390
|
+
# Default: false
|
8384
8391
|
# @return [Boolean]
|
8385
8392
|
#
|
8386
8393
|
# @!attribute [rw] elastic_ip
|
@@ -10596,6 +10603,8 @@ module Aws::Redshift
|
|
10596
10603
|
#
|
10597
10604
|
# @!attribute [rw] publicly_accessible
|
10598
10605
|
# If `true`, the cluster can be accessed from a public network.
|
10606
|
+
#
|
10607
|
+
# Default: false
|
10599
10608
|
# @return [Boolean]
|
10600
10609
|
#
|
10601
10610
|
# @!attribute [rw] owner_account
|
data/lib/aws-sdk-redshift.rb
CHANGED
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.
|
4
|
+
version: 1.134.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:
|
11
|
+
date: 2025-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|