aws-sdk-redshiftserverless 1.18.0 → 1.20.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19953f5bfd4e28d12042e006d5912d78f57bb23e8b4212299ad069c008d36800
|
4
|
+
data.tar.gz: b3b36b0235e618b6cf206eebe09d46a6fe9a376c1ec01b159f2ec3141bfee0c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2433fd96c7ab23a4d0075e75e5ea2212c9738152253a4691cf126ce04623246d050aa149588a03badd3421bac910b2c0dfebe5af93885c32c9d779dabe0c6402
|
7
|
+
data.tar.gz: 3ae1fd617d3bf32f04dc6b274a66ab3f7a0c8a4f6e3102e7c7e77cb1400894259112c6bbcf8dd5b28e4bd61caa59ece272e21b6164a7df289030d29be4924ba8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.20.0 (2023-11-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.19.0 (2023-11-17)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
4
14
|
1.18.0 (2023-11-08)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.20.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.20.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.20.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-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.188.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.188.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,7 +80,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
81
81
|
- - ">="
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: '2.
|
83
|
+
version: '2.5'
|
84
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
85
|
requirements:
|
86
86
|
- - ">="
|