aws-sdk-redshiftserverless 1.17.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b9184e693fb902ca9d75b4bf9985648a5d9e06b7b34a64c2c092ad5f3b155c5
4
- data.tar.gz: 526f83cc243a00189ef34d729599ac61ed5aa5882c29f9612161e3d57b206078
3
+ metadata.gz: e364ba8b4a492c6337728458feec6290bb4e3d8f31c271e9e5edafce3c848de1
4
+ data.tar.gz: 2c6e24c20b842b5ccccd0d678f5800bf1341eac01a93b6cfff32760d8e82d72a
5
5
  SHA512:
6
- metadata.gz: c0c411485e0a473488754fb4341fd02fef03d11241348874555465c65aa857c646237149d604c1b72695e76434999d409fa8c2031b6a1862ac301afc58a4b4bb
7
- data.tar.gz: 499c1dc3f939265c76855b6f537cc0fc336d10ab1a99b0433b733c61f35d84a1fe387dc787707e44d1fa0c0c5b4a93924f531ed7c01e5c3eaa358b4e85a74384
6
+ metadata.gz: ca14241cab661962725d8ced9ad6e4bc870d841fc39df4720fa057f40d3d39d3156cec2fe646071ea3d2365f48092e66f989c3d2d217f63b62a8029dade165c3
7
+ data.tar.gz: 13c1c92abe20d0caa007026f9b26c95b68ecbdc5cd8cb65f9563d440e3e8e07bc22eeb69ada9d61a76b22e60531cea8b22c168fd867fd97dca30981043950559
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2023-11-17)
5
+ ------------------
6
+
7
+ * Feature - Updated SDK for Amazon Redshift Serverless, which provides the ability to configure a connection with IAM Identity Center to manage user and group access to databases.
8
+
9
+ 1.18.0 (2023-11-08)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.17.0 (2023-10-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.19.0
@@ -627,6 +627,10 @@ module Aws::RedshiftServerless
627
627
  # @option params [required, String] :namespace_name
628
628
  # The name of the namespace.
629
629
  #
630
+ # @option params [String] :redshift_idc_application_arn
631
+ # The ARN for the Redshift application that integrates with IAM Identity
632
+ # Center.
633
+ #
630
634
  # @option params [Array<Types::Tag>] :tags
631
635
  # A list of tag instances.
632
636
  #
@@ -647,6 +651,7 @@ module Aws::RedshiftServerless
647
651
  # log_exports: ["useractivitylog"], # accepts useractivitylog, userlog, connectionlog
648
652
  # manage_admin_password: false,
649
653
  # namespace_name: "NamespaceName", # required
654
+ # redshift_idc_application_arn: "RedshiftIdcApplicationArn",
650
655
  # tags: [
651
656
  # {
652
657
  # key: "TagKey", # required
@@ -843,6 +848,10 @@ module Aws::RedshiftServerless
843
848
  # cloud (VPC) routing, which forces Amazon Redshift Serverless to route
844
849
  # traffic through your VPC instead of over the internet.
845
850
  #
851
+ # @option params [Integer] :max_capacity
852
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses to
853
+ # serve queries. The max capacity is specified in RPUs.
854
+ #
846
855
  # @option params [required, String] :namespace_name
847
856
  # The name of the namespace to associate with the workgroup.
848
857
  #
@@ -881,6 +890,7 @@ module Aws::RedshiftServerless
881
890
  # },
882
891
  # ],
883
892
  # enhanced_vpc_routing: false,
893
+ # max_capacity: 1,
884
894
  # namespace_name: "NamespaceName", # required
885
895
  # port: 1,
886
896
  # publicly_accessible: false,
@@ -916,6 +926,7 @@ module Aws::RedshiftServerless
916
926
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
917
927
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
918
928
  # resp.workgroup.enhanced_vpc_routing #=> Boolean
929
+ # resp.workgroup.max_capacity #=> Integer
919
930
  # resp.workgroup.namespace_name #=> String
920
931
  # resp.workgroup.patch_version #=> String
921
932
  # resp.workgroup.port #=> Integer
@@ -1207,6 +1218,7 @@ module Aws::RedshiftServerless
1207
1218
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
1208
1219
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
1209
1220
  # resp.workgroup.enhanced_vpc_routing #=> Boolean
1221
+ # resp.workgroup.max_capacity #=> Integer
1210
1222
  # resp.workgroup.namespace_name #=> String
1211
1223
  # resp.workgroup.patch_version #=> String
1212
1224
  # resp.workgroup.port #=> Integer
@@ -1663,6 +1675,7 @@ module Aws::RedshiftServerless
1663
1675
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
1664
1676
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
1665
1677
  # resp.workgroup.enhanced_vpc_routing #=> Boolean
1678
+ # resp.workgroup.max_capacity #=> Integer
1666
1679
  # resp.workgroup.namespace_name #=> String
1667
1680
  # resp.workgroup.patch_version #=> String
1668
1681
  # resp.workgroup.port #=> Integer
@@ -2205,6 +2218,7 @@ module Aws::RedshiftServerless
2205
2218
  # resp.workgroups[0].endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
2206
2219
  # resp.workgroups[0].endpoint.vpc_endpoints[0].vpc_id #=> String
2207
2220
  # resp.workgroups[0].enhanced_vpc_routing #=> Boolean
2221
+ # resp.workgroups[0].max_capacity #=> Integer
2208
2222
  # resp.workgroups[0].namespace_name #=> String
2209
2223
  # resp.workgroups[0].patch_version #=> String
2210
2224
  # resp.workgroups[0].port #=> Integer
@@ -2866,6 +2880,10 @@ module Aws::RedshiftServerless
2866
2880
  # cloud (VPC) routing, which forces Amazon Redshift Serverless to route
2867
2881
  # traffic through your VPC.
2868
2882
  #
2883
+ # @option params [Integer] :max_capacity
2884
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses to
2885
+ # serve queries. The max capacity is specified in RPUs.
2886
+ #
2869
2887
  # @option params [Integer] :port
2870
2888
  # The custom port to use when connecting to a workgroup. Valid port
2871
2889
  # ranges are 5431-5455 and 8191-8215. The default is 5439.
@@ -2899,6 +2917,7 @@ module Aws::RedshiftServerless
2899
2917
  # },
2900
2918
  # ],
2901
2919
  # enhanced_vpc_routing: false,
2920
+ # max_capacity: 1,
2902
2921
  # port: 1,
2903
2922
  # publicly_accessible: false,
2904
2923
  # security_group_ids: ["SecurityGroupId"],
@@ -2927,6 +2946,7 @@ module Aws::RedshiftServerless
2927
2946
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
2928
2947
  # resp.workgroup.endpoint.vpc_endpoints[0].vpc_id #=> String
2929
2948
  # resp.workgroup.enhanced_vpc_routing #=> Boolean
2949
+ # resp.workgroup.max_capacity #=> Integer
2930
2950
  # resp.workgroup.namespace_name #=> String
2931
2951
  # resp.workgroup.patch_version #=> String
2932
2952
  # resp.workgroup.port #=> Integer
@@ -2963,7 +2983,7 @@ module Aws::RedshiftServerless
2963
2983
  params: params,
2964
2984
  config: config)
