aws-sdk-redshift 1.57.0 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be26c918c388221a44a54cb4361a65eab77efc967779b853ea43a805f2e32d8c
4
- data.tar.gz: 28beb4ea14fd14c8e2e2b214fc1b5e42d1ccabe92b4b7ec11722fb90e6f821d0
3
+ metadata.gz: 523f1badee16f21d808e821a4b9e6dc69dc3506cbb18d25fc589bec8d790ecfb
4
+ data.tar.gz: 03f9b435c48f9a4226fac2f3ab0a4c20026171c899535c079203237bd1487cfc
5
5
  SHA512:
6
- metadata.gz: 76f10d26ecd0e04208d9364248157156b1a17cf1af758ee48c332e5c4004333bf7a7b3a1e44872b28c286e53cc42c81738ba45cb63181600911ec970ac344042
7
- data.tar.gz: 7dc42771208a16965bf15350e5fc5d3c848866198dd1498e890acf8112fb1e682b6401dbb74822f298083422d43bc626a79c6969b88cbb6a258ec858da4a9a0c
6
+ metadata.gz: e8ef858d8d1fcfcf84c513dfaf3817df095fbe52228fd47863f8bc1d35b39e38dc5f5bddc4da8c8f74c40f8eea302589ed3f07f51f926abafbd412b1d6d405d5
7
+ data.tar.gz: 6e2d2d17b9edde2af502795f65519d4b042a8536517aacd05b164010972813458981fdd884ba04525a431b7777fc46e49b2325095ced9106a814da3acac636d8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2021-03-23)
5
+ ------------------
6
+
7
+ * Feature - Removed APIs to control AQUA on clusters.
8
+
4
9
  1.57.0 (2021-03-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.58.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-redshift/customizations'
49
49
  # @!group service
50
50
  module Aws::Redshift
51
51
 
52
- GEM_VERSION = '1.57.0'
52
+ GEM_VERSION = '1.58.0'
53
53
 
54
54
  end
@@ -1172,18 +1172,6 @@ module Aws::Redshift
1172
1172
  # The option to enable relocation for an Amazon Redshift cluster between
1173
1173
  # Availability Zones after the cluster is created.
1174
1174
  #
1175
- # @option params [String] :aqua_configuration_status
1176
- # The value represents how the cluster is configured to use AQUA
1177
- # (Advanced Query Accelerator) when it is created. Possible values
1178
- # include the following.
1179
- #
1180
- # * enabled - Use AQUA if it is available for the current AWS Region and
1181
- # Amazon Redshift node type.
1182
- #
1183
- # * disabled - Don't use AQUA.
1184
- #
1185
- # * auto - Amazon Redshift determines whether to use AQUA.
1186
- #
1187
1175
  # @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1188
1176
  #
1189
1177
  # * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
@@ -1227,7 +1215,6 @@ module Aws::Redshift
1227
1215
  # maintenance_track_name: "String",
1228
1216
  # snapshot_schedule_identifier: "String",
1229
1217
  # availability_zone_relocation: false,
1230
- # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
1231
1218
  # })
1232
1219
  #
1233
1220
  # @example Response structure
@@ -1338,8 +1325,6 @@ module Aws::Redshift
1338
1325
  # resp.cluster.availability_zone_relocation_status #=> String
1339
1326
  # resp.cluster.cluster_namespace_arn #=> String
1340
1327
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
1341
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
1342
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
1343
1328
  #
1344
1329
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
1345
1330
  #
@@ -2543,8 +2528,6 @@ module Aws::Redshift
2543
2528
  # resp.cluster.availability_zone_relocation_status #=> String
2544
2529
  # resp.cluster.cluster_namespace_arn #=> String
2545
2530
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
2546
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
2547
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
2548
2531
  #
2549
2532
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
2550
2533
  #
@@ -3962,8 +3945,6 @@ module Aws::Redshift
3962
3945
  # resp.clusters[0].availability_zone_relocation_status #=> String
3963
3946
  # resp.clusters[0].cluster_namespace_arn #=> String
3964
3947
  # resp.clusters[0].total_storage_capacity_in_mega_bytes #=> Integer
3965
- # resp.clusters[0].aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
3966
- # resp.clusters[0].aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
3967
3948
  #
3968
3949
  #
3969
3950
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5730,8 +5711,6 @@ module Aws::Redshift
5730
5711
  # resp.cluster.availability_zone_relocation_status #=> String
5731
5712
  # resp.cluster.cluster_namespace_arn #=> String
5732
5713
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
5733
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
5734
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
5735
5714
  #
5736
5715
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
5737
5716
  #
@@ -5977,8 +5956,6 @@ module Aws::Redshift
5977
5956
  # resp.cluster.availability_zone_relocation_status #=> String
5978
5957
  # resp.cluster.cluster_namespace_arn #=> String
5979
5958
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
5980
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
5981
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
5982
5959
  #
5983
5960
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
5984
5961
  #
@@ -6204,47 +6181,6 @@ module Aws::Redshift
6204
6181
  req.send_request(options)
6205
6182
  end
6206
6183
 
6207
- # Modifies whether a cluster can use AQUA (Advanced Query Accelerator).
6208
- #
6209
- # @option params [required, String] :cluster_identifier
6210
- # The identifier of the cluster to be modified.
6211
- #
6212
- # @option params [String] :aqua_configuration_status
6213
- # The new value of AQUA configuration status. Possible values include
6214
- # the following.
6215
- #
6216
- # * enabled - Use AQUA if it is available for the current AWS Region and
6217
- # Amazon Redshift node type.
6218
- #
6219
- # * disabled - Don't use AQUA.
6220
- #
6221
- # * auto - Amazon Redshift determines whether to use AQUA.
6222
- #
6223
- # @return [Types::ModifyAquaOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6224
- #
6225
- # * {Types::ModifyAquaOutputMessage#aqua_configuration #aqua_configuration} => Types::AquaConfiguration
6226
- #
6227
- # @example Request syntax with placeholder values
6228
- #
6229
- # resp = client.modify_aqua_configuration({
6230
- # cluster_identifier: "String", # required
6231
- # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
6232
- # })
6233
- #
6234
- # @example Response structure
6235
- #
6236
- # resp.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6237
- # resp.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6238
- #
6239
- # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaConfiguration AWS API Documentation
6240
- #
6241
- # @overload modify_aqua_configuration(params = {})
6242
- # @param [Hash] params ({})
6243
- def modify_aqua_configuration(params = {}, options = {})
6244
- req = build_request(:modify_aqua_configuration, params)
6245
- req.send_request(options)
6246
- end
6247
-
6248
6184
  # Modifies the settings for a cluster.
6249
6185
  #
6250
6186
  # You can also change node type and the number of nodes to scale up or
@@ -6668,8 +6604,6 @@ module Aws::Redshift
6668
6604
  # resp.cluster.availability_zone_relocation_status #=> String
6669
6605
  # resp.cluster.cluster_namespace_arn #=> String
6670
6606
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6671
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6672
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6673
6607
  #
6674
6608
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
6675
6609
  #
@@ -6812,8 +6746,6 @@ module Aws::Redshift
6812
6746
  # resp.cluster.availability_zone_relocation_status #=> String
6813
6747
  # resp.cluster.cluster_namespace_arn #=> String
6814
6748
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6815
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6816
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6817
6749
  #
6818
6750
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
6819
6751
  #
@@ -6963,8 +6895,6 @@ module Aws::Redshift
6963
6895
  # resp.cluster.availability_zone_relocation_status #=> String
6964
6896
  # resp.cluster.cluster_namespace_arn #=> String
6965
6897
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6966
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6967
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6968
6898
  #
6969
6899
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
6970
6900
  #
@@ -7123,8 +7053,6 @@ module Aws::Redshift
7123
7053
  # resp.cluster.availability_zone_relocation_status #=> String
7124
7054
  # resp.cluster.cluster_namespace_arn #=> String
7125
7055
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7126
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7127
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7128
7056
  #
7129
7057
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
7130
7058
  #
@@ -7719,8 +7647,6 @@ module Aws::Redshift
7719
7647
  # resp.cluster.availability_zone_relocation_status #=> String
7720
7648
  # resp.cluster.cluster_namespace_arn #=> String
7721
7649
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7722
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7723
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7724
7650
  #
7725
7651
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
7726
7652
  #
@@ -7962,8 +7888,6 @@ module Aws::Redshift
7962
7888
  # resp.cluster.availability_zone_relocation_status #=> String
7963
7889
  # resp.cluster.cluster_namespace_arn #=> String
7964
7890
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7965
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7966
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7967
7891
  #
7968
7892
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
7969
7893
  #
@@ -8168,8 +8092,6 @@ module Aws::Redshift
8168
8092
  # resp.cluster.availability_zone_relocation_status #=> String
8169
8093
  # resp.cluster.cluster_namespace_arn #=> String
8170
8094
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8171
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
8172
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
8173
8095
  #
8174
8096
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
8175
8097
  #
@@ -8413,8 +8335,6 @@ module Aws::Redshift
8413
8335
  # resp.cluster.availability_zone_relocation_status #=> String
8414
8336
  # resp.cluster.cluster_namespace_arn #=> String
8415
8337
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8416
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
8417
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
8418
8338
  #
8419
8339
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
8420
8340
  #
@@ -8667,18 +8587,6 @@ module Aws::Redshift
8667
8587
  # The option to enable relocation for an Amazon Redshift cluster between
8668
8588
  # Availability Zones after the cluster is restored.
8669
8589
  #
8670
- # @option params [String] :aqua_configuration_status
8671
- # The value represents how the cluster is configured to use AQUA
8672
- # (Advanced Query Accelerator) after the cluster is restored. Possible
8673
- # values include the following.
8674
- #
8675
- # * enabled - Use AQUA if it is available for the current AWS Region and
8676
- # Amazon Redshift node type.
8677
- #
8678
- # * disabled - Don't use AQUA.
8679
- #
8680
- # * auto - Amazon Redshift determines whether to use AQUA.
8681
- #
8682
8590
  # @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8683
8591
  #
8684
8592
  # * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
@@ -8713,7 +8621,6 @@ module Aws::Redshift
8713
8621
  # snapshot_schedule_identifier: "String",
8714
8622
  # number_of_nodes: 1,
8715
8623
  # availability_zone_relocation: false,
8716
- # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
8717
8624
  # })
8718
8625
  #
8719
8626
  # @example Response structure
@@ -8824,8 +8731,6 @@ module Aws::Redshift
8824
8731
  # resp.cluster.availability_zone_relocation_status #=> String
8825
8732
  # resp.cluster.cluster_namespace_arn #=> String
8826
8733
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8827
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
8828
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
8829
8734
  #
8830
8735
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
8831
8736
  #
@@ -9046,8 +8951,6 @@ module Aws::Redshift
9046
8951
  # resp.cluster.availability_zone_relocation_status #=> String
9047
8952
  # resp.cluster.cluster_namespace_arn #=> String
9048
8953
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9049
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
9050
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
9051
8954
  #
9052
8955
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
9053
8956
  #
@@ -9350,8 +9253,6 @@ module Aws::Redshift
9350
9253
  # resp.cluster.availability_zone_relocation_status #=> String
9351
9254
  # resp.cluster.cluster_namespace_arn #=> String
9352
9255
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9353
- # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
9354
- # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
9355
9256
  #
9356
9257
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
9357
9258
  #
@@ -9375,7 +9276,7 @@ module Aws::Redshift
9375
9276
  params: params,
9376
9277
  config: config)
