aws-sdk-redshiftserverless 1.17.0 → 1.18.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: 2b9184e693fb902ca9d75b4bf9985648a5d9e06b7b34a64c2c092ad5f3b155c5
4
- data.tar.gz: 526f83cc243a00189ef34d729599ac61ed5aa5882c29f9612161e3d57b206078
3
+ metadata.gz: 1bf9b9cdb27f48f3a318d5d65c435ec56a643746d2c2e8e4c316006549f78b70
4
+ data.tar.gz: 60b8ae0428a9ecf2edc04b4c69b5ae4ae177f026513bc759c85c877d935ee60d
5
5
  SHA512:
6
- metadata.gz: c0c411485e0a473488754fb4341fd02fef03d11241348874555465c65aa857c646237149d604c1b72695e76434999d409fa8c2031b6a1862ac301afc58a4b4bb
7
- data.tar.gz: 499c1dc3f939265c76855b6f537cc0fc336d10ab1a99b0433b733c61f35d84a1fe387dc787707e44d1fa0c0c5b4a93924f531ed7c01e5c3eaa358b4e85a74384
6
+ metadata.gz: 42fee72e3710910b50491aa49473c484a527bfaac8aa075f65c6f04f435c7ebff924a53b4d8c6fa56aec92eecee3c4093d4ddb73f2349415cfedb58c0c3c90a7
7
+ data.tar.gz: c2e884200f577d498d979565d2e3709aed27a96e095ea7e17ac29e6d7c22f4747b68020fd81405e7432e30a0d08041ff78c0e8fbcf016e8164704ce761b54c79
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2023-11-08)
5
+ ------------------
6
+
7
+ * Feature - Added a new parameter in the workgroup that helps you control your cost for compute resources. This feature provides a ceiling for RPUs that Amazon Redshift Serverless can scale up to. When automatic compute scaling is required, having a higher value for MaxRPU can enhance query throughput.
8
+
4
9
  1.17.0 (2023-10-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.18.0
@@ -843,6 +843,10 @@ module Aws::RedshiftServerless
843
843
  # cloud (VPC) routing, which forces Amazon Redshift Serverless to route
844
844
  # traffic through your VPC instead of over the internet.
845
845
  #
846
+ # @option params [Integer] :max_capacity
847
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses to
848
+ # serve queries. The max capacity is specified in RPUs.
849
+ #
846
850
  # @option params [required, String] :namespace_name
847
851
  # The name of the namespace to associate with the workgroup.
848
852
  #
@@ -881,6 +885,7 @@ module Aws::RedshiftServerless
881
885
  # },
882
886
  # ],
883
887
  # enhanced_vpc_routing: false,
888
+ # max_capacity: 1,
884
889
  # namespace_name: "NamespaceName", # required
885
890
  # port: 1,
886
891
  # publicly_accessible: false,
@@ -916,6 +921,7 @@ module Aws::RedshiftServerless
916
921
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
917
922
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
918
923
  # resp.workgroup.enhanced_vpc_routing #=> Boolean
924
+ # resp.workgroup.max_capacity #=> Integer
919
925
  # resp.workgroup.namespace_name #=> String
920
926
  # resp.workgroup.patch_version #=> String
921
927
  # resp.workgroup.port #=> Integer
@@ -1207,6 +1213,7 @@ module Aws::RedshiftServerless
1207
1213
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
1208
1214
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
1209
1215
  # resp.workgroup.enhanced_vpc_routing #=> Boolean
1216
+ # resp.workgroup.max_capacity #=> Integer
1210
1217
  # resp.workgroup.namespace_name #=> String
1211
1218
  # resp.workgroup.patch_version #=> String
1212
1219
  # resp.workgroup.port #=> Integer
@@ -1663,6 +1670,7 @@ module Aws::RedshiftServerless
1663
1670
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
1664
1671
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
1665
1672
  # resp.workgroup.enhanced_vpc_routing #=> Boolean
1673
+ # resp.workgroup.max_capacity #=> Integer
1666
1674
  # resp.workgroup.namespace_name #=> String
1667
1675
  # resp.workgroup.patch_version #=> String
1668
1676
  # resp.workgroup.port #=> Integer
@@ -2205,6 +2213,7 @@ module Aws::RedshiftServerless
2205
2213
  # resp.workgroups[0].endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
2206
2214
  # resp.workgroups[0].endpoint.vpc_endpoints[0].vpc_id #=> String
2207
2215
  # resp.workgroups[0].enhanced_vpc_routing #=> Boolean
2216
+ # resp.workgroups[0].max_capacity #=> Integer
2208
2217
  # resp.workgroups[0].namespace_name #=> String
2209
2218
  # resp.workgroups[0].patch_version #=> String
2210
2219
  # resp.workgroups[0].port #=> Integer
@@ -2866,6 +2875,10 @@ module Aws::RedshiftServerless
2866
2875
  # cloud (VPC) routing, which forces Amazon Redshift Serverless to route
2867
2876
  # traffic through your VPC.
2868
2877
  #
2878
+ # @option params [Integer] :max_capacity
2879
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses to
2880
+ # serve queries. The max capacity is specified in RPUs.
2881
+ #
2869
2882
  # @option params [Integer] :port
2870
2883
  # The custom port to use when connecting to a workgroup. Valid port
2871
2884
  # ranges are 5431-5455 and 8191-8215. The default is 5439.
@@ -2899,6 +2912,7 @@ module Aws::RedshiftServerless
2899
2912
  # },
2900
2913
  # ],
2901
2914
  # enhanced_vpc_routing: false,
2915
+ # max_capacity: 1,
2902
2916
  # port: 1,
2903
2917
  # publicly_accessible: false,
2904
2918
  # security_group_ids: ["SecurityGroupId"],
@@ -2927,6 +2941,7 @@ module Aws::RedshiftServerless
2927
2941
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
2928
2942
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
2929
2943
  # resp.workgroup.enhanced_vpc_routing #=> Boolean
2944
+ # resp.workgroup.max_capacity #=> Integer
2930
2945
  # resp.workgroup.namespace_name #=> String
2931
2946
  # resp.workgroup.patch_version #=> String
2932
2947
  # resp.workgroup.port #=> Integer
@@ -2963,7 +2978,7 @@ module Aws::RedshiftServerless
2963
2978
  params: params,
2964
2979
  config: config)
