aws-sdk-redshift 1.71.0 → 1.75.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 +401 -19
- data/lib/aws-sdk-redshift/client_api.rb +134 -0
- data/lib/aws-sdk-redshift/errors.rb +11 -0
- data/lib/aws-sdk-redshift/types.rb +341 -32
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +2 -2
@@ -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
|
@@ -456,6 +458,7 @@ module Aws::Redshift
|
|
456
458
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
457
459
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
458
460
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
461
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
459
462
|
#
|
460
463
|
# @example Request syntax with placeholder values
|
461
464
|
#
|
@@ -475,6 +478,7 @@ module Aws::Redshift
|
|
475
478
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
476
479
|
# resp.data_share_associations[0].created_date #=> Time
|
477
480
|
# resp.data_share_associations[0].status_change_date #=> Time
|
481
|
+
# resp.managed_by #=> String
|
478
482
|
#
|
479
483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AssociateDataShareConsumer AWS API Documentation
|
480
484
|
#
|
@@ -572,9 +576,9 @@ module Aws::Redshift
|
|
572
576
|
end
|
573
577
|
|
574
578
|
# 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.
|
579
|
+
# with one or more consumer accounts or managing entities. To authorize
|
580
|
+
# a datashare for a data consumer, the producer account must have the
|
581
|
+
# correct access privileges.
|
578
582
|
#
|
579
583
|
# @option params [required, String] :data_share_arn
|
580
584
|
# The Amazon Resource Name (ARN) of the datashare that producers are to
|
@@ -582,7 +586,8 @@ module Aws::Redshift
|
|
582
586
|
#
|
583
587
|
# @option params [required, String] :consumer_identifier
|
584
588
|
# The identifier of the data consumer that is authorized to access the
|
585
|
-
# datashare. This identifier is an
|
589
|
+
# datashare. This identifier is an Amazon Web Services account ID or a
|
590
|
+
# keyword, such as ADX.
|
586
591
|
#
|
587
592
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
588
593
|
#
|
@@ -590,6 +595,7 @@ module Aws::Redshift
|
|
590
595
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
591
596
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
592
597
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
598
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
593
599
|
#
|
594
600
|
# @example Request syntax with placeholder values
|
595
601
|
#
|
@@ -608,6 +614,7 @@ module Aws::Redshift
|
|
608
614
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
609
615
|
# resp.data_share_associations[0].created_date #=> Time
|
610
616
|
# resp.data_share_associations[0].status_change_date #=> Time
|
617
|
+
# resp.managed_by #=> String
|
611
618
|
#
|
612
619
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShare AWS API Documentation
|
613
620
|
#
|
@@ -1429,6 +1436,10 @@ module Aws::Redshift
|
|
1429
1436
|
#
|
1430
1437
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
1431
1438
|
#
|
1439
|
+
# @option params [String] :default_iam_role_arn
|
1440
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
1441
|
+
# default for the cluster when the cluster was created.
|
1442
|
+
#
|
1432
1443
|
# @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1433
1444
|
#
|
1434
1445
|
# * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
|
@@ -1473,6 +1484,7 @@ module Aws::Redshift
|
|
1473
1484
|
# snapshot_schedule_identifier: "String",
|
1474
1485
|
# availability_zone_relocation: false,
|
1475
1486
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1487
|
+
# default_iam_role_arn: "String",
|
1476
1488
|
# })
|
1477
1489
|
#
|
1478
1490
|
# @example Response structure
|
@@ -1585,6 +1597,16 @@ module Aws::Redshift
|
|
1585
1597
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
1586
1598
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
1587
1599
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
1600
|
+
# resp.cluster.default_iam_role_arn #=> String
|
1601
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
1602
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
1603
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
1604
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
1605
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
1606
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
1607
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
1608
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
1609
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
1588
1610
|
#
|
1589
1611
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
|
1590
1612
|
#
|
@@ -2364,6 +2386,8 @@ module Aws::Redshift
|
|
2364
2386
|
# node_type: "String",
|
2365
2387
|
# number_of_nodes: 1,
|
2366
2388
|
# classic: false,
|
2389
|
+
# reserved_node_id: "String",
|
2390
|
+
# target_reserved_node_offering_id: "String",
|
2367
2391
|
# },
|
2368
2392
|
# pause_cluster: {
|
2369
2393
|
# cluster_identifier: "String", # required
|
@@ -2388,6 +2412,8 @@ module Aws::Redshift
|
|
2388
2412
|
# resp.target_action.resize_cluster.node_type #=> String
|
2389
2413
|
# resp.target_action.resize_cluster.number_of_nodes #=> Integer
|
2390
2414
|
# resp.target_action.resize_cluster.classic #=> Boolean
|
2415
|
+
# resp.target_action.resize_cluster.reserved_node_id #=> String
|
2416
|
+
# resp.target_action.resize_cluster.target_reserved_node_offering_id #=> String
|
2391
2417
|
# resp.target_action.pause_cluster.cluster_identifier #=> String
|
2392
2418
|
# resp.target_action.resume_cluster.cluster_identifier #=> String
|
2393
2419
|
# resp.schedule #=> String
|
@@ -2688,7 +2714,8 @@ module Aws::Redshift
|
|
2688
2714
|
#
|
2689
2715
|
# @option params [required, String] :consumer_identifier
|
2690
2716
|
# The identifier of the data consumer that is to have authorization
|
2691
|
-
# removed from the datashare. This identifier is an
|
2717
|
+
# removed from the datashare. This identifier is an Amazon Web Services
|
2718
|
+
# account ID or a keyword, such as ADX.
|
2692
2719
|
#
|
2693
2720
|
# @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2694
2721
|
#
|
@@ -2696,6 +2723,7 @@ module Aws::Redshift
|
|
2696
2723
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
2697
2724
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
2698
2725
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
2726
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
2699
2727
|
#
|
2700
2728
|
# @example Request syntax with placeholder values
|
2701
2729
|
#
|
@@ -2714,6 +2742,7 @@ module Aws::Redshift
|
|
2714
2742
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
2715
2743
|
# resp.data_share_associations[0].created_date #=> Time
|
2716
2744
|
# resp.data_share_associations[0].status_change_date #=> Time
|
2745
|
+
# resp.managed_by #=> String
|
2717
2746
|
#
|
2718
2747
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShare AWS API Documentation
|
2719
2748
|
#
|
@@ -2945,6 +2974,16 @@ module Aws::Redshift
|
|
2945
2974
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
2946
2975
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
2947
2976
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
2977
|
+
# resp.cluster.default_iam_role_arn #=> String
|
2978
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
2979
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
2980
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
2981
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
2982
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
2983
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
2984
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
2985
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
2986
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
2948
2987
|
#
|
2949
2988
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
|
2950
2989
|
#
|
@@ -4496,6 +4535,16 @@ module Aws::Redshift
|
|
4496
4535
|
# resp.clusters[0].total_storage_capacity_in_mega_bytes #=> Integer
|
4497
4536
|
# resp.clusters[0].aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
4498
4537
|
# resp.clusters[0].aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
4538
|
+
# resp.clusters[0].default_iam_role_arn #=> String
|
4539
|
+
# resp.clusters[0].reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
4540
|
+
# resp.clusters[0].reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
4541
|
+
# resp.clusters[0].reserved_node_exchange_status.request_time #=> Time
|
4542
|
+
# resp.clusters[0].reserved_node_exchange_status.source_reserved_node_id #=> String
|
4543
|
+
# resp.clusters[0].reserved_node_exchange_status.source_reserved_node_type #=> String
|
4544
|
+
# resp.clusters[0].reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
4545
|
+
# resp.clusters[0].reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
4546
|
+
# resp.clusters[0].reserved_node_exchange_status.target_reserved_node_type #=> String
|
4547
|
+
# resp.clusters[0].reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
4499
4548
|
#
|
4500
4549
|
#
|
4501
4550
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4529,16 +4578,19 @@ module Aws::Redshift
|
|
4529
4578
|
# @option params [String] :marker
|
4530
4579
|
# An optional parameter that specifies the starting point to return a
|
4531
4580
|
# set of response records. When the results of a DescribeDataShares
|
4532
|
-
# request exceed the value specified in `MaxRecords`,
|
4533
|
-
# value in the `Marker` field of the response. You
|
4534
|
-
# set of response records by providing the
|
4535
|
-
# `Marker` parameter and retrying the
|
4581
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4582
|
+
# Services returns a value in the `Marker` field of the response. You
|
4583
|
+
# can retrieve the next set of response records by providing the
|
4584
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4585
|
+
# request.
|
4536
4586
|
#
|
4537
4587
|
# @return [Types::DescribeDataSharesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4538
4588
|
#
|
4539
4589
|
# * {Types::DescribeDataSharesResult#data_shares #data_shares} => Array<Types::DataShare>
|
4540
4590
|
# * {Types::DescribeDataSharesResult#marker #marker} => String
|
4541
4591
|
#
|
4592
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4593
|
+
#
|
4542
4594
|
# @example Request syntax with placeholder values
|
4543
4595
|
#
|
4544
4596
|
# resp = client.describe_data_shares({
|
@@ -4558,6 +4610,7 @@ module Aws::Redshift
|
|
4558
4610
|
# resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
4559
4611
|
# resp.data_shares[0].data_share_associations[0].created_date #=> Time
|
4560
4612
|
# resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
|
4613
|
+
# resp.data_shares[0].managed_by #=> String
|
4561
4614
|
# resp.marker #=> String
|
4562
4615
|
#
|
4563
4616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataShares AWS API Documentation
|
@@ -4592,16 +4645,18 @@ module Aws::Redshift
|
|
4592
4645
|
# An optional parameter that specifies the starting point to return a
|
4593
4646
|
# set of response records. When the results of a
|
4594
4647
|
# DescribeDataSharesForConsumer request exceed the value specified in
|
4595
|
-
# `MaxRecords`,
|
4596
|
-
# response. You can retrieve the next set of response
|
4597
|
-
# providing the returned marker value in the `Marker`
|
4598
|
-
# retrying the request.
|
4648
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4649
|
+
# field of the response. You can retrieve the next set of response
|
4650
|
+
# records by providing the returned marker value in the `Marker`
|
4651
|
+
# parameter and retrying the request.
|
4599
4652
|
#
|
4600
4653
|
# @return [Types::DescribeDataSharesForConsumerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4601
4654
|
#
|
4602
4655
|
# * {Types::DescribeDataSharesForConsumerResult#data_shares #data_shares} => Array<Types::DataShare>
|
4603
4656
|
# * {Types::DescribeDataSharesForConsumerResult#marker #marker} => String
|
4604
4657
|
#
|
4658
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4659
|
+
#
|
4605
4660
|
# @example Request syntax with placeholder values
|
4606
4661
|
#
|
4607
4662
|
# resp = client.describe_data_shares_for_consumer({
|
@@ -4622,6 +4677,7 @@ module Aws::Redshift
|
|
4622
4677
|
# resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
4623
4678
|
# resp.data_shares[0].data_share_associations[0].created_date #=> Time
|
4624
4679
|
# resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
|
4680
|
+
# resp.data_shares[0].managed_by #=> String
|
4625
4681
|
# resp.marker #=> String
|
4626
4682
|
#
|
4627
4683
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumer AWS API Documentation
|
@@ -4656,16 +4712,18 @@ module Aws::Redshift
|
|
4656
4712
|
# An optional parameter that specifies the starting point to return a
|
4657
4713
|
# set of response records. When the results of a
|
4658
4714
|
# DescribeDataSharesForProducer request exceed the value specified in
|
4659
|
-
# `MaxRecords`,
|
4660
|
-
# response. You can retrieve the next set of response
|
4661
|
-
# providing the returned marker value in the `Marker`
|
4662
|
-
# retrying the request.
|
4715
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4716
|
+
# field of the response. You can retrieve the next set of response
|
4717
|
+
# records by providing the returned marker value in the `Marker`
|
4718
|
+
# parameter and retrying the request.
|
4663
4719
|
#
|
4664
4720
|
# @return [Types::DescribeDataSharesForProducerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4665
4721
|
#
|
4666
4722
|
# * {Types::DescribeDataSharesForProducerResult#data_shares #data_shares} => Array<Types::DataShare>
|
4667
4723
|
# * {Types::DescribeDataSharesForProducerResult#marker #marker} => String
|
4668
4724
|
#
|
4725
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4726
|
+
#
|
4669
4727
|
# @example Request syntax with placeholder values
|
4670
4728
|
#
|
4671
4729
|
# resp = client.describe_data_shares_for_producer({
|
@@ -4686,6 +4744,7 @@ module Aws::Redshift
|
|
4686
4744
|
# resp.data_shares[0].data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
4687
4745
|
# resp.data_shares[0].data_share_associations[0].created_date #=> Time
|
4688
4746
|
# resp.data_shares[0].data_share_associations[0].status_change_date #=> Time
|
4747
|
+
# resp.data_shares[0].managed_by #=> String
|
4689
4748
|
# resp.marker #=> String
|
4690
4749
|
#
|
4691
4750
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducer AWS API Documentation
|
@@ -5656,6 +5715,71 @@ module Aws::Redshift
|
|
5656
5715
|
req.send_request(options)
|
5657
5716
|
end
|
5658
5717
|
|
5718
|
+
# Returns exchange status details and associated metadata for a
|
5719
|
+
# reserved-node exchange. Statuses include such values as in progress
|
5720
|
+
# and requested.
|
5721
|
+
#
|
5722
|
+
# @option params [String] :reserved_node_id
|
5723
|
+
# The identifier of the source reserved node in a reserved-node exchange
|
5724
|
+
# request.
|
5725
|
+
#
|
5726
|
+
# @option params [String] :reserved_node_exchange_request_id
|
5727
|
+
# The identifier of the reserved-node exchange request.
|
5728
|
+
#
|
5729
|
+
# @option params [Integer] :max_records
|
5730
|
+
# The maximum number of response records to return in each call. If the
|
5731
|
+
# number of remaining response records exceeds the specified
|
5732
|
+
# `MaxRecords` value, a value is returned in a `Marker` field of the
|
5733
|
+
# response. You can retrieve the next set of records by retrying the
|
5734
|
+
# command with the returned marker value.
|
5735
|
+
#
|
5736
|
+
# @option params [String] :marker
|
5737
|
+
# An optional pagination token provided by a previous
|
5738
|
+
# `DescribeReservedNodeExchangeStatus` request. If this parameter is
|
5739
|
+
# specified, the response includes only records beyond the marker, up to
|
5740
|
+
# the value specified by the `MaxRecords` parameter. You can retrieve
|
5741
|
+
# the next set of response records by providing the returned marker
|
5742
|
+
# value in the `Marker` parameter and retrying the request.
|
5743
|
+
#
|
5744
|
+
# @return [Types::DescribeReservedNodeExchangeStatusOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5745
|
+
#
|
5746
|
+
# * {Types::DescribeReservedNodeExchangeStatusOutputMessage#reserved_node_exchange_status_details #reserved_node_exchange_status_details} => Array<Types::ReservedNodeExchangeStatus>
|
5747
|
+
# * {Types::DescribeReservedNodeExchangeStatusOutputMessage#marker #marker} => String
|
5748
|
+
#
|
5749
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5750
|
+
#
|
5751
|
+
# @example Request syntax with placeholder values
|
5752
|
+
#
|
5753
|
+
# resp = client.describe_reserved_node_exchange_status({
|
5754
|
+
# reserved_node_id: "String",
|
5755
|
+
# reserved_node_exchange_request_id: "String",
|
5756
|
+
# max_records: 1,
|
5757
|
+
# marker: "String",
|
5758
|
+
# })
|
5759
|
+
#
|
5760
|
+
# @example Response structure
|
5761
|
+
#
|
5762
|
+
# resp.reserved_node_exchange_status_details #=> Array
|
5763
|
+
# resp.reserved_node_exchange_status_details[0].reserved_node_exchange_request_id #=> String
|
5764
|
+
# resp.reserved_node_exchange_status_details[0].status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
5765
|
+
# resp.reserved_node_exchange_status_details[0].request_time #=> Time
|
5766
|
+
# resp.reserved_node_exchange_status_details[0].source_reserved_node_id #=> String
|
5767
|
+
# resp.reserved_node_exchange_status_details[0].source_reserved_node_type #=> String
|
5768
|
+
# resp.reserved_node_exchange_status_details[0].source_reserved_node_count #=> Integer
|
5769
|
+
# resp.reserved_node_exchange_status_details[0].target_reserved_node_offering_id #=> String
|
5770
|
+
# resp.reserved_node_exchange_status_details[0].target_reserved_node_type #=> String
|
5771
|
+
# resp.reserved_node_exchange_status_details[0].target_reserved_node_count #=> Integer
|
5772
|
+
# resp.marker #=> String
|
5773
|
+
#
|
5774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeExchangeStatus AWS API Documentation
|
5775
|
+
#
|
5776
|
+
# @overload describe_reserved_node_exchange_status(params = {})
|
5777
|
+
# @param [Hash] params ({})
|
5778
|
+
def describe_reserved_node_exchange_status(params = {}, options = {})
|
5779
|
+
req = build_request(:describe_reserved_node_exchange_status, params)
|
5780
|
+
req.send_request(options)
|
5781
|
+
end
|
5782
|
+
|
5659
5783
|
# Returns a list of the available reserved node offerings by Amazon
|
5660
5784
|
# Redshift with their descriptions including the node type, the fixed
|
5661
5785
|
# and recurring costs of reserving the node and duration the node will
|
@@ -5955,6 +6079,8 @@ module Aws::Redshift
|
|
5955
6079
|
# resp.scheduled_actions[0].target_action.resize_cluster.node_type #=> String
|
5956
6080
|
# resp.scheduled_actions[0].target_action.resize_cluster.number_of_nodes #=> Integer
|
5957
6081
|
# resp.scheduled_actions[0].target_action.resize_cluster.classic #=> Boolean
|
6082
|
+
# resp.scheduled_actions[0].target_action.resize_cluster.reserved_node_id #=> String
|
6083
|
+
# resp.scheduled_actions[0].target_action.resize_cluster.target_reserved_node_offering_id #=> String
|
5958
6084
|
# resp.scheduled_actions[0].target_action.pause_cluster.cluster_identifier #=> String
|
5959
6085
|
# resp.scheduled_actions[0].target_action.resume_cluster.cluster_identifier #=> String
|
5960
6086
|
# resp.scheduled_actions[0].schedule #=> String
|
@@ -6648,6 +6774,16 @@ module Aws::Redshift
|
|
6648
6774
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6649
6775
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6650
6776
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
6777
|
+
# resp.cluster.default_iam_role_arn #=> String
|
6778
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
6779
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
6780
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
6781
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
6782
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
6783
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
6784
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
6785
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
6786
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
6651
6787
|
#
|
6652
6788
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
|
6653
6789
|
#
|
@@ -6679,6 +6815,7 @@ module Aws::Redshift
|
|
6679
6815
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
6680
6816
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
6681
6817
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
6818
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
6682
6819
|
#
|
6683
6820
|
# @example Request syntax with placeholder values
|
6684
6821
|
#
|
@@ -6698,6 +6835,7 @@ module Aws::Redshift
|
|
6698
6835
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
6699
6836
|
# resp.data_share_associations[0].created_date #=> Time
|
6700
6837
|
# resp.data_share_associations[0].status_change_date #=> Time
|
6838
|
+
# resp.managed_by #=> String
|
6701
6839
|
#
|
6702
6840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisassociateDataShareConsumer AWS API Documentation
|
6703
6841
|
#
|
@@ -6948,6 +7086,16 @@ module Aws::Redshift
|
|
6948
7086
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
6949
7087
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
6950
7088
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7089
|
+
# resp.cluster.default_iam_role_arn #=> String
|
7090
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
7091
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
7092
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
7093
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
7094
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
7095
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
7096
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
7097
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
7098
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
6951
7099
|
#
|
6952
7100
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
|
6953
7101
|
#
|
@@ -7118,6 +7266,97 @@ module Aws::Redshift
|
|
7118
7266
|
req.send_request(options)
|
7119
7267
|
end
|
7120
7268
|
|
7269
|
+
# Gets the configuration options for the reserved-node exchange. These
|
7270
|
+
# options include information about the source reserved node and target
|
7271
|
+
# reserved node offering. Details include the node type, the price, the
|
7272
|
+
# node count, and the offering type.
|
7273
|
+
#
|
7274
|
+
# @option params [required, String] :action_type
|
7275
|
+
# The action type of the reserved-node configuration. The action type
|
7276
|
+
# can be an exchange initiated from either a snapshot or a resize.
|
7277
|
+
#
|
7278
|
+
# @option params [String] :cluster_identifier
|
7279
|
+
# The identifier for the cluster that is the source for a reserved-node
|
7280
|
+
# exchange.
|
7281
|
+
#
|
7282
|
+
# @option params [String] :snapshot_identifier
|
7283
|
+
# The identifier for the snapshot that is the source for the
|
7284
|
+
# reserved-node exchange.
|
7285
|
+
#
|
7286
|
+
# @option params [Integer] :max_records
|
7287
|
+
# The maximum number of response records to return in each call. If the
|
7288
|
+
# number of remaining response records exceeds the specified
|
7289
|
+
# `MaxRecords` value, a value is returned in a `Marker` field of the
|
7290
|
+
# response. You can retrieve the next set of records by retrying the
|
7291
|
+
# command with the returned marker value.
|
7292
|
+
#
|
7293
|
+
# @option params [String] :marker
|
7294
|
+
# An optional pagination token provided by a previous
|
7295
|
+
# `GetReservedNodeExchangeConfigurationOptions` request. If this
|
7296
|
+
# parameter is specified, the response includes only records beyond the
|
7297
|
+
# marker, up to the value specified by the `MaxRecords` parameter. You
|
7298
|
+
# can retrieve the next set of response records by providing the
|
7299
|
+
# returned marker value in the `Marker` parameter and retrying the
|
7300
|
+
# request.
|
7301
|
+
#
|
7302
|
+
# @return [Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7303
|
+
#
|
7304
|
+
# * {Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage#marker #marker} => String
|
7305
|
+
# * {Types::GetReservedNodeExchangeConfigurationOptionsOutputMessage#reserved_node_configuration_option_list #reserved_node_configuration_option_list} => Array<Types::ReservedNodeConfigurationOption>
|
7306
|
+
#
|
7307
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7308
|
+
#
|
7309
|
+
# @example Request syntax with placeholder values
|
7310
|
+
#
|
7311
|
+
# resp = client.get_reserved_node_exchange_configuration_options({
|
7312
|
+
# action_type: "restore-cluster", # required, accepts restore-cluster, resize-cluster
|
7313
|
+
# cluster_identifier: "String",
|
7314
|
+
# snapshot_identifier: "String",
|
7315
|
+
# max_records: 1,
|
7316
|
+
# marker: "String",
|
7317
|
+
# })
|
7318
|
+
#
|
7319
|
+
# @example Response structure
|
7320
|
+
#
|
7321
|
+
# resp.marker #=> String
|
7322
|
+
# resp.reserved_node_configuration_option_list #=> Array
|
7323
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.reserved_node_id #=> String
|
7324
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.reserved_node_offering_id #=> String
|
7325
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.node_type #=> String
|
7326
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.start_time #=> Time
|
7327
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.duration #=> Integer
|
7328
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.fixed_price #=> Float
|
7329
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.usage_price #=> Float
|
7330
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.currency_code #=> String
|
7331
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.node_count #=> Integer
|
7332
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.state #=> String
|
7333
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.offering_type #=> String
|
7334
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.recurring_charges #=> Array
|
7335
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.recurring_charges[0].recurring_charge_amount #=> Float
|
7336
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.recurring_charges[0].recurring_charge_frequency #=> String
|
7337
|
+
# resp.reserved_node_configuration_option_list[0].source_reserved_node.reserved_node_offering_type #=> String, one of "Regular", "Upgradable"
|
7338
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_count #=> Integer
|
7339
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.reserved_node_offering_id #=> String
|
7340
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.node_type #=> String
|
7341
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.duration #=> Integer
|
7342
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.fixed_price #=> Float
|
7343
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.usage_price #=> Float
|
7344
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.currency_code #=> String
|
7345
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.offering_type #=> String
|
7346
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.recurring_charges #=> Array
|
7347
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.recurring_charges[0].recurring_charge_amount #=> Float
|
7348
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.recurring_charges[0].recurring_charge_frequency #=> String
|
7349
|
+
# resp.reserved_node_configuration_option_list[0].target_reserved_node_offering.reserved_node_offering_type #=> String, one of "Regular", "Upgradable"
|
7350
|
+
#
|
7351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetReservedNodeExchangeConfigurationOptions AWS API Documentation
|
7352
|
+
#
|
7353
|
+
# @overload get_reserved_node_exchange_configuration_options(params = {})
|
7354
|
+
# @param [Hash] params ({})
|
7355
|
+
def get_reserved_node_exchange_configuration_options(params = {}, options = {})
|
7356
|
+
req = build_request(:get_reserved_node_exchange_configuration_options, params)
|
7357
|
+
req.send_request(options)
|
7358
|
+
end
|
7359
|
+
|
7121
7360
|
# Returns an array of DC2 ReservedNodeOfferings that matches the payment
|
7122
7361
|
# type, term, and usage price of the given DC1 reserved node.
|
7123
7362
|
#
|
@@ -7676,6 +7915,16 @@ module Aws::Redshift
|
|
7676
7915
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7677
7916
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7678
7917
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
7918
|
+
# resp.cluster.default_iam_role_arn #=> String
|
7919
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
7920
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
7921
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
7922
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
7923
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
7924
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
7925
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
7926
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
7927
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
7679
7928
|
#
|
7680
7929
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
|
7681
7930
|
#
|
@@ -7820,6 +8069,16 @@ module Aws::Redshift
|
|
7820
8069
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7821
8070
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7822
8071
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8072
|
+
# resp.cluster.default_iam_role_arn #=> String
|
8073
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
8074
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
8075
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
8076
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
8077
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
8078
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
8079
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
8080
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
8081
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
7823
8082
|
#
|
7824
8083
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
|
7825
8084
|
#
|
@@ -7850,6 +8109,10 @@ module Aws::Redshift
|
|
7850
8109
|
# You can disassociate up to 10 IAM roles from a single cluster in a
|
7851
8110
|
# single request.
|
7852
8111
|
#
|
8112
|
+
# @option params [String] :default_iam_role_arn
|
8113
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
8114
|
+
# default for the cluster when the cluster was last modified.
|
8115
|
+
#
|
7853
8116
|
# @return [Types::ModifyClusterIamRolesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7854
8117
|
#
|
7855
8118
|
# * {Types::ModifyClusterIamRolesResult#cluster #cluster} => Types::Cluster
|
@@ -7860,6 +8123,7 @@ module Aws::Redshift
|
|
7860
8123
|
# cluster_identifier: "String", # required
|
7861
8124
|
# add_iam_roles: ["String"],
|
7862
8125
|
# remove_iam_roles: ["String"],
|
8126
|
+
# default_iam_role_arn: "String",
|
7863
8127
|
# })
|
7864
8128
|
#
|
7865
8129
|
# @example Response structure
|
@@ -7972,6 +8236,16 @@ module Aws::Redshift
|
|
7972
8236
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
7973
8237
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
7974
8238
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8239
|
+
# resp.cluster.default_iam_role_arn #=> String
|
8240
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
8241
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
8242
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
8243
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
8244
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
8245
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
8246
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
8247
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
8248
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
7975
8249
|
#
|
7976
8250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
|
7977
8251
|
#
|
@@ -8132,6 +8406,16 @@ module Aws::Redshift
|
|
8132
8406
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8133
8407
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8134
8408
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
8409
|
+
# resp.cluster.default_iam_role_arn #=> String
|
8410
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
8411
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
8412
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
8413
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
8414
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
8415
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
8416
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
8417
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
8418
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
8135
8419
|
#
|
8136
8420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
|
8137
8421
|
#
|
@@ -8578,6 +8862,8 @@ module Aws::Redshift
|
|
8578
8862
|
# node_type: "String",
|
8579
8863
|
# number_of_nodes: 1,
|
8580
8864
|
# classic: false,
|
8865
|
+
# reserved_node_id: "String",
|
8866
|
+
# target_reserved_node_offering_id: "String",
|
8581
8867
|
# },
|
8582
8868
|
# pause_cluster: {
|
8583
8869
|
# cluster_identifier: "String", # required
|
@@ -8602,6 +8888,8 @@ module Aws::Redshift
|
|
8602
8888
|
# resp.target_action.resize_cluster.node_type #=> String
|
8603
8889
|
# resp.target_action.resize_cluster.number_of_nodes #=> Integer
|
8604
8890
|
# resp.target_action.resize_cluster.classic #=> Boolean
|
8891
|
+
# resp.target_action.resize_cluster.reserved_node_id #=> String
|
8892
|
+
# resp.target_action.resize_cluster.target_reserved_node_offering_id #=> String
|
8605
8893
|
# resp.target_action.pause_cluster.cluster_identifier #=> String
|
8606
8894
|
# resp.target_action.resume_cluster.cluster_identifier #=> String
|
8607
8895
|
# resp.schedule #=> String
|
@@ -8792,6 +9080,16 @@ module Aws::Redshift
|
|
8792
9080
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
8793
9081
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
8794
9082
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9083
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9084
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9085
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9086
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9087
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9088
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9089
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9090
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9091
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9092
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
8795
9093
|
#
|
8796
9094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
|
8797
9095
|
#
|
@@ -9035,6 +9333,16 @@ module Aws::Redshift
|
|
9035
9333
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9036
9334
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9037
9335
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9336
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9337
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9338
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9339
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9340
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9341
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9342
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9343
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9344
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9345
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9038
9346
|
#
|
9039
9347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
|
9040
9348
|
#
|
@@ -9241,6 +9549,16 @@ module Aws::Redshift
|
|
9241
9549
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9242
9550
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9243
9551
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9552
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9553
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9554
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9555
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9556
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9557
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9558
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9559
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9560
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9561
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9244
9562
|
#
|
9245
9563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
|
9246
9564
|
#
|
@@ -9262,6 +9580,7 @@ module Aws::Redshift
|
|
9262
9580
|
# * {Types::DataShare#producer_arn #producer_arn} => String
|
9263
9581
|
# * {Types::DataShare#allow_publicly_accessible_consumers #allow_publicly_accessible_consumers} => Boolean
|
9264
9582
|
# * {Types::DataShare#data_share_associations #data_share_associations} => Array<Types::DataShareAssociation>
|
9583
|
+
# * {Types::DataShare#managed_by #managed_by} => String
|
9265
9584
|
#
|
9266
9585
|
# @example Request syntax with placeholder values
|
9267
9586
|
#
|
@@ -9279,6 +9598,7 @@ module Aws::Redshift
|
|
9279
9598
|
# resp.data_share_associations[0].status #=> String, one of "ACTIVE", "PENDING_AUTHORIZATION", "AUTHORIZED", "DEAUTHORIZED", "REJECTED", "AVAILABLE"
|
9280
9599
|
# resp.data_share_associations[0].created_date #=> Time
|
9281
9600
|
# resp.data_share_associations[0].status_change_date #=> Time
|
9601
|
+
# resp.managed_by #=> String
|
9282
9602
|
#
|
9283
9603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RejectDataShare AWS API Documentation
|
9284
9604
|
#
|
@@ -9400,6 +9720,12 @@ module Aws::Redshift
|
|
9400
9720
|
# classic resize process. If you don't provide this parameter or set
|
9401
9721
|
# the value to `false`, the resize type is elastic.
|
9402
9722
|
#
|
9723
|
+
# @option params [String] :reserved_node_id
|
9724
|
+
# The identifier of the reserved node.
|
9725
|
+
#
|
9726
|
+
# @option params [String] :target_reserved_node_offering_id
|
9727
|
+
# The identifier of the target reserved node offering.
|
9728
|
+
#
|
9403
9729
|
# @return [Types::ResizeClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9404
9730
|
#
|
9405
9731
|
# * {Types::ResizeClusterResult#cluster #cluster} => Types::Cluster
|
@@ -9412,6 +9738,8 @@ module Aws::Redshift
|
|
9412
9738
|
# node_type: "String",
|
9413
9739
|
# number_of_nodes: 1,
|
9414
9740
|
# classic: false,
|
9741
|
+
# reserved_node_id: "String",
|
9742
|
+
# target_reserved_node_offering_id: "String",
|
9415
9743
|
# })
|
9416
9744
|
#
|
9417
9745
|
# @example Response structure
|
@@ -9524,6 +9852,16 @@ module Aws::Redshift
|
|
9524
9852
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9525
9853
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9526
9854
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
9855
|
+
# resp.cluster.default_iam_role_arn #=> String
|
9856
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
9857
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
9858
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
9859
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
9860
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
9861
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
9862
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
9863
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
9864
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9527
9865
|
#
|
9528
9866
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
|
9529
9867
|
#
|
@@ -9789,6 +10127,17 @@ module Aws::Redshift
|
|
9789
10127
|
#
|
9790
10128
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
9791
10129
|
#
|
10130
|
+
# @option params [String] :default_iam_role_arn
|
10131
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
10132
|
+
# default for the cluster when the cluster was last modified while it
|
10133
|
+
# was restored from a snapshot.
|
10134
|
+
#
|
10135
|
+
# @option params [String] :reserved_node_id
|
10136
|
+
# The identifier of the target reserved node offering.
|
10137
|
+
#
|
10138
|
+
# @option params [String] :target_reserved_node_offering_id
|
10139
|
+
# The identifier of the target reserved node offering.
|
10140
|
+
#
|
9792
10141
|
# @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9793
10142
|
#
|
9794
10143
|
# * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
|
@@ -9824,6 +10173,9 @@ module Aws::Redshift
|
|
9824
10173
|
# number_of_nodes: 1,
|
9825
10174
|
# availability_zone_relocation: false,
|
9826
10175
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
10176
|
+
# default_iam_role_arn: "String",
|
10177
|
+
# reserved_node_id: "String",
|
10178
|
+
# target_reserved_node_offering_id: "String",
|
9827
10179
|
# })
|
9828
10180
|
#
|
9829
10181
|
# @example Response structure
|
@@ -9936,6 +10288,16 @@ module Aws::Redshift
|
|
9936
10288
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
9937
10289
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
9938
10290
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10291
|
+
# resp.cluster.default_iam_role_arn #=> String
|
10292
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
10293
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
10294
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
10295
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
10296
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
10297
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
10298
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
10299
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
10300
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
9939
10301
|
#
|
9940
10302
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
|
9941
10303
|
#
|
@@ -10164,6 +10526,16 @@ module Aws::Redshift
|
|
10164
10526
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
10165
10527
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
10166
10528
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10529
|
+
# resp.cluster.default_iam_role_arn #=> String
|
10530
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
10531
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
10532
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
10533
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
10534
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
10535
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
10536
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
10537
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
10538
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
10167
10539
|
#
|
10168
10540
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
|
10169
10541
|
#
|
@@ -10528,6 +10900,16 @@ module Aws::Redshift
|
|
10528
10900
|
# resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
|
10529
10901
|
# resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
|
10530
10902
|
# resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
|
10903
|
+
# resp.cluster.default_iam_role_arn #=> String
|
10904
|
+
# resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
|
10905
|
+
# resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
|
10906
|
+
# resp.cluster.reserved_node_exchange_status.request_time #=> Time
|
10907
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
|
10908
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
|
10909
|
+
# resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
|
10910
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
|
10911
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
|
10912
|
+
# resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
|
10531
10913
|
#
|
10532
10914
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
|
10533
10915
|
#
|
@@ -10603,7 +10985,7 @@ module Aws::Redshift
|
|
10603
10985
|
params: params,
|
10604
10986
|
config: config)
|
10605
10987
|
context[:gem_name] = 'aws-sdk-redshift'
|
10606
|
-
context[:gem_version] = '1.
|
10988
|
+
context[:gem_version] = '1.75.0'
|
10607
10989
|
Seahorse::Client::Request.new(handlers, context)
|
10608
10990
|
end
|
10609
10991
|
|