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.
@@ -329,7 +329,8 @@ 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 Amazon Web Services account ID.
332
+ # datashare. This identifier is an Amazon Web Services account ID or a
333
+ # keyword, such as ADX.
333
334
  # @return [String]
334
335
  #
335
336
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShareMessage AWS API Documentation
@@ -900,6 +901,11 @@ module Aws::Redshift
900
901
  # the cluster.
901
902
  # @return [String]
902
903
  #
904
+ # @!attribute [rw] reserved_node_exchange_status
905
+ # The status of the reserved-node exchange request. Statuses include
906
+ # in-progress and requested.
907
+ # @return [Types::ReservedNodeExchangeStatus]
908
+ #
903
909
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
904
910
  #
905
911
  class Cluster < Struct.new(
@@ -953,7 +959,8 @@ module Aws::Redshift
953
959
  :cluster_namespace_arn,
954
960
  :total_storage_capacity_in_mega_bytes,
955
961
  :aqua_configuration,
956
- :default_iam_role_arn)
962
+ :default_iam_role_arn,
963
+ :reserved_node_exchange_status)
957
964
  SENSITIVE = []
958
965
  include Aws::Structure
959
966
  end
@@ -2878,6 +2885,8 @@ module Aws::Redshift
2878
2885
  # node_type: "String",
2879
2886
  # number_of_nodes: 1,
2880
2887
  # classic: false,
2888
+ # reserved_node_id: "String",
2889
+ # target_reserved_node_offering_id: "String",
2881
2890
  # },
2882
2891
  # pause_cluster: {
2883
2892
  # cluster_identifier: "String", # required
@@ -3231,13 +3240,18 @@ module Aws::Redshift
3231
3240
  # a producer and data consumers.
3232
3241
  # @return [Array<Types::DataShareAssociation>]
3233
3242
  #
3243
+ # @!attribute [rw] managed_by
3244
+ # The identifier of a datashare to show its managing entity.
3245
+ # @return [String]
3246
+ #
3234
3247
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DataShare AWS API Documentation
3235
3248
  #
3236
3249
  class DataShare < Struct.new(
3237
3250
  :data_share_arn,
3238
3251
  :producer_arn,
3239
3252
  :allow_publicly_accessible_consumers,
3240
- :data_share_associations)
3253
+ :data_share_associations,
3254
+ :managed_by)
3241
3255
  SENSITIVE = []
3242
3256
  include Aws::Structure
3243
3257
  end
@@ -3333,7 +3347,7 @@ module Aws::Redshift
3333
3347
  # @!attribute [rw] consumer_identifier
3334
3348
  # The identifier of the data consumer that is to have authorization
3335
3349
  # removed from the datashare. This identifier is an Amazon Web
3336
- # Services account ID.
3350
+ # Services account ID or a keyword, such as ADX.
3337
3351
  # @return [String]
3338
3352
  #
3339
3353
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShareMessage AWS API Documentation
@@ -5490,6 +5504,73 @@ module Aws::Redshift
5490
5504
  include Aws::Structure
5491
5505
  end
5492
5506
 
5507
+ # @note When making an API call, you may pass DescribeReservedNodeExchangeStatusInputMessage
5508
+ # data as a hash:
5509
+ #
5510
+ # {
5511
+ # reserved_node_id: "String",
5512
+ # reserved_node_exchange_request_id: "String",
5513
+ # max_records: 1,
5514
+ # marker: "String",
5515
+ # }
5516
+ #
5517
+ # @!attribute [rw] reserved_node_id
5518
+ # The identifier of the source reserved node in a reserved-node
5519
+ # exchange request.
5520
+ # @return [String]
5521
+ #
5522
+ # @!attribute [rw] reserved_node_exchange_request_id
5523
+ # The identifier of the reserved-node exchange request.
5524
+ # @return [String]
5525
+ #
5526
+ # @!attribute [rw] max_records
5527
+ # The maximum number of response records to return in each call. If
5528
+ # the number of remaining response records exceeds the specified
5529
+ # `MaxRecords` value, a value is returned in a `Marker` field of the
5530
+ # response. You can retrieve the next set of records by retrying the
5531
+ # command with the returned marker value.
5532
+ # @return [Integer]
5533
+ #
5534
+ # @!attribute [rw] marker
5535
+ # An optional pagination token provided by a previous
5536
+ # `DescribeReservedNodeExchangeStatus` request. If this parameter is
5537
+ # specified, the response includes only records beyond the marker, up
5538
+ # to the value specified by the `MaxRecords` parameter. You can
5539
+ # retrieve the next set of response records by providing the returned
5540
+ # marker value in the `Marker` parameter and retrying the request.
5541
+ # @return [String]
5542
+ #
5543
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeExchangeStatusInputMessage AWS API Documentation
5544
+ #
5545
+ class DescribeReservedNodeExchangeStatusInputMessage < Struct.new(
5546
+ :reserved_node_id,
5547
+ :reserved_node_exchange_request_id,
5548
+ :max_records,
5549
+ :marker)
5550
+ SENSITIVE = []
5551
+ include Aws::Structure
5552
+ end
5553
+
5554
+ # @!attribute [rw] reserved_node_exchange_status_details
5555
+ # The details of the reserved-node exchange request, including the
5556
+ # status, request time, source reserved-node identifier, and
5557
+ # additional details.
5558
+ # @return [Array<Types::ReservedNodeExchangeStatus>]
5559
+ #
5560
+ # @!attribute [rw] marker
5561
+ # A pagination token provided by a previous
5562
+ # `DescribeReservedNodeExchangeStatus` request.
5563
+ # @return [String]
5564
+ #
5565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeExchangeStatusOutputMessage AWS API Documentation
5566
+ #
5567
+ class DescribeReservedNodeExchangeStatusOutputMessage < Struct.new(
5568
+ :reserved_node_exchange_status_details,
5569
+ :marker)
5570
+ SENSITIVE = []
5571
+ include Aws::Structure
5572
+ end
5573
+
5493
5574
  # @note When making an API call, you may pass DescribeReservedNodeOfferingsMessage