2965
2980
  context[:gem_name] = 'aws-sdk-redshiftserverless'
2966
- context[:gem_version] = '1.17.0'
2981
+ context[:gem_version] = '1.18.0'
2967
2982
  Seahorse::Client::Request.new(handlers, context)
2968
2983
  end
2969
2984
 
@@ -279,6 +279,7 @@ module Aws::RedshiftServerless
279
279
  CreateWorkgroupRequest.add_member(:base_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "baseCapacity"))
280
280
  CreateWorkgroupRequest.add_member(:config_parameters, Shapes::ShapeRef.new(shape: ConfigParameterList, location_name: "configParameters"))
281
281
  CreateWorkgroupRequest.add_member(:enhanced_vpc_routing, Shapes::ShapeRef.new(shape: Boolean, location_name: "enhancedVpcRouting"))
282
+ CreateWorkgroupRequest.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
282
283
  CreateWorkgroupRequest.add_member(:namespace_name, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location_name: "namespaceName"))
283
284
  CreateWorkgroupRequest.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
284
285
  CreateWorkgroupRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
@@ -743,6 +744,7 @@ module Aws::RedshiftServerless
743
744
  UpdateWorkgroupRequest.add_member(:base_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "baseCapacity"))
744
745
  UpdateWorkgroupRequest.add_member(:config_parameters, Shapes::ShapeRef.new(shape: ConfigParameterList, location_name: "configParameters"))
745
746
  UpdateWorkgroupRequest.add_member(:enhanced_vpc_routing, Shapes::ShapeRef.new(shape: Boolean, location_name: "enhancedVpcRouting"))
