aws-sdk-redshiftserverless 1.31.0 → 1.33.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-redshiftserverless/client.rb +37 -3
- data/lib/aws-sdk-redshiftserverless/client_api.rb +11 -0
- data/lib/aws-sdk-redshiftserverless/errors.rb +16 -0
- data/lib/aws-sdk-redshiftserverless/types.rb +41 -3
- data/lib/aws-sdk-redshiftserverless.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/errors.rbs +3 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +9 -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: fd0169ab80ef22382119258e8542dc30071073d290c1f4b9834357997707c0c9
|
4
|
+
data.tar.gz: e6559f4d725cbd15639a343f237035b8bbf4ae29737381a7c42703f016b8636d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78c12beeb5d1ce2406861dc85cfbffaec87ddf76b332e35c087d659196ca8f632139cac34561752515d7b25dfbf09241d2b9285fb3837bf5282160e0d9cf6f80
|
7
|
+
data.tar.gz: 641cca3e6220698412282545b83424b9697f20c5044bb00f9306b9e98a8c893b41d6f6e13e73c96d512c4b4471d35f41c9b675b5d74b322c79a2a658223e315f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.33.0 (2024-07-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds dualstack support for Redshift Serverless workgroup.
|
8
|
+
|
9
|
+
1.32.0 (2024-07-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.31.0 (2024-06-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.33.0
|
@@ -312,6 +312,15 @@ module Aws::RedshiftServerless
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :simple_json (false)
|
316
325
|
# Disables request parameter conversion, validation, and formatting.
|
317
326
|
# Also disables response data type conversions. The request parameters
|
@@ -593,6 +602,7 @@ module Aws::RedshiftServerless
|
|
593
602
|
# resp.endpoint.subnet_ids[0] #=> String
|
594
603
|
# resp.endpoint.vpc_endpoint.network_interfaces #=> Array
|
595
604
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].availability_zone #=> String
|
605
|
+
# resp.endpoint.vpc_endpoint.network_interfaces[0].ipv6_address #=> String
|
596
606
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
|
597
607
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
|
598
608
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].subnet_id #=> String
|
@@ -745,7 +755,7 @@ module Aws::RedshiftServerless
|
|
745
755
|
# scheduler.redshift.amazonaws.com) to assume permissions on your
|
746
756
|
# behalf. For more information about the IAM role to use with the Amazon
|
747
757
|
# Redshift scheduler, see [Using Identity-Based Policies for Amazon
|
748
|
-
# Redshift][1] in the Amazon Redshift
|
758
|
+
# Redshift][1] in the Amazon Redshift Management Guide
|
749
759
|
#
|
750
760
|
#
|
751
761
|
#
|
@@ -1059,6 +1069,10 @@ module Aws::RedshiftServerless
|
|
1059
1069
|
# cloud (VPC) routing, which forces Amazon Redshift Serverless to route
|
1060
1070
|
# traffic through your VPC instead of over the internet.
|
1061
1071
|
#
|
1072
|
+
# @option params [String] :ip_address_type
|
1073
|
+
# The IP address type that the workgroup supports. Possible values are
|
1074
|
+
# `ipv4` and `dualstack`.
|
1075
|
+
#
|
1062
1076
|
# @option params [Integer] :max_capacity
|
1063
1077
|
# The maximum data-warehouse capacity Amazon Redshift Serverless uses to
|
1064
1078
|
# serve queries. The max capacity is specified in RPUs.
|
@@ -1101,6 +1115,7 @@ module Aws::RedshiftServerless
|
|
1101
1115
|
# },
|
1102
1116
|
# ],
|
1103
1117
|
# enhanced_vpc_routing: false,
|
1118
|
+
# ip_address_type: "IpAddressType",
|
1104
1119
|
# max_capacity: 1,
|
1105
1120
|
# namespace_name: "NamespaceName", # required
|
1106
1121
|
# port: 1,
|
@@ -1133,12 +1148,14 @@ module Aws::RedshiftServerless
|
|
1133
1148
|
# resp.workgroup.endpoint.vpc_endpoints #=> Array
|
1134
1149
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
1135
1150
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
1151
|
+
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].ipv6_address #=> String
|
1136
1152
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
1137
1153
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
1138
1154
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
1139
1155
|
# resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
1140
1156
|
# resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
|
1141
1157
|
# resp.workgroup.enhanced_vpc_routing #=> Boolean
|
1158
|
+
# resp.workgroup.ip_address_type #=> String
|
1142
1159
|
# resp.workgroup.max_capacity #=> Integer
|
1143
1160
|
# resp.workgroup.namespace_name #=> String
|
1144
1161
|
# resp.workgroup.patch_version #=> String
|
@@ -1216,6 +1233,7 @@ module Aws::RedshiftServerless
|
|
1216
1233
|
# resp.endpoint.subnet_ids[0] #=> String
|
1217
1234
|
# resp.endpoint.vpc_endpoint.network_interfaces #=> Array
|
1218
1235
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].availability_zone #=> String
|
1236
|
+
# resp.endpoint.vpc_endpoint.network_interfaces[0].ipv6_address #=> String
|
1219
1237
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
|
1220
1238
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
|
1221
1239
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].subnet_id #=> String
|
@@ -1505,12 +1523,14 @@ module Aws::RedshiftServerless
|
|
1505
1523
|
# resp.workgroup.endpoint.vpc_endpoints #=> Array
|
1506
1524
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
1507
1525
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
1526
|
+
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].ipv6_address #=> String
|
1508
1527
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
1509
1528
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
1510
1529
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
1511
1530
|
# resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
1512
1531
|
# resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
|
1513
1532
|
# resp.workgroup.enhanced_vpc_routing #=> Boolean
|
1533
|
+
# resp.workgroup.ip_address_type #=> String
|
1514
1534
|
# resp.workgroup.max_capacity #=> Integer
|
1515
1535
|
# resp.workgroup.namespace_name #=> String
|
1516
1536
|
# resp.workgroup.patch_version #=> String
|
@@ -1673,6 +1693,7 @@ module Aws::RedshiftServerless
|
|
1673
1693
|
# resp.endpoint.subnet_ids[0] #=> String
|
1674
1694
|
# resp.endpoint.vpc_endpoint.network_interfaces #=> Array
|
1675
1695
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].availability_zone #=> String
|
1696
|
+
# resp.endpoint.vpc_endpoint.network_interfaces[0].ipv6_address #=> String
|
1676
1697
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
|
1677
1698
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
|
1678
1699
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].subnet_id #=> String
|
@@ -2010,12 +2031,14 @@ module Aws::RedshiftServerless
|
|
2010
2031
|
# resp.workgroup.endpoint.vpc_endpoints #=> Array
|
2011
2032
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
2012
2033
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
2034
|
+
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].ipv6_address #=> String
|
2013
2035
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
2014
2036
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
2015
2037
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
2016
2038
|
# resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
2017
2039
|
# resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
|
2018
2040
|
# resp.workgroup.enhanced_vpc_routing #=> Boolean
|
2041
|
+
# resp.workgroup.ip_address_type #=> String
|
2019
2042
|
# resp.workgroup.max_capacity #=> Integer
|
2020
2043
|
# resp.workgroup.namespace_name #=> String
|
2021
2044
|
# resp.workgroup.patch_version #=> String
|
@@ -2144,6 +2167,7 @@ module Aws::RedshiftServerless
|
|
2144
2167
|
# resp.endpoints[0].subnet_ids[0] #=> String
|
2145
2168
|
# resp.endpoints[0].vpc_endpoint.network_interfaces #=> Array
|
2146
2169
|
# resp.endpoints[0].vpc_endpoint.network_interfaces[0].availability_zone #=> String
|
2170
|
+
# resp.endpoints[0].vpc_endpoint.network_interfaces[0].ipv6_address #=> String
|
2147
2171
|
# resp.endpoints[0].vpc_endpoint.network_interfaces[0].network_interface_id #=> String
|
2148
2172
|
# resp.endpoints[0].vpc_endpoint.network_interfaces[0].private_ip_address #=> String
|
2149
2173
|
# resp.endpoints[0].vpc_endpoint.network_interfaces[0].subnet_id #=> String
|
@@ -2662,12 +2686,14 @@ module Aws::RedshiftServerless
|
|
2662
2686
|
# resp.workgroups[0].endpoint.vpc_endpoints #=> Array
|
2663
2687
|
# resp.workgroups[0].endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
2664
2688
|
# resp.workgroups[0].endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
2689
|
+
# resp.workgroups[0].endpoint.vpc_endpoints[0].network_interfaces[0].ipv6_address #=> String
|
2665
2690
|
# resp.workgroups[0].endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
2666
2691
|
# resp.workgroups[0].endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
2667
2692
|
# resp.workgroups[0].endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
2668
2693
|
# resp.workgroups[0].endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
2669
2694
|
# resp.workgroups[0].endpoint.vpc_endpoints[0].vpc_id #=> String
|
2670
2695
|
# resp.workgroups[0].enhanced_vpc_routing #=> Boolean
|
2696
|
+
# resp.workgroups[0].ip_address_type #=> String
|
2671
2697
|
# resp.workgroups[0].max_capacity #=> Integer
|
2672
2698
|
# resp.workgroups[0].namespace_name #=> String
|
2673
2699
|
# resp.workgroups[0].patch_version #=> String
|
@@ -3171,6 +3197,7 @@ module Aws::RedshiftServerless
|
|
3171
3197
|
# resp.endpoint.subnet_ids[0] #=> String
|
3172
3198
|
# resp.endpoint.vpc_endpoint.network_interfaces #=> Array
|
3173
3199
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].availability_zone #=> String
|
3200
|
+
# resp.endpoint.vpc_endpoint.network_interfaces[0].ipv6_address #=> String
|
3174
3201
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].network_interface_id #=> String
|
3175
3202
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
|
3176
3203
|
# resp.endpoint.vpc_endpoint.network_interfaces[0].subnet_id #=> String
|
@@ -3302,7 +3329,7 @@ module Aws::RedshiftServerless
|
|
3302
3329
|
# scheduler.redshift.amazonaws.com) to assume permissions on your
|
3303
3330
|
# behalf. For more information about the IAM role to use with the Amazon
|
3304
3331
|
# Redshift scheduler, see [Using Identity-Based Policies for Amazon
|
3305
|
-
# Redshift][1] in the Amazon Redshift
|
3332
|
+
# Redshift][1] in the Amazon Redshift Management Guide
|
3306
3333
|
#
|
3307
3334
|
#
|
3308
3335
|
#
|
@@ -3571,6 +3598,10 @@ module Aws::RedshiftServerless
|
|
3571
3598
|
# cloud (VPC) routing, which forces Amazon Redshift Serverless to route
|
3572
3599
|
# traffic through your VPC.
|
3573
3600
|
#
|
3601
|
+
# @option params [String] :ip_address_type
|
3602
|
+
# The IP address type that the workgroup supports. Possible values are
|
3603
|
+
# `ipv4` and `dualstack`.
|
3604
|
+
#
|
3574
3605
|
# @option params [Integer] :max_capacity
|
3575
3606
|
# The maximum data-warehouse capacity Amazon Redshift Serverless uses to
|
3576
3607
|
# serve queries. The max capacity is specified in RPUs.
|
@@ -3608,6 +3639,7 @@ module Aws::RedshiftServerless
|
|
3608
3639
|
# },
|
3609
3640
|
# ],
|
3610
3641
|
# enhanced_vpc_routing: false,
|
3642
|
+
# ip_address_type: "IpAddressType",
|
3611
3643
|
# max_capacity: 1,
|
3612
3644
|
# port: 1,
|
3613
3645
|
# publicly_accessible: false,
|
@@ -3633,12 +3665,14 @@ module Aws::RedshiftServerless
|
|
3633
3665
|
# resp.workgroup.endpoint.vpc_endpoints #=> Array
|
3634
3666
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
3635
3667
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
3668
|
+
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].ipv6_address #=> String
|
3636
3669
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
3637
3670
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
3638
3671
|
# resp.workgroup.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
3639
3672
|
# resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
3640
3673
|
# resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
|
3641
3674
|
# resp.workgroup.enhanced_vpc_routing #=> Boolean
|
3675
|
+
# resp.workgroup.ip_address_type #=> String
|
3642
3676
|
# resp.workgroup.max_capacity #=> Integer
|
3643
3677
|
# resp.workgroup.namespace_name #=> String
|
3644
3678
|
# resp.workgroup.patch_version #=> String
|
@@ -3676,7 +3710,7 @@ module Aws::RedshiftServerless
|
|
3676
3710
|
params: params,
|
3677
3711
|
config: config)
|
3678
3712
|
context[:gem_name] = 'aws-sdk-redshiftserverless'
|
3679
|
-
context[:gem_version] = '1.
|
3713
|
+
context[:gem_version] = '1.33.0'
|
3680
3714
|
Seahorse::Client::Request.new(handlers, context)
|
3681
3715
|
end
|
3682
3716
|
|
@@ -96,6 +96,8 @@ module Aws::RedshiftServerless
|
|
96
96
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
97
97
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
98
98
|
InvalidPaginationException = Shapes::StructureShape.new(name: 'InvalidPaginationException')
|
99
|
+
IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
|
100
|
+
Ipv6CidrBlockNotFoundException = Shapes::StructureShape.new(name: 'Ipv6CidrBlockNotFoundException')
|
99
101
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
100
102
|
ListCustomDomainAssociationsRequest = Shapes::StructureShape.new(name: 'ListCustomDomainAssociationsRequest')
|
101
103
|
ListCustomDomainAssociationsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListCustomDomainAssociationsRequestMaxResultsInteger')
|
@@ -347,6 +349,7 @@ module Aws::RedshiftServerless
|
|
347
349
|
CreateWorkgroupRequest.add_member(:base_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "baseCapacity"))
|
348
350
|
CreateWorkgroupRequest.add_member(:config_parameters, Shapes::ShapeRef.new(shape: ConfigParameterList, location_name: "configParameters"))
|
349
351
|
CreateWorkgroupRequest.add_member(:enhanced_vpc_routing, Shapes::ShapeRef.new(shape: Boolean, location_name: "enhancedVpcRouting"))
|
352
|
+
CreateWorkgroupRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
|
350
353
|
CreateWorkgroupRequest.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
|
351
354
|
CreateWorkgroupRequest.add_member(:namespace_name, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location_name: "namespaceName"))
|
352
355
|
CreateWorkgroupRequest.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
|
@@ -523,6 +526,9 @@ module Aws::RedshiftServerless
|
|
523
526
|
InvalidPaginationException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
524
527
|
InvalidPaginationException.struct_class = Types::InvalidPaginationException
|
525
528
|
|
529
|
+
Ipv6CidrBlockNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
530
|
+
Ipv6CidrBlockNotFoundException.struct_class = Types::Ipv6CidrBlockNotFoundException
|
531
|
+
|
526
532
|
ListCustomDomainAssociationsRequest.add_member(:custom_domain_certificate_arn, Shapes::ShapeRef.new(shape: CustomDomainCertificateArnString, location_name: "customDomainCertificateArn"))
|
527
533
|
ListCustomDomainAssociationsRequest.add_member(:custom_domain_name, Shapes::ShapeRef.new(shape: CustomDomainName, location_name: "customDomainName"))
|
528
534
|
ListCustomDomainAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListCustomDomainAssociationsRequestMaxResultsInteger, location_name: "maxResults", metadata: {"box"=>true}))
|
@@ -650,6 +656,7 @@ module Aws::RedshiftServerless
|
|
650
656
|
NamespaceList.member = Shapes::ShapeRef.new(shape: Namespace)
|
651
657
|
|
652
658
|
NetworkInterface.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
659
|
+
NetworkInterface.add_member(:ipv6_address, Shapes::ShapeRef.new(shape: String, location_name: "ipv6Address"))
|
653
660
|
NetworkInterface.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: String, location_name: "networkInterfaceId"))
|
654
661
|
NetworkInterface.add_member(:private_ip_address, Shapes::ShapeRef.new(shape: String, location_name: "privateIpAddress"))
|
655
662
|
NetworkInterface.add_member(:subnet_id, Shapes::ShapeRef.new(shape: String, location_name: "subnetId"))
|
@@ -931,6 +938,7 @@ module Aws::RedshiftServerless
|
|
931
938
|
UpdateWorkgroupRequest.add_member(:base_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "baseCapacity"))
|
932
939
|
UpdateWorkgroupRequest.add_member(:config_parameters, Shapes::ShapeRef.new(shape: ConfigParameterList, location_name: "configParameters"))
|
933
940
|
UpdateWorkgroupRequest.add_member(:enhanced_vpc_routing, Shapes::ShapeRef.new(shape: Boolean, location_name: "enhancedVpcRouting"))
|
941
|
+
UpdateWorkgroupRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
|
934
942
|
UpdateWorkgroupRequest.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
|
935
943
|
UpdateWorkgroupRequest.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
|
936
944
|
UpdateWorkgroupRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
|
@@ -982,6 +990,7 @@ module Aws::RedshiftServerless
|
|
982
990
|
Workgroup.add_member(:custom_domain_name, Shapes::ShapeRef.new(shape: CustomDomainName, location_name: "customDomainName"))
|
983
991
|
Workgroup.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "endpoint"))
|
984
992
|
Workgroup.add_member(:enhanced_vpc_routing, Shapes::ShapeRef.new(shape: Boolean, location_name: "enhancedVpcRouting"))
|
993
|
+
Workgroup.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
|
985
994
|
Workgroup.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
|
986
995
|
Workgroup.add_member(:namespace_name, Shapes::ShapeRef.new(shape: String, location_name: "namespaceName"))
|
987
996
|
Workgroup.add_member(:patch_version, Shapes::ShapeRef.new(shape: String, location_name: "patchVersion"))
|
@@ -1136,6 +1145,7 @@ module Aws::RedshiftServerless
|
|
1136
1145
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1137
1146
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1138
1147
|
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
1148
|
+
o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundException)
|
1139
1149
|
end)
|
1140
1150
|
|
1141
1151
|
api.add_operation(:delete_custom_domain_association, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1746,6 +1756,7 @@ module Aws::RedshiftServerless
|
|
1746
1756
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1747
1757
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1748
1758
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1759
|
+
o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundException)
|
1749
1760
|
end)
|
1750
1761
|
end
|
1751
1762
|
|
@@ -32,6 +32,7 @@ module Aws::RedshiftServerless
|
|
32
32
|
# * {InsufficientCapacityException}
|
33
33
|
# * {InternalServerException}
|
34
34
|
# * {InvalidPaginationException}
|
35
|
+
# * {Ipv6CidrBlockNotFoundException}
|
35
36
|
# * {ResourceNotFoundException}
|
36
37
|
# * {ServiceQuotaExceededException}
|
37
38
|
# * {ThrottlingException}
|
@@ -132,6 +133,21 @@ module Aws::RedshiftServerless
|
|
132
133
|
end
|
133
134
|
end
|
134
135
|
|
136
|
+
class Ipv6CidrBlockNotFoundException < ServiceError
|
137
|
+
|
138
|
+
# @param [Seahorse::Client::RequestContext] context
|
139
|
+
# @param [String] message
|
140
|
+
# @param [Aws::RedshiftServerless::Types::Ipv6CidrBlockNotFoundException] data
|
141
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
142
|
+
super(context, message, data)
|
143
|
+
end
|
144
|
+
|
145
|
+
# @return [String]
|
146
|
+
def message
|
147
|
+
@message || @data[:message]
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
135
151
|
class ResourceNotFoundException < ServiceError
|
136
152
|
|
137
153
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -362,7 +362,7 @@ module Aws::RedshiftServerless
|
|
362
362
|
# scheduler.redshift.amazonaws.com) to assume permissions on your
|
363
363
|
# behalf. For more information about the IAM role to use with the
|
364
364
|
# Amazon Redshift scheduler, see [Using Identity-Based Policies for
|
365
|
-
# Amazon Redshift][1] in the Amazon Redshift
|
365
|
+
# Amazon Redshift][1] in the Amazon Redshift Management Guide
|
366
366
|
#
|
367
367
|
#
|
368
368
|
#
|
@@ -645,6 +645,11 @@ module Aws::RedshiftServerless
|
|
645
645
|
# route traffic through your VPC instead of over the internet.
|
646
646
|
# @return [Boolean]
|
647
647
|
#
|
648
|
+
# @!attribute [rw] ip_address_type
|
649
|
+
# The IP address type that the workgroup supports. Possible values are
|
650
|
+
# `ipv4` and `dualstack`.
|
651
|
+
# @return [String]
|
652
|
+
#
|
648
653
|
# @!attribute [rw] max_capacity
|
649
654
|
# The maximum data-warehouse capacity Amazon Redshift Serverless uses
|
650
655
|
# to serve queries. The max capacity is specified in RPUs.
|
@@ -686,6 +691,7 @@ module Aws::RedshiftServerless
|
|
686
691
|
:base_capacity,
|
687
692
|
:config_parameters,
|
688
693
|
:enhanced_vpc_routing,
|
694
|
+
:ip_address_type,
|
689
695
|
:max_capacity,
|
690
696
|
:namespace_name,
|
691
697
|
:port,
|
@@ -1408,6 +1414,21 @@ module Aws::RedshiftServerless
|
|
1408
1414
|
include Aws::Structure
|
1409
1415
|
end
|
1410
1416
|
|
1417
|
+
# There are no subnets in your VPC with associated IPv6 CIDR blocks. To
|
1418
|
+
# use dual-stack mode, associate an IPv6 CIDR block with each subnet in
|
1419
|
+
# your VPC.
|
1420
|
+
#
|
1421
|
+
# @!attribute [rw] message
|
1422
|
+
# @return [String]
|
1423
|
+
#
|
1424
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/Ipv6CidrBlockNotFoundException AWS API Documentation
|
1425
|
+
#
|
1426
|
+
class Ipv6CidrBlockNotFoundException < Struct.new(
|
1427
|
+
:message)
|
1428
|
+
SENSITIVE = []
|
1429
|
+
include Aws::Structure
|
1430
|
+
end
|
1431
|
+
|
1411
1432
|
# @!attribute [rw] custom_domain_certificate_arn
|
1412
1433
|
# The custom domain name’s certificate Amazon resource name (ARN).
|
1413
1434
|
# @return [String]
|
@@ -2057,6 +2078,10 @@ module Aws::RedshiftServerless
|
|
2057
2078
|
# The availability Zone.
|
2058
2079
|
# @return [String]
|
2059
2080
|
#
|
2081
|
+
# @!attribute [rw] ipv6_address
|
2082
|
+
# The IPv6 address of the network interface within the subnet.
|
2083
|
+
# @return [String]
|
2084
|
+
#
|
2060
2085
|
# @!attribute [rw] network_interface_id
|
2061
2086
|
# The unique identifier of the network interface.
|
2062
2087
|
# @return [String]
|
@@ -2073,6 +2098,7 @@ module Aws::RedshiftServerless
|
|
2073
2098
|
#
|
2074
2099
|
class NetworkInterface < Struct.new(
|
2075
2100
|
:availability_zone,
|
2101
|
+
:ipv6_address,
|
2076
2102
|
:network_interface_id,
|
2077
2103
|
:private_ip_address,
|
2078
2104
|
:subnet_id)
|
@@ -2544,7 +2570,7 @@ module Aws::RedshiftServerless
|
|
2544
2570
|
# scheduler.redshift.amazonaws.com) to assume permissions on your
|
2545
2571
|
# behalf. For more information about the IAM role to use with the
|
2546
2572
|
# Amazon Redshift scheduler, see [Using Identity-Based Policies for
|
2547
|
-
# Amazon Redshift][1] in the Amazon Redshift
|
2573
|
+
# Amazon Redshift][1] in the Amazon Redshift Management Guide
|
2548
2574
|
#
|
2549
2575
|
#
|
2550
2576
|
#
|
@@ -3206,7 +3232,7 @@ module Aws::RedshiftServerless
|
|
3206
3232
|
# scheduler.redshift.amazonaws.com) to assume permissions on your
|
3207
3233
|
# behalf. For more information about the IAM role to use with the
|
3208
3234
|
# Amazon Redshift scheduler, see [Using Identity-Based Policies for
|
3209
|
-
# Amazon Redshift][1] in the Amazon Redshift
|
3235
|
+
# Amazon Redshift][1] in the Amazon Redshift Management Guide
|
3210
3236
|
#
|
3211
3237
|
#
|
3212
3238
|
#
|
@@ -3403,6 +3429,11 @@ module Aws::RedshiftServerless
|
|
3403
3429
|
# route traffic through your VPC.
|
3404
3430
|
# @return [Boolean]
|
3405
3431
|
#
|
3432
|
+
# @!attribute [rw] ip_address_type
|
3433
|
+
# The IP address type that the workgroup supports. Possible values are
|
3434
|
+
# `ipv4` and `dualstack`.
|
3435
|
+
# @return [String]
|
3436
|
+
#
|
3406
3437
|
# @!attribute [rw] max_capacity
|
3407
3438
|
# The maximum data-warehouse capacity Amazon Redshift Serverless uses
|
3408
3439
|
# to serve queries. The max capacity is specified in RPUs.
|
@@ -3437,6 +3468,7 @@ module Aws::RedshiftServerless
|
|
3437
3468
|
:base_capacity,
|
3438
3469
|
:config_parameters,
|
3439
3470
|
:enhanced_vpc_routing,
|
3471
|
+
:ip_address_type,
|
3440
3472
|
:max_capacity,
|
3441
3473
|
:port,
|
3442
3474
|
:publicly_accessible,
|
@@ -3624,6 +3656,11 @@ module Aws::RedshiftServerless
|
|
3624
3656
|
# route traffic through your VPC.
|
3625
3657
|
# @return [Boolean]
|
3626
3658
|
#
|
3659
|
+
# @!attribute [rw] ip_address_type
|
3660
|
+
# The IP address type that the workgroup supports. Possible values are
|
3661
|
+
# `ipv4` and `dualstack`.
|
3662
|
+
# @return [String]
|
3663
|
+
#
|
3627
3664
|
# @!attribute [rw] max_capacity
|
3628
3665
|
# The maximum data-warehouse capacity Amazon Redshift Serverless uses
|
3629
3666
|
# to serve queries. The max capacity is specified in RPUs.
|
@@ -3699,6 +3736,7 @@ module Aws::RedshiftServerless
|
|
3699
3736
|
:custom_domain_name,
|
3700
3737
|
:endpoint,
|
3701
3738
|
:enhanced_vpc_routing,
|
3739
|
+
:ip_address_type,
|
3702
3740
|
:max_capacity,
|
3703
3741
|
:namespace_name,
|
3704
3742
|
:patch_version,
|
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?simple_json: bool,
|
52
53
|
?stub_responses: untyped,
|
53
54
|
?token_provider: untyped,
|
@@ -238,6 +239,7 @@ module Aws
|
|
238
239
|
},
|
239
240
|
],
|
240
241
|
?enhanced_vpc_routing: bool,
|
242
|
+
?ip_address_type: ::String,
|
241
243
|
?max_capacity: ::Integer,
|
242
244
|
namespace_name: ::String,
|
243
245
|
?port: ::Integer,
|
@@ -847,6 +849,7 @@ module Aws
|
|
847
849
|
},
|
848
850
|
],
|
849
851
|
?enhanced_vpc_routing: bool,
|
852
|
+
?ip_address_type: ::String,
|
850
853
|
?max_capacity: ::Integer,
|
851
854
|
?port: ::Integer,
|
852
855
|
?publicly_accessible: bool,
|
data/sig/errors.rbs
CHANGED
@@ -27,6 +27,9 @@ module Aws
|
|
27
27
|
class InvalidPaginationException < ::Aws::Errors::ServiceError
|
28
28
|
def message: () -> ::String
|
29
29
|
end
|
30
|
+
class Ipv6CidrBlockNotFoundException < ::Aws::Errors::ServiceError
|
31
|
+
def message: () -> ::String
|
32
|
+
end
|
30
33
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
31
34
|
def message: () -> ::String
|
32
35
|
def resource_name: () -> ::String
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -166,6 +166,7 @@ module Aws::RedshiftServerless
|
|
166
166
|
attr_accessor base_capacity: ::Integer
|
167
167
|
attr_accessor config_parameters: ::Array[Types::ConfigParameter]
|
168
168
|
attr_accessor enhanced_vpc_routing: bool
|
169
|
+
attr_accessor ip_address_type: ::String
|
169
170
|
attr_accessor max_capacity: ::Integer
|
170
171
|
attr_accessor namespace_name: ::String
|
171
172
|
attr_accessor port: ::Integer
|
@@ -429,6 +430,11 @@ module Aws::RedshiftServerless
|
|
429
430
|
SENSITIVE: []
|
430
431
|
end
|
431
432
|
|
433
|
+
class Ipv6CidrBlockNotFoundException
|
434
|
+
attr_accessor message: ::String
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
432
438
|
class ListCustomDomainAssociationsRequest
|
433
439
|
attr_accessor custom_domain_certificate_arn: ::String
|
434
440
|
attr_accessor custom_domain_name: ::String
|
@@ -599,6 +605,7 @@ module Aws::RedshiftServerless
|
|
599
605
|
|
600
606
|
class NetworkInterface
|
601
607
|
attr_accessor availability_zone: ::String
|
608
|
+
attr_accessor ipv6_address: ::String
|
602
609
|
attr_accessor network_interface_id: ::String
|
603
610
|
attr_accessor private_ip_address: ::String
|
604
611
|
attr_accessor subnet_id: ::String
|
@@ -949,6 +956,7 @@ module Aws::RedshiftServerless
|
|
949
956
|
attr_accessor base_capacity: ::Integer
|
950
957
|
attr_accessor config_parameters: ::Array[Types::ConfigParameter]
|
951
958
|
attr_accessor enhanced_vpc_routing: bool
|
959
|
+
attr_accessor ip_address_type: ::String
|
952
960
|
attr_accessor max_capacity: ::Integer
|
953
961
|
attr_accessor port: ::Integer
|
954
962
|
attr_accessor publicly_accessible: bool
|
@@ -1002,6 +1010,7 @@ module Aws::RedshiftServerless
|
|
1002
1010
|
attr_accessor custom_domain_name: ::String
|
1003
1011
|
attr_accessor endpoint: Types::Endpoint
|
1004
1012
|
attr_accessor enhanced_vpc_routing: bool
|
1013
|
+
attr_accessor ip_address_type: ::String
|
1005
1014
|
attr_accessor max_capacity: ::Integer
|
1006
1015
|
attr_accessor namespace_name: ::String
|
1007
1016
|
attr_accessor patch_version: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-redshiftserverless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.33.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-
|
11
|
+
date: 2024-07-22 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.201.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.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|