aws-sdk-redshift 1.133.0 → 1.135.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +33 -3
- data/lib/aws-sdk-redshift/types.rb +11 -2
- data/lib/aws-sdk-redshift.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14ef2f6a01d2493de06dcf6ef6885ec19ab6e833a33d5bc3b141588e8b825295
|
4
|
+
data.tar.gz: 113c913ea2806d2d156551b8362c104c3a734326b366c1eac548e6958afe0ec8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2726a52a8eb982dfb2a85bfdde51022ea6b6a50faf781b6ef07128fb526c740755bd440e04ece45e346d07593eccbe6776bba3d96dbd327ce09eab2faae9ffe7
|
7
|
+
data.tar.gz: 3609977a92db169b9b6f176198c7324e74c42e41d8222ad396a1e2001d4d33c031311a0c0aaca5df28b4dfbc66b9ebe220e42f23f92b085fa864132430199cad
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.135.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.134.0 (2025-01-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Additions to the PubliclyAccessible and Encrypted parameters clarifying what the defaults are.
|
13
|
+
|
4
14
|
1.133.0 (2024-12-03)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.135.0
|
@@ -257,11 +257,34 @@ module Aws::Redshift
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -1535,10 +1558,13 @@ module Aws::Redshift
|
|
1535
1558
|
# @option params [Boolean] :publicly_accessible
|
1536
1559
|
# If `true`, the cluster can be accessed from a public network.
|
1537
1560
|
#
|
1561
|
+
# Default: false
|
1562
|
+
#
|
1538
1563
|
# @option params [Boolean] :encrypted
|
1539
|
-
# If `true`, the data in the cluster is encrypted at rest.
|
1564
|
+
# If `true`, the data in the cluster is encrypted at rest. If you set
|
1565
|
+
# the value on this parameter to `false`, the request will fail.
|
1540
1566
|
#
|
1541
|
-
# Default:
|
1567
|
+
# Default: true
|
1542
1568
|
#
|
1543
1569
|
# @option params [String] :hsm_client_certificate_identifier
|
1544
1570
|
# Specifies the name of the HSM client certificate the Amazon Redshift
|
@@ -9102,6 +9128,8 @@ module Aws::Redshift
|
|
9102
9128
|
# If `true`, the cluster can be accessed from a public network. Only
|
9103
9129
|
# clusters in VPCs can be set to be publicly available.
|
9104
9130
|
#
|
9131
|
+
# Default: false
|
9132
|
+
#
|
9105
9133
|
# @option params [String] :elastic_ip
|
9106
9134
|
# The Elastic IP (EIP) address for the cluster.
|
9107
9135
|
#
|
@@ -11814,6 +11842,8 @@ module Aws::Redshift
|
|
11814
11842
|
# @option params [Boolean] :publicly_accessible
|
11815
11843
|
# If `true`, the cluster can be accessed from a public network.
|
11816
11844
|
#
|
11845
|
+
# Default: false
|
11846
|
+
#
|
11817
11847
|
# @option params [String] :owner_account
|
11818
11848
|
# The Amazon Web Services account used to create or copy the snapshot.
|
11819
11849
|
# Required if you are restoring a snapshot you do not own, optional if
|
@@ -12932,7 +12962,7 @@ module Aws::Redshift
|
|
12932
12962
|
tracer: tracer
|
12933
12963
|
)
|
12934
12964
|
context[:gem_name] = 'aws-sdk-redshift'
|
12935
|
-
context[:gem_version] = '1.
|
12965
|
+
context[:gem_version] = '1.135.0'
|
12936
12966
|
Seahorse::Client::Request.new(handlers, context)
|
12937
12967
|
end
|
12938
12968
|
|
@@ -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
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
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.135.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-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|