5494
5575
  # data as a hash:
5495
5576
  #
@@ -6963,6 +7044,83 @@ module Aws::Redshift
6963
7044
  include Aws::Structure
6964
7045
  end
6965
7046
 
7047
+ # @note When making an API call, you may pass GetReservedNodeExchangeConfigurationOptionsInputMessage
7048
+ # data as a hash:
7049
+ #
7050
+ # {
7051
+ # action_type: "restore-cluster", # required, accepts restore-cluster, resize-cluster
7052
+ # cluster_identifier: "String",
7053
+ # snapshot_identifier: "String",
7054
+ # max_records: 1,
7055
+ # marker: "String",
7056
+ # }
7057
+ #
7058
+ # @!attribute [rw] action_type
7059
+ # The action type of the reserved-node configuration. The action type
7060
+ # can be an exchange initiated from either a snapshot or a resize.
7061
+ # @return [String]
7062
+ #
7063
+ # @!attribute [rw] cluster_identifier
7064
+ # The identifier for the cluster that is the source for a
7065
+ # reserved-node exchange.
7066
+ # @return [String]
7067
+ #
7068
+ # @!attribute [rw] snapshot_identifier
7069
+ # The identifier for the snapshot that is the source for the
7070
+ # reserved-node exchange.
7071
+ # @return [String]
7072
+ #
7073
+ # @!attribute [rw] max_records
7074
+ # The maximum number of response records to return in each call. If
7075
+ # the number of remaining response records exceeds the specified
7076
+ # `MaxRecords` value, a value is returned in a `Marker` field of the
7077
+ # response. You can retrieve the next set of records by retrying the
7078
+ # command with the returned marker value.
7079
+ # @return [Integer]
7080
+ #
7081
+ # @!attribute [rw] marker
7082
+ # An optional pagination token provided by a previous
7083
+ # `GetReservedNodeExchangeConfigurationOptions` request. If this
7084
+ # parameter is specified, the response includes only records beyond
7085
+ # the marker, up to the value specified by the `MaxRecords` parameter.
7086
+ # You can retrieve the next set of response records by providing the
7087
+ # returned marker value in the `Marker` parameter and retrying the
7088
+ # request.
7089
+ # @return [String]
7090
+ #
7091
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetReservedNodeExchangeConfigurationOptionsInputMessage AWS API Documentation
7092
+ #
7093
+ class GetReservedNodeExchangeConfigurationOptionsInputMessage < Struct.new(
7094
+ :action_type,
7095
+ :cluster_identifier,
7096
+ :snapshot_identifier,
7097
+ :max_records,
7098
+ :marker)
7099
+ SENSITIVE = []
7100
+ include Aws::Structure
7101
+ end
7102
+
7103
+ # @!attribute [rw] marker
7104
+ # A pagination token provided by a previous
7105
+ # `GetReservedNodeExchangeConfigurationOptions` request.
7106
+ # @return [String]
7107
+ #
7108
+ # @!attribute [rw] reserved_node_configuration_option_list
7109
+ # the configuration options for the reserved-node exchange. These
7110
+ # options include information about the source reserved node and
7111
+ # target reserved node. Details include the node type, the price, the
7112
+ # node count, and the offering type.
7113
+ # @return [Array<Types::ReservedNodeConfigurationOption>]
7114
+ #
7115
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetReservedNodeExchangeConfigurationOptionsOutputMessage AWS API Documentation
7116
+ #
7117
+ class GetReservedNodeExchangeConfigurationOptionsOutputMessage < Struct.new(
7118
+ :marker,
7119
+ :reserved_node_configuration_option_list)
7120
+ SENSITIVE = []
7121
+ include Aws::Structure
7122
+ end
7123
+
6966
7124
  # @note When making an API call, you may pass GetReservedNodeExchangeOfferingsInputMessage
