aws-sdk-redshift 1.83.0 → 1.84.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-redshift/client.rb +37 -9
- data/lib/aws-sdk-redshift/client_api.rb +12 -3
- data/lib/aws-sdk-redshift/types.rb +44 -5
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b13b5524ab6aa781ed06676fab91832700d927d703bae8f54818305336087212
|
4
|
+
data.tar.gz: 1c2944243a1d7b5caaea64a89b196d30609abc1ef23f454a3ae498deb927c4b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fec04956e383385b2951e6c11062d5ec22de1042c0d69455eb508419c1b21f41bf54cf828a3cae438a7fc70beae19eb13a18705210d286c99ca66efacb28578f
|
7
|
+
data.tar.gz: 070c4fcbb7106f73ae5b8663923817b52a8968283d65f44b902fe6cffd6431a4261a388e75689b76199e2f4e35c1a49137de41fb977156aa8f5d0b4905c63b45
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.84.0 (2022-07-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds a new --snapshot-arn field for describe-cluster-snapshots, describe-node-configuration-options, restore-from-cluster-snapshot, authorize-snapshot-acsess, and revoke-snapshot-acsess APIs. It allows customers to give a Redshift snapshot ARN or a Redshift Serverless ARN as input.
|
8
|
+
|
4
9
|
1.83.0 (2022-06-08)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.84.0
|
@@ -710,9 +710,12 @@ module Aws::Redshift
|
|
710
710
|
#
|
711
711
|
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
|
712
712
|
#
|
713
|
-
# @option params [
|
713
|
+
# @option params [String] :snapshot_identifier
|
714
714
|
# The identifier of the snapshot the account is authorized to restore.
|
715
715
|
#
|
716
|
+
# @option params [String] :snapshot_arn
|
717
|
+
# The Amazon Resource Name (ARN) of the snapshot to authorize access to.
|
718
|
+
#
|
716
719
|
# @option params [String] :snapshot_cluster_identifier
|
717
720
|
# The identifier of the cluster the snapshot was created from. This
|
718
721
|
# parameter is required if your IAM user has a policy containing a
|
@@ -733,7 +736,8 @@ module Aws::Redshift
|
|
733
736
|
# @example Request syntax with placeholder values
|
734
737
|
#
|
735
738
|
# resp = client.authorize_snapshot_access({
|
736
|
-
# snapshot_identifier: "String",
|
739
|
+
# snapshot_identifier: "String",
|
740
|
+
# snapshot_arn: "String",
|
737
741
|
# snapshot_cluster_identifier: "String",
|
738
742
|
# account_with_restore_access: "String", # required
|
739
743
|
# })
|
@@ -1388,7 +1392,9 @@ module Aws::Redshift
|
|
1388
1392
|
# keys in an HSM.
|
1389
1393
|
#
|
1390
1394
|
# @option params [String] :elastic_ip
|
1391
|
-
# The Elastic IP (EIP) address for the cluster.
|
1395
|
+
# The Elastic IP (EIP) address for the cluster. You don't have to
|
1396
|
+
# specify the EIP for a publicly accessible cluster with
|
1397
|
+
# AvailabilityZoneRelocation turned on.
|
1392
1398
|
#
|
1393
1399
|
# Constraints: The cluster must be provisioned in EC2-VPC and
|
1394
1400
|
# publicly-accessible through an Internet gateway. For more information
|
@@ -3957,6 +3963,10 @@ module Aws::Redshift
|
|
3957
3963
|
# The snapshot identifier of the snapshot about which to return
|
3958
3964
|
# information.
|
3959
3965
|
#
|
3966
|
+
# @option params [String] :snapshot_arn
|
3967
|
+
# The Amazon Resource Name (ARN) of the snapshot associated with the
|
3968
|
+
# message to describe cluster snapshots.
|
3969
|
+
#
|
3960
3970
|
# @option params [String] :snapshot_type
|
3961
3971
|
# The type of snapshots for which you are requesting information. By
|
3962
3972
|
# default, snapshots of all types are returned.
|
@@ -4064,6 +4074,7 @@ module Aws::Redshift
|
|
4064
4074
|
# resp = client.describe_cluster_snapshots({
|
4065
4075
|
# cluster_identifier: "String",
|
4066
4076
|
# snapshot_identifier: "String",
|
4077
|
+
# snapshot_arn: "String",
|
4067
4078
|
# snapshot_type: "String",
|
4068
4079
|
# start_time: Time.now,
|
4069
4080
|
# end_time: Time.now,
|
@@ -5550,6 +5561,10 @@ module Aws::Redshift
|
|
5550
5561
|
# The identifier of the snapshot to evaluate for possible node
|
5551
5562
|
# configurations.
|
5552
5563
|
#
|
5564
|
+
# @option params [String] :snapshot_arn
|
5565
|
+
# The Amazon Resource Name (ARN) of the snapshot associated with the
|
5566
|
+
# message to describe node configuration.
|
5567
|
+
#
|
5553
5568
|
# @option params [String] :owner_account
|
5554
5569
|
# The Amazon Web Services account used to create or copy the snapshot.
|
5555
5570
|
# Required if you are restoring a snapshot you do not own, optional if
|
@@ -5591,6 +5606,7 @@ module Aws::Redshift
|
|
5591
5606
|
# action_type: "restore-cluster", # required, accepts restore-cluster, recommend-node-config, resize-cluster
|
5592
5607
|
# cluster_identifier: "String",
|
5593
5608
|
# snapshot_identifier: "String",
|
5609
|
+
# snapshot_arn: "String",
|
5594
5610
|
# owner_account: "String",
|
5595
5611
|
# filters: [
|
5596
5612
|
# {
|
@@ -10047,12 +10063,16 @@ module Aws::Redshift
|
|
10047
10063
|
# * Must be unique for all clusters within an Amazon Web Services
|
10048
10064
|
# account.
|
10049
10065
|
#
|
10050
|
-
# @option params [
|
10066
|
+
# @option params [String] :snapshot_identifier
|
10051
10067
|
# The name of the snapshot from which to create the new cluster. This
|
10052
10068
|
# parameter isn't case sensitive.
|
10053
10069
|
#
|
10054
10070
|
# Example: `my-snapshot-id`
|
10055
10071
|
#
|
10072
|
+
# @option params [String] :snapshot_arn
|
10073
|
+
# The Amazon Resource Name (ARN) of the snapshot associated with the
|
10074
|
+
# message to restore from a cluster.
|
10075
|
+
#
|
10056
10076
|
# @option params [String] :snapshot_cluster_identifier
|
10057
10077
|
# The name of the cluster the source snapshot was created from. This
|
10058
10078
|
# parameter is required if your IAM user has a policy containing a
|
@@ -10105,7 +10125,9 @@ module Aws::Redshift
|
|
10105
10125
|
# keys in an HSM.
|
10106
10126
|
#
|
10107
10127
|
# @option params [String] :elastic_ip
|
10108
|
-
# The elastic IP (EIP) address for the cluster.
|
10128
|
+
# The elastic IP (EIP) address for the cluster. You don't have to
|
10129
|
+
# specify the EIP for a publicly accessible cluster with
|
10130
|
+
# AvailabilityZoneRelocation turned on.
|
10109
10131
|
#
|
10110
10132
|
# @option params [String] :cluster_parameter_group_name
|
10111
10133
|
# The name of the parameter group to be associated with this cluster.
|
@@ -10297,7 +10319,8 @@ module Aws::Redshift
|
|
10297
10319
|
#
|
10298
10320
|
# resp = client.restore_from_cluster_snapshot({
|
10299
10321
|
# cluster_identifier: "String", # required
|
10300
|
-
# snapshot_identifier: "String",
|
10322
|
+
# snapshot_identifier: "String",
|
10323
|
+
# snapshot_arn: "String",
|
10301
10324
|
# snapshot_cluster_identifier: "String",
|
10302
10325
|
# port: 1,
|
10303
10326
|
# availability_zone: "String",
|
@@ -10847,9 +10870,13 @@ module Aws::Redshift
|
|
10847
10870
|
#
|
10848
10871
|
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html
|
10849
10872
|
#
|
10850
|
-
# @option params [
|
10873
|
+
# @option params [String] :snapshot_identifier
|
10851
10874
|
# The identifier of the snapshot that the account can no longer access.
|
10852
10875
|
#
|
10876
|
+
# @option params [String] :snapshot_arn
|
10877
|
+
# The Amazon Resource Name (ARN) of the snapshot associated with the
|
10878
|
+
# message to revoke access.
|
10879
|
+
#
|
10853
10880
|
# @option params [String] :snapshot_cluster_identifier
|
10854
10881
|
# The identifier of the cluster the snapshot was created from. This
|
10855
10882
|
# parameter is required if your IAM user has a policy containing a
|
@@ -10867,7 +10894,8 @@ module Aws::Redshift
|
|
10867
10894
|
# @example Request syntax with placeholder values
|
10868
10895
|
#
|
10869
10896
|
# resp = client.revoke_snapshot_access({
|
10870
|
-
# snapshot_identifier: "String",
|
10897
|
+
# snapshot_identifier: "String",
|
10898
|
+
# snapshot_arn: "String",
|
10871
10899
|
# snapshot_cluster_identifier: "String",
|
10872
10900
|
# account_with_restore_access: "String", # required
|
10873
10901
|
# })
|
@@ -11137,7 +11165,7 @@ module Aws::Redshift
|
|
11137
11165
|
params: params,
|
11138
11166
|
config: config)
|
11139
11167
|
context[:gem_name] = 'aws-sdk-redshift'
|
11140
|
-
context[:gem_version] = '1.
|
11168
|
+
context[:gem_version] = '1.84.0'
|
11141
11169
|
Seahorse::Client::Request.new(handlers, context)
|
11142
11170
|
end
|
11143
11171
|
|
@@ -622,7 +622,8 @@ module Aws::Redshift
|
|
622
622
|
AuthorizeEndpointAccessMessage.add_member(:vpc_ids, Shapes::ShapeRef.new(shape: VpcIdentifierList, location_name: "VpcIds"))
|
623
623
|
AuthorizeEndpointAccessMessage.struct_class = Types::AuthorizeEndpointAccessMessage
|
624
624
|
|
625
|
-
AuthorizeSnapshotAccessMessage.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String,
|
625
|
+
AuthorizeSnapshotAccessMessage.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotIdentifier"))
|
626
|
+
AuthorizeSnapshotAccessMessage.add_member(:snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotArn"))
|
626
627
|
AuthorizeSnapshotAccessMessage.add_member(:snapshot_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotClusterIdentifier"))
|
627
628
|
AuthorizeSnapshotAccessMessage.add_member(:account_with_restore_access, Shapes::ShapeRef.new(shape: String, required: true, location_name: "AccountWithRestoreAccess"))
|
628
629
|
AuthorizeSnapshotAccessMessage.struct_class = Types::AuthorizeSnapshotAccessMessage
|
@@ -1203,6 +1204,7 @@ module Aws::Redshift
|
|
1203
1204
|
|
1204
1205
|
DescribeClusterSnapshotsMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ClusterIdentifier"))
|
1205
1206
|
DescribeClusterSnapshotsMessage.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotIdentifier"))
|
1207
|
+
DescribeClusterSnapshotsMessage.add_member(:snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotArn"))
|
1206
1208
|
DescribeClusterSnapshotsMessage.add_member(:snapshot_type, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotType"))
|
1207
1209
|
DescribeClusterSnapshotsMessage.add_member(:start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "StartTime"))
|
1208
1210
|
DescribeClusterSnapshotsMessage.add_member(:end_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "EndTime"))
|
@@ -1331,6 +1333,7 @@ module Aws::Redshift
|
|
1331
1333
|
DescribeNodeConfigurationOptionsMessage.add_member(:action_type, Shapes::ShapeRef.new(shape: ActionType, required: true, location_name: "ActionType"))
|
1332
1334
|
DescribeNodeConfigurationOptionsMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ClusterIdentifier"))
|
1333
1335
|
DescribeNodeConfigurationOptionsMessage.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotIdentifier"))
|
1336
|
+
DescribeNodeConfigurationOptionsMessage.add_member(:snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotArn"))
|
1334
1337
|
DescribeNodeConfigurationOptionsMessage.add_member(:owner_account, Shapes::ShapeRef.new(shape: String, location_name: "OwnerAccount"))
|
1335
1338
|
DescribeNodeConfigurationOptionsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: NodeConfigurationOptionsFilterList, location_name: "Filter"))
|
1336
1339
|
DescribeNodeConfigurationOptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
@@ -2137,7 +2140,8 @@ module Aws::Redshift
|
|
2137
2140
|
RestorableNodeTypeList.member = Shapes::ShapeRef.new(shape: String, location_name: "NodeType")
|
2138
2141
|
|
2139
2142
|
RestoreFromClusterSnapshotMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
2140
|
-
RestoreFromClusterSnapshotMessage.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String,
|
2143
|
+
RestoreFromClusterSnapshotMessage.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotIdentifier"))
|
2144
|
+
RestoreFromClusterSnapshotMessage.add_member(:snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotArn"))
|
2141
2145
|
RestoreFromClusterSnapshotMessage.add_member(:snapshot_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotClusterIdentifier"))
|
2142
2146
|
RestoreFromClusterSnapshotMessage.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
|
2143
2147
|
RestoreFromClusterSnapshotMessage.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone"))
|
@@ -2223,7 +2227,8 @@ module Aws::Redshift
|
|
2223
2227
|
RevokeEndpointAccessMessage.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location_name: "Force"))
|
2224
2228
|
RevokeEndpointAccessMessage.struct_class = Types::RevokeEndpointAccessMessage
|
2225
2229
|
|
2226
|
-
RevokeSnapshotAccessMessage.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String,
|
2230
|
+
RevokeSnapshotAccessMessage.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotIdentifier"))
|
2231
|
+
RevokeSnapshotAccessMessage.add_member(:snapshot_arn, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotArn"))
|
2227
2232
|
RevokeSnapshotAccessMessage.add_member(:snapshot_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotClusterIdentifier"))
|
2228
2233
|
RevokeSnapshotAccessMessage.add_member(:account_with_restore_access, Shapes::ShapeRef.new(shape: String, required: true, location_name: "AccountWithRestoreAccess"))
|
2229
2234
|
RevokeSnapshotAccessMessage.struct_class = Types::RevokeSnapshotAccessMessage
|
@@ -2637,6 +2642,7 @@ module Aws::Redshift
|
|
2637
2642
|
o.errors << Shapes::ShapeRef.new(shape: DependentServiceRequestThrottlingFault)
|
2638
2643
|
o.errors << Shapes::ShapeRef.new(shape: InvalidClusterSnapshotStateFault)
|
2639
2644
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededFault)
|
2645
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
2640
2646
|
end)
|
2641
2647
|
|
2642
2648
|
api.add_operation(:batch_delete_cluster_snapshots, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3176,6 +3182,7 @@ module Aws::Redshift
|
|
3176
3182
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
3177
3183
|
o.errors << Shapes::ShapeRef.new(shape: ClusterSnapshotNotFoundFault)
|
3178
3184
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTagFault)
|
3185
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
3179
3186
|
o[:pager] = Aws::Pager.new(
|
3180
3187
|
limit_key: "max_records",
|
3181
3188
|
tokens: {
|
@@ -3427,6 +3434,7 @@ module Aws::Redshift
|
|
3427
3434
|
o.errors << Shapes::ShapeRef.new(shape: InvalidClusterSnapshotStateFault)
|
3428
3435
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
3429
3436
|
o.errors << Shapes::ShapeRef.new(shape: AccessToSnapshotDeniedFault)
|
3437
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
3430
3438
|
o[:pager] = Aws::Pager.new(
|
3431
3439
|
limit_key: "max_records",
|
3432
3440
|
tokens: {
|
@@ -4128,6 +4136,7 @@ module Aws::Redshift
|
|
4128
4136
|
o.errors << Shapes::ShapeRef.new(shape: AccessToSnapshotDeniedFault)
|
4129
4137
|
o.errors << Shapes::ShapeRef.new(shape: AuthorizationNotFoundFault)
|
4130
4138
|
o.errors << Shapes::ShapeRef.new(shape: ClusterSnapshotNotFoundFault)
|
4139
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
4131
4140
|
end)
|
4132
4141
|
|
4133
4142
|
api.add_operation(:rotate_encryption_key, Seahorse::Model::Operation.new.tap do |o|
|
@@ -385,7 +385,8 @@ module Aws::Redshift
|
|
385
385
|
# data as a hash:
|
386
386
|
#
|
387
387
|
# {
|
388
|
-
# snapshot_identifier: "String",
|
388
|
+
# snapshot_identifier: "String",
|
389
|
+
# snapshot_arn: "String",
|
389
390
|
# snapshot_cluster_identifier: "String",
|
390
391
|
# account_with_restore_access: "String", # required
|
391
392
|
# }
|
@@ -394,6 +395,11 @@ module Aws::Redshift
|
|
394
395
|
# The identifier of the snapshot the account is authorized to restore.
|
395
396
|
# @return [String]
|
396
397
|
#
|
398
|
+
# @!attribute [rw] snapshot_arn
|
399
|
+
# The Amazon Resource Name (ARN) of the snapshot to authorize access
|
400
|
+
# to.
|
401
|
+
# @return [String]
|
402
|
+
#
|
397
403
|
# @!attribute [rw] snapshot_cluster_identifier
|
398
404
|
# The identifier of the cluster the snapshot was created from. This
|
399
405
|
# parameter is required if your IAM user has a policy containing a
|
@@ -413,6 +419,7 @@ module Aws::Redshift
|
|
413
419
|
#
|
414
420
|
class AuthorizeSnapshotAccessMessage < Struct.new(
|
415
421
|
:snapshot_identifier,
|
422
|
+
:snapshot_arn,
|
416
423
|
:snapshot_cluster_identifier,
|
417
424
|
:account_with_restore_access)
|
418
425
|
SENSITIVE = []
|
@@ -2207,7 +2214,9 @@ module Aws::Redshift
|
|
2207
2214
|
# @return [String]
|
2208
2215
|
#
|
2209
2216
|
# @!attribute [rw] elastic_ip
|
2210
|
-
# The Elastic IP (EIP) address for the cluster.
|
2217
|
+
# The Elastic IP (EIP) address for the cluster. You don't have to
|
2218
|
+
# specify the EIP for a publicly accessible cluster with
|
2219
|
+
# AvailabilityZoneRelocation turned on.
|
2211
2220
|
#
|
2212
2221
|
# Constraints: The cluster must be provisioned in EC2-VPC and
|
2213
2222
|
# publicly-accessible through an Internet gateway. For more
|
@@ -4210,6 +4219,7 @@ module Aws::Redshift
|
|
4210
4219
|
# {
|
4211
4220
|
# cluster_identifier: "String",
|
4212
4221
|
# snapshot_identifier: "String",
|
4222
|
+
# snapshot_arn: "String",
|
4213
4223
|
# snapshot_type: "String",
|
4214
4224
|
# start_time: Time.now,
|
4215
4225
|
# end_time: Time.now,
|
@@ -4237,6 +4247,11 @@ module Aws::Redshift
|
|
4237
4247
|
# information.
|
4238
4248
|
# @return [String]
|
4239
4249
|
#
|
4250
|
+
# @!attribute [rw] snapshot_arn
|
4251
|
+
# The Amazon Resource Name (ARN) of the snapshot associated with the
|
4252
|
+
# message to describe cluster snapshots.
|
4253
|
+
# @return [String]
|
4254
|
+
#
|
4240
4255
|
# @!attribute [rw] snapshot_type
|
4241
4256
|
# The type of snapshots for which you are requesting information. By
|
4242
4257
|
# default, snapshots of all types are returned.
|
@@ -4348,6 +4363,7 @@ module Aws::Redshift
|
|
4348
4363
|
class DescribeClusterSnapshotsMessage < Struct.new(
|
4349
4364
|
:cluster_identifier,
|
4350
4365
|
:snapshot_identifier,
|
4366
|
+
:snapshot_arn,
|
4351
4367
|
:snapshot_type,
|
4352
4368
|
:start_time,
|
4353
4369
|
:end_time,
|
@@ -5375,6 +5391,7 @@ module Aws::Redshift
|
|
5375
5391
|
# action_type: "restore-cluster", # required, accepts restore-cluster, recommend-node-config, resize-cluster
|
5376
5392
|
# cluster_identifier: "String",
|
5377
5393
|
# snapshot_identifier: "String",
|
5394
|
+
# snapshot_arn: "String",
|
5378
5395
|
# owner_account: "String",
|
5379
5396
|
# filters: [
|
5380
5397
|
# {
|
@@ -5406,6 +5423,11 @@ module Aws::Redshift
|
|
5406
5423
|
# configurations.
|
5407
5424
|
# @return [String]
|
5408
5425
|
#
|
5426
|
+
# @!attribute [rw] snapshot_arn
|
5427
|
+
# The Amazon Resource Name (ARN) of the snapshot associated with the
|
5428
|
+
# message to describe node configuration.
|
5429
|
+
# @return [String]
|
5430
|
+
#
|
5409
5431
|
# @!attribute [rw] owner_account
|
5410
5432
|
# The Amazon Web Services account used to create or copy the snapshot.
|
5411
5433
|
# Required if you are restoring a snapshot you do not own, optional if
|
@@ -5444,6 +5466,7 @@ module Aws::Redshift
|
|
5444
5466
|
:action_type,
|
5445
5467
|
:cluster_identifier,
|
5446
5468
|
:snapshot_identifier,
|
5469
|
+
:snapshot_arn,
|
5447
5470
|
:owner_account,
|
5448
5471
|
:filters,
|
5449
5472
|
:marker,
|
@@ -10173,7 +10196,8 @@ module Aws::Redshift
|
|
10173
10196
|
#
|
10174
10197
|
# {
|
10175
10198
|
# cluster_identifier: "String", # required
|
10176
|
-
# snapshot_identifier: "String",
|
10199
|
+
# snapshot_identifier: "String",
|
10200
|
+
# snapshot_arn: "String",
|
10177
10201
|
# snapshot_cluster_identifier: "String",
|
10178
10202
|
# port: 1,
|
10179
10203
|
# availability_zone: "String",
|
@@ -10231,6 +10255,11 @@ module Aws::Redshift
|
|
10231
10255
|
# Example: `my-snapshot-id`
|
10232
10256
|
# @return [String]
|
10233
10257
|
#
|
10258
|
+
# @!attribute [rw] snapshot_arn
|
10259
|
+
# The Amazon Resource Name (ARN) of the snapshot associated with the
|
10260
|
+
# message to restore from a cluster.
|
10261
|
+
# @return [String]
|
10262
|
+
#
|
10234
10263
|
# @!attribute [rw] snapshot_cluster_identifier
|
10235
10264
|
# The name of the cluster the source snapshot was created from. This
|
10236
10265
|
# parameter is required if your IAM user has a policy containing a
|
@@ -10292,7 +10321,9 @@ module Aws::Redshift
|
|
10292
10321
|
# @return [String]
|
10293
10322
|
#
|
10294
10323
|
# @!attribute [rw] elastic_ip
|
10295
|
-
# The elastic IP (EIP) address for the cluster.
|
10324
|
+
# The elastic IP (EIP) address for the cluster. You don't have to
|
10325
|
+
# specify the EIP for a publicly accessible cluster with
|
10326
|
+
# AvailabilityZoneRelocation turned on.
|
10296
10327
|
# @return [String]
|
10297
10328
|
#
|
10298
10329
|
# @!attribute [rw] cluster_parameter_group_name
|
@@ -10505,6 +10536,7 @@ module Aws::Redshift
|
|
10505
10536
|
class RestoreFromClusterSnapshotMessage < Struct.new(
|
10506
10537
|
:cluster_identifier,
|
10507
10538
|
:snapshot_identifier,
|
10539
|
+
:snapshot_arn,
|
10508
10540
|
:snapshot_cluster_identifier,
|
10509
10541
|
:port,
|
10510
10542
|
:availability_zone,
|
@@ -10855,7 +10887,8 @@ module Aws::Redshift
|
|
10855
10887
|
# data as a hash:
|
10856
10888
|
#
|
10857
10889
|
# {
|
10858
|
-
# snapshot_identifier: "String",
|
10890
|
+
# snapshot_identifier: "String",
|
10891
|
+
# snapshot_arn: "String",
|
10859
10892
|
# snapshot_cluster_identifier: "String",
|
10860
10893
|
# account_with_restore_access: "String", # required
|
10861
10894
|
# }
|
@@ -10865,6 +10898,11 @@ module Aws::Redshift
|
|
10865
10898
|
# access.
|
10866
10899
|
# @return [String]
|
10867
10900
|
#
|
10901
|
+
# @!attribute [rw] snapshot_arn
|
10902
|
+
# The Amazon Resource Name (ARN) of the snapshot associated with the
|
10903
|
+
# message to revoke access.
|
10904
|
+
# @return [String]
|
10905
|
+
#
|
10868
10906
|
# @!attribute [rw] snapshot_cluster_identifier
|
10869
10907
|
# The identifier of the cluster the snapshot was created from. This
|
10870
10908
|
# parameter is required if your IAM user has a policy containing a
|
@@ -10881,6 +10919,7 @@ module Aws::Redshift
|
|
10881
10919
|
#
|
10882
10920
|
class RevokeSnapshotAccessMessage < Struct.new(
|
10883
10921
|
:snapshot_identifier,
|
10922
|
+
:snapshot_arn,
|
10884
10923
|
:snapshot_cluster_identifier,
|
10885
10924
|
:account_with_restore_access)
|
10886
10925
|
SENSITIVE = []
|
data/lib/aws-sdk-redshift.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-redshift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.84.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: 2022-
|
11
|
+
date: 2022-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|