9377
9278
  context[:gem_name] = 'aws-sdk-redshift'
9378
- context[:gem_version] = '1.57.0'
9279
+ context[:gem_version] = '1.58.0'
9379
9280
  Seahorse::Client::Request.new(handlers, context)
9380
9281
  end
9381
9282
 
@@ -21,9 +21,6 @@ module Aws::Redshift
21
21
  AccountWithRestoreAccess = Shapes::StructureShape.new(name: 'AccountWithRestoreAccess')
22
22
  AccountsWithRestoreAccessList = Shapes::ListShape.new(name: 'AccountsWithRestoreAccessList')
23
23
  ActionType = Shapes::StringShape.new(name: 'ActionType')
24
- AquaConfiguration = Shapes::StructureShape.new(name: 'AquaConfiguration')
25
- AquaConfigurationStatus = Shapes::StringShape.new(name: 'AquaConfigurationStatus')
26
- AquaStatus = Shapes::StringShape.new(name: 'AquaStatus')
27
24
  AssociatedClusterList = Shapes::ListShape.new(name: 'AssociatedClusterList')
28
25
  AttributeList = Shapes::ListShape.new(name: 'AttributeList')
29
26
  AttributeNameList = Shapes::ListShape.new(name: 'AttributeNameList')
@@ -264,8 +261,6 @@ module Aws::Redshift
264
261
  LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
