aws-sdk-redshift 1.102.0 → 1.103.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +9 -5
- data/lib/aws-sdk-redshift/client_api.rb +5 -2
- data/lib/aws-sdk-redshift/types.rb +6 -1
- 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: 5bd66c04dbc9e7e8460bf020a0e8368ace79ce0ba5de07c79f6355d7013562db
|
4
|
+
data.tar.gz: b02b4b71d98a3c8a6ede45aa0e3b084e4037a2224c74b292f656be723e7abfcd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82532f015f2b42a7b873b018d24d684bcfa00532d144694e606e7d29854856f1e8e2fd0aeb38102f3d172d79dc6c0ba90c4ed367dd121c9c6c19167fe39caf0f
|
7
|
+
data.tar.gz: c660441ca232fffdadc9d298d6fb4b35fa39b149945c77d70faf817eab4093c70408e165d250ba378de92e64bbd18f6f8d3786149a28a3a8936251239d3668f1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.103.0 (2023-11-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - The custom domain name SDK for Amazon Redshift provisioned clusters is updated with additional required parameters for modify and delete operations. Additionally, users can provide domain names with longer top-level domains.
|
8
|
+
|
4
9
|
1.102.0 (2023-11-01)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.103.0
|
@@ -3361,12 +3361,16 @@ module Aws::Redshift
|
|
3361
3361
|
# The identifier of the cluster to delete a custom domain association
|
3362
3362
|
# for.
|
3363
3363
|
#
|
3364
|
+
# @option params [required, String] :custom_domain_name
|
3365
|
+
# The custom domain name for the custom domain association.
|
3366
|
+
#
|
3364
3367
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3365
3368
|
#
|
3366
3369
|
# @example Request syntax with placeholder values
|
3367
3370
|
#
|
3368
3371
|
# resp = client.delete_custom_domain_association({
|
3369
3372
|
# cluster_identifier: "String", # required
|
3373
|
+
# custom_domain_name: "CustomDomainNameString", # required
|
3370
3374
|
# })
|
3371
3375
|
#
|
3372
3376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCustomDomainAssociation AWS API Documentation
|
@@ -9440,10 +9444,10 @@ module Aws::Redshift
|
|
9440
9444
|
|
9441
9445
|
# Contains information for changing a custom domain association.
|
9442
9446
|
#
|
9443
|
-
# @option params [String] :custom_domain_name
|
9447
|
+
# @option params [required, String] :custom_domain_name
|
9444
9448
|
# The custom domain name for a changed custom domain association.
|
9445
9449
|
#
|
9446
|
-
# @option params [String] :custom_domain_certificate_arn
|
9450
|
+
# @option params [required, String] :custom_domain_certificate_arn
|
9447
9451
|
# The certificate Amazon Resource Name (ARN) for the changed custom
|
9448
9452
|
# domain association.
|
9449
9453
|
#
|
@@ -9461,8 +9465,8 @@ module Aws::Redshift
|
|
9461
9465
|
# @example Request syntax with placeholder values
|
9462
9466
|
#
|
9463
9467
|
# resp = client.modify_custom_domain_association({
|
9464
|
-
# custom_domain_name: "CustomDomainNameString",
|
9465
|
-
# custom_domain_certificate_arn: "CustomDomainCertificateArnString",
|
9468
|
+
# custom_domain_name: "CustomDomainNameString", # required
|
9469
|
+
# custom_domain_certificate_arn: "CustomDomainCertificateArnString", # required
|
9466
9470
|
# cluster_identifier: "String", # required
|
9467
9471
|
# })
|
9468
9472
|
#
|
@@ -11991,7 +11995,7 @@ module Aws::Redshift
|
|
11991
11995
|
params: params,
|
11992
11996
|
config: config)
|
11993
11997
|
context[:gem_name] = 'aws-sdk-redshift'
|
11994
|
-
context[:gem_version] = '1.
|
11998
|
+
context[:gem_version] = '1.103.0'
|
11995
11999
|
Seahorse::Client::Request.new(handlers, context)
|
11996
12000
|
end
|
11997
12001
|
|
@@ -1219,6 +1219,7 @@ module Aws::Redshift
|
|
1219
1219
|
DeleteClusterSubnetGroupMessage.struct_class = Types::DeleteClusterSubnetGroupMessage
|
1220
1220
|
|
1221
1221
|
DeleteCustomDomainAssociationMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
1222
|
+
DeleteCustomDomainAssociationMessage.add_member(:custom_domain_name, Shapes::ShapeRef.new(shape: CustomDomainNameString, required: true, location_name: "CustomDomainName"))
|
1222
1223
|
DeleteCustomDomainAssociationMessage.struct_class = Types::DeleteCustomDomainAssociationMessage
|
1223
1224
|
|
1224
1225
|
DeleteEndpointAccessMessage.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EndpointName"))
|
@@ -2002,8 +2003,8 @@ module Aws::Redshift
|
|
2002
2003
|
ModifyClusterSubnetGroupResult.add_member(:cluster_subnet_group, Shapes::ShapeRef.new(shape: ClusterSubnetGroup, location_name: "ClusterSubnetGroup"))
|
2003
2004
|
ModifyClusterSubnetGroupResult.struct_class = Types::ModifyClusterSubnetGroupResult
|
2004
2005
|
|
2005
|
-
ModifyCustomDomainAssociationMessage.add_member(:custom_domain_name, Shapes::ShapeRef.new(shape: CustomDomainNameString, location_name: "CustomDomainName"))
|
2006
|
-
ModifyCustomDomainAssociationMessage.add_member(:custom_domain_certificate_arn, Shapes::ShapeRef.new(shape: CustomDomainCertificateArnString, location_name: "CustomDomainCertificateArn"))
|
2006
|
+
ModifyCustomDomainAssociationMessage.add_member(:custom_domain_name, Shapes::ShapeRef.new(shape: CustomDomainNameString, required: true, location_name: "CustomDomainName"))
|
2007
|
+
ModifyCustomDomainAssociationMessage.add_member(:custom_domain_certificate_arn, Shapes::ShapeRef.new(shape: CustomDomainCertificateArnString, required: true, location_name: "CustomDomainCertificateArn"))
|
2007
2008
|
ModifyCustomDomainAssociationMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
2008
2009
|
ModifyCustomDomainAssociationMessage.struct_class = Types::ModifyCustomDomainAssociationMessage
|
2009
2010
|
|
@@ -3191,6 +3192,7 @@ module Aws::Redshift
|
|
3191
3192
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
3192
3193
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
3193
3194
|
o.errors << Shapes::ShapeRef.new(shape: CustomCnameAssociationFault)
|
3195
|
+
o.errors << Shapes::ShapeRef.new(shape: CustomDomainAssociationNotFoundFault)
|
3194
3196
|
end)
|
3195
3197
|
|
3196
3198
|
api.add_operation(:delete_endpoint_access, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4173,6 +4175,7 @@ module Aws::Redshift
|
|
4173
4175
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
4174
4176
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
4175
4177
|
o.errors << Shapes::ShapeRef.new(shape: CustomCnameAssociationFault)
|
4178
|
+
o.errors << Shapes::ShapeRef.new(shape: CustomDomainAssociationNotFoundFault)
|
4176
4179
|
end)
|
4177
4180
|
|
4178
4181
|
api.add_operation(:modify_endpoint_access, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3505,10 +3505,15 @@ module Aws::Redshift
|
|
3505
3505
|
# for.
|
3506
3506
|
# @return [String]
|
3507
3507
|
#
|
3508
|
+
# @!attribute [rw] custom_domain_name
|
3509
|
+
# The custom domain name for the custom domain association.
|
3510
|
+
# @return [String]
|
3511
|
+
#
|
3508
3512
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCustomDomainAssociationMessage AWS API Documentation
|
3509
3513
|
#
|
3510
3514
|
class DeleteCustomDomainAssociationMessage < Struct.new(
|
3511
|
-
:cluster_identifier
|
3515
|
+
:cluster_identifier,
|
3516
|
+
:custom_domain_name)
|
3512
3517
|
SENSITIVE = []
|
3513
3518
|
include Aws::Structure
|
3514
3519
|
end
|
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.103.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: 2023-11-
|
11
|
+
date: 2023-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|