6967
7125
  # data as a hash:
6968
7126
  #
@@ -8470,6 +8628,8 @@ module Aws::Redshift
8470
8628
  # node_type: "String",
8471
8629
  # number_of_nodes: 1,
8472
8630
  # classic: false,
8631
+ # reserved_node_id: "String",
8632
+ # target_reserved_node_offering_id: "String",
8473
8633
  # },
8474
8634
  # pause_cluster: {
8475
8635
  # cluster_identifier: "String", # required
@@ -9384,6 +9544,98 @@ module Aws::Redshift
9384
9544
  #
9385
9545
  class ReservedNodeAlreadyMigratedFault < Aws::EmptyStructure; end
9386
9546
 
9547
+ # Details for a reserved-node exchange. Examples include the node type
9548
+ # for a reserved node, the price for a node, the node's state, and
9549
+ # other details.
9550
+ #
9551
+ # @!attribute [rw] source_reserved_node
9552
+ # Describes a reserved node. You can call the
9553
+ # DescribeReservedNodeOfferings API to obtain the available reserved
9554
+ # node offerings.
9555
+ # @return [Types::ReservedNode]
9556
+ #
9557
+ # @!attribute [rw] target_reserved_node_count
9558
+ # The target reserved-node count.
9559
+ # @return [Integer]
9560
+ #
9561
+ # @!attribute [rw] target_reserved_node_offering
9562
+ # Describes a reserved node offering.
9563
+ # @return [Types::ReservedNodeOffering]
9564
+ #
9565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeConfigurationOption AWS API Documentation
9566
+ #
9567
+ class ReservedNodeConfigurationOption < Struct.new(
9568
+ :source_reserved_node,
9569
+ :target_reserved_node_count,
9570
+ :target_reserved_node_offering)
9571
+ SENSITIVE = []
9572
+ include Aws::Structure
9573
+ end
9574
+
9575
+ # The reserved-node exchange status wasn't found.
9576
+ #
9577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeExchangeNotFoundFault AWS API Documentation
9578
+ #
9579
+ class ReservedNodeExchangeNotFoundFault < Aws::EmptyStructure; end
9580
+
9581
+ # Reserved-node status details, such as the source reserved-node
9582
+ # identifier, the target reserved-node identifier, the node type, the
9583
+ # node count, and other details.
9584
+ #
9585
+ # @!attribute [rw] reserved_node_exchange_request_id
9586
+ # The identifier of the reserved-node exchange request.
9587
+ # @return [String]
9588
+ #
9589
+ # @!attribute [rw] status
9590
+ # The status of the reserved-node exchange request. Statuses include
9591
+ # in-progress and requested.
9592
+ # @return [String]
9593
+ #
9594
+ # @!attribute [rw] request_time
9595
+ # A date and time that indicate when the reserved-node exchange was
9596
+ # requested.
9597
+ # @return [Time]
9598
+ #
9599
+ # @!attribute [rw] source_reserved_node_id
9600
+ # The identifier of the source reserved node.
9601
+ # @return [String]
9602
+ #
9603
+ # @!attribute [rw] source_reserved_node_type
9604
+ # The source reserved-node type, for example ds2.xlarge.
9605
+ # @return [String]
9606
+ #
9607
+ # @!attribute [rw] source_reserved_node_count
9608
+ # The source reserved-node count in the cluster.
9609
+ # @return [Integer]
9610
+ #
9611
+ # @!attribute [rw] target_reserved_node_offering_id
9612
+ # The identifier of the target reserved node offering.
9613
+ # @return [String]
9614
+ #
9615
+ # @!attribute [rw] target_reserved_node_type
9616
+ # The node type of the target reserved node, for example ra3.4xlarge.
9617
+ # @return [String]
9618
+ #
9619
+ # @!attribute [rw] target_reserved_node_count
9620
+ # The count of target reserved nodes in the cluster.
9621
+ # @return [Integer]
9622
+ #
9623
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeExchangeStatus AWS API Documentation
9624
+ #
9625
+ class ReservedNodeExchangeStatus < Struct.new(
9626
+ :reserved_node_exchange_request_id,
9627
+ :status,
9628
+ :request_time,
9629
+ :source_reserved_node_id,
9630
+ :source_reserved_node_type,
9631
+ :source_reserved_node_count,
9632
+ :target_reserved_node_offering_id,
9633
+ :target_reserved_node_type,
9634
+ :target_reserved_node_count)
9635
+ SENSITIVE = []
9636
+ include Aws::Structure
9637
+ end
9638
+
9387
9639
  # The specified reserved compute node not found.
