aws-sdk-redshiftserverless 1.23.0 → 1.25.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshiftserverless/client.rb +9 -9
- data/lib/aws-sdk-redshiftserverless/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-redshiftserverless/types.rb +16 -19
- data/lib/aws-sdk-redshiftserverless.rb +1 -1
- data/sig/client.rbs +861 -0
- data/sig/errors.rbs +50 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1014 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44cec536aab2668f49b0e90adbc511af7f61c6c0f45715b3a029fa8aeb1f9d39
|
4
|
+
data.tar.gz: 62eb7859fa1aef0fbf77bbc49309676c0235631955142804c3efc09f8d24e6a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b71e05de4f3d07cfd43a3a609484a6f6c943f84d98b0d9280ce499502f52cbfbc7f0cfd852ca66bfa7f70dab99b88e039cae3394c2567730427d8c7c52427618
|
7
|
+
data.tar.gz: d8842569c7a3e44d123156f3ccaa374c86c615c6de25a846d77ab6f9312a8be35d21e7fd213c9486a5038dbea9fd40878a9e15b04c5b33b15a3aaef5679f479a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.25.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.24.0 (2024-01-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updates to ConfigParameter for RSS workgroup, removal of use_fips_ssl
|
13
|
+
|
4
14
|
1.23.0 (2024-01-05)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.25.0
|
@@ -1020,10 +1020,10 @@ module Aws::RedshiftServerless
|
|
1020
1020
|
# An array of parameters to set for advanced control over a database.
|
1021
1021
|
# The options are `auto_mv`, `datestyle`,
|
1022
1022
|
# `enable_case_sensitive_identifier`, `enable_user_activity_logging`,
|
1023
|
-
# `query_group`, `search_path`, `require_ssl`,
|
1024
|
-
#
|
1025
|
-
#
|
1026
|
-
#
|
1023
|
+
# `query_group`, `search_path`, `require_ssl`, and query monitoring
|
1024
|
+
# metrics that let you define performance boundaries. For more
|
1025
|
+
# information about query monitoring rules and available metrics, see [
|
1026
|
+
# Query monitoring metrics for Amazon Redshift Serverless][1].
|
1027
1027
|
#
|
1028
1028
|
#
|
1029
1029
|
#
|
@@ -3531,10 +3531,10 @@ module Aws::RedshiftServerless
|
|
3531
3531
|
# An array of parameters to set for advanced control over a database.
|
3532
3532
|
# The options are `auto_mv`, `datestyle`,
|
3533
3533
|
# `enable_case_sensitive_identifier`, `enable_user_activity_logging`,
|
3534
|
-
# `query_group`, `search_path`, `require_ssl`,
|
3535
|
-
#
|
3536
|
-
#
|
3537
|
-
#
|
3534
|
+
# `query_group`, `search_path`, `require_ssl`, and query monitoring
|
3535
|
+
# metrics that let you define performance boundaries. For more
|
3536
|
+
# information about query monitoring rules and available metrics, see [
|
3537
|
+
# Query monitoring metrics for Amazon Redshift Serverless][1].
|
3538
3538
|
#
|
3539
3539
|
#
|
3540
3540
|
#
|
@@ -3650,7 +3650,7 @@ module Aws::RedshiftServerless
|
|
3650
3650
|
params: params,
|
3651
3651
|
config: config)
|
3652
3652
|
context[:gem_name] = 'aws-sdk-redshiftserverless'
|
3653
|
-
context[:gem_version] = '1.
|
3653
|
+
context[:gem_version] = '1.25.0'
|
3654
3654
|
Seahorse::Client::Request.new(handlers, context)
|
3655
3655
|
end
|
3656
3656
|
|
@@ -14,6 +14,7 @@ module Aws::RedshiftServerless
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::RedshiftServerless::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -62,10 +62,10 @@ module Aws::RedshiftServerless
|
|
62
62
|
# @!attribute [rw] parameter_key
|
63
63
|
# The key of the parameter. The options are `auto_mv`, `datestyle`,
|
64
64
|
# `enable_case_sensitive_identifier`, `enable_user_activity_logging`,
|
65
|
-
# `query_group`, `search_path`, and query monitoring
|
66
|
-
# you define performance boundaries. For more
|
67
|
-
# monitoring rules and available metrics, see
|
68
|
-
# metrics for Amazon Redshift Serverless][1].
|
65
|
+
# `query_group`, `search_path`, `require_ssl`, and query monitoring
|
66
|
+
# metrics that let you define performance boundaries. For more
|
67
|
+
# information about query monitoring rules and available metrics, see
|
68
|
+
# [Query monitoring metrics for Amazon Redshift Serverless][1].
|
69
69
|
#
|
70
70
|
#
|
71
71
|
#
|
@@ -627,11 +627,10 @@ module Aws::RedshiftServerless
|
|
627
627
|
# An array of parameters to set for advanced control over a database.
|
628
628
|
# The options are `auto_mv`, `datestyle`,
|
629
629
|
# `enable_case_sensitive_identifier`, `enable_user_activity_logging`,
|
630
|
-
# `query_group`, `search_path`, `require_ssl`,
|
631
|
-
#
|
632
|
-
#
|
633
|
-
#
|
634
|
-
# Serverless][1].
|
630
|
+
# `query_group`, `search_path`, `require_ssl`, and query monitoring
|
631
|
+
# metrics that let you define performance boundaries. For more
|
632
|
+
# information about query monitoring rules and available metrics, see
|
633
|
+
# [ Query monitoring metrics for Amazon Redshift Serverless][1].
|
635
634
|
#
|
636
635
|
#
|
637
636
|
#
|
@@ -3366,11 +3365,10 @@ module Aws::RedshiftServerless
|
|
3366
3365
|
# An array of parameters to set for advanced control over a database.
|
3367
3366
|
# The options are `auto_mv`, `datestyle`,
|
3368
3367
|
# `enable_case_sensitive_identifier`, `enable_user_activity_logging`,
|
3369
|
-
# `query_group`, `search_path`, `require_ssl`,
|
3370
|
-
#
|
3371
|
-
#
|
3372
|
-
#
|
3373
|
-
# Serverless][1].
|
3368
|
+
# `query_group`, `search_path`, `require_ssl`, and query monitoring
|
3369
|
+
# metrics that let you define performance boundaries. For more
|
3370
|
+
# information about query monitoring rules and available metrics, see
|
3371
|
+
# [ Query monitoring metrics for Amazon Redshift Serverless][1].
|
3374
3372
|
#
|
3375
3373
|
#
|
3376
3374
|
#
|
@@ -3561,11 +3559,10 @@ module Aws::RedshiftServerless
|
|
3561
3559
|
# An array of parameters to set for advanced control over a database.
|
3562
3560
|
# The options are `auto_mv`, `datestyle`,
|
3563
3561
|
# `enable_case_sensitive_identifier`, `enable_user_activity_logging`,
|
3564
|
-
# `query_group`, `search_path`, `require_ssl`,
|
3565
|
-
#
|
3566
|
-
#
|
3567
|
-
#
|
3568
|
-
# Serverless][1].
|
3562
|
+
# `query_group`, `search_path`, `require_ssl`, and query monitoring
|
3563
|
+
# metrics that let you define performance boundaries. For more
|
3564
|
+
# information about query monitoring rules and available metrics, see
|
3565
|
+
# [ Query monitoring metrics for Amazon Redshift Serverless][1].
|
3569
3566
|
#
|
3570
3567
|
#
|
3571
3568
|
#
|