aws-sdk-redshift 1.72.0 → 1.76.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +365 -8
- data/lib/aws-sdk-redshift/client_api.rb +130 -0
- data/lib/aws-sdk-redshift/errors.rb +11 -0
- data/lib/aws-sdk-redshift/types.rb +284 -6
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +4 -4
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::Redshift
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::Query)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::Redshift
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::Redshift
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -295,7 +303,7 @@ module Aws::Redshift
|
|
295
303
|
# seconds to wait when opening a HTTP session before raising a
|
296
304
|
# `Timeout::Error`.
|
297
305
|
#
|
298
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
307
|
# number of seconds to wait for response data. This value can
|
300
308
|
# safely be set per-request on the session.
|
301
309
|
#
|
@@ -311,6 +319,9 @@ module Aws::Redshift
|
|
311
319
|
# disables this behaviour. This value can safely be set per
|
312
320
|
# request on the session.
|
313
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
314
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
326
|
# HTTP debug output will be sent to the `:logger`.
|
316
327
|
#
|
@@ -456,6 +467,7 @@ module Aws::Redshift
|
|
456
467
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
457
468
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
458
469
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
470
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
459
471
|
#
|
460
472
|
# @example Request syntax with placeholder values
|
461
473
|
#
|
@@ -475,6 +487,7 @@ module Aws::Redshift
|
|
475
487
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
476
488
|
# resp.data_share_associations[0].created_date #=> Time
|
477
489
|
# resp.data_share_associations[0].status_change_date #=> Time
|
490
|
+
# resp.managed_by #=> String
|
478
491
|
#
|
479
492
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AssociateDataShareConsumer AWS API Documentation
|
480
493
|
#
|
@@ -572,9 +585,9 @@ module Aws::Redshift
|
|
572
585
|
end
|
573
586
|
|
574
587
|
# From a data producer account, authorizes the sharing of a datashare
|
575
|
-
# with one or more consumer accounts. To authorize
|
576
|
-
# data consumer, the producer account must have the
|
577
|
-
# privileges.
|
588
|
+
# with one or more consumer accounts or managing entities. To authorize
|
589
|
+
# a datashare for a data consumer, the producer account must have the
|
590
|
+
# correct access privileges.
|
578
591
|
#
|
579
592
|
# @option params [required, String] :data_share_arn
|
580
593
|
# The Amazon Resource Name (ARN) of the datashare that producers are to
|
@@ -582,7 +595,8 @@ module Aws::Redshift
|
|
582
595
|
#
|
583
596
|
# @option params [required, String] :consumer_identifier
|
584
597
|
# The identifier of the data consumer that is authorized to access the
|
585
|
-
# datashare. This identifier is an Amazon Web Services account ID
|
598
|
+
# datashare. This identifier is an Amazon Web Services account ID or a
|
599
|
+
# keyword, such as ADX.
|
586
600
|
#
|
587
601
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
588
602
|
#
|
@@ -590,6 +604,7 @@ module Aws::Redshift
|
|
590
604
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
591
605
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
592
606
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
607
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
593
608
|
#
|
594
609
|
# @example Request syntax with placeholder values
|
595
610
|
#
|
@@ -608,6 +623,7 @@ module Aws::Redshift
|
|
608
623
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
609
624
|
# resp.data_share_associations[0].created_date #=> Time
|
610
625
|
# resp.data_share_associations[0].status_change_date #=> Time
|
626
|
+
# resp.managed_by #=> String
|
611
627
|
#
|
612
628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShare AWS API Documentation
|
613
629
|
#
|
@@ -1591,6 +1607,15 @@ module Aws::Redshift
|
|
1591
1607
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
1592
1608
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
1593
1609
|
# resp.cluster.default_iam_role_arn #=> String
|
1610
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
1611
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
1612
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
1613
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
1614
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
1615
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
1616
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
1617
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
1618
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
1594
1619
|
#
|
1595
1620
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
|
1596
1621
|
#
|
@@ -2370,6 +2395,8 @@ module Aws::Redshift
|
|
2370
2395
|
# node_type: "String",
|
2371
2396
|
# number_of_nodes: 1,
|
2372
2397
|
# classic: false,
|
2398
|
+
# reserved_node_id: "String",
|
2399
|
+
# target_reserved_node_offering_id: "String",
|
2373
2400
|
# },
|
2374
2401
|
# pause_cluster: {
|
2375
2402
|
# cluster_identifier: "String", # required
|
@@ -2394,6 +2421,8 @@ module Aws::Redshift
|
|
2394
2421
|
# resp.target_action.resize_cluster.node_type #=> String
|
2395
2422
|
# resp.target_action.resize_cluster.number_of_nodes #=> Integer
|
2396
2423
|
# resp.target_action.resize_cluster.classic #=> Boolean
|
2424
|
+
# resp.target_action.resize_cluster.reserved_node_id #=> String
|
2425
|
+
# resp.target_action.resize_cluster.target_reserved_node_offering_id #=> String
|
2397
2426
|
# resp.target_action.pause_cluster.cluster_identifier #=> String
|
2398
2427
|
# resp.target_action.resume_cluster.cluster_identifier #=> String
|
2399
2428
|
# resp.schedule #=> String
|
@@ -2695,7 +2724,7 @@ module Aws::Redshift
|
|
2695
2724
|
# @option params [required, String] :consumer_identifier
|
2696
2725
|
# The identifier of the data consumer that is to have authorization
|
2697
2726
|
# removed from the datashare. This identifier is an Amazon Web Services
|
2698
|
-
# account ID.
|
2727
|
+
# account ID or a keyword, such as ADX.
|
2699
2728
|
#
|
2700
2729
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2701
2730
|
#
|
@@ -2703,6 +2732,7 @@ module Aws::Redshift
|
|
2703
2732
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
2704
2733
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
2705
2734
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
2735
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
2706
2736
|
#
|
2707
2737
|
# @example Request syntax with placeholder values
|
2708
2738
|
#
|
@@ -2721,6 +2751,7 @@ module Aws::Redshift
|
|
2721
2751
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
2722
2752
|
# resp.data_share_associations[0].created_date #=> Time
|
2723
2753
|
# resp.data_share_associations[0].status_change_date #=> Time
|
2754
|
+
# resp.managed_by #=> String
|
2724
2755
|
#
|
2725
2756
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShare AWS API Documentation
|
2726
2757
|
#
|
@@ -2953,6 +2984,15 @@ module Aws::Redshift
|
|
2953
2984
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
2954
2985
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
2955
2986
|
# resp.cluster.default_iam_role_arn #=> String
|
2987
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
2988
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
2989
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
2990
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
2991
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
2992
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
2993
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
2994
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
2995
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
2956
2996
|
#
|
2957
2997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
|
2958
2998
|
#
|
@@ -4505,6 +4545,15 @@ module Aws::Redshift
|
|
4505
4545
|
# resp.clusters[0].aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
4506
4546
|
# resp.clusters[0].aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
4507
4547
|
# resp.clusters[0].default_iam_role_arn #=> String
|
4548
|
+
# resp.clusters[0].reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
4549
|
+
# resp.clusters[0].reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
4550
|
+
# resp.clusters[0].reserved_node_exchange_status.request_time #=> Time
|
4551
|
+
# resp.clusters[0].reserved_node_exchange_status.source_reserved_node_id #=> String
|
4552
|
+
# resp.clusters[0].reserved_node_exchange_status.source_reserved_node_type #=> String
|
4553
|
+
# resp.clusters[0].reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
4554
|
+
# resp.clusters[0].reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
4555
|
+
# resp.clusters[0].reserved_node_exchange_status.target_reserved_node_type #=> String
|
4556
|
+
# resp.clusters[0].reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
4508
4557
|
#
|
4509
4558
|
#
|
4510
4559
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4549,6 +4598,8 @@ module Aws::Redshift
|
|
4549
4598
|
# * {Types::DescribeDataSharesResult#data_shares #data_shares} => Array<Types::DataShare>
|
4550
4599
|
# * {Types::DescribeDataSharesResult#marker #marker} => String
|
4551
4600
|
#
|
4601
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4602
|
+
#
|
4552
4603
|
# @example Request syntax with placeholder values
|
4553
4604
|
#
|
4554
4605
|
# resp = client.describe_data_shares({
|
@@ -4568,6 +4619,7 @@ module Aws::Redshift
|
|
4568
4619
|
# resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
4569
4620
|
# resp.data_shares[0].data_share_associations[0].created_date #=> Time
|
4570
4621
|
# resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
|
4622
|
+
# resp.data_shares[0].managed_by #=> String
|
4571
4623
|
# resp.marker #=> String
|
4572
4624
|
#
|
4573
4625
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataShares AWS API Documentation
|
@@ -4612,6 +4664,8 @@ module Aws::Redshift
|
|
4612
4664
|
# * {Types::DescribeDataSharesForConsumerResult#data_shares #data_shares} => Array<Types::DataShare>
|
4613
4665
|
# * {Types::DescribeDataSharesForConsumerResult#marker #marker} => String
|
4614
4666
|
#
|
4667
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4668
|
+
#
|
4615
4669
|
# @example Request syntax with placeholder values
|
4616
4670
|
#
|
4617
4671
|
# resp = client.describe_data_shares_for_consumer({
|
@@ -4632,6 +4686,7 @@ module Aws::Redshift
|
|
4632
4686
|
# resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
4633
4687
|
# resp.data_shares[0].data_share_associations[0].created_date #=> Time
|
4634
4688
|
# resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
|
4689
|
+
# resp.data_shares[0].managed_by #=> String
|
4635
4690
|
# resp.marker #=> String
|
4636
4691
|
#
|
4637
4692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumer AWS API Documentation
|
@@ -4676,6 +4731,8 @@ module Aws::Redshift
|
|
4676
4731
|
# * {Types::DescribeDataSharesForProducerResult#data_shares #data_shares} => Array<Types::DataShare>
|
4677
4732
|
# * {Types::DescribeDataSharesForProducerResult#marker #marker} => String
|
4678
4733
|
#
|
4734
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4735
|
+
#
|
4679
4736
|
# @example Request syntax with placeholder values
|
4680
4737
|
#
|
4681
4738
|
# resp = client.describe_data_shares_for_producer({
|
@@ -4696,6 +4753,7 @@ module Aws::Redshift
|
|
4696
4753
|
# resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
4697
4754
|
# resp.data_shares[0].data_share_associations[0].created_date #=> Time
|
4698
4755
|
# resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
|
4756
|
+
# resp.data_shares[0].managed_by #=> String
|
4699
4757
|
# resp.marker #=> String
|
4700
4758
|
#
|
4701
4759
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducer AWS API Documentation
|
@@ -5666,6 +5724,71 @@ module Aws::Redshift
|
|
5666
5724
|
req.send_request(options)
|
5667
5725
|
end
|
5668
5726
|
|
5727
|
+
# Returns exchange status details and associated metadata for a
|
5728
|
+
# reserved-node exchange. Statuses include such values as in progress
|
5729
|
+
# and requested.
|
5730
|
+
#
|
5731
|
+
# @option params [String] :reserved_node_id
|
5732
|
+
# The identifier of the source reserved node in a reserved-node exchange
|
5733
|
+
# request.
|
5734
|
+
#
|
5735
|
+
# @option params [String] :reserved_node_exchange_request_id
|
5736
|
+
# The identifier of the reserved-node exchange request.
|
5737
|
+
#
|
5738
|
+
# @option params [Integer] :max_records
|
5739
|
+
# The maximum number of response records to return in each call. If the
|
5740
|
+
# number of remaining response records exceeds the specified
|
5741
|
+
# `MaxRecords` value, a value is returned in a `Marker` field of the
|
5742
|
+
# response. You can retrieve the next set of records by retrying the
|
5743
|
+
# command with the returned marker value.
|
5744
|
+
#
|
5745
|
+
# @option params [String] :marker
|
5746
|
+
# An optional pagination token provided by a previous
|
5747
|
+
# `DescribeReservedNodeExchangeStatus` request. If this parameter is
|
5748
|
+
# specified, the response includes only records beyond the marker, up to
|
5749
|
+
# the value specified by the `MaxRecords` parameter. You can retrieve
|
5750
|
+
# the next set of response records by providing the returned marker
|
5751
|
+
# value in the `Marker` parameter and retrying the request.
|
5752
|
+
#
|
5753
|
+
# @return [Types::DescribeReservedNodeExchangeStatusOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5754
|
+
#
|
5755
|
+
# * {Types::DescribeReservedNodeExchangeStatusOutputMessage#reserved_node_exchange_status_details #reserved_node_exchange_status_details} => Array<Types::ReservedNodeExchangeStatus>
|
5756
|
+
# * {Types::DescribeReservedNodeExchangeStatusOutputMessage#marker #marker} => String
|
5757
|
+
#
|
5758
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5759
|
+
#
|
5760
|
+
# @example Request syntax with placeholder values
|
5761
|
+
#
|
5762
|
+
# resp = client.describe_reserved_node_exchange_status({
|
5763
|
+
# reserved_node_id: "String",
|
5764
|
+
# reserved_node_exchange_request_id: "String",
|
5765
|
+
# max_records: 1,
|
5766
|
+
# marker: "String",
|
5767
|
+
# })
|
5768
|
+
#
|
5769
|
+
# @example Response structure
|
5770
|
+
#
|
5771
|
+
# resp.reserved_node_exchange_status_details #=> Array
|
5772
|
+
# resp.reserved_node_exchange_status_details[0].reserved_node_exchange_request_id #=> String
|
5773
|
+
# resp.reserved_node_exchange_status_details[0].status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
5774
|
+
# resp.reserved_node_exchange_status_details[0].request_time #=> Time
|
5775
|
+
# resp.reserved_node_exchange_status_details[0].source_reserved_node_id #=> String
|
5776
|
+
# resp.reserved_node_exchange_status_details[0].source_reserved_node_type #=> String
|
5777
|
+
# resp.reserved_node_exchange_status_details[0].source_reserved_node_count #=> Integer
|
5778
|
+
# resp.reserved_node_exchange_status_details[0].target_reserved_node_offering_id #=> String
|
5779
|
+
# resp.reserved_node_exchange_status_details[0].target_reserved_node_type #=> String
|
5780
|
+
# resp.reserved_node_exchange_status_details[0].target_reserved_node_count #=> Integer
|
5781
|
+
# resp.marker #=> String
|
5782
|
+
#
|
5783
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeExchangeStatus AWS API Documentation
|
5784
|
+
#
|
5785
|
+
# @overload describe_reserved_node_exchange_status(params = {})
|
5786
|
+
# @param [Hash] params ({})
|
5787
|
+
def describe_reserved_node_exchange_status(params = {}, options = {})
|
5788
|
+
req = build_request(:describe_reserved_node_exchange_status, params)
|
5789
|
+
req.send_request(options)
|
5790
|
+
end
|
5791
|
+
|
5669
5792
|
# Returns a list of the available reserved node offerings by Amazon
|
5670
5793
|
# Redshift with their descriptions including the node type, the fixed
|
5671
5794
|
# and recurring costs of reserving the node and duration the node will
|
@@ -5965,6 +6088,8 @@ module Aws::Redshift
|
|
5965
6088
|
# resp.scheduled_actions[0].target_action.resize_cluster.node_type #=> String
|
5966
6089
|
# resp.scheduled_actions[0].target_action.resize_cluster.number_of_nodes #=> Integer
|
5967
6090
|
# resp.scheduled_actions[0].target_action.resize_cluster.classic #=> Boolean
|
6091
|
+
# resp.scheduled_actions[0].target_action.resize_cluster.reserved_node_id #=> String
|
6092
|
+
# resp.scheduled_actions[0].target_action.resize_cluster.target_reserved_node_offering_id #=> String
|
5968
6093
|
# resp.scheduled_actions[0].target_action.pause_cluster.cluster_identifier #=> String
|
5969
6094
|
# resp.scheduled_actions[0].target_action.resume_cluster.cluster_identifier #=> String
|
5970
6095
|
# resp.scheduled_actions[0].schedule #=> String
|
@@ -6659,6 +6784,15 @@ module Aws::Redshift
|
|
6659
6784
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6660
6785
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6661
6786
|
# resp.cluster.default_iam_role_arn #=> String
|
6787
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
6788
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
6789
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
6790
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
6791
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
6792
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
6793
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
6794
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
6795
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
6662
6796
|
#
|
6663
6797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
|
6664
6798
|
#
|
@@ -6690,6 +6824,7 @@ module Aws::Redshift
|
|
6690
6824
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
6691
6825
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
6692
6826
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
6827
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
6693
6828
|
#
|
6694
6829
|
# @example Request syntax with placeholder values
|
6695
6830
|
#
|
@@ -6709,6 +6844,7 @@ module Aws::Redshift
|
|
6709
6844
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
6710
6845
|
# resp.data_share_associations[0].created_date #=> Time
|
6711
6846
|
# resp.data_share_associations[0].status_change_date #=> Time
|
6847
|
+
# resp.managed_by #=> String
|
6712
6848
|
#
|
6713
6849
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisassociateDataShareConsumer AWS API Documentation
|
6714
6850
|
#
|
@@ -6960,6 +7096,15 @@ module Aws::Redshift
|
|
6960
7096
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6961
7097
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6962
7098
|
# resp.cluster.default_iam_role_arn #=> String
|
7099
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
7100
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
7101
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
7102
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
7103
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
7104
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
7105
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
7106
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
7107
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
6963
7108
|
#
|
6964
7109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
|
6965
7110
|
#
|
@@ -7130,6 +7275,97 @@ module Aws::Redshift
|
|
7130
7275
|
req.send_request(options)
|
7131
7276
|
end
|
7132
7277
|
|
7278
|
+
# Gets the configuration options for the reserved-node exchange. These
|
7279
|
+
# options include information about the source reserved node and target
|
7280
|
+
# reserved node offering. Details include the node type, the price, the
|
7281
|
+
# node count, and the offering type.
|
7282
|
+
#
|
7283
|
+
# @option params [required, String] :action_type
|
7284
|
+
# The action type of the reserved-node configuration. The action type
|
7285
|
+
# can be an exchange initiated from either a snapshot or a resize.
|
7286
|
+
#
|
7287
|
+
# @option params [String] :cluster_identifier
|
7288
|
+
# The identifier for the cluster that is the source for a reserved-node
|
7289
|
+
# exchange.
|
7290
|
+
#
|
7291
|
+
# @option params [String] :snapshot_identifier
|
7292
|
+
# The identifier for the snapshot that is the source for the
|
7293
|
+
# reserved-node exchange.
|
7294
|
+
#
|
7295
|
+
# @option params [Integer] :max_records
|
7296
|
+
# The maximum number of response records to return in each call. If the
|
7297
|
+
# number of remaining response records exceeds the specified
|
7298
|
+
# `MaxRecords` value, a value is returned in a `Marker` field of the
|
7299
|
+
# response. You can retrieve the next set of records by retrying the
|
7300
|
+
# command with the returned marker value.
|
7301
|
+
#
|
7302
|
+
# @option params [String] :marker
|
7303
|
+
# An optional pagination token provided by a previous
|
7304
|
+
# `GetReservedNodeExchangeConfigurationOptions` request. If this
|
7305
|
+
# parameter is specified, the response includes only records beyond the
|
7306
|
+
# marker, up to the value specified by the `MaxRecords` parameter. You
|
7307
|
+
# can retrieve the next set of response records by providing the
|
7308
|
+
# returned marker value in the `Marker` parameter and retrying the
|
7309
|
+
# request.
|
7310
|
+
#
|
7311
|
+
# @return [Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7312
|
+
#
|
7313
|
+
# * {Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage#marker #marker} => String
|
7314
|
+
# * {Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage#reserved_node_configuration_option_list #reserved_node_configuration_option_list} => Array<Types::ReservedNodeConfigurationOption>
|
7315
|
+
#
|
7316
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7317
|
+
#
|
7318
|
+
# @example Request syntax with placeholder values
|
7319
|
+
#
|
7320
|
+
# resp = client.get_reserved_node_exchange_configuration_options({
|
7321
|
+
# action_type: "restore-cluster", # required, accepts restore-cluster, resize-cluster
|
7322
|
+
# cluster_identifier: "String",
|
7323
|
+
# snapshot_identifier: "String",
|
7324
|
+
# max_records: 1,
|
7325
|
+
# marker: "String",
|
7326
|
+
# })
|
7327
|
+
#
|
7328
|
+
# @example Response structure
|
7329
|
+
#
|
7330
|
+
# resp.marker #=> String
|
7331
|
+
# resp.reserved_node_configuration_option_list #=> Array
|
7332
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.reserved_node_id #=> String
|
7333
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.reserved_node_offering_id #=> String
|
7334
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.node_type #=> String
|
7335
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.start_time #=> Time
|
7336
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.duration #=> Integer
|
7337
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.fixed_price #=> Float
|
7338
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.usage_price #=> Float
|
7339
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.currency_code #=> String
|
7340
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.node_count #=> Integer
|
7341
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.state #=> String
|
7342
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.offering_type #=> String
|
7343
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.recurring_charges #=> Array
|
7344
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.recurring_charges[0].recurring_charge_amount #=> Float
|
7345
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.recurring_charges[0].recurring_charge_frequency #=> String
|
7346
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.reserved_node_offering_type #=> String, one of "Regular", "Upgradable"
|
7347
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_count #=> Integer
|
7348
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.reserved_node_offering_id #=> String
|
7349
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.node_type #=> String
|
7350
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.duration #=> Integer
|
7351
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.fixed_price #=> Float
|
7352
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.usage_price #=> Float
|
7353
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.currency_code #=> String
|
7354
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.offering_type #=> String
|
7355
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.recurring_charges #=> Array
|
7356
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.recurring_charges[0].recurring_charge_amount #=> Float
|
7357
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.recurring_charges[0].recurring_charge_frequency #=> String
|
7358
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.reserved_node_offering_type #=> String, one of "Regular", "Upgradable"
|
7359
|
+
#
|
7360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetReservedNodeExchangeConfigurationOptions AWS API Documentation
|
7361
|
+
#
|
7362
|
+
# @overload get_reserved_node_exchange_configuration_options(params = {})
|
7363
|
+
# @param [Hash] params ({})
|
7364
|
+
def get_reserved_node_exchange_configuration_options(params = {}, options = {})
|
7365
|
+
req = build_request(:get_reserved_node_exchange_configuration_options, params)
|
7366
|
+
req.send_request(options)
|
7367
|
+
end
|
7368
|
+
|
7133
7369
|
# Returns an array of DC2 ReservedNodeOfferings that matches the payment
|
7134
7370
|
# type, term, and usage price of the given DC1 reserved node.
|
7135
7371
|
#
|
@@ -7689,6 +7925,15 @@ module Aws::Redshift
|
|
7689
7925
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7690
7926
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7691
7927
|
# resp.cluster.default_iam_role_arn #=> String
|
7928
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
7929
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
7930
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
7931
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
7932
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
7933
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
7934
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
7935
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
7936
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
7692
7937
|
#
|
7693
7938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
|
7694
7939
|
#
|
@@ -7834,6 +8079,15 @@ module Aws::Redshift
|
|
7834
8079
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7835
8080
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7836
8081
|
# resp.cluster.default_iam_role_arn #=> String
|
8082
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
8083
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
8084
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
8085
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
8086
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
8087
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
8088
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
8089
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
8090
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
7837
8091
|
#
|
7838
8092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
|
7839
8093
|
#
|
@@ -7992,6 +8246,15 @@ module Aws::Redshift
|
|
7992
8246
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7993
8247
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7994
8248
|
# resp.cluster.default_iam_role_arn #=> String
|
8249
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
8250
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
8251
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
8252
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
8253
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
8254
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
8255
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
8256
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
8257
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
7995
8258
|
#
|
7996
8259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
|
7997
8260
|
#
|
@@ -8153,6 +8416,15 @@ module Aws::Redshift
|
|
8153
8416
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8154
8417
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8155
8418
|
# resp.cluster.default_iam_role_arn #=> String
|
8419
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
8420
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
8421
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
8422
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
8423
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
8424
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
8425
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
8426
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
8427
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
8156
8428
|
#
|
8157
8429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
|
8158
8430
|
#
|
@@ -8599,6 +8871,8 @@ module Aws::Redshift
|
|
8599
8871
|
# node_type: "String",
|
8600
8872
|
# number_of_nodes: 1,
|
8601
8873
|
# classic: false,
|
8874
|
+
# reserved_node_id: "String",
|
8875
|
+
# target_reserved_node_offering_id: "String",
|
8602
8876
|
# },
|
8603
8877
|
# pause_cluster: {
|
8604
8878
|
# cluster_identifier: "String", # required
|
@@ -8623,6 +8897,8 @@ module Aws::Redshift
|
|
8623
8897
|
# resp.target_action.resize_cluster.node_type #=> String
|
8624
8898
|
# resp.target_action.resize_cluster.number_of_nodes #=> Integer
|
8625
8899
|
# resp.target_action.resize_cluster.classic #=> Boolean
|
8900
|
+
# resp.target_action.resize_cluster.reserved_node_id #=> String
|
8901
|
+
# resp.target_action.resize_cluster.target_reserved_node_offering_id #=> String
|
8626
8902
|
# resp.target_action.pause_cluster.cluster_identifier #=> String
|
8627
8903
|
# resp.target_action.resume_cluster.cluster_identifier #=> String
|
8628
8904
|
# resp.schedule #=> String
|
@@ -8814,6 +9090,15 @@ module Aws::Redshift
|
|
8814
9090
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8815
9091
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8816
9092
|
# resp.cluster.default_iam_role_arn #=> String
|
9093
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9094
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9095
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9096
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9097
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9098
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9099
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9100
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9101
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
8817
9102
|
#
|
8818
9103
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
|
8819
9104
|
#
|
@@ -9058,6 +9343,15 @@ module Aws::Redshift
|
|
9058
9343
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9059
9344
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9060
9345
|
# resp.cluster.default_iam_role_arn #=> String
|
9346
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9347
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9348
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9349
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9350
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9351
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9352
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9353
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9354
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9061
9355
|
#
|
9062
9356
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
|
9063
9357
|
#
|
@@ -9265,6 +9559,15 @@ module Aws::Redshift
|
|
9265
9559
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9266
9560
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9267
9561
|
# resp.cluster.default_iam_role_arn #=> String
|
9562
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9563
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9564
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9565
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9566
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9567
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9568
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9569
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9570
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9268
9571
|
#
|
9269
9572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
|
9270
9573
|
#
|
@@ -9286,6 +9589,7 @@ module Aws::Redshift
|
|
9286
9589
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
9287
9590
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
9288
9591
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
9592
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
9289
9593
|
#
|
9290
9594
|
# @example Request syntax with placeholder values
|
9291
9595
|
#
|
@@ -9303,6 +9607,7 @@ module Aws::Redshift
|
|
9303
9607
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
9304
9608
|
# resp.data_share_associations[0].created_date #=> Time
|
9305
9609
|
# resp.data_share_associations[0].status_change_date #=> Time
|
9610
|
+
# resp.managed_by #=> String
|
9306
9611
|
#
|
9307
9612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RejectDataShare AWS API Documentation
|
9308
9613
|
#
|
@@ -9424,6 +9729,12 @@ module Aws::Redshift
|
|
9424
9729
|
# classic resize process. If you don't provide this parameter or set
|
9425
9730
|
# the value to `false`, the resize type is elastic.
|
9426
9731
|
#
|
9732
|
+
# @option params [String] :reserved_node_id
|
9733
|
+
# The identifier of the reserved node.
|
9734
|
+
#
|
9735
|
+
# @option params [String] :target_reserved_node_offering_id
|
9736
|
+
# The identifier of the target reserved node offering.
|
9737
|
+
#
|
9427
9738
|
# @return [Types::ResizeClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9428
9739
|
#
|
9429
9740
|
# * {Types::ResizeClusterResult#cluster #cluster} => Types::Cluster
|
@@ -9436,6 +9747,8 @@ module Aws::Redshift
|
|
9436
9747
|
# node_type: "String",
|
9437
9748
|
# number_of_nodes: 1,
|
9438
9749
|
# classic: false,
|
9750
|
+
# reserved_node_id: "String",
|
9751
|
+
# target_reserved_node_offering_id: "String",
|
9439
9752
|
# })
|
9440
9753
|
#
|
9441
9754
|
# @example Response structure
|
@@ -9549,6 +9862,15 @@ module Aws::Redshift
|
|
9549
9862
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9550
9863
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9551
9864
|
# resp.cluster.default_iam_role_arn #=> String
|
9865
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9866
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9867
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9868
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9869
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9870
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9871
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9872
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9873
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9552
9874
|
#
|
9553
9875
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
|
9554
9876
|
#
|
@@ -9819,6 +10141,12 @@ module Aws::Redshift
|
|
9819
10141
|
# default for the cluster when the cluster was last modified while it
|
9820
10142
|
# was restored from a snapshot.
|
9821
10143
|
#
|
10144
|
+
# @option params [String] :reserved_node_id
|
10145
|
+
# The identifier of the target reserved node offering.
|
10146
|
+
#
|
10147
|
+
# @option params [String] :target_reserved_node_offering_id
|
10148
|
+
# The identifier of the target reserved node offering.
|
10149
|
+
#
|
9822
10150
|
# @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9823
10151
|
#
|
9824
10152
|
# * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
|
@@ -9855,6 +10183,8 @@ module Aws::Redshift
|
|
9855
10183
|
# availability_zone_relocation: false,
|
9856
10184
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
9857
10185
|
# default_iam_role_arn: "String",
|
10186
|
+
# reserved_node_id: "String",
|
10187
|
+
# target_reserved_node_offering_id: "String",
|
9858
10188
|
# })
|
9859
10189
|
#
|
9860
10190
|
# @example Response structure
|
@@ -9968,6 +10298,15 @@ module Aws::Redshift
|
|
9968
10298
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9969
10299
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9970
10300
|
# resp.cluster.default_iam_role_arn #=> String
|
10301
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
10302
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
10303
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
10304
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
10305
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
10306
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
10307
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
10308
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
10309
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9971
10310
|
#
|
9972
10311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
|
9973
10312
|
#
|
@@ -10197,6 +10536,15 @@ module Aws::Redshift
|
|
10197
10536
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
10198
10537
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10199
10538
|
# resp.cluster.default_iam_role_arn #=> String
|
10539
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
10540
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
10541
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
10542
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
10543
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
10544
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
10545
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
10546
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
10547
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
10200
10548
|
#
|
10201
10549
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
|
10202
10550
|
#
|
@@ -10562,6 +10910,15 @@ module Aws::Redshift
|
|
10562
10910
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
10563
10911
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10564
10912
|
# resp.cluster.default_iam_role_arn #=> String
|
10913
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
10914
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
10915
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
10916
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
10917
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
10918
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
10919
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
10920
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
10921
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
10565
10922
|
#
|
10566
10923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
|
10567
10924
|
#
|
@@ -10637,7 +10994,7 @@ module Aws::Redshift
|
|
10637
10994
|
params: params,
|
10638
10995
|
config: config)
|
10639
10996
|
context[:gem_name] = 'aws-sdk-redshift'
|
10640
|
-
context[:gem_version] = '1.
|
10997
|
+
context[:gem_version] = '1.76.0'
|
10641
10998
|
Seahorse::Client::Request.new(handlers, context)
|
10642
10999
|
end
|
10643
11000
|
|