2965
2985
  context[:gem_name] = 'aws-sdk-redshiftserverless'
2966
- context[:gem_version] = '1.17.0'
2986
+ context[:gem_version] = '1.19.0'
2967
2987
  Seahorse::Client::Request.new(handlers, context)
2968
2988
  end
2969
2989
 
@@ -128,6 +128,7 @@ module Aws::RedshiftServerless
128
128
  PutResourcePolicyResponse = Shapes::StructureShape.new(name: 'PutResourcePolicyResponse')
129
129
  RecoveryPoint = Shapes::StructureShape.new(name: 'RecoveryPoint')
130
130
  RecoveryPointList = Shapes::ListShape.new(name: 'RecoveryPointList')
131
+ RedshiftIdcApplicationArn = Shapes::StringShape.new(name: 'RedshiftIdcApplicationArn')
131
132
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
132
133
  ResourcePolicy = Shapes::StructureShape.new(name: 'ResourcePolicy')
133
134
  RestoreFromRecoveryPointRequest = Shapes::StructureShape.new(name: 'RestoreFromRecoveryPointRequest')
@@ -251,6 +252,7 @@ module Aws::RedshiftServerless
251
252
  CreateNamespaceRequest.add_member(:log_exports, Shapes::ShapeRef.new(shape: LogExportList, location_name: "logExports"))
252
253
  CreateNamespaceRequest.add_member(:manage_admin_password, Shapes::ShapeRef.new(shape: Boolean, location_name: "manageAdminPassword"))
253
254
  CreateNamespaceRequest.add_member(:namespace_name, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location_name: "namespaceName"))
255
+ CreateNamespaceRequest.add_member(:redshift_idc_application_arn, Shapes::ShapeRef.new(shape: RedshiftIdcApplicationArn, location_name: "redshiftIdcApplicationArn"))
254
256
  CreateNamespaceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
255
257
  CreateNamespaceRequest.struct_class = Types::CreateNamespaceRequest
256
258
 
@@ -279,6 +281,7 @@ module Aws::RedshiftServerless
279
281
  CreateWorkgroupRequest.add_member(:base_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "baseCapacity"))
280
282
  CreateWorkgroupRequest.add_member(:config_parameters, Shapes::ShapeRef.new(shape: ConfigParameterList, location_name: "configParameters"))
281
283
  CreateWorkgroupRequest.add_member(:enhanced_vpc_routing, Shapes::ShapeRef.new(shape: Boolean, location_name: "enhancedVpcRouting"))
284
+ CreateWorkgroupRequest.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
282
285
  CreateWorkgroupRequest.add_member(:namespace_name, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location_name: "namespaceName"))
283
286
  CreateWorkgroupRequest.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
284
287
  CreateWorkgroupRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
@@ -743,6 +746,7 @@ module Aws::RedshiftServerless
743
746
  UpdateWorkgroupRequest.add_member(:base_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "baseCapacity"))
