aws-sdk-redshift 1.70.0 → 1.74.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +393 -16
- data/lib/aws-sdk-redshift/client_api.rb +133 -0
- data/lib/aws-sdk-redshift/errors.rb +11 -0
- data/lib/aws-sdk-redshift/types.rb +334 -31
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +4 -4
@@ -119,7 +119,9 @@ module Aws::Redshift
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
124
|
+
# to true.
|
123
125
|
#
|
124
126
|
# @option options [required, String] :region
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -275,6 +277,15 @@ module Aws::Redshift
|
|
275
277
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
278
|
# requests are made, and retries are disabled.
|
277
279
|
#
|
280
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
281
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
282
|
+
# will be used if available.
|
283
|
+
#
|
284
|
+
# @option options [Boolean] :use_fips_endpoint
|
285
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
286
|
+
# When a `fips` region is used, the region is normalized and this config
|
287
|
+
# is set to `true`.
|
288
|
+
#
|
278
289
|
# @option options [Boolean] :validate_params (true)
|
279
290
|
# When `true`, request parameters are validated before
|
280
291
|
# sending the request.
|
@@ -573,7 +584,7 @@ module Aws::Redshift
|
|
573
584
|
#
|
574
585
|
# @option params [required, String] :consumer_identifier
|
575
586
|
# The identifier of the data consumer that is authorized to access the
|
576
|
-
# datashare. This identifier is an
|
587
|
+
# datashare. This identifier is an Amazon Web Services account ID.
|
577
588
|
#
|
578
589
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
579
590
|
#
|
@@ -1420,6 +1431,10 @@ module Aws::Redshift
|
|
1420
1431
|
#
|
1421
1432
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
1422
1433
|
#
|
1434
|
+
# @option params [String] :default_iam_role_arn
|
1435
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
1436
|
+
# default for the cluster when the cluster was created.
|
1437
|
+
#
|
1423
1438
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1424
1439
|
#
|
1425
1440
|
# * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
|
@@ -1464,6 +1479,7 @@ module Aws::Redshift
|
|
1464
1479
|
# snapshot_schedule_identifier: "String",
|
1465
1480
|
# availability_zone_relocation: false,
|
1466
1481
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1482
|
+
# default_iam_role_arn: "String",
|
1467
1483
|
# })
|
1468
1484
|
#
|
1469
1485
|
# @example Response structure
|
@@ -1576,6 +1592,16 @@ module Aws::Redshift
|
|
1576
1592
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
1577
1593
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
1578
1594
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
1595
|
+
# resp.cluster.default_iam_role_arn #=> String
|
1596
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
1597
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
1598
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
1599
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
1600
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
1601
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
1602
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
1603
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
1604
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
1579
1605
|
#
|
1580
1606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
|
1581
1607
|
#
|
@@ -2355,6 +2381,8 @@ module Aws::Redshift
|
|
2355
2381
|
# node_type: "String",
|
2356
2382
|
# number_of_nodes: 1,
|
2357
2383
|
# classic: false,
|
2384
|
+
# reserved_node_id: "String",
|
2385
|
+
# target_reserved_node_offering_id: "String",
|
2358
2386
|
# },
|
2359
2387
|
# pause_cluster: {
|
2360
2388
|
# cluster_identifier: "String", # required
|
@@ -2379,6 +2407,8 @@ module Aws::Redshift
|
|
2379
2407
|
# resp.target_action.resize_cluster.node_type #=> String
|
2380
2408
|
# resp.target_action.resize_cluster.number_of_nodes #=> Integer
|
2381
2409
|
# resp.target_action.resize_cluster.classic #=> Boolean
|
2410
|
+
# resp.target_action.resize_cluster.reserved_node_id #=> String
|
2411
|
+
# resp.target_action.resize_cluster.target_reserved_node_offering_id #=> String
|
2382
2412
|
# resp.target_action.pause_cluster.cluster_identifier #=> String
|
2383
2413
|
# resp.target_action.resume_cluster.cluster_identifier #=> String
|
2384
2414
|
# resp.schedule #=> String
|
@@ -2679,7 +2709,8 @@ module Aws::Redshift
|
|
2679
2709
|
#
|
2680
2710
|
# @option params [required, String] :consumer_identifier
|
2681
2711
|
# The identifier of the data consumer that is to have authorization
|
2682
|
-
# removed from the datashare. This identifier is an
|
2712
|
+
# removed from the datashare. This identifier is an Amazon Web Services
|
2713
|
+
# account ID.
|
2683
2714
|
#
|
2684
2715
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2685
2716
|
#
|
@@ -2936,6 +2967,16 @@ module Aws::Redshift
|
|
2936
2967
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
2937
2968
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
2938
2969
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
2970
|
+
# resp.cluster.default_iam_role_arn #=> String
|
2971
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
2972
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
2973
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
2974
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
2975
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
2976
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
2977
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
2978
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
2979
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
2939
2980
|
#
|
2940
2981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
|
2941
2982
|
#
|
@@ -4487,6 +4528,16 @@ module Aws::Redshift
|
|
4487
4528
|
# resp.clusters[0].total_storage_capacity_in_mega_bytes #=> Integer
|
4488
4529
|
# resp.clusters[0].aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
4489
4530
|
# resp.clusters[0].aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
4531
|
+
# resp.clusters[0].default_iam_role_arn #=> String
|
4532
|
+
# resp.clusters[0].reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
4533
|
+
# resp.clusters[0].reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
4534
|
+
# resp.clusters[0].reserved_node_exchange_status.request_time #=> Time
|
4535
|
+
# resp.clusters[0].reserved_node_exchange_status.source_reserved_node_id #=> String
|
4536
|
+
# resp.clusters[0].reserved_node_exchange_status.source_reserved_node_type #=> String
|
4537
|
+
# resp.clusters[0].reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
4538
|
+
# resp.clusters[0].reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
4539
|
+
# resp.clusters[0].reserved_node_exchange_status.target_reserved_node_type #=> String
|
4540
|
+
# resp.clusters[0].reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
4490
4541
|
#
|
4491
4542
|
#
|
4492
4543
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4520,16 +4571,19 @@ module Aws::Redshift
|
|
4520
4571
|
# @option params [String] :marker
|
4521
4572
|
# An optional parameter that specifies the starting point to return a
|
4522
4573
|
# set of response records. When the results of a DescribeDataShares
|
4523
|
-
# request exceed the value specified in `MaxRecords`,
|
4524
|
-
# value in the `Marker` field of the response. You
|
4525
|
-
# set of response records by providing the
|
4526
|
-
# `Marker` parameter and retrying the
|
4574
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4575
|
+
# Services returns a value in the `Marker` field of the response. You
|
4576
|
+
# can retrieve the next set of response records by providing the
|
4577
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4578
|
+
# request.
|
4527
4579
|
#
|
4528
4580
|
# @return [Types::DescribeDataSharesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4529
4581
|
#
|
4530
4582
|
# * {Types::DescribeDataSharesResult#data_shares #data_shares} => Array<Types::DataShare>
|
4531
4583
|
# * {Types::DescribeDataSharesResult#marker #marker} => String
|
4532
4584
|
#
|
4585
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4586
|
+
#
|
4533
4587
|
# @example Request syntax with placeholder values
|
4534
4588
|
#
|
4535
4589
|
# resp = client.describe_data_shares({
|
@@ -4583,16 +4637,18 @@ module Aws::Redshift
|
|
4583
4637
|
# An optional parameter that specifies the starting point to return a
|
4584
4638
|
# set of response records. When the results of a
|
4585
4639
|
# DescribeDataSharesForConsumer request exceed the value specified in
|
4586
|
-
# `MaxRecords`,
|
4587
|
-
# response. You can retrieve the next set of response
|
4588
|
-
# providing the returned marker value in the `Marker`
|
4589
|
-
# retrying the request.
|
4640
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4641
|
+
# field of the response. You can retrieve the next set of response
|
4642
|
+
# records by providing the returned marker value in the `Marker`
|
4643
|
+
# parameter and retrying the request.
|
4590
4644
|
#
|
4591
4645
|
# @return [Types::DescribeDataSharesForConsumerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4592
4646
|
#
|
4593
4647
|
# * {Types::DescribeDataSharesForConsumerResult#data_shares #data_shares} => Array<Types::DataShare>
|
4594
4648
|
# * {Types::DescribeDataSharesForConsumerResult#marker #marker} => String
|
4595
4649
|
#
|
4650
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4651
|
+
#
|
4596
4652
|
# @example Request syntax with placeholder values
|
4597
4653
|
#
|
4598
4654
|
# resp = client.describe_data_shares_for_consumer({
|
@@ -4647,16 +4703,18 @@ module Aws::Redshift
|
|
4647
4703
|
# An optional parameter that specifies the starting point to return a
|
4648
4704
|
# set of response records. When the results of a
|
4649
4705
|
# DescribeDataSharesForProducer request exceed the value specified in
|
4650
|
-
# `MaxRecords`,
|
4651
|
-
# response. You can retrieve the next set of response
|
4652
|
-
# providing the returned marker value in the `Marker`
|
4653
|
-
# retrying the request.
|
4706
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4707
|
+
# field of the response. You can retrieve the next set of response
|
4708
|
+
# records by providing the returned marker value in the `Marker`
|
4709
|
+
# parameter and retrying the request.
|
4654
4710
|
#
|
4655
4711
|
# @return [Types::DescribeDataSharesForProducerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4656
4712
|
#
|
4657
4713
|
# * {Types::DescribeDataSharesForProducerResult#data_shares #data_shares} => Array<Types::DataShare>
|
4658
4714
|
# * {Types::DescribeDataSharesForProducerResult#marker #marker} => String
|
4659
4715
|
#
|
4716
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4717
|
+
#
|
4660
4718
|
# @example Request syntax with placeholder values
|
4661
4719
|
#
|
4662
4720
|
# resp = client.describe_data_shares_for_producer({
|
@@ -5647,6 +5705,71 @@ module Aws::Redshift
|
|
5647
5705
|
req.send_request(options)
|
5648
5706
|
end
|
5649
5707
|
|
5708
|
+
# Returns exchange status details and associated metadata for a
|
5709
|
+
# reserved-node exchange. Statuses include such values as in progress
|
5710
|
+
# and requested.
|
5711
|
+
#
|
5712
|
+
# @option params [String] :reserved_node_id
|
5713
|
+
# The identifier of the source reserved node in a reserved-node exchange
|
5714
|
+
# request.
|
5715
|
+
#
|
5716
|
+
# @option params [String] :reserved_node_exchange_request_id
|
5717
|
+
# The identifier of the reserved-node exchange request.
|
5718
|
+
#
|
5719
|
+
# @option params [Integer] :max_records
|
5720
|
+
# The maximum number of response records to return in each call. If the
|
5721
|
+
# number of remaining response records exceeds the specified
|
5722
|
+
# `MaxRecords` value, a value is returned in a `Marker` field of the
|
5723
|
+
# response. You can retrieve the next set of records by retrying the
|
5724
|
+
# command with the returned marker value.
|
5725
|
+
#
|
5726
|
+
# @option params [String] :marker
|
5727
|
+
# An optional pagination token provided by a previous
|
5728
|
+
# `DescribeReservedNodeExchangeStatus` request. If this parameter is
|
5729
|
+
# specified, the response includes only records beyond the marker, up to
|
5730
|
+
# the value specified by the `MaxRecords` parameter. You can retrieve
|
5731
|
+
# the next set of response records by providing the returned marker
|
5732
|
+
# value in the `Marker` parameter and retrying the request.
|
5733
|
+
#
|
5734
|
+
# @return [Types::DescribeReservedNodeExchangeStatusOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5735
|
+
#
|
5736
|
+
# * {Types::DescribeReservedNodeExchangeStatusOutputMessage#reserved_node_exchange_status_details #reserved_node_exchange_status_details} => Array<Types::ReservedNodeExchangeStatus>
|
5737
|
+
# * {Types::DescribeReservedNodeExchangeStatusOutputMessage#marker #marker} => String
|
5738
|
+
#
|
5739
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5740
|
+
#
|
5741
|
+
# @example Request syntax with placeholder values
|
5742
|
+
#
|
5743
|
+
# resp = client.describe_reserved_node_exchange_status({
|
5744
|
+
# reserved_node_id: "String",
|
5745
|
+
# reserved_node_exchange_request_id: "String",
|
5746
|
+
# max_records: 1,
|
5747
|
+
# marker: "String",
|
5748
|
+
# })
|
5749
|
+
#
|
5750
|
+
# @example Response structure
|
5751
|
+
#
|
5752
|
+
# resp.reserved_node_exchange_status_details #=> Array
|
5753
|
+
# resp.reserved_node_exchange_status_details[0].reserved_node_exchange_request_id #=> String
|
5754
|
+
# resp.reserved_node_exchange_status_details[0].status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
5755
|
+
# resp.reserved_node_exchange_status_details[0].request_time #=> Time
|
5756
|
+
# resp.reserved_node_exchange_status_details[0].source_reserved_node_id #=> String
|
5757
|
+
# resp.reserved_node_exchange_status_details[0].source_reserved_node_type #=> String
|
5758
|
+
# resp.reserved_node_exchange_status_details[0].source_reserved_node_count #=> Integer
|
5759
|
+
# resp.reserved_node_exchange_status_details[0].target_reserved_node_offering_id #=> String
|
5760
|
+
# resp.reserved_node_exchange_status_details[0].target_reserved_node_type #=> String
|
5761
|
+
# resp.reserved_node_exchange_status_details[0].target_reserved_node_count #=> Integer
|
5762
|
+
# resp.marker #=> String
|
5763
|
+
#
|
5764
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeExchangeStatus AWS API Documentation
|
5765
|
+
#
|
5766
|
+
# @overload describe_reserved_node_exchange_status(params = {})
|
5767
|
+
# @param [Hash] params ({})
|
5768
|
+
def describe_reserved_node_exchange_status(params = {}, options = {})
|
5769
|
+
req = build_request(:describe_reserved_node_exchange_status, params)
|
5770
|
+
req.send_request(options)
|
5771
|
+
end
|
5772
|
+
|
5650
5773
|
# Returns a list of the available reserved node offerings by Amazon
|
5651
5774
|
# Redshift with their descriptions including the node type, the fixed
|
5652
5775
|
# and recurring costs of reserving the node and duration the node will
|
@@ -5946,6 +6069,8 @@ module Aws::Redshift
|
|
5946
6069
|
# resp.scheduled_actions[0].target_action.resize_cluster.node_type #=> String
|
5947
6070
|
# resp.scheduled_actions[0].target_action.resize_cluster.number_of_nodes #=> Integer
|
5948
6071
|
# resp.scheduled_actions[0].target_action.resize_cluster.classic #=> Boolean
|
6072
|
+
# resp.scheduled_actions[0].target_action.resize_cluster.reserved_node_id #=> String
|
6073
|
+
# resp.scheduled_actions[0].target_action.resize_cluster.target_reserved_node_offering_id #=> String
|
5949
6074
|
# resp.scheduled_actions[0].target_action.pause_cluster.cluster_identifier #=> String
|
5950
6075
|
# resp.scheduled_actions[0].target_action.resume_cluster.cluster_identifier #=> String
|
5951
6076
|
# resp.scheduled_actions[0].schedule #=> String
|
@@ -6639,6 +6764,16 @@ module Aws::Redshift
|
|
6639
6764
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6640
6765
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6641
6766
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6767
|
+
# resp.cluster.default_iam_role_arn #=> String
|
6768
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
6769
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
6770
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
6771
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
6772
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
6773
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
6774
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
6775
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
6776
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
6642
6777
|
#
|
6643
6778
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
|
6644
6779
|
#
|
@@ -6939,6 +7074,16 @@ module Aws::Redshift
|
|
6939
7074
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6940
7075
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6941
7076
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7077
|
+
# resp.cluster.default_iam_role_arn #=> String
|
7078
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
7079
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
7080
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
7081
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
7082
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
7083
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
7084
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
7085
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
7086
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
6942
7087
|
#
|
6943
7088
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
|
6944
7089
|
#
|
@@ -7109,6 +7254,97 @@ module Aws::Redshift
|
|
7109
7254
|
req.send_request(options)
|
7110
7255
|
end
|
7111
7256
|
|
7257
|
+
# Gets the configuration options for the reserved-node exchange. These
|
7258
|
+
# options include information about the source reserved node and target
|
7259
|
+
# reserved node offering. Details include the node type, the price, the
|
7260
|
+
# node count, and the offering type.
|
7261
|
+
#
|
7262
|
+
# @option params [required, String] :action_type
|
7263
|
+
# The action type of the reserved-node configuration. The action type
|
7264
|
+
# can be an exchange initiated from either a snapshot or a resize.
|
7265
|
+
#
|
7266
|
+
# @option params [String] :cluster_identifier
|
7267
|
+
# The identifier for the cluster that is the source for a reserved-node
|
7268
|
+
# exchange.
|
7269
|
+
#
|
7270
|
+
# @option params [String] :snapshot_identifier
|
7271
|
+
# The identifier for the snapshot that is the source for the
|
7272
|
+
# reserved-node exchange.
|
7273
|
+
#
|
7274
|
+
# @option params [Integer] :max_records
|
7275
|
+
# The maximum number of response records to return in each call. If the
|
7276
|
+
# number of remaining response records exceeds the specified
|
7277
|
+
# `MaxRecords` value, a value is returned in a `Marker` field of the
|
7278
|
+
# response. You can retrieve the next set of records by retrying the
|
7279
|
+
# command with the returned marker value.
|
7280
|
+
#
|
7281
|
+
# @option params [String] :marker
|
7282
|
+
# An optional pagination token provided by a previous
|
7283
|
+
# `GetReservedNodeExchangeConfigurationOptions` request. If this
|
7284
|
+
# parameter is specified, the response includes only records beyond the
|
7285
|
+
# marker, up to the value specified by the `MaxRecords` parameter. You
|
7286
|
+
# can retrieve the next set of response records by providing the
|
7287
|
+
# returned marker value in the `Marker` parameter and retrying the
|
7288
|
+
# request.
|
7289
|
+
#
|
7290
|
+
# @return [Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7291
|
+
#
|
7292
|
+
# * {Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage#marker #marker} => String
|
7293
|
+
# * {Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage#reserved_node_configuration_option_list #reserved_node_configuration_option_list} => Array<Types::ReservedNodeConfigurationOption>
|
7294
|
+
#
|
7295
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7296
|
+
#
|
7297
|
+
# @example Request syntax with placeholder values
|
7298
|
+
#
|
7299
|
+
# resp = client.get_reserved_node_exchange_configuration_options({
|
7300
|
+
# action_type: "restore-cluster", # required, accepts restore-cluster, resize-cluster
|
7301
|
+
# cluster_identifier: "String",
|
7302
|
+
# snapshot_identifier: "String",
|
7303
|
+
# max_records: 1,
|
7304
|
+
# marker: "String",
|
7305
|
+
# })
|
7306
|
+
#
|
7307
|
+
# @example Response structure
|
7308
|
+
#
|
7309
|
+
# resp.marker #=> String
|
7310
|
+
# resp.reserved_node_configuration_option_list #=> Array
|
7311
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.reserved_node_id #=> String
|
7312
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.reserved_node_offering_id #=> String
|
7313
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.node_type #=> String
|
7314
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.start_time #=> Time
|
7315
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.duration #=> Integer
|
7316
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.fixed_price #=> Float
|
7317
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.usage_price #=> Float
|
7318
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.currency_code #=> String
|
7319
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.node_count #=> Integer
|
7320
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.state #=> String
|
7321
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.offering_type #=> String
|
7322
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.recurring_charges #=> Array
|
7323
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.recurring_charges[0].recurring_charge_amount #=> Float
|
7324
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.recurring_charges[0].recurring_charge_frequency #=> String
|
7325
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.reserved_node_offering_type #=> String, one of "Regular", "Upgradable"
|
7326
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_count #=> Integer
|
7327
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.reserved_node_offering_id #=> String
|
7328
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.node_type #=> String
|
7329
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.duration #=> Integer
|
7330
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.fixed_price #=> Float
|
7331
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.usage_price #=> Float
|
7332
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.currency_code #=> String
|
7333
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.offering_type #=> String
|
7334
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.recurring_charges #=> Array
|
7335
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.recurring_charges[0].recurring_charge_amount #=> Float
|
7336
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.recurring_charges[0].recurring_charge_frequency #=> String
|
7337
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.reserved_node_offering_type #=> String, one of "Regular", "Upgradable"
|
7338
|
+
#
|
7339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetReservedNodeExchangeConfigurationOptions AWS API Documentation
|
7340
|
+
#
|
7341
|
+
# @overload get_reserved_node_exchange_configuration_options(params = {})
|
7342
|
+
# @param [Hash] params ({})
|
7343
|
+
def get_reserved_node_exchange_configuration_options(params = {}, options = {})
|
7344
|
+
req = build_request(:get_reserved_node_exchange_configuration_options, params)
|
7345
|
+
req.send_request(options)
|
7346
|
+
end
|
7347
|
+
|
7112
7348
|
# Returns an array of DC2 ReservedNodeOfferings that matches the payment
|
7113
7349
|
# type, term, and usage price of the given DC1 reserved node.
|
7114
7350
|
#
|
@@ -7667,6 +7903,16 @@ module Aws::Redshift
|
|
7667
7903
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7668
7904
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7669
7905
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7906
|
+
# resp.cluster.default_iam_role_arn #=> String
|
7907
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
7908
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
7909
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
7910
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
7911
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
7912
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
7913
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
7914
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
7915
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
7670
7916
|
#
|
7671
7917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
|
7672
7918
|
#
|
@@ -7811,6 +8057,16 @@ module Aws::Redshift
|
|
7811
8057
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7812
8058
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7813
8059
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8060
|
+
# resp.cluster.default_iam_role_arn #=> String
|
8061
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
8062
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
8063
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
8064
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
8065
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
8066
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
8067
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
8068
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
8069
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
7814
8070
|
#
|
7815
8071
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
|
7816
8072
|
#
|
@@ -7841,6 +8097,10 @@ module Aws::Redshift
|
|
7841
8097
|
# You can disassociate up to 10 IAM roles from a single cluster in a
|
7842
8098
|
# single request.
|
7843
8099
|
#
|
8100
|
+
# @option params [String] :default_iam_role_arn
|
8101
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
8102
|
+
# default for the cluster when the cluster was last modified.
|
8103
|
+
#
|
7844
8104
|
# @return [Types::ModifyClusterIamRolesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7845
8105
|
#
|
7846
8106
|
# * {Types::ModifyClusterIamRolesResult#cluster #cluster} => Types::Cluster
|
@@ -7851,6 +8111,7 @@ module Aws::Redshift
|
|
7851
8111
|
# cluster_identifier: "String", # required
|
7852
8112
|
# add_iam_roles: ["String"],
|
7853
8113
|
# remove_iam_roles: ["String"],
|
8114
|
+
# default_iam_role_arn: "String",
|
7854
8115
|
# })
|
7855
8116
|
#
|
7856
8117
|
# @example Response structure
|
@@ -7963,6 +8224,16 @@ module Aws::Redshift
|
|
7963
8224
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7964
8225
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7965
8226
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8227
|
+
# resp.cluster.default_iam_role_arn #=> String
|
8228
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
8229
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
8230
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
8231
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
8232
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
8233
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
8234
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
8235
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
8236
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
7966
8237
|
#
|
7967
8238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
|
7968
8239
|
#
|
@@ -8123,6 +8394,16 @@ module Aws::Redshift
|
|
8123
8394
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8124
8395
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8125
8396
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8397
|
+
# resp.cluster.default_iam_role_arn #=> String
|
8398
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
8399
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
8400
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
8401
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
8402
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
8403
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
8404
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
8405
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
8406
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
8126
8407
|
#
|
8127
8408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
|
8128
8409
|
#
|
@@ -8569,6 +8850,8 @@ module Aws::Redshift
|
|
8569
8850
|
# node_type: "String",
|
8570
8851
|
# number_of_nodes: 1,
|
8571
8852
|
# classic: false,
|
8853
|
+
# reserved_node_id: "String",
|
8854
|
+
# target_reserved_node_offering_id: "String",
|
8572
8855
|
# },
|
8573
8856
|
# pause_cluster: {
|
8574
8857
|
# cluster_identifier: "String", # required
|
@@ -8593,6 +8876,8 @@ module Aws::Redshift
|
|
8593
8876
|
# resp.target_action.resize_cluster.node_type #=> String
|
8594
8877
|
# resp.target_action.resize_cluster.number_of_nodes #=> Integer
|
8595
8878
|
# resp.target_action.resize_cluster.classic #=> Boolean
|
8879
|
+
# resp.target_action.resize_cluster.reserved_node_id #=> String
|
8880
|
+
# resp.target_action.resize_cluster.target_reserved_node_offering_id #=> String
|
8596
8881
|
# resp.target_action.pause_cluster.cluster_identifier #=> String
|
8597
8882
|
# resp.target_action.resume_cluster.cluster_identifier #=> String
|
8598
8883
|
# resp.schedule #=> String
|
@@ -8783,6 +9068,16 @@ module Aws::Redshift
|
|
8783
9068
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8784
9069
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8785
9070
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9071
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9072
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9073
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9074
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9075
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9076
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9077
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9078
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9079
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9080
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
8786
9081
|
#
|
8787
9082
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
|
8788
9083
|
#
|
@@ -9026,6 +9321,16 @@ module Aws::Redshift
|
|
9026
9321
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9027
9322
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9028
9323
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9324
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9325
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9326
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9327
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9328
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9329
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9330
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9331
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9332
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9333
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9029
9334
|
#
|
9030
9335
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
|
9031
9336
|
#
|
@@ -9232,6 +9537,16 @@ module Aws::Redshift
|
|
9232
9537
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9233
9538
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9234
9539
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9540
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9541
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9542
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9543
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9544
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9545
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9546
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9547
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9548
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9549
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9235
9550
|
#
|
9236
9551
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
|
9237
9552
|
#
|
@@ -9391,6 +9706,12 @@ module Aws::Redshift
|
|
9391
9706
|
# classic resize process. If you don't provide this parameter or set
|
9392
9707
|
# the value to `false`, the resize type is elastic.
|
9393
9708
|
#
|
9709
|
+
# @option params [String] :reserved_node_id
|
9710
|
+
# The identifier of the reserved node.
|
9711
|
+
#
|
9712
|
+
# @option params [String] :target_reserved_node_offering_id
|
9713
|
+
# The identifier of the target reserved node offering.
|
9714
|
+
#
|
9394
9715
|
# @return [Types::ResizeClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9395
9716
|
#
|
9396
9717
|
# * {Types::ResizeClusterResult#cluster #cluster} => Types::Cluster
|
@@ -9403,6 +9724,8 @@ module Aws::Redshift
|
|
9403
9724
|
# node_type: "String",
|
9404
9725
|
# number_of_nodes: 1,
|
9405
9726
|
# classic: false,
|
9727
|
+
# reserved_node_id: "String",
|
9728
|
+
# target_reserved_node_offering_id: "String",
|
9406
9729
|
# })
|
9407
9730
|
#
|
9408
9731
|
# @example Response structure
|
@@ -9515,6 +9838,16 @@ module Aws::Redshift
|
|
9515
9838
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9516
9839
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9517
9840
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9841
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9842
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9843
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9844
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9845
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9846
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9847
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9848
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9849
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9850
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9518
9851
|
#
|
9519
9852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
|
9520
9853
|
#
|
@@ -9780,6 +10113,17 @@ module Aws::Redshift
|
|
9780
10113
|
#
|
9781
10114
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
9782
10115
|
#
|
10116
|
+
# @option params [String] :default_iam_role_arn
|
10117
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
10118
|
+
# default for the cluster when the cluster was last modified while it
|
10119
|
+
# was restored from a snapshot.
|
10120
|
+
#
|
10121
|
+
# @option params [String] :reserved_node_id
|
10122
|
+
# The identifier of the target reserved node offering.
|
10123
|
+
#
|
10124
|
+
# @option params [String] :target_reserved_node_offering_id
|
10125
|
+
# The identifier of the target reserved node offering.
|
10126
|
+
#
|
9783
10127
|
# @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9784
10128
|
#
|
9785
10129
|
# * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
|
@@ -9815,6 +10159,9 @@ module Aws::Redshift
|
|
9815
10159
|
# number_of_nodes: 1,
|
9816
10160
|
# availability_zone_relocation: false,
|
9817
10161
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
10162
|
+
# default_iam_role_arn: "String",
|
10163
|
+
# reserved_node_id: "String",
|
10164
|
+
# target_reserved_node_offering_id: "String",
|
9818
10165
|
# })
|
9819
10166
|
#
|
9820
10167
|
# @example Response structure
|
@@ -9927,6 +10274,16 @@ module Aws::Redshift
|
|
9927
10274
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9928
10275
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9929
10276
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10277
|
+
# resp.cluster.default_iam_role_arn #=> String
|
10278
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
10279
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
10280
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
10281
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
10282
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
10283
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
10284
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
10285
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
10286
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9930
10287
|
#
|
9931
10288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
|
9932
10289
|
#
|
@@ -10155,6 +10512,16 @@ module Aws::Redshift
|
|
10155
10512
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
10156
10513
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
10157
10514
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10515
|
+
# resp.cluster.default_iam_role_arn #=> String
|
10516
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
10517
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
10518
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
10519
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
10520
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
10521
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
10522
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
10523
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
10524
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
10158
10525
|
#
|
10159
10526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
|
10160
10527
|
#
|
@@ -10519,6 +10886,16 @@ module Aws::Redshift
|
|
10519
10886
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
10520
10887
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
10521
10888
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10889
|
+
# resp.cluster.default_iam_role_arn #=> String
|
10890
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
10891
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
10892
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
10893
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
10894
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
10895
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
10896
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
10897
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
10898
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
10522
10899
|
#
|
10523
10900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
|
10524
10901
|
#
|
@@ -10594,7 +10971,7 @@ module Aws::Redshift
|
|
10594
10971
|
params: params,
|
10595
10972
|
config: config)
|
10596
10973
|
context[:gem_name] = 'aws-sdk-redshift'
|
10597
|
-
context[:gem_version] = '1.
|
10974
|
+
context[:gem_version] = '1.74.0'
|
10598
10975
|
Seahorse::Client::Request.new(handlers, context)
|
10599
10976
|
end
|
10600
10977
|
|