aws-sdk-redshift 1.69.0 → 1.73.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +390 -15
- data/lib/aws-sdk-redshift/client_api.rb +133 -0
- data/lib/aws-sdk-redshift/errors.rb +11 -0
- data/lib/aws-sdk-redshift/types.rb +334 -31
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +4 -4
@@ -329,7 +329,7 @@ module Aws::Redshift
|
|
329
329
|
#
|
330
330
|
# @!attribute [rw] consumer_identifier
|
331
331
|
# The identifier of the data consumer that is authorized to access the
|
332
|
-
# datashare. This identifier is an
|
332
|
+
# datashare. This identifier is an Amazon Web Services account ID.
|
333
333
|
# @return [String]
|
334
334
|
#
|
335
335
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShareMessage AWS API Documentation
|
@@ -895,6 +895,16 @@ module Aws::Redshift
|
|
895
895
|
# The AQUA (Advanced Query Accelerator) configuration of the cluster.
|
896
896
|
# @return [Types::AquaConfiguration]
|
897
897
|
#
|
898
|
+
# @!attribute [rw] default_iam_role_arn
|
899
|
+
# The Amazon Resource Name (ARN) for the IAM role set as default for
|
900
|
+
# the cluster.
|
901
|
+
# @return [String]
|
902
|
+
#
|
903
|
+
# @!attribute [rw] reserved_node_exchange_status
|
904
|
+
# The status of the reserved-node exchange request. Statuses include
|
905
|
+
# in-progress and requested.
|
906
|
+
# @return [Types::ReservedNodeExchangeStatus]
|
907
|
+
#
|
898
908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
|
899
909
|
#
|
900
910
|
class Cluster < Struct.new(
|
@@ -947,7 +957,9 @@ module Aws::Redshift
|
|
947
957
|
:availability_zone_relocation_status,
|
948
958
|
:cluster_namespace_arn,
|
949
959
|
:total_storage_capacity_in_mega_bytes,
|
950
|
-
:aqua_configuration
|
960
|
+
:aqua_configuration,
|
961
|
+
:default_iam_role_arn,
|
962
|
+
:reserved_node_exchange_status)
|
951
963
|
SENSITIVE = []
|
952
964
|
include Aws::Structure
|
953
965
|
end
|
@@ -1858,6 +1870,7 @@ module Aws::Redshift
|
|
1858
1870
|
# snapshot_schedule_identifier: "String",
|
1859
1871
|
# availability_zone_relocation: false,
|
1860
1872
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1873
|
+
# default_iam_role_arn: "String",
|
1861
1874
|
# }
|
1862
1875
|
#
|
1863
1876
|
# @!attribute [rw] db_name
|
@@ -2233,6 +2246,11 @@ module Aws::Redshift
|
|
2233
2246
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
2234
2247
|
# @return [String]
|
2235
2248
|
#
|
2249
|
+
# @!attribute [rw] default_iam_role_arn
|
2250
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
2251
|
+
# default for the cluster when the cluster was created.
|
2252
|
+
# @return [String]
|
2253
|
+
#
|
2236
2254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
|
2237
2255
|
#
|
2238
2256
|
class CreateClusterMessage < Struct.new(
|
@@ -2267,7 +2285,8 @@ module Aws::Redshift
|
|
2267
2285
|
:maintenance_track_name,
|
2268
2286
|
:snapshot_schedule_identifier,
|
2269
2287
|
:availability_zone_relocation,
|
2270
|
-
:aqua_configuration_status
|
2288
|
+
:aqua_configuration_status,
|
2289
|
+
:default_iam_role_arn)
|
2271
2290
|
SENSITIVE = []
|
2272
2291
|
include Aws::Structure
|
2273
2292
|
end
|
@@ -2865,6 +2884,8 @@ module Aws::Redshift
|
|
2865
2884
|
# node_type: "String",
|
2866
2885
|
# number_of_nodes: 1,
|
2867
2886
|
# classic: false,
|
2887
|
+
# reserved_node_id: "String",
|
2888
|
+
# target_reserved_node_offering_id: "String",
|
2868
2889
|
# },
|
2869
2890
|
# pause_cluster: {
|
2870
2891
|
# cluster_identifier: "String", # required
|
@@ -3319,7 +3340,8 @@ module Aws::Redshift
|
|
3319
3340
|
#
|
3320
3341
|
# @!attribute [rw] consumer_identifier
|
3321
3342
|
# The identifier of the data consumer that is to have authorization
|
3322
|
-
# removed from the datashare. This identifier is an
|
3343
|
+
# removed from the datashare. This identifier is an Amazon Web
|
3344
|
+
# Services account ID.
|
3323
3345
|
# @return [String]
|
3324
3346
|
#
|
3325
3347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShareMessage AWS API Documentation
|
@@ -4553,10 +4575,10 @@ module Aws::Redshift
|
|
4553
4575
|
# An optional parameter that specifies the starting point to return a
|
4554
4576
|
# set of response records. When the results of a
|
4555
4577
|
# DescribeDataSharesForConsumer request exceed the value specified in
|
4556
|
-
# `MaxRecords`,
|
4557
|
-
# response. You can retrieve the next set of response
|
4558
|
-
# providing the returned marker value in the `Marker`
|
4559
|
-
# retrying the request.
|
4578
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4579
|
+
# field of the response. You can retrieve the next set of response
|
4580
|
+
# records by providing the returned marker value in the `Marker`
|
4581
|
+
# parameter and retrying the request.
|
4560
4582
|
# @return [String]
|
4561
4583
|
#
|
4562
4584
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumerMessage AWS API Documentation
|
@@ -4578,10 +4600,10 @@ module Aws::Redshift
|
|
4578
4600
|
# An optional parameter that specifies the starting point to return a
|
4579
4601
|
# set of response records. When the results of a
|
4580
4602
|
# DescribeDataSharesForConsumer request exceed the value specified in
|
4581
|
-
# `MaxRecords`,
|
4582
|
-
# response. You can retrieve the next set of response
|
4583
|
-
# providing the returned marker value in the `Marker`
|
4584
|
-
# retrying the request.
|
4603
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4604
|
+
# field of the response. You can retrieve the next set of response
|
4605
|
+
# records by providing the returned marker value in the `Marker`
|
4606
|
+
# parameter and retrying the request.
|
4585
4607
|
# @return [String]
|
4586
4608
|
#
|
4587
4609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumerResult AWS API Documentation
|
@@ -4626,10 +4648,10 @@ module Aws::Redshift
|
|
4626
4648
|
# An optional parameter that specifies the starting point to return a
|
4627
4649
|
# set of response records. When the results of a
|
4628
4650
|
# DescribeDataSharesForProducer request exceed the value specified in
|
4629
|
-
# `MaxRecords`,
|
4630
|
-
# response. You can retrieve the next set of response
|
4631
|
-
# providing the returned marker value in the `Marker`
|
4632
|
-
# retrying the request.
|
4651
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4652
|
+
# field of the response. You can retrieve the next set of response
|
4653
|
+
# records by providing the returned marker value in the `Marker`
|
4654
|
+
# parameter and retrying the request.
|
4633
4655
|
# @return [String]
|
4634
4656
|
#
|
4635
4657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducerMessage AWS API Documentation
|
@@ -4651,10 +4673,10 @@ module Aws::Redshift
|
|
4651
4673
|
# An optional parameter that specifies the starting point to return a
|
4652
4674
|
# set of response records. When the results of a
|
4653
4675
|
# DescribeDataSharesForProducer request exceed the value specified in
|
4654
|
-
# `MaxRecords`,
|
4655
|
-
# response. You can retrieve the next set of response
|
4656
|
-
# providing the returned marker value in the `Marker`
|
4657
|
-
# retrying the request.
|
4676
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4677
|
+
# field of the response. You can retrieve the next set of response
|
4678
|
+
# records by providing the returned marker value in the `Marker`
|
4679
|
+
# parameter and retrying the request.
|
4658
4680
|
# @return [String]
|
4659
4681
|
#
|
4660
4682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducerResult AWS API Documentation
|
@@ -4690,10 +4712,11 @@ module Aws::Redshift
|
|
4690
4712
|
# @!attribute [rw] marker
|
4691
4713
|
# An optional parameter that specifies the starting point to return a
|
4692
4714
|
# set of response records. When the results of a DescribeDataShares
|
4693
|
-
# request exceed the value specified in `MaxRecords`,
|
4694
|
-
# value in the `Marker` field of the response. You
|
4695
|
-
# next set of response records by providing the
|
4696
|
-
# in the `Marker` parameter and retrying the
|
4715
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4716
|
+
# Services returns a value in the `Marker` field of the response. You
|
4717
|
+
# can retrieve the next set of response records by providing the
|
4718
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4719
|
+
# request.
|
4697
4720
|
# @return [String]
|
4698
4721
|
#
|
4699
4722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesMessage AWS API Documentation
|
@@ -4713,10 +4736,11 @@ module Aws::Redshift
|
|
4713
4736
|
# @!attribute [rw] marker
|
4714
4737
|
# An optional parameter that specifies the starting point to return a
|
4715
4738
|
# set of response records. When the results of a DescribeDataShares
|
4716
|
-
# request exceed the value specified in `MaxRecords`,
|
4717
|
-
# value in the `Marker` field of the response. You
|
4718
|
-
# next set of response records by providing the
|
4719
|
-
# in the `Marker` parameter and retrying the
|
4739
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4740
|
+
# Services returns a value in the `Marker` field of the response. You
|
4741
|
+
# can retrieve the next set of response records by providing the
|
4742
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4743
|
+
# request.
|
4720
4744
|
# @return [String]
|
4721
4745
|
#
|
4722
4746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesResult AWS API Documentation
|
@@ -5474,6 +5498,73 @@ module Aws::Redshift
|
|
5474
5498
|
include Aws::Structure
|
5475
5499
|
end
|
5476
5500
|
|
5501
|
+
# @note When making an API call, you may pass DescribeReservedNodeExchangeStatusInputMessage
|
5502
|
+
# data as a hash:
|
5503
|
+
#
|
5504
|
+
# {
|
5505
|
+
# reserved_node_id: "String",
|
5506
|
+
# reserved_node_exchange_request_id: "String",
|
5507
|
+
# max_records: 1,
|
5508
|
+
# marker: "String",
|
5509
|
+
# }
|
5510
|
+
#
|
5511
|
+
# @!attribute [rw] reserved_node_id
|
5512
|
+
# The identifier of the source reserved node in a reserved-node
|
5513
|
+
# exchange request.
|
5514
|
+
# @return [String]
|
5515
|
+
#
|
5516
|
+
# @!attribute [rw] reserved_node_exchange_request_id
|
5517
|
+
# The identifier of the reserved-node exchange request.
|
5518
|
+
# @return [String]
|
5519
|
+
#
|
5520
|
+
# @!attribute [rw] max_records
|
5521
|
+
# The maximum number of response records to return in each call. If
|
5522
|
+
# the number of remaining response records exceeds the specified
|
5523
|
+
# `MaxRecords` value, a value is returned in a `Marker` field of the
|
5524
|
+
# response. You can retrieve the next set of records by retrying the
|
5525
|
+
# command with the returned marker value.
|
5526
|
+
# @return [Integer]
|
5527
|
+
#
|
5528
|
+
# @!attribute [rw] marker
|
5529
|
+
# An optional pagination token provided by a previous
|
5530
|
+
# `DescribeReservedNodeExchangeStatus` request. If this parameter is
|
5531
|
+
# specified, the response includes only records beyond the marker, up
|
5532
|
+
# to the value specified by the `MaxRecords` parameter. You can
|
5533
|
+
# retrieve the next set of response records by providing the returned
|
5534
|
+
# marker value in the `Marker` parameter and retrying the request.
|
5535
|
+
# @return [String]
|
5536
|
+
#
|
5537
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeExchangeStatusInputMessage AWS API Documentation
|
5538
|
+
#
|
5539
|
+
class DescribeReservedNodeExchangeStatusInputMessage < Struct.new(
|
5540
|
+
:reserved_node_id,
|
5541
|
+
:reserved_node_exchange_request_id,
|
5542
|
+
:max_records,
|
5543
|
+
:marker)
|
5544
|
+
SENSITIVE = []
|
5545
|
+
include Aws::Structure
|
5546
|
+
end
|
5547
|
+
|
5548
|
+
# @!attribute [rw] reserved_node_exchange_status_details
|
5549
|
+
# The details of the reserved-node exchange request, including the
|
5550
|
+
# status, request time, source reserved-node identifier, and
|
5551
|
+
# additional details.
|
5552
|
+
# @return [Array<Types::ReservedNodeExchangeStatus>]
|
5553
|
+
#
|
5554
|
+
# @!attribute [rw] marker
|
5555
|
+
# A pagination token provided by a previous
|
5556
|
+
# `DescribeReservedNodeExchangeStatus` request.
|
5557
|
+
# @return [String]
|
5558
|
+
#
|
5559
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeExchangeStatusOutputMessage AWS API Documentation
|
5560
|
+
#
|
5561
|
+
class DescribeReservedNodeExchangeStatusOutputMessage < Struct.new(
|
5562
|
+
:reserved_node_exchange_status_details,
|
5563
|
+
:marker)
|
5564
|
+
SENSITIVE = []
|
5565
|
+
include Aws::Structure
|
5566
|
+
end
|
5567
|
+
|
5477
5568
|
# @note When making an API call, you may pass DescribeReservedNodeOfferingsMessage
|
5478
5569
|
# data as a hash:
|
5479
5570
|
#
|
@@ -6947,6 +7038,83 @@ module Aws::Redshift
|
|
6947
7038
|
include Aws::Structure
|
6948
7039
|
end
|
6949
7040
|
|
7041
|
+
# @note When making an API call, you may pass GetReservedNodeExchangeConfigurationOptionsInputMessage
|
7042
|
+
# data as a hash:
|
7043
|
+
#
|
7044
|
+
# {
|
7045
|
+
# action_type: "restore-cluster", # required, accepts restore-cluster, resize-cluster
|
7046
|
+
# cluster_identifier: "String",
|
7047
|
+
# snapshot_identifier: "String",
|
7048
|
+
# max_records: 1,
|
7049
|
+
# marker: "String",
|
7050
|
+
# }
|
7051
|
+
#
|
7052
|
+
# @!attribute [rw] action_type
|
7053
|
+
# The action type of the reserved-node configuration. The action type
|
7054
|
+
# can be an exchange initiated from either a snapshot or a resize.
|
7055
|
+
# @return [String]
|
7056
|
+
#
|
7057
|
+
# @!attribute [rw] cluster_identifier
|
7058
|
+
# The identifier for the cluster that is the source for a
|
7059
|
+
# reserved-node exchange.
|
7060
|
+
# @return [String]
|
7061
|
+
#
|
7062
|
+
# @!attribute [rw] snapshot_identifier
|
7063
|
+
# The identifier for the snapshot that is the source for the
|
7064
|
+
# reserved-node exchange.
|
7065
|
+
# @return [String]
|
7066
|
+
#
|
7067
|
+
# @!attribute [rw] max_records
|
7068
|
+
# The maximum number of response records to return in each call. If
|
7069
|
+
# the number of remaining response records exceeds the specified
|
7070
|
+
# `MaxRecords` value, a value is returned in a `Marker` field of the
|
7071
|
+
# response. You can retrieve the next set of records by retrying the
|
7072
|
+
# command with the returned marker value.
|
7073
|
+
# @return [Integer]
|
7074
|
+
#
|
7075
|
+
# @!attribute [rw] marker
|
7076
|
+
# An optional pagination token provided by a previous
|
7077
|
+
# `GetReservedNodeExchangeConfigurationOptions` request. If this
|
7078
|
+
# parameter is specified, the response includes only records beyond
|
7079
|
+
# the marker, up to the value specified by the `MaxRecords` parameter.
|
7080
|
+
# You can retrieve the next set of response records by providing the
|
7081
|
+
# returned marker value in the `Marker` parameter and retrying the
|
7082
|
+
# request.
|
7083
|
+
# @return [String]
|
7084
|
+
#
|
7085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetReservedNodeExchangeConfigurationOptionsInputMessage AWS API Documentation
|
7086
|
+
#
|
7087
|
+
class GetReservedNodeExchangeConfigurationOptionsInputMessage < Struct.new(
|
7088
|
+
:action_type,
|
7089
|
+
:cluster_identifier,
|
7090
|
+
:snapshot_identifier,
|
7091
|
+
:max_records,
|
7092
|
+
:marker)
|
7093
|
+
SENSITIVE = []
|
7094
|
+
include Aws::Structure
|
7095
|
+
end
|
7096
|
+
|
7097
|
+
# @!attribute [rw] marker
|
7098
|
+
# A pagination token provided by a previous
|
7099
|
+
# `GetReservedNodeExchangeConfigurationOptions` request.
|
7100
|
+
# @return [String]
|
7101
|
+
#
|
7102
|
+
# @!attribute [rw] reserved_node_configuration_option_list
|
7103
|
+
# the configuration options for the reserved-node exchange. These
|
7104
|
+
# options include information about the source reserved node and
|
7105
|
+
# target reserved node. Details include the node type, the price, the
|
7106
|
+
# node count, and the offering type.
|
7107
|
+
# @return [Array<Types::ReservedNodeConfigurationOption>]
|
7108
|
+
#
|
7109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetReservedNodeExchangeConfigurationOptionsOutputMessage AWS API Documentation
|
7110
|
+
#
|
7111
|
+
class GetReservedNodeExchangeConfigurationOptionsOutputMessage < Struct.new(
|
7112
|
+
:marker,
|
7113
|
+
:reserved_node_configuration_option_list)
|
7114
|
+
SENSITIVE = []
|
7115
|
+
include Aws::Structure
|
7116
|
+
end
|
7117
|
+
|
6950
7118
|
# @note When making an API call, you may pass GetReservedNodeExchangeOfferingsInputMessage
|
6951
7119
|
# data as a hash:
|
6952
7120
|
#
|
@@ -7668,6 +7836,7 @@ module Aws::Redshift
|
|
7668
7836
|
# cluster_identifier: "String", # required
|
7669
7837
|
# add_iam_roles: ["String"],
|
7670
7838
|
# remove_iam_roles: ["String"],
|
7839
|
+
# default_iam_role_arn: "String",
|
7671
7840
|
# }
|
7672
7841
|
#
|
7673
7842
|
# @!attribute [rw] cluster_identifier
|
@@ -7687,12 +7856,18 @@ module Aws::Redshift
|
|
7687
7856
|
# cluster in a single request.
|
7688
7857
|
# @return [Array<String>]
|
7689
7858
|
#
|
7859
|
+
# @!attribute [rw] default_iam_role_arn
|
7860
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
7861
|
+
# default for the cluster when the cluster was last modified.
|
7862
|
+
# @return [String]
|
7863
|
+
#
|
7690
7864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRolesMessage AWS API Documentation
|
7691
7865
|
#
|
7692
7866
|
class ModifyClusterIamRolesMessage < Struct.new(
|
7693
7867
|
:cluster_identifier,
|
7694
7868
|
:add_iam_roles,
|
7695
|
-
:remove_iam_roles
|
7869
|
+
:remove_iam_roles,
|
7870
|
+
:default_iam_role_arn)
|
7696
7871
|
SENSITIVE = []
|
7697
7872
|
include Aws::Structure
|
7698
7873
|
end
|
@@ -8447,6 +8622,8 @@ module Aws::Redshift
|
|
8447
8622
|
# node_type: "String",
|
8448
8623
|
# number_of_nodes: 1,
|
8449
8624
|
# classic: false,
|
8625
|
+
# reserved_node_id: "String",
|
8626
|
+
# target_reserved_node_offering_id: "String",
|
8450
8627
|
# },
|
8451
8628
|
# pause_cluster: {
|
8452
8629
|
# cluster_identifier: "String", # required
|
@@ -9361,6 +9538,98 @@ module Aws::Redshift
|
|
9361
9538
|
#
|
9362
9539
|
class ReservedNodeAlreadyMigratedFault < Aws::EmptyStructure; end
|
9363
9540
|
|
9541
|
+
# Details for a reserved-node exchange. Examples include the node type
|
9542
|
+
# for a reserved node, the price for a node, the node's state, and
|
9543
|
+
# other details.
|
9544
|
+
#
|
9545
|
+
# @!attribute [rw] source_reserved_node
|
9546
|
+
# Describes a reserved node. You can call the
|
9547
|
+
# DescribeReservedNodeOfferings API to obtain the available reserved
|
9548
|
+
# node offerings.
|
9549
|
+
# @return [Types::ReservedNode]
|
9550
|
+
#
|
9551
|
+
# @!attribute [rw] target_reserved_node_count
|
9552
|
+
# The target reserved-node count.
|
9553
|
+
# @return [Integer]
|
9554
|
+
#
|
9555
|
+
# @!attribute [rw] target_reserved_node_offering
|
9556
|
+
# Describes a reserved node offering.
|
9557
|
+
# @return [Types::ReservedNodeOffering]
|
9558
|
+
#
|
9559
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeConfigurationOption AWS API Documentation
|
9560
|
+
#
|
9561
|
+
class ReservedNodeConfigurationOption < Struct.new(
|
9562
|
+
:source_reserved_node,
|
9563
|
+
:target_reserved_node_count,
|
9564
|
+
:target_reserved_node_offering)
|
9565
|
+
SENSITIVE = []
|
9566
|
+
include Aws::Structure
|
9567
|
+
end
|
9568
|
+
|
9569
|
+
# The reserved-node exchange status wasn't found.
|
9570
|
+
#
|
9571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeExchangeNotFoundFault AWS API Documentation
|
9572
|
+
#
|
9573
|
+
class ReservedNodeExchangeNotFoundFault < Aws::EmptyStructure; end
|
9574
|
+
|
9575
|
+
# Reserved-node status details, such as the source reserved-node
|
9576
|
+
# identifier, the target reserved-node identifier, the node type, the
|
9577
|
+
# node count, and other details.
|
9578
|
+
#
|
9579
|
+
# @!attribute [rw] reserved_node_exchange_request_id
|
9580
|
+
# The identifier of the reserved-node exchange request.
|
9581
|
+
# @return [String]
|
9582
|
+
#
|
9583
|
+
# @!attribute [rw] status
|
9584
|
+
# The status of the reserved-node exchange request. Statuses include
|
9585
|
+
# in-progress and requested.
|
9586
|
+
# @return [String]
|
9587
|
+
#
|
9588
|
+
# @!attribute [rw] request_time
|
9589
|
+
# A date and time that indicate when the reserved-node exchange was
|
9590
|
+
# requested.
|
9591
|
+
# @return [Time]
|
9592
|
+
#
|
9593
|
+
# @!attribute [rw] source_reserved_node_id
|
9594
|
+
# The identifier of the source reserved node.
|
9595
|
+
# @return [String]
|
9596
|
+
#
|
9597
|
+
# @!attribute [rw] source_reserved_node_type
|
9598
|
+
# The source reserved-node type, for example ds2.xlarge.
|
9599
|
+
# @return [String]
|
9600
|
+
#
|
9601
|
+
# @!attribute [rw] source_reserved_node_count
|
9602
|
+
# The source reserved-node count in the cluster.
|
9603
|
+
# @return [Integer]
|
9604
|
+
#
|
9605
|
+
# @!attribute [rw] target_reserved_node_offering_id
|
9606
|
+
# The identifier of the target reserved node offering.
|
9607
|
+
# @return [String]
|
9608
|
+
#
|
9609
|
+
# @!attribute [rw] target_reserved_node_type
|
9610
|
+
# The node type of the target reserved node, for example ra3.4xlarge.
|
9611
|
+
# @return [String]
|
9612
|
+
#
|
9613
|
+
# @!attribute [rw] target_reserved_node_count
|
9614
|
+
# The count of target reserved nodes in the cluster.
|
9615
|
+
# @return [Integer]
|
9616
|
+
#
|
9617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeExchangeStatus AWS API Documentation
|
9618
|
+
#
|
9619
|
+
class ReservedNodeExchangeStatus < Struct.new(
|
9620
|
+
:reserved_node_exchange_request_id,
|
9621
|
+
:status,
|
9622
|
+
:request_time,
|
9623
|
+
:source_reserved_node_id,
|
9624
|
+
:source_reserved_node_type,
|
9625
|
+
:source_reserved_node_count,
|
9626
|
+
:target_reserved_node_offering_id,
|
9627
|
+
:target_reserved_node_type,
|
9628
|
+
:target_reserved_node_count)
|
9629
|
+
SENSITIVE = []
|
9630
|
+
include Aws::Structure
|
9631
|
+
end
|
9632
|
+
|
9364
9633
|
# The specified reserved compute node not found.
|
9365
9634
|
#
|
9366
9635
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeNotFoundFault AWS API Documentation
|
@@ -9551,6 +9820,8 @@ module Aws::Redshift
|
|
9551
9820
|
# node_type: "String",
|
9552
9821
|
# number_of_nodes: 1,
|
9553
9822
|
# classic: false,
|
9823
|
+
# reserved_node_id: "String",
|
9824
|
+
# target_reserved_node_offering_id: "String",
|
9554
9825
|
# }
|
9555
9826
|
#
|
9556
9827
|
# @!attribute [rw] cluster_identifier
|
@@ -9577,6 +9848,14 @@ module Aws::Redshift
|
|
9577
9848
|
# the value to `false`, the resize type is elastic.
|
9578
9849
|
# @return [Boolean]
|
9579
9850
|
#
|
9851
|
+
# @!attribute [rw] reserved_node_id
|
9852
|
+
# The identifier of the reserved node.
|
9853
|
+
# @return [String]
|
9854
|
+
#
|
9855
|
+
# @!attribute [rw] target_reserved_node_offering_id
|
9856
|
+
# The identifier of the target reserved node offering.
|
9857
|
+
# @return [String]
|
9858
|
+
#
|
9580
9859
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeClusterMessage AWS API Documentation
|
9581
9860
|
#
|
9582
9861
|
class ResizeClusterMessage < Struct.new(
|
@@ -9584,7 +9863,9 @@ module Aws::Redshift
|
|
9584
9863
|
:cluster_type,
|
9585
9864
|
:node_type,
|
9586
9865
|
:number_of_nodes,
|
9587
|
-
:classic
|
9866
|
+
:classic,
|
9867
|
+
:reserved_node_id,
|
9868
|
+
:target_reserved_node_offering_id)
|
9588
9869
|
SENSITIVE = []
|
9589
9870
|
include Aws::Structure
|
9590
9871
|
end
|
@@ -9785,6 +10066,9 @@ module Aws::Redshift
|
|
9785
10066
|
# number_of_nodes: 1,
|
9786
10067
|
# availability_zone_relocation: false,
|
9787
10068
|
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
10069
|
+
# default_iam_role_arn: "String",
|
10070
|
+
# reserved_node_id: "String",
|
10071
|
+
# target_reserved_node_offering_id: "String",
|
9788
10072
|
# }
|
9789
10073
|
#
|
9790
10074
|
# @!attribute [rw] cluster_identifier
|
@@ -10051,6 +10335,20 @@ module Aws::Redshift
|
|
10051
10335
|
# * auto - Amazon Redshift determines whether to use AQUA.
|
10052
10336
|
# @return [String]
|
10053
10337
|
#
|
10338
|
+
# @!attribute [rw] default_iam_role_arn
|
10339
|
+
# The Amazon Resource Name (ARN) for the IAM role that was set as
|
10340
|
+
# default for the cluster when the cluster was last modified while it
|
10341
|
+
# was restored from a snapshot.
|
10342
|
+
# @return [String]
|
10343
|
+
#
|
10344
|
+
# @!attribute [rw] reserved_node_id
|
10345
|
+
# The identifier of the target reserved node offering.
|
10346
|
+
# @return [String]
|
10347
|
+
#
|
10348
|
+
# @!attribute [rw] target_reserved_node_offering_id
|
10349
|
+
# The identifier of the target reserved node offering.
|
10350
|
+
# @return [String]
|
10351
|
+
#
|
10054
10352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
|
10055
10353
|
#
|
10056
10354
|
class RestoreFromClusterSnapshotMessage < Struct.new(
|
@@ -10081,7 +10379,10 @@ module Aws::Redshift
|
|
10081
10379
|
:snapshot_schedule_identifier,
|
10082
10380
|
:number_of_nodes,
|
10083
10381
|
:availability_zone_relocation,
|
10084
|
-
:aqua_configuration_status
|
10382
|
+
:aqua_configuration_status,
|
10383
|
+
:default_iam_role_arn,
|
10384
|
+
:reserved_node_id,
|
10385
|
+
:target_reserved_node_offering_id)
|
10085
10386
|
SENSITIVE = []
|
10086
10387
|
include Aws::Structure
|
10087
10388
|
end
|
@@ -10654,6 +10955,8 @@ module Aws::Redshift
|
|
10654
10955
|
# node_type: "String",
|
10655
10956
|
# number_of_nodes: 1,
|
10656
10957
|
# classic: false,
|
10958
|
+
# reserved_node_id: "String",
|
10959
|
+
# target_reserved_node_offering_id: "String",
|
10657
10960
|
# },
|
10658
10961
|
# pause_cluster: {
|
10659
10962
|
# cluster_identifier: "String", # required
|
data/lib/aws-sdk-redshift.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-redshift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.73.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.122.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|