265
262
  MaintenanceTrack = Shapes::StructureShape.new(name: 'MaintenanceTrack')
266
263
  Mode = Shapes::StringShape.new(name: 'Mode')
267
- ModifyAquaInputMessage = Shapes::StructureShape.new(name: 'ModifyAquaInputMessage')
268
- ModifyAquaOutputMessage = Shapes::StructureShape.new(name: 'ModifyAquaOutputMessage')
269
264
  ModifyClusterDbRevisionMessage = Shapes::StructureShape.new(name: 'ModifyClusterDbRevisionMessage')
270
265
  ModifyClusterDbRevisionResult = Shapes::StructureShape.new(name: 'ModifyClusterDbRevisionResult')
271
266
  ModifyClusterIamRolesMessage = Shapes::StructureShape.new(name: 'ModifyClusterIamRolesMessage')
@@ -473,10 +468,6 @@ module Aws::Redshift
473
468
 
474
469
  AccountsWithRestoreAccessList.member = Shapes::ShapeRef.new(shape: AccountWithRestoreAccess, location_name: "AccountWithRestoreAccess")
475
470
 
476
- AquaConfiguration.add_member(:aqua_status, Shapes::ShapeRef.new(shape: AquaStatus, location_name: "AquaStatus"))
477
- AquaConfiguration.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
478
- AquaConfiguration.struct_class = Types::AquaConfiguration
479
-
480
471
  AssociatedClusterList.member = Shapes::ShapeRef.new(shape: ClusterAssociatedToSchedule, location_name: "ClusterAssociatedToSchedule")
