aws-sdk-redshift 1.52.0 → 1.57.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 +359 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-redshift.rb +2 -2
- data/lib/aws-sdk-redshift/client.rb +222 -2
- data/lib/aws-sdk-redshift/client_api.rb +51 -9
- data/lib/aws-sdk-redshift/customizations.rb +1 -1
- data/lib/aws-sdk-redshift/errors.rb +1 -1
- data/lib/aws-sdk-redshift/resource.rb +1 -1
- data/lib/aws-sdk-redshift/types.rb +192 -22
- data/lib/aws-sdk-redshift/waiters.rb +1 -1
- metadata +10 -7
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.57.0
|
data/lib/aws-sdk-redshift.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -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.
|
52
|
+
GEM_VERSION = '1.57.0'
|
53
53
|
|
54
54
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -1030,6 +1030,9 @@ module Aws::Redshift
|
|
1030
1030
|
# are disabled, you can still create manual snapshots when you want with
|
1031
1031
|
# CreateClusterSnapshot.
|
1032
1032
|
#
|
1033
|
+
# You can't disable automated snapshots for RA3 node types. Set the
|
1034
|
+
# automated retention period from 1-35 days.
|
1035
|
+
#
|
1033
1036
|
# Default: `1`
|
1034
1037
|
#
|
1035
1038
|
# Constraints: Must be a value from 0 to 35.
|
@@ -1169,6 +1172,18 @@ module Aws::Redshift
|
|
1169
1172
|
# The option to enable relocation for an Amazon Redshift cluster between
|
1170
1173
|
# Availability Zones after the cluster is created.
|
1171
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
|
+
#
|
1172
1187
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1173
1188
|
#
|
1174
1189
|
# * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
|
@@ -1212,6 +1227,7 @@ module Aws::Redshift
|
|
1212
1227
|
# maintenance_track_name: "String",
|
1213
1228
|
# snapshot_schedule_identifier: "String",
|
1214
1229
|
# availability_zone_relocation: false,
|
1230
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1215
1231
|
# })
|
1216
1232
|
#
|
1217
1233
|
# @example Response structure
|
@@ -1227,6 +1243,12 @@ module Aws::Redshift
|
|
1227
1243
|
# resp.cluster.endpoint.port #=> Integer
|
1228
1244
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
1229
1245
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
1246
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
1247
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
1248
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
1249
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
1250
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
1251
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
1230
1252
|
# resp.cluster.cluster_create_time #=> Time
|
1231
1253
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
1232
1254
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -1315,6 +1337,9 @@ module Aws::Redshift
|
|
1315
1337
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
1316
1338
|
# resp.cluster.availability_zone_relocation_status #=> String
|
1317
1339
|
# resp.cluster.cluster_namespace_arn #=> String
|
1340
|
+
# 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"
|
1318
1343
|
#
|
1319
1344
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
|
1320
1345
|
#
|
@@ -2423,6 +2448,12 @@ module Aws::Redshift
|
|
2423
2448
|
# resp.cluster.endpoint.port #=> Integer
|
2424
2449
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
2425
2450
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
2451
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
2452
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
2453
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
2454
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
2455
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
2456
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
2426
2457
|
# resp.cluster.cluster_create_time #=> Time
|
2427
2458
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
2428
2459
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -2511,6 +2542,9 @@ module Aws::Redshift
|
|
2511
2542
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
2512
2543
|
# resp.cluster.availability_zone_relocation_status #=> String
|
2513
2544
|
# resp.cluster.cluster_namespace_arn #=> String
|
2545
|
+
# 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"
|
2514
2548
|
#
|
2515
2549
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
|
2516
2550
|
#
|
@@ -3833,6 +3867,12 @@ module Aws::Redshift
|
|
3833
3867
|
# resp.clusters[0].endpoint.port #=> Integer
|
3834
3868
|
# resp.clusters[0].endpoint.vpc_endpoints #=> Array
|
3835
3869
|
# resp.clusters[0].endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
3870
|
+
# resp.clusters[0].endpoint.vpc_endpoints[0].vpc_id #=> String
|
3871
|
+
# resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
3872
|
+
# resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
3873
|
+
# resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
3874
|
+
# resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
3875
|
+
# resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
3836
3876
|
# resp.clusters[0].cluster_create_time #=> Time
|
3837
3877
|
# resp.clusters[0].automated_snapshot_retention_period #=> Integer
|
3838
3878
|
# resp.clusters[0].manual_snapshot_retention_period #=> Integer
|
@@ -3921,6 +3961,9 @@ module Aws::Redshift
|
|
3921
3961
|
# resp.clusters[0].resize_info.allow_cancel_resize #=> Boolean
|
3922
3962
|
# resp.clusters[0].availability_zone_relocation_status #=> String
|
3923
3963
|
# resp.clusters[0].cluster_namespace_arn #=> String
|
3964
|
+
# 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"
|
3924
3967
|
#
|
3925
3968
|
#
|
3926
3969
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -5592,6 +5635,12 @@ module Aws::Redshift
|
|
5592
5635
|
# resp.cluster.endpoint.port #=> Integer
|
5593
5636
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
5594
5637
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
5638
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
5639
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
5640
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
5641
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
5642
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
5643
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
5595
5644
|
# resp.cluster.cluster_create_time #=> Time
|
5596
5645
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
5597
5646
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -5680,6 +5729,9 @@ module Aws::Redshift
|
|
5680
5729
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
5681
5730
|
# resp.cluster.availability_zone_relocation_status #=> String
|
5682
5731
|
# resp.cluster.cluster_namespace_arn #=> String
|
5732
|
+
# 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"
|
5683
5735
|
#
|
5684
5736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
|
5685
5737
|
#
|
@@ -5830,6 +5882,12 @@ module Aws::Redshift
|
|
5830
5882
|
# resp.cluster.endpoint.port #=> Integer
|
5831
5883
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
5832
5884
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
5885
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
5886
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
5887
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
5888
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
5889
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
5890
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
5833
5891
|
# resp.cluster.cluster_create_time #=> Time
|
5834
5892
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
5835
5893
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -5918,6 +5976,9 @@ module Aws::Redshift
|
|
5918
5976
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
5919
5977
|
# resp.cluster.availability_zone_relocation_status #=> String
|
5920
5978
|
# resp.cluster.cluster_namespace_arn #=> String
|
5979
|
+
# 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"
|
5921
5982
|
#
|
5922
5983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
|
5923
5984
|
#
|
@@ -6143,6 +6204,47 @@ module Aws::Redshift
|
|
6143
6204
|
req.send_request(options)
|
6144
6205
|
end
|
6145
6206
|
|
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
|
+
|
6146
6248
|
# Modifies the settings for a cluster.
|
6147
6249
|
#
|
6148
6250
|
# You can also change node type and the number of nodes to scale up or
|
@@ -6277,6 +6379,9 @@ module Aws::Redshift
|
|
6277
6379
|
# current value, existing automated snapshots that fall outside of the
|
6278
6380
|
# new retention period will be immediately deleted.
|
6279
6381
|
#
|
6382
|
+
# You can't disable automated snapshots for RA3 node types. Set the
|
6383
|
+
# automated retention period from 1-35 days.
|
6384
|
+
#
|
6280
6385
|
# Default: Uses existing setting.
|
6281
6386
|
#
|
6282
6387
|
# Constraints: Must be a value from 0 to 35.
|
@@ -6468,6 +6573,12 @@ module Aws::Redshift
|
|
6468
6573
|
# resp.cluster.endpoint.port #=> Integer
|
6469
6574
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
6470
6575
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
6576
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
6577
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
6578
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
6579
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
6580
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
6581
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
6471
6582
|
# resp.cluster.cluster_create_time #=> Time
|
6472
6583
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
6473
6584
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -6556,6 +6667,9 @@ module Aws::Redshift
|
|
6556
6667
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
6557
6668
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6558
6669
|
# resp.cluster.cluster_namespace_arn #=> String
|
6670
|
+
# 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"
|
6559
6673
|
#
|
6560
6674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
|
6561
6675
|
#
|
@@ -6603,6 +6717,12 @@ module Aws::Redshift
|
|
6603
6717
|
# resp.cluster.endpoint.port #=> Integer
|
6604
6718
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
6605
6719
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
6720
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
6721
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
6722
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
6723
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
6724
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
6725
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
6606
6726
|
# resp.cluster.cluster_create_time #=> Time
|
6607
6727
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
6608
6728
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -6691,6 +6811,9 @@ module Aws::Redshift
|
|
6691
6811
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
6692
6812
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6693
6813
|
# resp.cluster.cluster_namespace_arn #=> String
|
6814
|
+
# 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"
|
6694
6817
|
#
|
6695
6818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
|
6696
6819
|
#
|
@@ -6745,6 +6868,12 @@ module Aws::Redshift
|
|
6745
6868
|
# resp.cluster.endpoint.port #=> Integer
|
6746
6869
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
6747
6870
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
6871
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
6872
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
6873
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
6874
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
6875
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
6876
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
6748
6877
|
# resp.cluster.cluster_create_time #=> Time
|
6749
6878
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
6750
6879
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -6833,6 +6962,9 @@ module Aws::Redshift
|
|
6833
6962
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
6834
6963
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6835
6964
|
# resp.cluster.cluster_namespace_arn #=> String
|
6965
|
+
# 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"
|
6836
6968
|
#
|
6837
6969
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
|
6838
6970
|
#
|
@@ -6896,6 +7028,12 @@ module Aws::Redshift
|
|
6896
7028
|
# resp.cluster.endpoint.port #=> Integer
|
6897
7029
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
6898
7030
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
7031
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
7032
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
7033
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
7034
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
7035
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
7036
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
6899
7037
|
# resp.cluster.cluster_create_time #=> Time
|
6900
7038
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
6901
7039
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -6984,6 +7122,9 @@ module Aws::Redshift
|
|
6984
7122
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
6985
7123
|
# resp.cluster.availability_zone_relocation_status #=> String
|
6986
7124
|
# resp.cluster.cluster_namespace_arn #=> String
|
7125
|
+
# 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"
|
6987
7128
|
#
|
6988
7129
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
|
6989
7130
|
#
|
@@ -7483,6 +7624,12 @@ module Aws::Redshift
|
|
7483
7624
|
# resp.cluster.endpoint.port #=> Integer
|
7484
7625
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
7485
7626
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
7627
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
7628
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
7629
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
7630
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
7631
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
7632
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
7486
7633
|
# resp.cluster.cluster_create_time #=> Time
|
7487
7634
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
7488
7635
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -7571,6 +7718,9 @@ module Aws::Redshift
|
|
7571
7718
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
7572
7719
|
# resp.cluster.availability_zone_relocation_status #=> String
|
7573
7720
|
# resp.cluster.cluster_namespace_arn #=> String
|
7721
|
+
# 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"
|
7574
7724
|
#
|
7575
7725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
|
7576
7726
|
#
|
@@ -7717,6 +7867,12 @@ module Aws::Redshift
|
|
7717
7867
|
# resp.cluster.endpoint.port #=> Integer
|
7718
7868
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
7719
7869
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
7870
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
7871
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
7872
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
7873
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
7874
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
7875
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
7720
7876
|
# resp.cluster.cluster_create_time #=> Time
|
7721
7877
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
7722
7878
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -7805,6 +7961,9 @@ module Aws::Redshift
|
|
7805
7961
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
7806
7962
|
# resp.cluster.availability_zone_relocation_status #=> String
|
7807
7963
|
# resp.cluster.cluster_namespace_arn #=> String
|
7964
|
+
# 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"
|
7808
7967
|
#
|
7809
7968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
|
7810
7969
|
#
|
@@ -7914,6 +8073,12 @@ module Aws::Redshift
|
|
7914
8073
|
# resp.cluster.endpoint.port #=> Integer
|
7915
8074
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
7916
8075
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
8076
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
8077
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
8078
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
8079
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
8080
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
8081
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
7917
8082
|
# resp.cluster.cluster_create_time #=> Time
|
7918
8083
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
7919
8084
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -8002,6 +8167,9 @@ module Aws::Redshift
|
|
8002
8167
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
8003
8168
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8004
8169
|
# resp.cluster.cluster_namespace_arn #=> String
|
8170
|
+
# 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"
|
8005
8173
|
#
|
8006
8174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
|
8007
8175
|
#
|
@@ -8150,6 +8318,12 @@ module Aws::Redshift
|
|
8150
8318
|
# resp.cluster.endpoint.port #=> Integer
|
8151
8319
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
8152
8320
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
8321
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
8322
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
8323
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
8324
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
8325
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
8326
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
8153
8327
|
# resp.cluster.cluster_create_time #=> Time
|
8154
8328
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
8155
8329
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -8238,6 +8412,9 @@ module Aws::Redshift
|
|
8238
8412
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
8239
8413
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8240
8414
|
# resp.cluster.cluster_namespace_arn #=> String
|
8415
|
+
# 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"
|
8241
8418
|
#
|
8242
8419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
|
8243
8420
|
#
|
@@ -8405,6 +8582,9 @@ module Aws::Redshift
|
|
8405
8582
|
# are disabled, you can still create manual snapshots when you want with
|
8406
8583
|
# CreateClusterSnapshot.
|
8407
8584
|
#
|
8585
|
+
# You can't disable automated snapshots for RA3 node types. Set the
|
8586
|
+
# automated retention period from 1-35 days.
|
8587
|
+
#
|
8408
8588
|
# Default: The value selected for the cluster from which the snapshot
|
8409
8589
|
# was taken.
|
8410
8590
|
#
|
@@ -8487,6 +8667,18 @@ module Aws::Redshift
|
|
8487
8667
|
# The option to enable relocation for an Amazon Redshift cluster between
|
8488
8668
|
# Availability Zones after the cluster is restored.
|
8489
8669
|
#
|
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
|
+
#
|
8490
8682
|
# @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8491
8683
|
#
|
8492
8684
|
# * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
|
@@ -8521,6 +8713,7 @@ module Aws::Redshift
|
|
8521
8713
|
# snapshot_schedule_identifier: "String",
|
8522
8714
|
# number_of_nodes: 1,
|
8523
8715
|
# availability_zone_relocation: false,
|
8716
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
8524
8717
|
# })
|
8525
8718
|
#
|
8526
8719
|
# @example Response structure
|
@@ -8536,6 +8729,12 @@ module Aws::Redshift
|
|
8536
8729
|
# resp.cluster.endpoint.port #=> Integer
|
8537
8730
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
8538
8731
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
8732
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
8733
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
8734
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
8735
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
8736
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
8737
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
8539
8738
|
# resp.cluster.cluster_create_time #=> Time
|
8540
8739
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
8541
8740
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -8624,6 +8823,9 @@ module Aws::Redshift
|
|
8624
8823
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
8625
8824
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8626
8825
|
# resp.cluster.cluster_namespace_arn #=> String
|
8826
|
+
# 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"
|
8627
8829
|
#
|
8628
8830
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
|
8629
8831
|
#
|
@@ -8749,6 +8951,12 @@ module Aws::Redshift
|
|
8749
8951
|
# resp.cluster.endpoint.port #=> Integer
|
8750
8952
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
8751
8953
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
8954
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
8955
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
8956
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
8957
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
8958
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
8959
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
8752
8960
|
# resp.cluster.cluster_create_time #=> Time
|
8753
8961
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
8754
8962
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -8837,6 +9045,9 @@ module Aws::Redshift
|
|
8837
9045
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
8838
9046
|
# resp.cluster.availability_zone_relocation_status #=> String
|
8839
9047
|
# resp.cluster.cluster_namespace_arn #=> String
|
9048
|
+
# 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"
|
8840
9051
|
#
|
8841
9052
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
|
8842
9053
|
#
|
@@ -9044,6 +9255,12 @@ module Aws::Redshift
|
|
9044
9255
|
# resp.cluster.endpoint.port #=> Integer
|
9045
9256
|
# resp.cluster.endpoint.vpc_endpoints #=> Array
|
9046
9257
|
# resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
|
9258
|
+
# resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
|
9259
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
|
9260
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
|
9261
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
|
9262
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
|
9263
|
+
# resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
|
9047
9264
|
# resp.cluster.cluster_create_time #=> Time
|
9048
9265
|
# resp.cluster.automated_snapshot_retention_period #=> Integer
|
9049
9266
|
# resp.cluster.manual_snapshot_retention_period #=> Integer
|
@@ -9132,6 +9349,9 @@ module Aws::Redshift
|
|
9132
9349
|
# resp.cluster.resize_info.allow_cancel_resize #=> Boolean
|
9133
9350
|
# resp.cluster.availability_zone_relocation_status #=> String
|
9134
9351
|
# resp.cluster.cluster_namespace_arn #=> String
|
9352
|
+
# 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"
|
9135
9355
|
#
|
9136
9356
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
|
9137
9357
|
#
|
@@ -9155,7 +9375,7 @@ module Aws::Redshift
|
|
9155
9375
|
params: params,
|
9156
9376
|
config: config)
|
9157
9377
|
context[:gem_name] = 'aws-sdk-redshift'
|
9158
|
-
context[:gem_version] = '1.
|
9378
|
+
context[:gem_version] = '1.57.0'
|
9159
9379
|
Seahorse::Client::Request.new(handlers, context)
|
9160
9380
|
end
|
9161
9381
|
|