9388
9640
  #
9389
9641
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeNotFoundFault AWS API Documentation
@@ -9574,6 +9826,8 @@ module Aws::Redshift
9574
9826
  # node_type: "String",
9575
9827
  # number_of_nodes: 1,
9576
9828
  # classic: false,
9829
+ # reserved_node_id: "String",
9830
+ # target_reserved_node_offering_id: "String",
9577
9831
  # }
9578
9832
  #
9579
9833
  # @!attribute [rw] cluster_identifier
@@ -9600,6 +9854,14 @@ module Aws::Redshift
9600
9854
  # the value to `false`, the resize type is elastic.
9601
9855
  # @return [Boolean]
9602
9856
  #
9857
+ # @!attribute [rw] reserved_node_id
9858
+ # The identifier of the reserved node.
9859
+ # @return [String]
9860
+ #
9861
+ # @!attribute [rw] target_reserved_node_offering_id
9862
+ # The identifier of the target reserved node offering.
9863
+ # @return [String]
9864
+ #
9603
9865
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeClusterMessage AWS API Documentation
9604
9866
  #
9605
9867
  class ResizeClusterMessage < Struct.new(
@@ -9607,7 +9869,9 @@ module Aws::Redshift
9607
9869
  :cluster_type,
9608
9870
  :node_type,
9609
9871
  :number_of_nodes,
9610
- :classic)
9872
+ :classic,
9873
+ :reserved_node_id,
9874
+ :target_reserved_node_offering_id)
9611
9875
  SENSITIVE = []
9612
9876
  include Aws::Structure
9613
9877
  end
@@ -9809,6 +10073,8 @@ module Aws::Redshift
9809
10073
  # availability_zone_relocation: false,
9810
10074
  # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
9811
10075
  # default_iam_role_arn: "String",
10076
+ # reserved_node_id: "String",
10077
+ # target_reserved_node_offering_id: "String",
9812
10078
  # }
9813
10079
  #
9814
10080
  # @!attribute [rw] cluster_identifier
@@ -10081,6 +10347,14 @@ module Aws::Redshift
10081
10347
  # was restored from a snapshot.
10082
10348
  # @return [String]
10083
10349
  #
10350
+ # @!attribute [rw] reserved_node_id
10351
+ # The identifier of the target reserved node offering.
10352
+ # @return [String]
10353
+ #
10354
+ # @!attribute [rw] target_reserved_node_offering_id
10355
+ # The identifier of the target reserved node offering.
10356
+ # @return [String]
10357
+ #
10084
10358
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
10085
10359
  #
10086
10360
  class RestoreFromClusterSnapshotMessage < Struct.new(
@@ -10112,7 +10386,9 @@ module Aws::Redshift
10112
10386
  :number_of_nodes,
10113
10387
  :availability_zone_relocation,
10114
10388
  :aqua_configuration_status,
10115
- :default_iam_role_arn)
10389
+ :default_iam_role_arn,
10390
+ :reserved_node_id,
10391
+ :target_reserved_node_offering_id)
10116
10392
  SENSITIVE = []
10117
10393
  include Aws::Structure
10118
10394
  end
@@ -10685,6 +10961,8 @@ module Aws::Redshift
10685
10961
  # node_type: "String",
10686
10962
  # number_of_nodes: 1,
10687
10963
  # classic: false,
10964
+ # reserved_node_id: "String",
10965
+ # target_reserved_node_offering_id: "String",
10688
10966
  # },
10689
10967
  # pause_cluster: {
10690
10968
  # cluster_identifier: "String", # required
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-redshift/customizations'
49
49
  # @!group service
50
50
  module Aws::Redshift
51
51
 
52
- GEM_VERSION = '1.72.0'
52
+ GEM_VERSION = '1.76.0'
53
53
 
54
54
  end
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.72.0
4
+ version: 1.76.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-19 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.122.0
22
+ version: 3.125.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.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement