aws-sdk-redshiftserverless 1.70.0 → 1.71.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshiftserverless/client.rb +19 -1
- data/lib/aws-sdk-redshiftserverless/client_api.rb +2 -0
- data/lib/aws-sdk-redshiftserverless/types.rb +25 -3
- data/lib/aws-sdk-redshiftserverless.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb48e92d31f74f1e37e7d2cd79d8105bdbe3019a4032e7044c7b5b986302b4f4
|
|
4
|
+
data.tar.gz: 203fc1dc3e7c93f763bdc356fbedf766f8cea6648d56ffc290eeda028b253842
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2875ea35d84c593537f2a5609295b18bfdad2d0d256b62ce3986bd52789f51cff35609603df31bb09cfd0f4600aa3ca1f9c6fd3e8abc383bcb28b1064da5ba60
|
|
7
|
+
data.tar.gz: db02e226045fc5b3281b33394f1ee3a7a0e2dd85b082d86d9b76d8b750f6d9eb5417a14fb69e17fb481b9d3a50559b4250a345bf3b78b03e5bed4470f9270715
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.71.0 (2026-07-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add support for preserving datasharing, zero-ETL and S3 event integrations on snapshot restore to serverless namespace.
|
|
8
|
+
|
|
4
9
|
1.70.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.71.0
|
|
@@ -3307,6 +3307,14 @@ module Aws::RedshiftServerless
|
|
|
3307
3307
|
|
|
3308
3308
|
# Restore the data from a recovery point.
|
|
3309
3309
|
#
|
|
3310
|
+
# @option params [Boolean] :maintain_integration
|
|
3311
|
+
# If `true`, maintain existing data sharing, zero-ETL and S3 event
|
|
3312
|
+
# integrations when restoring. Otherwise, integrations will not be
|
|
3313
|
+
# maintained after the restore operation. Integrations are only
|
|
3314
|
+
# maintained when restored to the same serverless namespace.
|
|
3315
|
+
#
|
|
3316
|
+
# Default: true
|
|
3317
|
+
#
|
|
3310
3318
|
# @option params [required, String] :namespace_name
|
|
3311
3319
|
# The name of the namespace to restore data into.
|
|
3312
3320
|
#
|
|
@@ -3324,6 +3332,7 @@ module Aws::RedshiftServerless
|
|
|
3324
3332
|
# @example Request syntax with placeholder values
|
|
3325
3333
|
#
|
|
3326
3334
|
# resp = client.restore_from_recovery_point({
|
|
3335
|
+
# maintain_integration: false,
|
|
3327
3336
|
# namespace_name: "NamespaceName", # required
|
|
3328
3337
|
# recovery_point_id: "String", # required
|
|
3329
3338
|
# workgroup_name: "WorkgroupName", # required
|
|
@@ -3365,6 +3374,14 @@ module Aws::RedshiftServerless
|
|
|
3365
3374
|
# The ID of the Key Management Service (KMS) key used to encrypt and
|
|
3366
3375
|
# store the namespace's admin credentials secret.
|
|
3367
3376
|
#
|
|
3377
|
+
# @option params [Boolean] :maintain_integration
|
|
3378
|
+
# If `true`, maintain existing data sharing, zero-ETL and S3 event
|
|
3379
|
+
# integrations when restoring. Otherwise, integrations will not be
|
|
3380
|
+
# maintained after the restore operation. Integrations are only
|
|
3381
|
+
# maintained when restored to the same serverless namespace.
|
|
3382
|
+
#
|
|
3383
|
+
# Default: true
|
|
3384
|
+
#
|
|
3368
3385
|
# @option params [Boolean] :manage_admin_password
|
|
3369
3386
|
# If `true`, Amazon Redshift uses Secrets Manager to manage the restored
|
|
3370
3387
|
# snapshot's admin credentials. If `MmanageAdminPassword` is false or
|
|
@@ -3402,6 +3419,7 @@ module Aws::RedshiftServerless
|
|
|
3402
3419
|
#
|
|
3403
3420
|
# resp = client.restore_from_snapshot({
|
|
3404
3421
|
# admin_password_secret_kms_key_id: "KmsKeyId",
|
|
3422
|
+
# maintain_integration: false,
|
|
3405
3423
|
# manage_admin_password: false,
|
|
3406
3424
|
# namespace_name: "NamespaceName", # required
|
|
3407
3425
|
# owner_account: "String",
|
|
@@ -4387,7 +4405,7 @@ module Aws::RedshiftServerless
|
|
|
4387
4405
|
tracer: tracer
|
|
4388
4406
|
)
|
|
4389
4407
|
context[:gem_name] = 'aws-sdk-redshiftserverless'
|
|
4390
|
-
context[:gem_version] = '1.
|
|
4408
|
+
context[:gem_version] = '1.71.0'
|
|
4391
4409
|
Seahorse::Client::Request.new(handlers, context)
|
|
4392
4410
|
end
|
|
4393
4411
|
|
|
@@ -858,6 +858,7 @@ module Aws::RedshiftServerless
|
|
|
858
858
|
ResourcePolicy.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, location_name: "resourceArn"))
|
|
859
859
|
ResourcePolicy.struct_class = Types::ResourcePolicy
|
|
860
860
|
|
|
861
|
+
RestoreFromRecoveryPointRequest.add_member(:maintain_integration, Shapes::ShapeRef.new(shape: Boolean, location_name: "maintainIntegration"))
|
|
861
862
|
RestoreFromRecoveryPointRequest.add_member(:namespace_name, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location_name: "namespaceName"))
|
|
862
863
|
RestoreFromRecoveryPointRequest.add_member(:recovery_point_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "recoveryPointId"))
|
|
863
864
|
RestoreFromRecoveryPointRequest.add_member(:workgroup_name, Shapes::ShapeRef.new(shape: WorkgroupName, required: true, location_name: "workgroupName"))
|
|
@@ -868,6 +869,7 @@ module Aws::RedshiftServerless
|
|
|
868
869
|
RestoreFromRecoveryPointResponse.struct_class = Types::RestoreFromRecoveryPointResponse
|
|
869
870
|
|
|
870
871
|
RestoreFromSnapshotRequest.add_member(:admin_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "adminPasswordSecretKmsKeyId"))
|
|
872
|
+
RestoreFromSnapshotRequest.add_member(:maintain_integration, Shapes::ShapeRef.new(shape: Boolean, location_name: "maintainIntegration"))
|
|
871
873
|
RestoreFromSnapshotRequest.add_member(:manage_admin_password, Shapes::ShapeRef.new(shape: Boolean, location_name: "manageAdminPassword"))
|
|
872
874
|
RestoreFromSnapshotRequest.add_member(:namespace_name, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location_name: "namespaceName"))
|
|
873
875
|
RestoreFromSnapshotRequest.add_member(:owner_account, Shapes::ShapeRef.new(shape: String, location_name: "ownerAccount"))
|
|
@@ -67,9 +67,11 @@ module Aws::RedshiftServerless
|
|
|
67
67
|
# you define performance boundaries. You can either specify individual
|
|
68
68
|
# query monitoring metrics (such as `max_scan_row_count`,
|
|
69
69
|
# `max_query_execution_time`) or use `wlm_json_configuration` to
|
|
70
|
-
# define query queues with rules, but not both.
|
|
71
|
-
#
|
|
72
|
-
#
|
|
70
|
+
# define query queues with rules, but not both. If you're using
|
|
71
|
+
# `wlm_json_configuration`, the maximum size of `parameterValue` is
|
|
72
|
+
# 8000 characters. For more information about query monitoring rules
|
|
73
|
+
# and available metrics, see [Query monitoring metrics for Amazon
|
|
74
|
+
# Redshift Serverless][1].
|
|
73
75
|
#
|
|
74
76
|
#
|
|
75
77
|
#
|
|
@@ -2770,6 +2772,15 @@ module Aws::RedshiftServerless
|
|
|
2770
2772
|
include Aws::Structure
|
|
2771
2773
|
end
|
|
2772
2774
|
|
|
2775
|
+
# @!attribute [rw] maintain_integration
|
|
2776
|
+
# If `true`, maintain existing data sharing, zero-ETL and S3 event
|
|
2777
|
+
# integrations when restoring. Otherwise, integrations will not be
|
|
2778
|
+
# maintained after the restore operation. Integrations are only
|
|
2779
|
+
# maintained when restored to the same serverless namespace.
|
|
2780
|
+
#
|
|
2781
|
+
# Default: true
|
|
2782
|
+
# @return [Boolean]
|
|
2783
|
+
#
|
|
2773
2784
|
# @!attribute [rw] namespace_name
|
|
2774
2785
|
# The name of the namespace to restore data into.
|
|
2775
2786
|
# @return [String]
|
|
@@ -2785,6 +2796,7 @@ module Aws::RedshiftServerless
|
|
|
2785
2796
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/RestoreFromRecoveryPointRequest AWS API Documentation
|
|
2786
2797
|
#
|
|
2787
2798
|
class RestoreFromRecoveryPointRequest < Struct.new(
|
|
2799
|
+
:maintain_integration,
|
|
2788
2800
|
:namespace_name,
|
|
2789
2801
|
:recovery_point_id,
|
|
2790
2802
|
:workgroup_name)
|
|
@@ -2814,6 +2826,15 @@ module Aws::RedshiftServerless
|
|
|
2814
2826
|
# store the namespace's admin credentials secret.
|
|
2815
2827
|
# @return [String]
|
|
2816
2828
|
#
|
|
2829
|
+
# @!attribute [rw] maintain_integration
|
|
2830
|
+
# If `true`, maintain existing data sharing, zero-ETL and S3 event
|
|
2831
|
+
# integrations when restoring. Otherwise, integrations will not be
|
|
2832
|
+
# maintained after the restore operation. Integrations are only
|
|
2833
|
+
# maintained when restored to the same serverless namespace.
|
|
2834
|
+
#
|
|
2835
|
+
# Default: true
|
|
2836
|
+
# @return [Boolean]
|
|
2837
|
+
#
|
|
2817
2838
|
# @!attribute [rw] manage_admin_password
|
|
2818
2839
|
# If `true`, Amazon Redshift uses Secrets Manager to manage the
|
|
2819
2840
|
# restored snapshot's admin credentials. If `MmanageAdminPassword` is
|
|
@@ -2852,6 +2873,7 @@ module Aws::RedshiftServerless
|
|
|
2852
2873
|
#
|
|
2853
2874
|
class RestoreFromSnapshotRequest < Struct.new(
|
|
2854
2875
|
:admin_password_secret_kms_key_id,
|
|
2876
|
+
:maintain_integration,
|
|
2855
2877
|
:manage_admin_password,
|
|
2856
2878
|
:namespace_name,
|
|
2857
2879
|
:owner_account,
|
data/sig/client.rbs
CHANGED
|
@@ -739,6 +739,7 @@ module Aws
|
|
|
739
739
|
end
|
|
740
740
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RedshiftServerless/Client.html#restore_from_recovery_point-instance_method
|
|
741
741
|
def restore_from_recovery_point: (
|
|
742
|
+
?maintain_integration: bool,
|
|
742
743
|
namespace_name: ::String,
|
|
743
744
|
recovery_point_id: ::String,
|
|
744
745
|
workgroup_name: ::String
|
|
@@ -754,6 +755,7 @@ module Aws
|
|
|
754
755
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RedshiftServerless/Client.html#restore_from_snapshot-instance_method
|
|
755
756
|
def restore_from_snapshot: (
|
|
756
757
|
?admin_password_secret_kms_key_id: ::String,
|
|
758
|
+
?maintain_integration: bool,
|
|
757
759
|
?manage_admin_password: bool,
|
|
758
760
|
namespace_name: ::String,
|
|
759
761
|
?owner_account: ::String,
|
data/sig/types.rbs
CHANGED
|
@@ -794,6 +794,7 @@ module Aws::RedshiftServerless
|
|
|
794
794
|
end
|
|
795
795
|
|
|
796
796
|
class RestoreFromRecoveryPointRequest
|
|
797
|
+
attr_accessor maintain_integration: bool
|
|
797
798
|
attr_accessor namespace_name: ::String
|
|
798
799
|
attr_accessor recovery_point_id: ::String
|
|
799
800
|
attr_accessor workgroup_name: ::String
|
|
@@ -808,6 +809,7 @@ module Aws::RedshiftServerless
|
|
|
808
809
|
|
|
809
810
|
class RestoreFromSnapshotRequest
|
|
810
811
|
attr_accessor admin_password_secret_kms_key_id: ::String
|
|
812
|
+
attr_accessor maintain_integration: bool
|
|
811
813
|
attr_accessor manage_admin_password: bool
|
|
812
814
|
attr_accessor namespace_name: ::String
|
|
813
815
|
attr_accessor owner_account: ::String
|