744
747
  UpdateWorkgroupRequest.add_member(:config_parameters, Shapes::ShapeRef.new(shape: ConfigParameterList, location_name: "configParameters"))
745
748
  UpdateWorkgroupRequest.add_member(:enhanced_vpc_routing, Shapes::ShapeRef.new(shape: Boolean, location_name: "enhancedVpcRouting"))
749
+ UpdateWorkgroupRequest.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
746
750
  UpdateWorkgroupRequest.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
747
751
  UpdateWorkgroupRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
748
752
  UpdateWorkgroupRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, location_name: "securityGroupIds"))
@@ -790,6 +794,7 @@ module Aws::RedshiftServerless
790
794
  Workgroup.add_member(:custom_domain_name, Shapes::ShapeRef.new(shape: CustomDomainName, location_name: "customDomainName"))
791
795
  Workgroup.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "endpoint"))
792
796
  Workgroup.add_member(:enhanced_vpc_routing, Shapes::ShapeRef.new(shape: Boolean, location_name: "enhancedVpcRouting"))
797
+ Workgroup.add_member(:max_capacity, Shapes::ShapeRef.new(shape: Integer, location_name: "maxCapacity"))
793
798
  Workgroup.add_member(:namespace_name, Shapes::ShapeRef.new(shape: String, location_name: "namespaceName"))
794
799
  Workgroup.add_member(:patch_version, Shapes::ShapeRef.new(shape: String, location_name: "patchVersion"))
795
800
  Workgroup.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
@@ -289,6 +289,11 @@ module Aws::RedshiftServerless
289
289
  # The name of the namespace.
290
290
  # @return [String]
291
291
  #
292
+ # @!attribute [rw] redshift_idc_application_arn
293
+ # The ARN for the Redshift application that integrates with IAM
294
+ # Identity Center.
295
+ # @return [String]
296
+ #
292
297
  # @!attribute [rw] tags
293
298
  # A list of tag instances.
294
299
  # @return [Array<Types::Tag>]
@@ -306,6 +311,7 @@ module Aws::RedshiftServerless
306
311
  :log_exports,
307
312
  :manage_admin_password,
308
313
  :namespace_name,
314
+ :redshift_idc_application_arn,
309
315
  :tags)
310
316
  SENSITIVE = [:admin_user_password, :admin_username]
311
317
  include Aws::Structure
@@ -443,6 +449,11 @@ module Aws::RedshiftServerless
443
449
  # route traffic through your VPC instead of over the internet.
444
450
  # @return [Boolean]
445
451
  #
452
+ # @!attribute [rw] max_capacity
453
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses
454
+ # to serve queries. The max capacity is specified in RPUs.
455
+ # @return [Integer]
456
+ #
446
457
  # @!attribute [rw] namespace_name
447
458
  # The name of the namespace to associate with the workgroup.
448
459
  # @return [String]
@@ -479,6 +490,7 @@ module Aws::RedshiftServerless
479
490
  :base_capacity,
480
491
  :config_parameters,
481
492
  :enhanced_vpc_routing,
493
+ :max_capacity,
482
494
  :namespace_name,
483
495
  :port,
484
496
  :publicly_accessible,
@@ -2583,6 +2595,11 @@ module Aws::RedshiftServerless
2583
2595
  # route traffic through your VPC.
2584
2596
  # @return [Boolean]
2585
2597
  #
2598
+ # @!attribute [rw] max_capacity
2599
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses
2600
+ # to serve queries. The max capacity is specified in RPUs.
2601
+ # @return [Integer]
2602
+ #
2586
2603
  # @!attribute [rw] port
2587
2604
  # The custom port to use when connecting to a workgroup. Valid port
2588
2605
  # ranges are 5431-5455 and 8191-8215. The default is 5439.
@@ -2612,6 +2629,7 @@ module Aws::RedshiftServerless
2612
2629
  :base_capacity,
2613
2630
  :config_parameters,
2614
2631
  :enhanced_vpc_routing,
2632
+ :max_capacity,
2615
2633
  :port,
2616
2634
  :publicly_accessible,
2617
2635
  :security_group_ids,
@@ -2792,6 +2810,11 @@ module Aws::RedshiftServerless
2792
2810
  # route traffic through your VPC.
2793
2811
  # @return [Boolean]
2794
2812
  #
2813
+ # @!attribute [rw] max_capacity
2814
+ # The maximum data-warehouse capacity Amazon Redshift Serverless uses
2815
+ # to serve queries. The max capacity is specified in RPUs.
2816
+ # @return [Integer]
2817
+ #
2795
2818
  # @!attribute [rw] namespace_name
2796
2819
  # The namespace the workgroup is associated with.
2797
2820
  # @return [String]
@@ -2861,6 +2884,7 @@ module Aws::RedshiftServerless
2861
2884
  :custom_domain_name,
2862
2885
  :endpoint,
2863
2886
  :enhanced_vpc_routing,
2887
+ :max_capacity,
2864
2888
  :namespace_name,
2865
2889
  :patch_version,
2866
2890
  :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.19.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.19.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-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core