481
472
 
482
473
  AttributeList.member = Shapes::ShapeRef.new(shape: AccountAttribute, location_name: "AccountAttribute")
@@ -595,7 +586,6 @@ module Aws::Redshift
595
586
  Cluster.add_member(:availability_zone_relocation_status, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZoneRelocationStatus"))
596
587
  Cluster.add_member(:cluster_namespace_arn, Shapes::ShapeRef.new(shape: String, location_name: "ClusterNamespaceArn"))
597
588
  Cluster.add_member(:total_storage_capacity_in_mega_bytes, Shapes::ShapeRef.new(shape: LongOptional, location_name: "TotalStorageCapacityInMegaBytes"))
598
- Cluster.add_member(:aqua_configuration, Shapes::ShapeRef.new(shape: AquaConfiguration, location_name: "AquaConfiguration"))
599
589
  Cluster.struct_class = Types::Cluster
600
590
 
601
591
  ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
@@ -798,7 +788,6 @@ module Aws::Redshift
798
788
  CreateClusterMessage.add_member(:maintenance_track_name, Shapes::ShapeRef.new(shape: String, location_name: "MaintenanceTrackName"))
799
789
  CreateClusterMessage.add_member(:snapshot_schedule_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotScheduleIdentifier"))
800
790
  CreateClusterMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
801
- CreateClusterMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
802
791
  CreateClusterMessage.struct_class = Types::CreateClusterMessage
803
792
 
804
793
  CreateClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
@@ -1427,13 +1416,6 @@ module Aws::Redshift
1427
1416
  MaintenanceTrack.add_member(:update_targets, Shapes::ShapeRef.new(shape: EligibleTracksToUpdateList, location_name: "UpdateTargets"))
1428
1417
  MaintenanceTrack.struct_class = Types::MaintenanceTrack
1429
1418
 
1430
- ModifyAquaInputMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
1431
- ModifyAquaInputMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
1432
- ModifyAquaInputMessage.struct_class = Types::ModifyAquaInputMessage
1433
-
1434
- ModifyAquaOutputMessage.add_member(:aqua_configuration, Shapes::ShapeRef.new(shape: AquaConfiguration, location_name: "AquaConfiguration"))
1435
- ModifyAquaOutputMessage.struct_class = Types::ModifyAquaOutputMessage
1436
-
1437
1419
  ModifyClusterDbRevisionMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
1438
1420
  ModifyClusterDbRevisionMessage.add_member(:revision_target, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RevisionTarget"))
1439
1421
  ModifyClusterDbRevisionMessage.struct_class = Types::ModifyClusterDbRevisionMessage
@@ -1770,7 +1752,6 @@ module Aws::Redshift
1770
1752
  RestoreFromClusterSnapshotMessage.add_member(:snapshot_schedule_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotScheduleIdentifier"))
1771
1753
  RestoreFromClusterSnapshotMessage.add_member(:number_of_nodes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumberOfNodes"))
1772
1754
  RestoreFromClusterSnapshotMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
1773
- RestoreFromClusterSnapshotMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
1774
1755
  RestoreFromClusterSnapshotMessage.struct_class = Types::RestoreFromClusterSnapshotMessage
1775
1756
 
1776
1757
  RestoreFromClusterSnapshotResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
@@ -3058,16 +3039,6 @@ module Aws::Redshift
3058
3039
  )
3059
3040
  end)
3060
3041
 
3061
- api.add_operation(:modify_aqua_configuration, Seahorse::Model::Operation.new.tap do |o|
3062
- o.name = "ModifyAquaConfiguration"
3063
- o.http_method = "POST"
3064
- o.http_request_uri = "/"
3065
- o.input = Shapes::ShapeRef.new(shape: ModifyAquaInputMessage)
3066
- o.output = Shapes::ShapeRef.new(shape: ModifyAquaOutputMessage)
3067
- o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
3068
- o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3069
- end)
3070
-
3071
3042
  api.add_operation(:modify_cluster, Seahorse::Model::Operation.new.tap do |o|
3072
3043
  o.name = "ModifyCluster"
3073
3044
  o.http_method = "POST"
@@ -109,40 +109,6 @@ module Aws::Redshift
109
109
  include Aws::Structure
110
110
  end
111
111
 
112
- # The AQUA (Advanced Query Accelerator) configuration of the cluster.
113
- #
114
- # @!attribute [rw] aqua_status
115
- # The value indicates the status of AQUA on the cluster. Possible
116
- # values include the following.
117
- #
118
- # * enabled - AQUA is enabled.
119
- #
120
- # * disabled - AQUA is not enabled.
121
- #
122
- # * applying - AQUA status is being applied.
123
- # @return [String]
124
- #
125
- # @!attribute [rw] aqua_configuration_status
126
- # The value represents how the cluster is configured to use AQUA.
127
- # Possible values include the following.
128
- #
129
- # * enabled - Use AQUA if it is available for the current AWS Region
130
- # and Amazon Redshift node type.
131
- #
132
- # * disabled - Don't use AQUA.
133
- #
134
- # * auto - Amazon Redshift determines whether to use AQUA.
135
- # @return [String]
136
- #
137
- # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AquaConfiguration AWS API Documentation
138
- #
139
- class AquaConfiguration < Struct.new(
140
- :aqua_status,
141
- :aqua_configuration_status)
142
- SENSITIVE = []
143
- include Aws::Structure
144
- end
145
-
146
112
  # Describes an attribute value.
147
113
  #
148
114
  # @!attribute [rw] attribute_value
@@ -751,10 +717,6 @@ module Aws::Redshift
751
717
  # The total storage capacity of the cluster in megabytes.
752
718
  # @return [Integer]
753
719
  #
754
- # @!attribute [rw] aqua_configuration
755
- # The AQUA (Advanced Query Accelerator) configuration of the cluster.
756
- # @return [Types::AquaConfiguration]
757
- #
758
720
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
759
721
  #
760
722
  class Cluster < Struct.new(
@@ -806,8 +768,7 @@ module Aws::Redshift
806
768
  :resize_info,
807
769
  :availability_zone_relocation_status,
808
770
  :cluster_namespace_arn,
809
- :total_storage_capacity_in_mega_bytes,
810
- :aqua_configuration)
771
+ :total_storage_capacity_in_mega_bytes)
811
772
  SENSITIVE = []
812
773
  include Aws::Structure
813
774
  end
@@ -1671,7 +1632,6 @@ module Aws::Redshift
1671
1632
  # maintenance_track_name: "String",
1672
1633
  # snapshot_schedule_identifier: "String",
1673
1634
  # availability_zone_relocation: false,
1674
- # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
1675
1635
  # }
1676
1636
  #
1677
1637
  # @!attribute [rw] db_name
@@ -2033,19 +1993,6 @@ module Aws::Redshift
2033
1993
  # between Availability Zones after the cluster is created.
2034
1994
  # @return [Boolean]
2035
1995
  #
2036
- # @!attribute [rw] aqua_configuration_status
2037
- # The value represents how the cluster is configured to use AQUA
2038
- # (Advanced Query Accelerator) when it is created. Possible values
2039
- # include the following.
2040
- #
2041
- # * enabled - Use AQUA if it is available for the current AWS Region
2042
- # and Amazon Redshift node type.
2043
- #
2044
- # * disabled - Don't use AQUA.
2045
- #
2046
- # * auto - Amazon Redshift determines whether to use AQUA.
2047
- # @return [String]
2048
- #
2049
1996
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
2050
1997
  #
2051
1998
  class CreateClusterMessage < Struct.new(
@@ -2079,8 +2026,7 @@ module Aws::Redshift
2079
2026
  :iam_roles,
2080
2027
  :maintenance_track_name,
2081
2028
  :snapshot_schedule_identifier,
2082
- :availability_zone_relocation,
2083
- :aqua_configuration_status)
2029
+ :availability_zone_relocation)
2084
2030
  SENSITIVE = []
2085
2031
  include Aws::Structure
2086
2032
  end
@@ -6467,51 +6413,6 @@ module Aws::Redshift
6467
6413
  include Aws::Structure
6468
6414
  end
6469
6415
 
6470
- # @note When making an API call, you may pass ModifyAquaInputMessage
6471
- # data as a hash:
6472
- #
6473
- # {
6474
- # cluster_identifier: "String", # required
6475
- # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
6476
- # }
6477
- #
6478
- # @!attribute [rw] cluster_identifier
6479
- # The identifier of the cluster to be modified.
6480
- # @return [String]
6481
- #
6482
- # @!attribute [rw] aqua_configuration_status
6483
- # The new value of AQUA configuration status. Possible values include
6484
- # the following.
6485
- #
6486
- # * enabled - Use AQUA if it is available for the current AWS Region
6487
- # and Amazon Redshift node type.
6488
- #
6489
- # * disabled - Don't use AQUA.
6490
- #
6491
- # * auto - Amazon Redshift determines whether to use AQUA.
6492
- # @return [String]
6493
- #
6494
- # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaInputMessage AWS API Documentation
6495
- #
6496
- class ModifyAquaInputMessage < Struct.new(
6497
- :cluster_identifier,
6498
- :aqua_configuration_status)
6499
- SENSITIVE = []
6500
- include Aws::Structure
6501
- end
6502
-
6503
- # @!attribute [rw] aqua_configuration
6504
- # The updated AQUA configuration of the cluster.
6505
- # @return [Types::AquaConfiguration]
6506
- #
6507
- # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaOutputMessage AWS API Documentation
6508
- #
6509
- class ModifyAquaOutputMessage < Struct.new(
6510
- :aqua_configuration)
6511
- SENSITIVE = []
6512
- include Aws::Structure
6513
- end
6514
-
6515
6416
  # @note When making an API call, you may pass ModifyClusterDbRevisionMessage
6516
6417
  # data as a hash:
6517
6418
  #
@@ -8527,7 +8428,6 @@ module Aws::Redshift
8527
8428
  # snapshot_schedule_identifier: "String",
8528
8429
  # number_of_nodes: 1,
8529
8430
  # availability_zone_relocation: false,
8530
- # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
8531
8431
  # }
8532
8432
  #
8533
8433
  # @!attribute [rw] cluster_identifier
@@ -8780,19 +8680,6 @@ module Aws::Redshift
8780
8680
  # between Availability Zones after the cluster is restored.
8781
8681
  # @return [Boolean]
8782
8682
  #
8783
- # @!attribute [rw] aqua_configuration_status
8784
- # The value represents how the cluster is configured to use AQUA
8785
- # (Advanced Query Accelerator) after the cluster is restored. Possible
8786
- # values include the following.
8787
- #
8788
- # * enabled - Use AQUA if it is available for the current AWS Region
8789
- # and Amazon Redshift node type.
8790
- #
8791
- # * disabled - Don't use AQUA.
8792
- #
8793
- # * auto - Amazon Redshift determines whether to use AQUA.
8794
- # @return [String]
8795
- #
8796
8683
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
8797
8684
  #
8798
8685
  class RestoreFromClusterSnapshotMessage < Struct.new(
@@ -8822,8 +8709,7 @@ module Aws::Redshift
8822
8709
  :maintenance_track_name,
8823
8710
  :snapshot_schedule_identifier,
8824
8711
  :number_of_nodes,
8825
- :availability_zone_relocation,
8826
- :aqua_configuration_status)
8712
+ :availability_zone_relocation)
8827
8713
  SENSITIVE = []
8828
8714
  include Aws::Structure
8829
8715
  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.57.0
4
+ version: 1.58.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-03-22 00:00:00.000000000 Z
11
+ date: 2021-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core