aws-sdk-redshift 1.133.0 → 1.134.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: 2483b6fa9a19d702fd66c7c18b3f7d9ae4ded7f896dd63d89cee1833f31d178a
4
- data.tar.gz: 4f1c216918679187bd91a3c47bbe6caf4c11a549c62378bc2560db7d0ddd73dd
3
+ metadata.gz: 8d8ae12bcaf7e4b4f228ada778664ba70a3b5f5cd67984e7e586c32261c15d47
4
+ data.tar.gz: e7e7cde2d711b3455b49a79a49f151e8d8051c93786bfe6c291c5c0b4b400a03
5
5
  SHA512:
6
- metadata.gz: 2da03e5981e9d194713025d500b8906e9270a151d0c900a4ca00fefa465f5be366c1f665e630943628ce642e6acaa05334781c9a78d0d631de914b015432e453
7
- data.tar.gz: 32cdeb5cd84c6c1a6fb06058e9021428ae1e0a80a8cfb7f017e95af02536160fde655b50f743e910b28875e8435892aa753d4c6a3366d7e13ab614607d13a09e
6
+ metadata.gz: f7c27338da09c30587979267bad1d97b53f05c98ee23a586f39cbe4a2f502faceec145c7a9431d5b5735a8bf6332c3663884251e4f6d26c6ba24d14d9d23058b
7
+ data.tar.gz: 2466ceb0a76f1e304f154519b8b52ac0d97d4ae4b020ad552257b591921044eb1c8177555e39d293ace6ac3936ba6ad0ff025c6e868bebfbabcb9e7a42b16daf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.134.0 (2025-01-10)
5
+ ------------------
6
+
7
+ * Feature - Additions to the PubliclyAccessible and Encrypted parameters clarifying what the defaults are.
8
+
4
9
  1.133.0 (2024-12-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.133.0
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: false
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.133.0'
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: false
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
@@ -55,7 +55,7 @@ module Aws::Redshift
55
55
  autoload :EndpointProvider, 'aws-sdk-redshift/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-redshift/endpoints'
57
57
 
58
- GEM_VERSION = '1.133.0'
58
+ GEM_VERSION = '1.134.0'
59
59
 
60
60
  end
61
61
 
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.133.0
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: 2024-12-03 00:00:00.000000000 Z
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