747
+ UpdateWorkgroupRequest.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
746
748
  UpdateWorkgroupRequest.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
747
749
  UpdateWorkgroupRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
748
750
  UpdateWorkgroupRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, location_name: "securityGroupIds"))
@@ -790,6 +792,7 @@ module Aws::RedshiftServerless
790
792
  Workgroup.add_member(:custom_domain_name, Shapes::ShapeRef.new(shape: CustomDomainName, location_name: "customDomainName"))
791
793
  Workgroup.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "endpoint"))
792
794
  Workgroup.add_member(:enhanced_vpc_routing, Shapes::ShapeRef.new(shape: Boolean, location_name: "enhancedVpcRouting"))
795
+ Workgroup.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
793
796
  Workgroup.add_member(:namespace_name, Shapes::ShapeRef.new(shape: String, location_name: "namespaceName"))
794
797
  Workgroup.add_member(:patch_version, Shapes::ShapeRef.new(shape: String, location_name: "patchVersion"))
795
798
  Workgroup.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
@@ -443,6 +443,11 @@ module Aws::RedshiftServerless
443
443
  # route traffic through your VPC instead of over the internet.
444
444
  # @return [Boolean]
445
445
  #
446
+ # @!attribute [rw] max_capacity
447
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses
448
+ # to serve queries. The max capacity is specified in RPUs.
449
+ # @return [Integer]
450
+ #
446
451
  # @!attribute [rw] namespace_name
447
452
  # The name of the namespace to associate with the workgroup.
448
453
  # @return [String]
@@ -479,6 +484,7 @@ module Aws::RedshiftServerless
479
484
  :base_capacity,
480
485
  :config_parameters,
481
486
  :enhanced_vpc_routing,
487
+ :max_capacity,
482
488
  :namespace_name,
483
489
  :port,
484
490
  :publicly_accessible,
@@ -2583,6 +2589,11 @@ module Aws::RedshiftServerless
2583
2589
  # route traffic through your VPC.
2584
2590
  # @return [Boolean]
2585
2591
  #
2592
+ # @!attribute [rw] max_capacity
2593
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses
2594
+ # to serve queries. The max capacity is specified in RPUs.
2595
+ # @return [Integer]
2596
+ #
2586
2597
  # @!attribute [rw] port
2587
2598
  # The custom port to use when connecting to a workgroup. Valid port
2588
2599
  # ranges are 5431-5455 and 8191-8215. The default is 5439.
@@ -2612,6 +2623,7 @@ module Aws::RedshiftServerless
2612
2623
  :base_capacity,
2613
2624
  :config_parameters,
2614
2625
  :enhanced_vpc_routing,
2626
+ :max_capacity,
2615
2627
  :port,
2616
2628
  :publicly_accessible,
2617
2629
  :security_group_ids,
@@ -2792,6 +2804,11 @@ module Aws::RedshiftServerless
2792
2804
  # route traffic through your VPC.
2793
2805
  # @return [Boolean]
2794
2806
  #
2807
+ # @!attribute [rw] max_capacity
2808
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses
2809
+ # to serve queries. The max capacity is specified in RPUs.
2810
+ # @return [Integer]
2811
+ #
2795
2812
  # @!attribute [rw] namespace_name
2796
2813
  # The namespace the workgroup is associated with.
2797
2814
  # @return [String]
@@ -2861,6 +2878,7 @@ module Aws::RedshiftServerless
2861
2878
  :custom_domain_name,
2862
2879
  :endpoint,
2863
2880
  :enhanced_vpc_routing,
2881
+ :max_capacity,
2864
2882
  :namespace_name,
2865
2883
  :patch_version,
2866
2884
  :port,
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-redshiftserverless/customizations'
52
52
  # @!group service
53
53
  module Aws::RedshiftServerless
54
54
 
55
- GEM_VERSION = '1.17.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end
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.17.0
4
+ version: 1.18.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-10-30 00:00:00.000000000 Z
11
+ date: 2023-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core