aws-sdk-redshift 1.60.0 → 1.61.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.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +100 -1
- data/lib/aws-sdk-redshift/client_api.rb +29 -0
- data/lib/aws-sdk-redshift/types.rb +117 -3
- 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: c542840eaf2d52f2f757823892da7b621780fb0b69dbd76444cc036dae81ac22
|
4
|
+
data.tar.gz: 1af5522002d64fb9fde0d32f9439ea29daee2574b343fde73d7342ea12d6441e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 433ffe4e03a9e79d5bf34fb25285a247a9e81f921eff58fc52dc573de7720954bbed33f3fef0d02733df8db240badfd7285fd40e917b8bf22fa3319610d4cea4
|
7
|
+
data.tar.gz: b9b5d242f52ffd4f1a1cd1620f84f1cd686711bd7386d873308d1feeeb9df349054956252e69d1eb05f38f7f428cf52eb564f04bd4163bb42cfd79074b0cc2a3
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.61.0
|
data/lib/aws-sdk-redshift.rb
CHANGED
@@ -1225,6 +1225,18 @@ module Aws::Redshift
|
|
1225
1225
|
# The option to enable relocation for an Amazon Redshift cluster between
|
1226
1226
|
# Availability Zones after the cluster is created.
|
1227
1227
|
#
|
1228
|
+
# @option params [String] :aqua_configuration_status
|
1229
|
+
# The value represents how the cluster is configured to use AQUA
|
1230
|
+
# (Advanced Query Accelerator) when it is created. Possible values
|
1231
|
+
# include the following.
|
1232
|
+
#
|
1233
|
+
# * enabled - Use AQUA if it is available for the current AWS Region and
|
1234
|
+
# Amazon Redshift node type.
|
1235
|
+
#
|
1236
|
+
# * disabled - Don't use AQUA.
|
1237
|
+
#
|
1238
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
1239
|
+
#
|
1228
1240
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1229
1241
|
#
|
1230
1242
|
# * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
|
@@ -1268,6 +1280,7 @@ module Aws::Redshift
|
|
1268
1280
|
# maintenance_track_name: "String",
|
1269
1281
|
# snapshot_schedule_identifier: "String",
|
1270
1282
|
# availability_zone_relocation: false,
|
1283
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1271
1284
|
# })
|
1272
1285
|
#
|
1273
1286
|
# @example Response structure
|
@@ -1378,6 +1391,8 @@ module Aws::Redshift
|
|
1378
1391
|
# resp.cluster.availability_zone_relocation_status #=> String
|
1379
1392
|
# resp.cluster.cluster_namespace_arn #=> String
|
1380
1393
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
1394
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
1395
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
1381
1396
|
#
|
1382
1397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
|
1383
1398
|
#
|
@@ -2658,6 +2673,8 @@ module Aws::Redshift
|
|
2658
2673
|
# resp.cluster.availability_zone_relocation_status #=> String
|
2659
2674
|
# resp.cluster.cluster_namespace_arn #=> String
|
2660
2675
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
2676
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
2677
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
2661
2678
|
#
|
2662
2679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
|
2663
2680
|
#
|
@@ -4129,6 +4146,8 @@ module Aws::Redshift
|
|
4129
4146
|
# resp.clusters[0].availability_zone_relocation_status #=> String
|
4130
4147
|
# resp.clusters[0].cluster_namespace_arn #=> String
|
4131
4148
|
# resp.clusters[0].total_storage_capacity_in_mega_bytes #=> Integer
|
4149
|
+
# resp.clusters[0].aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
4150
|
+
# resp.clusters[0].aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
4132
4151
|
#
|
4133
4152
|
#
|
4134
4153
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -6024,6 +6043,8 @@ module Aws::Redshift
|
|
6024
6043
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6025
6044
|
# resp.cluster.cluster_namespace_arn #=> String
|
6026
6045
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6046
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6047
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6027
6048
|
#
|
6028
6049
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
|
6029
6050
|
#
|
@@ -6269,6 +6290,8 @@ module Aws::Redshift
|
|
6269
6290
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6270
6291
|
# resp.cluster.cluster_namespace_arn #=> String
|
6271
6292
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6293
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6294
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6272
6295
|
#
|
6273
6296
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
|
6274
6297
|
#
|
@@ -6494,6 +6517,47 @@ module Aws::Redshift
|
|
6494
6517
|
req.send_request(options)
|
6495
6518
|
end
|
6496
6519
|
|
6520
|
+
# Modifies whether a cluster can use AQUA (Advanced Query Accelerator).
|
6521
|
+
#
|
6522
|
+
# @option params [required, String] :cluster_identifier
|
6523
|
+
# The identifier of the cluster to be modified.
|
6524
|
+
#
|
6525
|
+
# @option params [String] :aqua_configuration_status
|
6526
|
+
# The new value of AQUA configuration status. Possible values include
|
6527
|
+
# the following.
|
6528
|
+
#
|
6529
|
+
# * enabled - Use AQUA if it is available for the current AWS Region and
|
6530
|
+
# Amazon Redshift node type.
|
6531
|
+
#
|
6532
|
+
# * disabled - Don't use AQUA.
|
6533
|
+
#
|
6534
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
6535
|
+
#
|
6536
|
+
# @return [Types::ModifyAquaOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6537
|
+
#
|
6538
|
+
# * {Types::ModifyAquaOutputMessage#aqua_configuration #aqua_configuration} => Types::AquaConfiguration
|
6539
|
+
#
|
6540
|
+
# @example Request syntax with placeholder values
|
6541
|
+
#
|
6542
|
+
# resp = client.modify_aqua_configuration({
|
6543
|
+
# cluster_identifier: "String", # required
|
6544
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
6545
|
+
# })
|
6546
|
+
#
|
6547
|
+
# @example Response structure
|
6548
|
+
#
|
6549
|
+
# resp.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6550
|
+
# resp.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6551
|
+
#
|
6552
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaConfiguration AWS API Documentation
|
6553
|
+
#
|
6554
|
+
# @overload modify_aqua_configuration(params = {})
|
6555
|
+
# @param [Hash] params ({})
|
6556
|
+
def modify_aqua_configuration(params = {}, options = {})
|
6557
|
+
req = build_request(:modify_aqua_configuration, params)
|
6558
|
+
req.send_request(options)
|
6559
|
+
end
|
6560
|
+
|
6497
6561
|
# Modifies the settings for a cluster.
|
6498
6562
|
#
|
6499
6563
|
# You can also change node type and the number of nodes to scale up or
|
@@ -6917,6 +6981,8 @@ module Aws::Redshift
|
|
6917
6981
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6918
6982
|
# resp.cluster.cluster_namespace_arn #=> String
|
6919
6983
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6984
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6985
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6920
6986
|
#
|
6921
6987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
|
6922
6988
|
#
|
@@ -7059,6 +7125,8 @@ module Aws::Redshift
|
|
7059
7125
|
# resp.cluster.availability_zone_relocation_status #=> String
|
7060
7126
|
# resp.cluster.cluster_namespace_arn #=> String
|
7061
7127
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7128
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7129
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7062
7130
|
#
|
7063
7131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
|
7064
7132
|
#
|
@@ -7208,6 +7276,8 @@ module Aws::Redshift
|
|
7208
7276
|
# resp.cluster.availability_zone_relocation_status #=> String
|
7209
7277
|
# resp.cluster.cluster_namespace_arn #=> String
|
7210
7278
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7279
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7280
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7211
7281
|
#
|
7212
7282
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
|
7213
7283
|
#
|
@@ -7366,6 +7436,8 @@ module Aws::Redshift
|
|
7366
7436
|
# resp.cluster.availability_zone_relocation_status #=> String
|
7367
7437
|
# resp.cluster.cluster_namespace_arn #=> String
|
7368
7438
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7439
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7440
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7369
7441
|
#
|
7370
7442
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
|
7371
7443
|
#
|
@@ -8019,6 +8091,8 @@ module Aws::Redshift
|
|
8019
8091
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8020
8092
|
# resp.cluster.cluster_namespace_arn #=> String
|
8021
8093
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8094
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8095
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8022
8096
|
#
|
8023
8097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
|
8024
8098
|
#
|
@@ -8260,6 +8334,8 @@ module Aws::Redshift
|
|
8260
8334
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8261
8335
|
# resp.cluster.cluster_namespace_arn #=> String
|
8262
8336
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8337
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8338
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8263
8339
|
#
|
8264
8340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
|
8265
8341
|
#
|
@@ -8464,6 +8540,8 @@ module Aws::Redshift
|
|
8464
8540
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8465
8541
|
# resp.cluster.cluster_namespace_arn #=> String
|
8466
8542
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8543
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8544
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8467
8545
|
#
|
8468
8546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
|
8469
8547
|
#
|
@@ -8707,6 +8785,8 @@ module Aws::Redshift
|
|
8707
8785
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8708
8786
|
# resp.cluster.cluster_namespace_arn #=> String
|
8709
8787
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8788
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8789
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8710
8790
|
#
|
8711
8791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
|
8712
8792
|
#
|
@@ -8959,6 +9039,18 @@ module Aws::Redshift
|
|
8959
9039
|
# The option to enable relocation for an Amazon Redshift cluster between
|
8960
9040
|
# Availability Zones after the cluster is restored.
|
8961
9041
|
#
|
9042
|
+
# @option params [String] :aqua_configuration_status
|
9043
|
+
# The value represents how the cluster is configured to use AQUA
|
9044
|
+
# (Advanced Query Accelerator) after the cluster is restored. Possible
|
9045
|
+
# values include the following.
|
9046
|
+
#
|
9047
|
+
# * enabled - Use AQUA if it is available for the current AWS Region and
|
9048
|
+
# Amazon Redshift node type.
|
9049
|
+
#
|
9050
|
+
# * disabled - Don't use AQUA.
|
9051
|
+
#
|
9052
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
9053
|
+
#
|
8962
9054
|
# @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8963
9055
|
#
|
8964
9056
|
# * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
|
@@ -8993,6 +9085,7 @@ module Aws::Redshift
|
|
8993
9085
|
# snapshot_schedule_identifier: "String",
|
8994
9086
|
# number_of_nodes: 1,
|
8995
9087
|
# availability_zone_relocation: false,
|
9088
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
8996
9089
|
# })
|
8997
9090
|
#
|
8998
9091
|
# @example Response structure
|
@@ -9103,6 +9196,8 @@ module Aws::Redshift
|
|
9103
9196
|
# resp.cluster.availability_zone_relocation_status #=> String
|
9104
9197
|
# resp.cluster.cluster_namespace_arn #=> String
|
9105
9198
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9199
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9200
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9106
9201
|
#
|
9107
9202
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
|
9108
9203
|
#
|
@@ -9329,6 +9424,8 @@ module Aws::Redshift
|
|
9329
9424
|
# resp.cluster.availability_zone_relocation_status #=> String
|
9330
9425
|
# resp.cluster.cluster_namespace_arn #=> String
|
9331
9426
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9427
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9428
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9332
9429
|
#
|
9333
9430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
|
9334
9431
|
#
|
@@ -9691,6 +9788,8 @@ module Aws::Redshift
|
|
9691
9788
|
# resp.cluster.availability_zone_relocation_status #=> String
|
9692
9789
|
# resp.cluster.cluster_namespace_arn #=> String
|
9693
9790
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9791
|
+
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9792
|
+
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9694
9793
|
#
|
9695
9794
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
|
9696
9795
|
#
|
@@ -9714,7 +9813,7 @@ module Aws::Redshift
|
|
9714
9813
|
params: params,
|
9715
9814
|
config: config)
|
9716
9815
|
context[:gem_name] = 'aws-sdk-redshift'
|
9717
|
-
context[:gem_version] = '1.
|
9816
|
+
context[:gem_version] = '1.61.0'
|
9718
9817
|
Seahorse::Client::Request.new(handlers, context)
|
9719
9818
|
end
|
9720
9819
|
|
@@ -22,6 +22,9 @@ module Aws::Redshift
|
|
22
22
|
AccountWithRestoreAccess = Shapes::StructureShape.new(name: 'AccountWithRestoreAccess')
|
23
23
|
AccountsWithRestoreAccessList = Shapes::ListShape.new(name: 'AccountsWithRestoreAccessList')
|
24
24
|
ActionType = Shapes::StringShape.new(name: 'ActionType')
|
25
|
+
AquaConfiguration = Shapes::StructureShape.new(name: 'AquaConfiguration')
|
26
|
+
AquaConfigurationStatus = Shapes::StringShape.new(name: 'AquaConfigurationStatus')
|
27
|
+
AquaStatus = Shapes::StringShape.new(name: 'AquaStatus')
|
25
28
|
AssociatedClusterList = Shapes::ListShape.new(name: 'AssociatedClusterList')
|
26
29
|
AttributeList = Shapes::ListShape.new(name: 'AttributeList')
|
27
30
|
AttributeNameList = Shapes::ListShape.new(name: 'AttributeNameList')
|
@@ -283,6 +286,8 @@ module Aws::Redshift
|
|
283
286
|
LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
|
284
287
|
MaintenanceTrack = Shapes::StructureShape.new(name: 'MaintenanceTrack')
|
285
288
|
Mode = Shapes::StringShape.new(name: 'Mode')
|
289
|
+
ModifyAquaInputMessage = Shapes::StructureShape.new(name: 'ModifyAquaInputMessage')
|
290
|
+
ModifyAquaOutputMessage = Shapes::StructureShape.new(name: 'ModifyAquaOutputMessage')
|
286
291
|
ModifyClusterDbRevisionMessage = Shapes::StructureShape.new(name: 'ModifyClusterDbRevisionMessage')
|
287
292
|
ModifyClusterDbRevisionResult = Shapes::StructureShape.new(name: 'ModifyClusterDbRevisionResult')
|
288
293
|
ModifyClusterIamRolesMessage = Shapes::StructureShape.new(name: 'ModifyClusterIamRolesMessage')
|
@@ -495,6 +500,10 @@ module Aws::Redshift
|
|
495
500
|
|
496
501
|
AccountsWithRestoreAccessList.member = Shapes::ShapeRef.new(shape: AccountWithRestoreAccess, location_name: "AccountWithRestoreAccess")
|
497
502
|
|
503
|
+
AquaConfiguration.add_member(:aqua_status, Shapes::ShapeRef.new(shape: AquaStatus, location_name: "AquaStatus"))
|
504
|
+
AquaConfiguration.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
505
|
+
AquaConfiguration.struct_class = Types::AquaConfiguration
|
506
|
+
|
498
507
|
AssociatedClusterList.member = Shapes::ShapeRef.new(shape: ClusterAssociatedToSchedule, location_name: "ClusterAssociatedToSchedule")
|
499
508
|
|
500
509
|
AttributeList.member = Shapes::ShapeRef.new(shape: AccountAttribute, location_name: "AccountAttribute")
|
@@ -618,6 +627,7 @@ module Aws::Redshift
|
|
618
627
|
Cluster.add_member(:availability_zone_relocation_status, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZoneRelocationStatus"))
|
619
628
|
Cluster.add_member(:cluster_namespace_arn, Shapes::ShapeRef.new(shape: String, location_name: "ClusterNamespaceArn"))
|
620
629
|
Cluster.add_member(:total_storage_capacity_in_mega_bytes, Shapes::ShapeRef.new(shape: LongOptional, location_name: "TotalStorageCapacityInMegaBytes"))
|
630
|
+
Cluster.add_member(:aqua_configuration, Shapes::ShapeRef.new(shape: AquaConfiguration, location_name: "AquaConfiguration"))
|
621
631
|
Cluster.struct_class = Types::Cluster
|
622
632
|
|
623
633
|
ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
|
@@ -820,6 +830,7 @@ module Aws::Redshift
|
|
820
830
|
CreateClusterMessage.add_member(:maintenance_track_name, Shapes::ShapeRef.new(shape: String, location_name: "MaintenanceTrackName"))
|
821
831
|
CreateClusterMessage.add_member(:snapshot_schedule_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotScheduleIdentifier"))
|
822
832
|
CreateClusterMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
|
833
|
+
CreateClusterMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
823
834
|
CreateClusterMessage.struct_class = Types::CreateClusterMessage
|
824
835
|
|
825
836
|
CreateClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
|
@@ -1526,6 +1537,13 @@ module Aws::Redshift
|
|
1526
1537
|
MaintenanceTrack.add_member(:update_targets, Shapes::ShapeRef.new(shape: EligibleTracksToUpdateList, location_name: "UpdateTargets"))
|
1527
1538
|
MaintenanceTrack.struct_class = Types::MaintenanceTrack
|
1528
1539
|
|
1540
|
+
ModifyAquaInputMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
1541
|
+
ModifyAquaInputMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
1542
|
+
ModifyAquaInputMessage.struct_class = Types::ModifyAquaInputMessage
|
1543
|
+
|
1544
|
+
ModifyAquaOutputMessage.add_member(:aqua_configuration, Shapes::ShapeRef.new(shape: AquaConfiguration, location_name: "AquaConfiguration"))
|
1545
|
+
ModifyAquaOutputMessage.struct_class = Types::ModifyAquaOutputMessage
|
1546
|
+
|
1529
1547
|
ModifyClusterDbRevisionMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
1530
1548
|
ModifyClusterDbRevisionMessage.add_member(:revision_target, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RevisionTarget"))
|
1531
1549
|
ModifyClusterDbRevisionMessage.struct_class = Types::ModifyClusterDbRevisionMessage
|
@@ -1866,6 +1884,7 @@ module Aws::Redshift
|
|
1866
1884
|
RestoreFromClusterSnapshotMessage.add_member(:snapshot_schedule_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotScheduleIdentifier"))
|
1867
1885
|
RestoreFromClusterSnapshotMessage.add_member(:number_of_nodes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumberOfNodes"))
|
1868
1886
|
RestoreFromClusterSnapshotMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
|
1887
|
+
RestoreFromClusterSnapshotMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
1869
1888
|
RestoreFromClusterSnapshotMessage.struct_class = Types::RestoreFromClusterSnapshotMessage
|
1870
1889
|
|
1871
1890
|
RestoreFromClusterSnapshotResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
|
@@ -3228,6 +3247,16 @@ module Aws::Redshift
|
|
3228
3247
|
)
|
3229
3248
|
end)
|
3230
3249
|
|
3250
|
+
api.add_operation(:modify_aqua_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3251
|
+
o.name = "ModifyAquaConfiguration"
|
3252
|
+
o.http_method = "POST"
|
3253
|
+
o.http_request_uri = "/"
|
3254
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyAquaInputMessage)
|
3255
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyAquaOutputMessage)
|
3256
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
3257
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
3258
|
+
end)
|
3259
|
+
|
3231
3260
|
api.add_operation(:modify_cluster, Seahorse::Model::Operation.new.tap do |o|
|
3232
3261
|
o.name = "ModifyCluster"
|
3233
3262
|
o.http_method = "POST"
|
@@ -115,6 +115,40 @@ module Aws::Redshift
|
|
115
115
|
include Aws::Structure
|
116
116
|
end
|
117
117
|
|
118
|
+
# The AQUA (Advanced Query Accelerator) configuration of the cluster.
|
119
|
+
#
|
120
|
+
# @!attribute [rw] aqua_status
|
121
|
+
# The value indicates the status of AQUA on the cluster. Possible
|
122
|
+
# values include the following.
|
123
|
+
#
|
124
|
+
# * enabled - AQUA is enabled.
|
125
|
+
#
|
126
|
+
# * disabled - AQUA is not enabled.
|
127
|
+
#
|
128
|
+
# * applying - AQUA status is being applied.
|
129
|
+
# @return [String]
|
130
|
+
#
|
131
|
+
# @!attribute [rw] aqua_configuration_status
|
132
|
+
# The value represents how the cluster is configured to use AQUA.
|
133
|
+
# Possible values include the following.
|
134
|
+
#
|
135
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
136
|
+
# and Amazon Redshift node type.
|
137
|
+
#
|
138
|
+
# * disabled - Don't use AQUA.
|
139
|
+
#
|
140
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
141
|
+
# @return [String]
|
142
|
+
#
|
143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AquaConfiguration AWS API Documentation
|
144
|
+
#
|
145
|
+
class AquaConfiguration < Struct.new(
|
146
|
+
:aqua_status,
|
147
|
+
:aqua_configuration_status)
|
148
|
+
SENSITIVE = []
|
149
|
+
include Aws::Structure
|
150
|
+
end
|
151
|
+
|
118
152
|
# Describes an attribute value.
|
119
153
|
#
|
120
154
|
# @!attribute [rw] attribute_value
|
@@ -754,6 +788,10 @@ module Aws::Redshift
|
|
754
788
|
# The total storage capacity of the cluster in megabytes.
|
755
789
|
# @return [Integer]
|
756
790
|
#
|
791
|
+
# @!attribute [rw] aqua_configuration
|
792
|
+
# The AQUA (Advanced Query Accelerator) configuration of the cluster.
|
793
|
+
# @return [Types::AquaConfiguration]
|
794
|
+
#
|
757
795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
|
758
796
|
#
|
759
797
|
class Cluster < Struct.new(
|
@@ -805,7 +843,8 @@ module Aws::Redshift
|
|
805
843
|
:resize_info,
|
806
844
|
:availability_zone_relocation_status,
|
807
845
|
:cluster_namespace_arn,
|
808
|
-
:total_storage_capacity_in_mega_bytes
|
846
|
+
:total_storage_capacity_in_mega_bytes,
|
847
|
+
:aqua_configuration)
|
809
848
|
SENSITIVE = []
|
810
849
|
include Aws::Structure
|
811
850
|
end
|
@@ -1669,6 +1708,7 @@ module Aws::Redshift
|
|
1669
1708
|
# maintenance_track_name: "String",
|
1670
1709
|
# snapshot_schedule_identifier: "String",
|
1671
1710
|
# availability_zone_relocation: false,
|
1711
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1672
1712
|
# }
|
1673
1713
|
#
|
1674
1714
|
# @!attribute [rw] db_name
|
@@ -2030,6 +2070,19 @@ module Aws::Redshift
|
|
2030
2070
|
# between Availability Zones after the cluster is created.
|
2031
2071
|
# @return [Boolean]
|
2032
2072
|
#
|
2073
|
+
# @!attribute [rw] aqua_configuration_status
|
2074
|
+
# The value represents how the cluster is configured to use AQUA
|
2075
|
+
# (Advanced Query Accelerator) when it is created. Possible values
|
2076
|
+
# include the following.
|
2077
|
+
#
|
2078
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
2079
|
+
# and Amazon Redshift node type.
|
2080
|
+
#
|
2081
|
+
# * disabled - Don't use AQUA.
|
2082
|
+
#
|
2083
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
2084
|
+
# @return [String]
|
2085
|
+
#
|
2033
2086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
|
2034
2087
|
#
|
2035
2088
|
class CreateClusterMessage < Struct.new(
|
@@ -2063,7 +2116,8 @@ module Aws::Redshift
|
|
2063
2116
|
:iam_roles,
|
2064
2117
|
:maintenance_track_name,
|
2065
2118
|
:snapshot_schedule_identifier,
|
2066
|
-
:availability_zone_relocation
|
2119
|
+
:availability_zone_relocation,
|
2120
|
+
:aqua_configuration_status)
|
2067
2121
|
SENSITIVE = []
|
2068
2122
|
include Aws::Structure
|
2069
2123
|
end
|
@@ -6828,6 +6882,51 @@ module Aws::Redshift
|
|
6828
6882
|
include Aws::Structure
|
6829
6883
|
end
|
6830
6884
|
|
6885
|
+
# @note When making an API call, you may pass ModifyAquaInputMessage
|
6886
|
+
# data as a hash:
|
6887
|
+
#
|
6888
|
+
# {
|
6889
|
+
# cluster_identifier: "String", # required
|
6890
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
6891
|
+
# }
|
6892
|
+
#
|
6893
|
+
# @!attribute [rw] cluster_identifier
|
6894
|
+
# The identifier of the cluster to be modified.
|
6895
|
+
# @return [String]
|
6896
|
+
#
|
6897
|
+
# @!attribute [rw] aqua_configuration_status
|
6898
|
+
# The new value of AQUA configuration status. Possible values include
|
6899
|
+
# the following.
|
6900
|
+
#
|
6901
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
6902
|
+
# and Amazon Redshift node type.
|
6903
|
+
#
|
6904
|
+
# * disabled - Don't use AQUA.
|
6905
|
+
#
|
6906
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
6907
|
+
# @return [String]
|
6908
|
+
#
|
6909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaInputMessage AWS API Documentation
|
6910
|
+
#
|
6911
|
+
class ModifyAquaInputMessage < Struct.new(
|
6912
|
+
:cluster_identifier,
|
6913
|
+
:aqua_configuration_status)
|
6914
|
+
SENSITIVE = []
|
6915
|
+
include Aws::Structure
|
6916
|
+
end
|
6917
|
+
|
6918
|
+
# @!attribute [rw] aqua_configuration
|
6919
|
+
# The updated AQUA configuration of the cluster.
|
6920
|
+
# @return [Types::AquaConfiguration]
|
6921
|
+
#
|
6922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaOutputMessage AWS API Documentation
|
6923
|
+
#
|
6924
|
+
class ModifyAquaOutputMessage < Struct.new(
|
6925
|
+
:aqua_configuration)
|
6926
|
+
SENSITIVE = []
|
6927
|
+
include Aws::Structure
|
6928
|
+
end
|
6929
|
+
|
6831
6930
|
# @note When making an API call, you may pass ModifyClusterDbRevisionMessage
|
6832
6931
|
# data as a hash:
|
6833
6932
|
#
|
@@ -8869,6 +8968,7 @@ module Aws::Redshift
|
|
8869
8968
|
# snapshot_schedule_identifier: "String",
|
8870
8969
|
# number_of_nodes: 1,
|
8871
8970
|
# availability_zone_relocation: false,
|
8971
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
8872
8972
|
# }
|
8873
8973
|
#
|
8874
8974
|
# @!attribute [rw] cluster_identifier
|
@@ -9121,6 +9221,19 @@ module Aws::Redshift
|
|
9121
9221
|
# between Availability Zones after the cluster is restored.
|
9122
9222
|
# @return [Boolean]
|
9123
9223
|
#
|
9224
|
+
# @!attribute [rw] aqua_configuration_status
|
9225
|
+
# The value represents how the cluster is configured to use AQUA
|
9226
|
+
# (Advanced Query Accelerator) after the cluster is restored. Possible
|
9227
|
+
# values include the following.
|
9228
|
+
#
|
9229
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
9230
|
+
# and Amazon Redshift node type.
|
9231
|
+
#
|
9232
|
+
# * disabled - Don't use AQUA.
|
9233
|
+
#
|
9234
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
9235
|
+
# @return [String]
|
9236
|
+
#
|
9124
9237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
|
9125
9238
|
#
|
9126
9239
|
class RestoreFromClusterSnapshotMessage < Struct.new(
|
@@ -9150,7 +9263,8 @@ module Aws::Redshift
|
|
9150
9263
|
:maintenance_track_name,
|
9151
9264
|
:snapshot_schedule_identifier,
|
9152
9265
|
:number_of_nodes,
|
9153
|
-
:availability_zone_relocation
|
9266
|
+
:availability_zone_relocation,
|
9267
|
+
:aqua_configuration_status)
|
9154
9268
|
SENSITIVE = []
|
9155
9269
|
include Aws::Structure
|
9156
9270
|
end
|
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.61.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: 2021-04-
|
11
|
+
date: 2021-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|