aws-sdk-redshiftserverless 1.18.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e364ba8b4a492c6337728458feec6290bb4e3d8f31c271e9e5edafce3c848de1
|
4
|
+
data.tar.gz: 2c6e24c20b842b5ccccd0d678f5800bf1341eac01a93b6cfff32760d8e82d72a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca14241cab661962725d8ced9ad6e4bc870d841fc39df4720fa057f40d3d39d3156cec2fe646071ea3d2365f48092e66f989c3d2d217f63b62a8029dade165c3
|
7
|
+
data.tar.gz: 13c1c92abe20d0caa007026f9b26c95b68ecbdc5cd8cb65f9563d440e3e8e07bc22eeb69ada9d61a76b22e60531cea8b22c168fd867fd97dca30981043950559
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
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
|
+
|
4
9
|
1.18.0 (2023-11-08)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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
|
@@ -2978,7 +2983,7 @@ module Aws::RedshiftServerless
|
|
2978
2983
|
params: params,
|
2979
2984
|
config: config)
|
2980
2985
|
context[:gem_name] = 'aws-sdk-redshiftserverless'
|
2981
|
-
context[:gem_version] = '1.
|
2986
|
+
context[:gem_version] = '1.19.0'
|
2982
2987
|
Seahorse::Client::Request.new(handlers, context)
|
2983
2988
|
end
|
2984
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
|
|
@@ -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
|
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.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-11-
|
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
|