aws-sdk-redshift 1.100.0 → 1.102.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3db7ac89d6b02321e5f620f09792b2e8190ebdd7c128393e6260fc98a0aabefc
4
- data.tar.gz: e4f13d91086b6bf740f0897b38d82c36425bd2270d46271a395bb8d501fc11f6
3
+ metadata.gz: 148a524755e1f89fc2a436bb34a5e0361a5e63385fc20c832d5bb0bae9f21bbb
4
+ data.tar.gz: fd1293d3cacb5495a7f575b18cf96f85a4e3d76b25863425b100abbbf8571d70
5
5
  SHA512:
6
- metadata.gz: 89488448d7a364e44c275c015a0e81162b6da2511b9cfd04d93e355ea1b88148d6ae00d82ff997148fb5383aec0412b8d87a20e75fc03b31b90093e0ba6f0e64
7
- data.tar.gz: 3b619562b1fd304e80cc49ea6195221850fba9c5b33e5a00d9d7cfd26dcc20c9bcb2bdf614152ae292151bd2d0dd56e7d2bd857ac6e24a50806e9b6ea1abae42
6
+ metadata.gz: 4603e66f809ca0459c517dc5b7eb28236e5683d61afc707958c9ae44b6bb35c385657ee0c7607d2066dd3d7f711dbf2c3f8e056afea3d69e0b3d882f0eed5c6f
7
+ data.tar.gz: 21b48abaf4439e318213fb9bb22cf39902dcca1bfe2bd78aca40ac4f321d3ce4d494630676461f18c3f1f568065daa28c6a0a31fdb5e72759bbab30b9a106daf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.102.0 (2023-11-01)
5
+ ------------------
6
+
7
+ * Feature - Added support for Multi-AZ deployments for Provisioned RA3 clusters that provide 99.99% SLA availability.
8
+
9
+ 1.101.0 (2023-10-27)
10
+ ------------------
11
+
12
+ * Feature - added support to create a dual stack cluster
13
+
4
14
  1.100.0 (2023-10-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.100.0
1
+ 1.102.0
@@ -1529,6 +1529,14 @@ module Aws::Redshift
1529
1529
  # store the cluster's admin credentials secret. You can only use this
1530
1530
  # parameter if `ManageMasterPassword` is true.
1531
1531
  #
1532
+ # @option params [String] :ip_address_type
1533
+ # The IP address types that the cluster supports. Possible values are
1534
+ # `ipv4` and `dualstack`.
1535
+ #
1536
+ # @option params [Boolean] :multi_az
1537
+ # If true, Amazon Redshift will deploy the cluster in two Availability
1538
+ # Zones (AZ).
1539
+ #
1532
1540
  # @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1533
1541
  #
1534
1542
  # * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
@@ -1577,6 +1585,8 @@ module Aws::Redshift
1577
1585
  # load_sample_data: "String",
1578
1586
  # manage_master_password: false,
1579
1587
  # master_password_secret_kms_key_id: "String",
1588
+ # ip_address_type: "String",
1589
+ # multi_az: false,
1580
1590
  # })
1581
1591
  #
1582
1592
  # @example Response structure
@@ -1598,6 +1608,7 @@ module Aws::Redshift
1598
1608
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
1599
1609
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
1600
1610
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
1611
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
1601
1612
  # resp.cluster.cluster_create_time #=> Time
1602
1613
  # resp.cluster.automated_snapshot_retention_period #=> Integer
1603
1614
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -1704,6 +1715,13 @@ module Aws::Redshift
1704
1715
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
1705
1716
  # resp.cluster.master_password_secret_arn #=> String
1706
1717
  # resp.cluster.master_password_secret_kms_key_id #=> String
1718
+ # resp.cluster.ip_address_type #=> String
1719
+ # resp.cluster.multi_az #=> String
1720
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
1721
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
1722
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
1723
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
1724
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
1707
1725
  #
1708
1726
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
1709
1727
  #
@@ -2064,6 +2082,8 @@ module Aws::Redshift
2064
2082
  # resp.cluster_subnet_group.tags #=> Array
2065
2083
  # resp.cluster_subnet_group.tags[0].key #=> String
2066
2084
  # resp.cluster_subnet_group.tags[0].value #=> String
2085
+ # resp.cluster_subnet_group.supported_cluster_ip_address_types #=> Array
2086
+ # resp.cluster_subnet_group.supported_cluster_ip_address_types[0] #=> String
2067
2087
  #
2068
2088
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterSubnetGroup AWS API Documentation
2069
2089
  #
@@ -2187,6 +2207,7 @@ module Aws::Redshift
2187
2207
  # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
2188
2208
  # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
2189
2209
  # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
2210
+ # resp.vpc_endpoint.network_interfaces[0].ipv_6_address #=> String
2190
2211
  #
2191
2212
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateEndpointAccess AWS API Documentation
2192
2213
  #
@@ -3030,6 +3051,7 @@ module Aws::Redshift
3030
3051
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
3031
3052
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
3032
3053
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
3054
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
3033
3055
  # resp.cluster.cluster_create_time #=> Time
3034
3056
  # resp.cluster.automated_snapshot_retention_period #=> Integer
3035
3057
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -3136,6 +3158,13 @@ module Aws::Redshift
3136
3158
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
3137
3159
  # resp.cluster.master_password_secret_arn #=> String
3138
3160
  # resp.cluster.master_password_secret_kms_key_id #=> String
3161
+ # resp.cluster.ip_address_type #=> String
3162
+ # resp.cluster.multi_az #=> String
3163
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
3164
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
3165
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
3166
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
3167
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
3139
3168
  #
3140
3169
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
3141
3170
  #
@@ -3393,6 +3422,7 @@ module Aws::Redshift
3393
3422
  # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
3394
3423
  # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
3395
3424
  # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
3425
+ # resp.vpc_endpoint.network_interfaces[0].ipv_6_address #=> String
3396
3426
  #
3397
3427
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteEndpointAccess AWS API Documentation
3398
3428
  #
@@ -4404,6 +4434,8 @@ module Aws::Redshift
4404
4434
  # resp.cluster_subnet_groups[0].tags #=> Array
4405
4435
  # resp.cluster_subnet_groups[0].tags[0].key #=> String
4406
4436
  # resp.cluster_subnet_groups[0].tags[0].value #=> String
4437
+ # resp.cluster_subnet_groups[0].supported_cluster_ip_address_types #=> Array
4438
+ # resp.cluster_subnet_groups[0].supported_cluster_ip_address_types[0] #=> String
4407
4439
  #
4408
4440
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeClusterSubnetGroups AWS API Documentation
4409
4441
  #
@@ -4652,6 +4684,7 @@ module Aws::Redshift
4652
4684
  # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
4653
4685
  # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
4654
4686
  # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
4687
+ # resp.clusters[0].endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
4655
4688
  # resp.clusters[0].cluster_create_time #=> Time
4656
4689
  # resp.clusters[0].automated_snapshot_retention_period #=> Integer
4657
4690
  # resp.clusters[0].manual_snapshot_retention_period #=> Integer
@@ -4758,6 +4791,13 @@ module Aws::Redshift
4758
4791
  # resp.clusters[0].custom_domain_certificate_expiry_date #=> Time
4759
4792
  # resp.clusters[0].master_password_secret_arn #=> String
4760
4793
  # resp.clusters[0].master_password_secret_kms_key_id #=> String
4794
+ # resp.clusters[0].ip_address_type #=> String
4795
+ # resp.clusters[0].multi_az #=> String
4796
+ # resp.clusters[0].multi_az_secondary.availability_zone #=> String
4797
+ # resp.clusters[0].multi_az_secondary.cluster_nodes #=> Array
4798
+ # resp.clusters[0].multi_az_secondary.cluster_nodes[0].node_role #=> String
4799
+ # resp.clusters[0].multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
4800
+ # resp.clusters[0].multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
4761
4801
  #
4762
4802
  #
4763
4803
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5159,6 +5199,7 @@ module Aws::Redshift
5159
5199
  # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].subnet_id #=> String
5160
5200
  # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].private_ip_address #=> String
5161
5201
  # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].availability_zone #=> String
5202
+ # resp.endpoint_access_list[0].vpc_endpoint.network_interfaces[0].ipv_6_address #=> String
5162
5203
  # resp.marker #=> String
5163
5204
  #
5164
5205
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccess AWS API Documentation
@@ -7031,6 +7072,7 @@ module Aws::Redshift
7031
7072
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
7032
7073
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
7033
7074
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
7075
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
7034
7076
  # resp.cluster.cluster_create_time #=> Time
7035
7077
  # resp.cluster.automated_snapshot_retention_period #=> Integer
7036
7078
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -7137,6 +7179,13 @@ module Aws::Redshift
7137
7179
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
7138
7180
  # resp.cluster.master_password_secret_arn #=> String
7139
7181
  # resp.cluster.master_password_secret_kms_key_id #=> String
7182
+ # resp.cluster.ip_address_type #=> String
7183
+ # resp.cluster.multi_az #=> String
7184
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
7185
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
7186
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
7187
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
7188
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
7140
7189
  #
7141
7190
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
7142
7191
  #
@@ -7370,6 +7419,7 @@ module Aws::Redshift
7370
7419
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
7371
7420
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
7372
7421
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
7422
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
7373
7423
  # resp.cluster.cluster_create_time #=> Time
7374
7424
  # resp.cluster.automated_snapshot_retention_period #=> Integer
7375
7425
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -7476,6 +7526,13 @@ module Aws::Redshift
7476
7526
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
7477
7527
  # resp.cluster.master_password_secret_arn #=> String
7478
7528
  # resp.cluster.master_password_secret_kms_key_id #=> String
7529
+ # resp.cluster.ip_address_type #=> String
7530
+ # resp.cluster.multi_az #=> String
7531
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
7532
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
7533
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
7534
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
7535
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
7479
7536
  #
7480
7537
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
7481
7538
  #
@@ -7486,6 +7543,166 @@ module Aws::Redshift
7486
7543
  req.send_request(options)
7487
7544
  end
7488
7545
 
7546
+ # Fails over the primary compute unit of the specified Multi-AZ cluster
7547
+ # to another Availability Zone.
7548
+ #
7549
+ # @option params [required, String] :cluster_identifier
7550
+ # The unique identifier of the cluster for which the primary compute
7551
+ # unit will be failed over to another Availability Zone.
7552
+ #
7553
+ # @return [Types::FailoverPrimaryComputeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7554
+ #
7555
+ # * {Types::FailoverPrimaryComputeResult#cluster #cluster} => Types::Cluster
7556
+ #
7557
+ # @example Request syntax with placeholder values
7558
+ #
7559
+ # resp = client.failover_primary_compute({
7560
+ # cluster_identifier: "String", # required
7561
+ # })
7562
+ #
7563
+ # @example Response structure
7564
+ #
7565
+ # resp.cluster.cluster_identifier #=> String
7566
+ # resp.cluster.node_type #=> String
7567
+ # resp.cluster.cluster_status #=> String
7568
+ # resp.cluster.cluster_availability_status #=> String
7569
+ # resp.cluster.modify_status #=> String
7570
+ # resp.cluster.master_username #=> String
7571
+ # resp.cluster.db_name #=> String
7572
+ # resp.cluster.endpoint.address #=> String
7573
+ # resp.cluster.endpoint.port #=> Integer
7574
+ # resp.cluster.endpoint.vpc_endpoints #=> Array
7575
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_endpoint_id #=> String
7576
+ # resp.cluster.endpoint.vpc_endpoints[0].vpc_id #=> String
7577
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces #=> Array
7578
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].network_interface_id #=> String
7579
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
7580
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
7581
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
7582
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
7583
+ # resp.cluster.cluster_create_time #=> Time
7584
+ # resp.cluster.automated_snapshot_retention_period #=> Integer
7585
+ # resp.cluster.manual_snapshot_retention_period #=> Integer
7586
+ # resp.cluster.cluster_security_groups #=> Array
7587
+ # resp.cluster.cluster_security_groups[0].cluster_security_group_name #=> String
7588
+ # resp.cluster.cluster_security_groups[0].status #=> String
7589
+ # resp.cluster.vpc_security_groups #=> Array
7590
+ # resp.cluster.vpc_security_groups[0].vpc_security_group_id #=> String
7591
+ # resp.cluster.vpc_security_groups[0].status #=> String
7592
+ # resp.cluster.cluster_parameter_groups #=> Array
7593
+ # resp.cluster.cluster_parameter_groups[0].parameter_group_name #=> String
7594
+ # resp.cluster.cluster_parameter_groups[0].parameter_apply_status #=> String
7595
+ # resp.cluster.cluster_parameter_groups[0].cluster_parameter_status_list #=> Array
7596
+ # resp.cluster.cluster_parameter_groups[0].cluster_parameter_status_list[0].parameter_name #=> String
7597
+ # resp.cluster.cluster_parameter_groups[0].cluster_parameter_status_list[0].parameter_apply_status #=> String
7598
+ # resp.cluster.cluster_parameter_groups[0].cluster_parameter_status_list[0].parameter_apply_error_description #=> String
7599
+ # resp.cluster.cluster_subnet_group_name #=> String
7600
+ # resp.cluster.vpc_id #=> String
7601
+ # resp.cluster.availability_zone #=> String
7602
+ # resp.cluster.preferred_maintenance_window #=> String
7603
+ # resp.cluster.pending_modified_values.master_user_password #=> String
7604
+ # resp.cluster.pending_modified_values.node_type #=> String
7605
+ # resp.cluster.pending_modified_values.number_of_nodes #=> Integer
7606
+ # resp.cluster.pending_modified_values.cluster_type #=> String
7607
+ # resp.cluster.pending_modified_values.cluster_version #=> String
7608
+ # resp.cluster.pending_modified_values.automated_snapshot_retention_period #=> Integer
7609
+ # resp.cluster.pending_modified_values.cluster_identifier #=> String
7610
+ # resp.cluster.pending_modified_values.publicly_accessible #=> Boolean
7611
+ # resp.cluster.pending_modified_values.enhanced_vpc_routing #=> Boolean
7612
+ # resp.cluster.pending_modified_values.maintenance_track_name #=> String
7613
+ # resp.cluster.pending_modified_values.encryption_type #=> String
7614
+ # resp.cluster.cluster_version #=> String
7615
+ # resp.cluster.allow_version_upgrade #=> Boolean
7616
+ # resp.cluster.number_of_nodes #=> Integer
7617
+ # resp.cluster.publicly_accessible #=> Boolean
7618
+ # resp.cluster.encrypted #=> Boolean
7619
+ # resp.cluster.restore_status.status #=> String
7620
+ # resp.cluster.restore_status.current_restore_rate_in_mega_bytes_per_second #=> Float
7621
+ # resp.cluster.restore_status.snapshot_size_in_mega_bytes #=> Integer
7622
+ # resp.cluster.restore_status.progress_in_mega_bytes #=> Integer
7623
+ # resp.cluster.restore_status.elapsed_time_in_seconds #=> Integer
7624
+ # resp.cluster.restore_status.estimated_time_to_completion_in_seconds #=> Integer
7625
+ # resp.cluster.data_transfer_progress.status #=> String
7626
+ # resp.cluster.data_transfer_progress.current_rate_in_mega_bytes_per_second #=> Float
7627
+ # resp.cluster.data_transfer_progress.total_data_in_mega_bytes #=> Integer
7628
+ # resp.cluster.data_transfer_progress.data_transferred_in_mega_bytes #=> Integer
7629
+ # resp.cluster.data_transfer_progress.estimated_time_to_completion_in_seconds #=> Integer
7630
+ # resp.cluster.data_transfer_progress.elapsed_time_in_seconds #=> Integer
7631
+ # resp.cluster.hsm_status.hsm_client_certificate_identifier #=> String
7632
+ # resp.cluster.hsm_status.hsm_configuration_identifier #=> String
7633
+ # resp.cluster.hsm_status.status #=> String
7634
+ # resp.cluster.cluster_snapshot_copy_status.destination_region #=> String
7635
+ # resp.cluster.cluster_snapshot_copy_status.retention_period #=> Integer
7636
+ # resp.cluster.cluster_snapshot_copy_status.manual_snapshot_retention_period #=> Integer
7637
+ # resp.cluster.cluster_snapshot_copy_status.snapshot_copy_grant_name #=> String
7638
+ # resp.cluster.cluster_public_key #=> String
7639
+ # resp.cluster.cluster_nodes #=> Array
7640
+ # resp.cluster.cluster_nodes[0].node_role #=> String
7641
+ # resp.cluster.cluster_nodes[0].private_ip_address #=> String
7642
+ # resp.cluster.cluster_nodes[0].public_ip_address #=> String
7643
+ # resp.cluster.elastic_ip_status.elastic_ip #=> String
7644
+ # resp.cluster.elastic_ip_status.status #=> String
7645
+ # resp.cluster.cluster_revision_number #=> String
7646
+ # resp.cluster.tags #=> Array
7647
+ # resp.cluster.tags[0].key #=> String
7648
+ # resp.cluster.tags[0].value #=> String
7649
+ # resp.cluster.kms_key_id #=> String
7650
+ # resp.cluster.enhanced_vpc_routing #=> Boolean
7651
+ # resp.cluster.iam_roles #=> Array
7652
+ # resp.cluster.iam_roles[0].iam_role_arn #=> String
7653
+ # resp.cluster.iam_roles[0].apply_status #=> String
7654
+ # resp.cluster.pending_actions #=> Array
7655
+ # resp.cluster.pending_actions[0] #=> String
7656
+ # resp.cluster.maintenance_track_name #=> String
7657
+ # resp.cluster.elastic_resize_number_of_node_options #=> String
7658
+ # resp.cluster.deferred_maintenance_windows #=> Array
7659
+ # resp.cluster.deferred_maintenance_windows[0].defer_maintenance_identifier #=> String
7660
+ # resp.cluster.deferred_maintenance_windows[0].defer_maintenance_start_time #=> Time
7661
+ # resp.cluster.deferred_maintenance_windows[0].defer_maintenance_end_time #=> Time
7662
+ # resp.cluster.snapshot_schedule_identifier #=> String
7663
+ # resp.cluster.snapshot_schedule_state #=> String, one of "MODIFYING", "ACTIVE", "FAILED"
7664
+ # resp.cluster.expected_next_snapshot_schedule_time #=> Time
7665
+ # resp.cluster.expected_next_snapshot_schedule_time_status #=> String
7666
+ # resp.cluster.next_maintenance_window_start_time #=> Time
7667
+ # resp.cluster.resize_info.resize_type #=> String
7668
+ # resp.cluster.resize_info.allow_cancel_resize #=> Boolean
7669
+ # resp.cluster.availability_zone_relocation_status #=> String
7670
+ # resp.cluster.cluster_namespace_arn #=> String
7671
+ # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7672
+ # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7673
+ # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7674
+ # resp.cluster.default_iam_role_arn #=> String
7675
+ # resp.cluster.reserved_node_exchange_status.reserved_node_exchange_request_id #=> String
7676
+ # resp.cluster.reserved_node_exchange_status.status #=> String, one of "REQUESTED", "PENDING", "IN_PROGRESS", "RETRYING", "SUCCEEDED", "FAILED"
7677
+ # resp.cluster.reserved_node_exchange_status.request_time #=> Time
7678
+ # resp.cluster.reserved_node_exchange_status.source_reserved_node_id #=> String
7679
+ # resp.cluster.reserved_node_exchange_status.source_reserved_node_type #=> String
7680
+ # resp.cluster.reserved_node_exchange_status.source_reserved_node_count #=> Integer
7681
+ # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
7682
+ # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
7683
+ # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
7684
+ # resp.cluster.custom_domain_name #=> String
7685
+ # resp.cluster.custom_domain_certificate_arn #=> String
7686
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
7687
+ # resp.cluster.master_password_secret_arn #=> String
7688
+ # resp.cluster.master_password_secret_kms_key_id #=> String
7689
+ # resp.cluster.ip_address_type #=> String
7690
+ # resp.cluster.multi_az #=> String
7691
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
7692
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
7693
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
7694
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
7695
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
7696
+ #
7697
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/FailoverPrimaryCompute AWS API Documentation
7698
+ #
7699
+ # @overload failover_primary_compute(params = {})
7700
+ # @param [Hash] params ({})
7701
+ def failover_primary_compute(params = {}, options = {})
7702
+ req = build_request(:failover_primary_compute, params)
7703
+ req.send_request(options)
7704
+ end
7705
+
7489
7706
  # Returns a database user name and temporary password with temporary
7490
7707
  # authorization to log on to an Amazon Redshift database. The action
7491
7708
  # returns the database user name prefixed with `IAM:` if `AutoCreate` is
@@ -8263,6 +8480,15 @@ module Aws::Redshift
8263
8480
  # store the cluster's admin credentials secret. You can only use this
8264
8481
  # parameter if `ManageMasterPassword` is true.
8265
8482
  #
8483
+ # @option params [String] :ip_address_type
8484
+ # The IP address types that the cluster supports. Possible values are
8485
+ # `ipv4` and `dualstack`.
8486
+ #
8487
+ # @option params [Boolean] :multi_az
8488
+ # If true and the cluster is currently only deployed in a single
8489
+ # Availability Zone, the cluster will be modified to be deployed in two
8490
+ # Availability Zones.
8491
+ #
8266
8492
  # @return [Types::ModifyClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8267
8493
  #
8268
8494
  # * {Types::ModifyClusterResult#cluster #cluster} => Types::Cluster
@@ -8297,6 +8523,8 @@ module Aws::Redshift
8297
8523
  # port: 1,
8298
8524
  # manage_master_password: false,
8299
8525
  # master_password_secret_kms_key_id: "String",
8526
+ # ip_address_type: "String",
8527
+ # multi_az: false,
8300
8528
  # })
8301
8529
  #
8302
8530
  # @example Response structure
@@ -8318,6 +8546,7 @@ module Aws::Redshift
8318
8546
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8319
8547
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8320
8548
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8549
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
8321
8550
  # resp.cluster.cluster_create_time #=> Time
8322
8551
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8323
8552
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8424,6 +8653,13 @@ module Aws::Redshift
8424
8653
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8425
8654
  # resp.cluster.master_password_secret_arn #=> String
8426
8655
  # resp.cluster.master_password_secret_kms_key_id #=> String
8656
+ # resp.cluster.ip_address_type #=> String
8657
+ # resp.cluster.multi_az #=> String
8658
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
8659
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
8660
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
8661
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
8662
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
8427
8663
  #
8428
8664
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
8429
8665
  #
@@ -8477,6 +8713,7 @@ module Aws::Redshift
8477
8713
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8478
8714
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8479
8715
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8716
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
8480
8717
  # resp.cluster.cluster_create_time #=> Time
8481
8718
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8482
8719
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8583,6 +8820,13 @@ module Aws::Redshift
8583
8820
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8584
8821
  # resp.cluster.master_password_secret_arn #=> String
8585
8822
  # resp.cluster.master_password_secret_kms_key_id #=> String
8823
+ # resp.cluster.ip_address_type #=> String
8824
+ # resp.cluster.multi_az #=> String
8825
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
8826
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
8827
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
8828
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
8829
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
8586
8830
  #
8587
8831
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
8588
8832
  #
@@ -8652,6 +8896,7 @@ module Aws::Redshift
8652
8896
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8653
8897
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8654
8898
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
8899
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
8655
8900
  # resp.cluster.cluster_create_time #=> Time
8656
8901
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8657
8902
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8758,6 +9003,13 @@ module Aws::Redshift
8758
9003
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8759
9004
  # resp.cluster.master_password_secret_arn #=> String
8760
9005
  # resp.cluster.master_password_secret_kms_key_id #=> String
9006
+ # resp.cluster.ip_address_type #=> String
9007
+ # resp.cluster.multi_az #=> String
9008
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
9009
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
9010
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
9011
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
9012
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
8761
9013
  #
8762
9014
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
8763
9015
  #
@@ -8827,6 +9079,7 @@ module Aws::Redshift
8827
9079
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
8828
9080
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
8829
9081
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
9082
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
8830
9083
  # resp.cluster.cluster_create_time #=> Time
8831
9084
  # resp.cluster.automated_snapshot_retention_period #=> Integer
8832
9085
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -8933,6 +9186,13 @@ module Aws::Redshift
8933
9186
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8934
9187
  # resp.cluster.master_password_secret_arn #=> String
8935
9188
  # resp.cluster.master_password_secret_kms_key_id #=> String
9189
+ # resp.cluster.ip_address_type #=> String
9190
+ # resp.cluster.multi_az #=> String
9191
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
9192
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
9193
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
9194
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
9195
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
8936
9196
  #
8937
9197
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
8938
9198
  #
@@ -9166,6 +9426,8 @@ module Aws::Redshift
9166
9426
  # resp.cluster_subnet_group.tags #=> Array
9167
9427
  # resp.cluster_subnet_group.tags[0].key #=> String
9168
9428
  # resp.cluster_subnet_group.tags[0].value #=> String
9429
+ # resp.cluster_subnet_group.supported_cluster_ip_address_types #=> Array
9430
+ # resp.cluster_subnet_group.supported_cluster_ip_address_types[0] #=> String
9169
9431
  #
9170
9432
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterSubnetGroup AWS API Documentation
9171
9433
  #
@@ -9269,6 +9531,7 @@ module Aws::Redshift
9269
9531
  # resp.vpc_endpoint.network_interfaces[0].subnet_id #=> String
9270
9532
  # resp.vpc_endpoint.network_interfaces[0].private_ip_address #=> String
9271
9533
  # resp.vpc_endpoint.network_interfaces[0].availability_zone #=> String
9534
+ # resp.vpc_endpoint.network_interfaces[0].ipv_6_address #=> String
9272
9535
  #
9273
9536
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyEndpointAccess AWS API Documentation
9274
9537
  #
@@ -9552,6 +9815,7 @@ module Aws::Redshift
9552
9815
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9553
9816
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9554
9817
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
9818
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
9555
9819
  # resp.cluster.cluster_create_time #=> Time
9556
9820
  # resp.cluster.automated_snapshot_retention_period #=> Integer
9557
9821
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -9658,6 +9922,13 @@ module Aws::Redshift
9658
9922
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
9659
9923
  # resp.cluster.master_password_secret_arn #=> String
9660
9924
  # resp.cluster.master_password_secret_kms_key_id #=> String
9925
+ # resp.cluster.ip_address_type #=> String
9926
+ # resp.cluster.multi_az #=> String
9927
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
9928
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
9929
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
9930
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
9931
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
9661
9932
  #
9662
9933
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
9663
9934
  #
@@ -9810,6 +10081,7 @@ module Aws::Redshift
9810
10081
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
9811
10082
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
9812
10083
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
10084
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
9813
10085
  # resp.cluster.cluster_create_time #=> Time
9814
10086
  # resp.cluster.automated_snapshot_retention_period #=> Integer
9815
10087
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -9916,6 +10188,13 @@ module Aws::Redshift
9916
10188
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
9917
10189
  # resp.cluster.master_password_secret_arn #=> String
9918
10190
  # resp.cluster.master_password_secret_kms_key_id #=> String
10191
+ # resp.cluster.ip_address_type #=> String
10192
+ # resp.cluster.multi_az #=> String
10193
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
10194
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
10195
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
10196
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
10197
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
9919
10198
  #
9920
10199
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
9921
10200
  #
@@ -10065,6 +10344,7 @@ module Aws::Redshift
10065
10344
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
10066
10345
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
10067
10346
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
10347
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
10068
10348
  # resp.cluster.cluster_create_time #=> Time
10069
10349
  # resp.cluster.automated_snapshot_retention_period #=> Integer
10070
10350
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -10171,6 +10451,13 @@ module Aws::Redshift
10171
10451
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10172
10452
  # resp.cluster.master_password_secret_arn #=> String
10173
10453
  # resp.cluster.master_password_secret_kms_key_id #=> String
10454
+ # resp.cluster.ip_address_type #=> String
10455
+ # resp.cluster.multi_az #=> String
10456
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
10457
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
10458
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
10459
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
10460
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
10174
10461
  #
10175
10462
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
10176
10463
  #
@@ -10374,6 +10661,7 @@ module Aws::Redshift
10374
10661
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
10375
10662
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
10376
10663
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
10664
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
10377
10665
  # resp.cluster.cluster_create_time #=> Time
10378
10666
  # resp.cluster.automated_snapshot_retention_period #=> Integer
10379
10667
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -10480,6 +10768,13 @@ module Aws::Redshift
10480
10768
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10481
10769
  # resp.cluster.master_password_secret_arn #=> String
10482
10770
  # resp.cluster.master_password_secret_kms_key_id #=> String
10771
+ # resp.cluster.ip_address_type #=> String
10772
+ # resp.cluster.multi_az #=> String
10773
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
10774
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
10775
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
10776
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
10777
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
10483
10778
  #
10484
10779
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
10485
10780
  #
@@ -10782,6 +11077,14 @@ module Aws::Redshift
10782
11077
  # store the cluster's admin credentials secret. You can only use this
10783
11078
  # parameter if `ManageMasterPassword` is true.
10784
11079
  #
11080
+ # @option params [String] :ip_address_type
11081
+ # The IP address type for the cluster. Possible values are `ipv4` and
11082
+ # `dualstack`.
11083
+ #
11084
+ # @option params [Boolean] :multi_az
11085
+ # If true, the snapshot will be restored to a cluster deployed in two
11086
+ # Availability Zones.
11087
+ #
10785
11088
  # @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10786
11089
  #
10787
11090
  # * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
@@ -10824,6 +11127,8 @@ module Aws::Redshift
10824
11127
  # encrypted: false,
10825
11128
  # manage_master_password: false,
10826
11129
  # master_password_secret_kms_key_id: "String",
11130
+ # ip_address_type: "String",
11131
+ # multi_az: false,
10827
11132
  # })
10828
11133
  #
10829
11134
  # @example Response structure
@@ -10845,6 +11150,7 @@ module Aws::Redshift
10845
11150
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
10846
11151
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
10847
11152
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
11153
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
10848
11154
  # resp.cluster.cluster_create_time #=> Time
10849
11155
  # resp.cluster.automated_snapshot_retention_period #=> Integer
10850
11156
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -10951,6 +11257,13 @@ module Aws::Redshift
10951
11257
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10952
11258
  # resp.cluster.master_password_secret_arn #=> String
10953
11259
  # resp.cluster.master_password_secret_kms_key_id #=> String
11260
+ # resp.cluster.ip_address_type #=> String
11261
+ # resp.cluster.multi_az #=> String
11262
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
11263
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
11264
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
11265
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
11266
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
10954
11267
  #
10955
11268
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
10956
11269
  #
@@ -11095,6 +11408,7 @@ module Aws::Redshift
11095
11408
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
11096
11409
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
11097
11410
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
11411
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
11098
11412
  # resp.cluster.cluster_create_time #=> Time
11099
11413
  # resp.cluster.automated_snapshot_retention_period #=> Integer
11100
11414
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -11201,6 +11515,13 @@ module Aws::Redshift
11201
11515
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
11202
11516
  # resp.cluster.master_password_secret_arn #=> String
11203
11517
  # resp.cluster.master_password_secret_kms_key_id #=> String
11518
+ # resp.cluster.ip_address_type #=> String
11519
+ # resp.cluster.multi_az #=> String
11520
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
11521
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
11522
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
11523
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
11524
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
11204
11525
  #
11205
11526
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
11206
11527
  #
@@ -11481,6 +11802,7 @@ module Aws::Redshift
11481
11802
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].subnet_id #=> String
11482
11803
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].private_ip_address #=> String
11483
11804
  # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].availability_zone #=> String
11805
+ # resp.cluster.endpoint.vpc_endpoints[0].network_interfaces[0].ipv_6_address #=> String
11484
11806
  # resp.cluster.cluster_create_time #=> Time
11485
11807
  # resp.cluster.automated_snapshot_retention_period #=> Integer
11486
11808
  # resp.cluster.manual_snapshot_retention_period #=> Integer
@@ -11587,6 +11909,13 @@ module Aws::Redshift
11587
11909
  # resp.cluster.custom_domain_certificate_expiry_date #=> Time
11588
11910
  # resp.cluster.master_password_secret_arn #=> String
11589
11911
  # resp.cluster.master_password_secret_kms_key_id #=> String
11912
+ # resp.cluster.ip_address_type #=> String
11913
+ # resp.cluster.multi_az #=> String
11914
+ # resp.cluster.multi_az_secondary.availability_zone #=> String
11915
+ # resp.cluster.multi_az_secondary.cluster_nodes #=> Array
11916
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].node_role #=> String
11917
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].private_ip_address #=> String
11918
+ # resp.cluster.multi_az_secondary.cluster_nodes[0].public_ip_address #=> String
11590
11919
  #
11591
11920
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
11592
11921
  #
@@ -11662,7 +11991,7 @@ module Aws::Redshift
11662
11991
  params: params,
11663
11992
  config: config)
11664
11993
  context[:gem_name] = 'aws-sdk-redshift'
11665
- context[:gem_version] = '1.100.0'
11994
+ context[:gem_version] = '1.102.0'
11666
11995
  Seahorse::Client::Request.new(handlers, context)
11667
11996
  end
11668
11997
 
@@ -275,6 +275,8 @@ module Aws::Redshift
275
275
  EventSubscriptionsList = Shapes::ListShape.new(name: 'EventSubscriptionsList')
276
276
  EventSubscriptionsMessage = Shapes::StructureShape.new(name: 'EventSubscriptionsMessage')
277
277
  EventsMessage = Shapes::StructureShape.new(name: 'EventsMessage')
278
+ FailoverPrimaryComputeInputMessage = Shapes::StructureShape.new(name: 'FailoverPrimaryComputeInputMessage')
279
+ FailoverPrimaryComputeResult = Shapes::StructureShape.new(name: 'FailoverPrimaryComputeResult')
278
280
  GetClusterCredentialsMessage = Shapes::StructureShape.new(name: 'GetClusterCredentialsMessage')
279
281
  GetClusterCredentialsWithIAMMessage = Shapes::StructureShape.new(name: 'GetClusterCredentialsWithIAMMessage')
280
282
  GetReservedNodeExchangeConfigurationOptionsInputMessage = Shapes::StructureShape.new(name: 'GetReservedNodeExchangeConfigurationOptionsInputMessage')
@@ -345,6 +347,7 @@ module Aws::Redshift
345
347
  InvalidTagFault = Shapes::StructureShape.new(name: 'InvalidTagFault')
346
348
  InvalidUsageLimitFault = Shapes::StructureShape.new(name: 'InvalidUsageLimitFault')
347
349
  InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault')
350
+ Ipv6CidrBlockNotFoundFault = Shapes::StructureShape.new(name: 'Ipv6CidrBlockNotFoundFault')
348
351
  LimitExceededFault = Shapes::StructureShape.new(name: 'LimitExceededFault')
349
352
  LogDestinationType = Shapes::StringShape.new(name: 'LogDestinationType')
350
353
  LogTypeList = Shapes::ListShape.new(name: 'LogTypeList')
@@ -488,6 +491,7 @@ module Aws::Redshift
488
491
  ScheduledActionTypeValues = Shapes::StringShape.new(name: 'ScheduledActionTypeValues')
489
492
  ScheduledActionsMessage = Shapes::StructureShape.new(name: 'ScheduledActionsMessage')
490
493
  ScheduledSnapshotTimeList = Shapes::ListShape.new(name: 'ScheduledSnapshotTimeList')
494
+ SecondaryClusterInfo = Shapes::StructureShape.new(name: 'SecondaryClusterInfo')
491
495
  SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
492
496
  Snapshot = Shapes::StructureShape.new(name: 'Snapshot')
493
497
  SnapshotAttributeToSortBy = Shapes::StringShape.new(name: 'SnapshotAttributeToSortBy')
@@ -767,6 +771,9 @@ module Aws::Redshift
767
771
  Cluster.add_member(:custom_domain_certificate_expiry_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "CustomDomainCertificateExpiryDate"))
768
772
  Cluster.add_member(:master_password_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretArn"))
769
773
  Cluster.add_member(:master_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretKmsKeyId"))
774
+ Cluster.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "IpAddressType"))
775
+ Cluster.add_member(:multi_az, Shapes::ShapeRef.new(shape: String, location_name: "MultiAZ"))
776
+ Cluster.add_member(:multi_az_secondary, Shapes::ShapeRef.new(shape: SecondaryClusterInfo, location_name: "MultiAZSecondary"))
770
777
  Cluster.struct_class = Types::Cluster
771
778
 
772
779
  ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
@@ -902,6 +909,7 @@ module Aws::Redshift
902
909
  ClusterSubnetGroup.add_member(:subnet_group_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetGroupStatus"))
903
910
  ClusterSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
904
911
  ClusterSubnetGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
912
+ ClusterSubnetGroup.add_member(:supported_cluster_ip_address_types, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "SupportedClusterIpAddressTypes"))
905
913
  ClusterSubnetGroup.struct_class = Types::ClusterSubnetGroup
906
914
 
907
915
  ClusterSubnetGroupAlreadyExistsFault.struct_class = Types::ClusterSubnetGroupAlreadyExistsFault
@@ -990,6 +998,8 @@ module Aws::Redshift
990
998
  CreateClusterMessage.add_member(:load_sample_data, Shapes::ShapeRef.new(shape: String, location_name: "LoadSampleData"))
991
999
  CreateClusterMessage.add_member(:manage_master_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterPassword"))
992
1000
  CreateClusterMessage.add_member(:master_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretKmsKeyId"))
1001
+ CreateClusterMessage.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "IpAddressType"))
1002
+ CreateClusterMessage.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
993
1003
  CreateClusterMessage.struct_class = Types::CreateClusterMessage
994
1004
 
995
1005
  CreateClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
@@ -1675,6 +1685,12 @@ module Aws::Redshift
1675
1685
  EventsMessage.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Events"))
1676
1686
  EventsMessage.struct_class = Types::EventsMessage
1677
1687
 
1688
+ FailoverPrimaryComputeInputMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
1689
+ FailoverPrimaryComputeInputMessage.struct_class = Types::FailoverPrimaryComputeInputMessage
1690
+
1691
+ FailoverPrimaryComputeResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
1692
+ FailoverPrimaryComputeResult.struct_class = Types::FailoverPrimaryComputeResult
1693
+
1678
1694
  GetClusterCredentialsMessage.add_member(:db_user, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DbUser"))
1679
1695
  GetClusterCredentialsMessage.add_member(:db_name, Shapes::ShapeRef.new(shape: String, location_name: "DbName"))
1680
1696
  GetClusterCredentialsMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ClusterIdentifier"))
@@ -1864,6 +1880,8 @@ module Aws::Redshift
1864
1880
 
1865
1881
  InvalidVPCNetworkStateFault.struct_class = Types::InvalidVPCNetworkStateFault
1866
1882
 
1883
+ Ipv6CidrBlockNotFoundFault.struct_class = Types::Ipv6CidrBlockNotFoundFault
1884
+
1867
1885
  LimitExceededFault.struct_class = Types::LimitExceededFault
1868
1886
 
1869
1887
  LogTypeList.member = Shapes::ShapeRef.new(shape: String)
@@ -1952,6 +1970,8 @@ module Aws::Redshift
1952
1970
  ModifyClusterMessage.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
1953
1971
  ModifyClusterMessage.add_member(:manage_master_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterPassword"))
1954
1972
  ModifyClusterMessage.add_member(:master_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretKmsKeyId"))
1973
+ ModifyClusterMessage.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "IpAddressType"))
1974
+ ModifyClusterMessage.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
1955
1975
  ModifyClusterMessage.struct_class = Types::ModifyClusterMessage
1956
1976
 
1957
1977
  ModifyClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
@@ -2040,6 +2060,7 @@ module Aws::Redshift
2040
2060
  NetworkInterface.add_member(:subnet_id, Shapes::ShapeRef.new(shape: String, location_name: "SubnetId"))
2041
2061
  NetworkInterface.add_member(:private_ip_address, Shapes::ShapeRef.new(shape: String, location_name: "PrivateIpAddress"))
2042
2062
  NetworkInterface.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone"))
2063
+ NetworkInterface.add_member(:ipv_6_address, Shapes::ShapeRef.new(shape: String, location_name: "Ipv6Address"))
2043
2064
  NetworkInterface.struct_class = Types::NetworkInterface
2044
2065
 
2045
2066
  NetworkInterfaceList.member = Shapes::ShapeRef.new(shape: NetworkInterface, location_name: "NetworkInterface")
@@ -2320,6 +2341,8 @@ module Aws::Redshift
2320
2341
  RestoreFromClusterSnapshotMessage.add_member(:encrypted, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "Encrypted"))
2321
2342
  RestoreFromClusterSnapshotMessage.add_member(:manage_master_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterPassword"))
2322
2343
  RestoreFromClusterSnapshotMessage.add_member(:master_password_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterPasswordSecretKmsKeyId"))
2344
+ RestoreFromClusterSnapshotMessage.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "IpAddressType"))
2345
+ RestoreFromClusterSnapshotMessage.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
2323
2346
  RestoreFromClusterSnapshotMessage.struct_class = Types::RestoreFromClusterSnapshotMessage
2324
2347
 
2325
2348
  RestoreFromClusterSnapshotResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
@@ -2440,6 +2463,10 @@ module Aws::Redshift
2440
2463
 
2441
2464
  ScheduledSnapshotTimeList.member = Shapes::ShapeRef.new(shape: TStamp, location_name: "SnapshotTime")
2442
2465
 
2466
+ SecondaryClusterInfo.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone"))
2467
+ SecondaryClusterInfo.add_member(:cluster_nodes, Shapes::ShapeRef.new(shape: ClusterNodesList, location_name: "ClusterNodes"))
2468
+ SecondaryClusterInfo.struct_class = Types::SecondaryClusterInfo
2469
+
2443
2470
  Snapshot.add_member(:snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotIdentifier"))
2444
2471
  Snapshot.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ClusterIdentifier"))
2445
2472
  Snapshot.add_member(:snapshot_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "SnapshotCreateTime"))
@@ -2733,6 +2760,7 @@ module Aws::Redshift
2733
2760
  o.errors << Shapes::ShapeRef.new(shape: PartnerNotFoundFault)
2734
2761
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
2735
2762
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedPartnerIntegrationFault)
2763
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
2736
2764
  end)
2737
2765
 
2738
2766
  api.add_operation(:associate_data_share_consumer, Seahorse::Model::Operation.new.tap do |o|
@@ -2832,6 +2860,7 @@ module Aws::Redshift
2832
2860
  o.http_request_uri = "/"
2833
2861
  o.input = Shapes::ShapeRef.new(shape: CopyClusterSnapshotMessage)
2834
2862
  o.output = Shapes::ShapeRef.new(shape: CopyClusterSnapshotResult)
2863
+ o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
2835
2864
  o.errors << Shapes::ShapeRef.new(shape: ClusterSnapshotAlreadyExistsFault)
2836
2865
  o.errors << Shapes::ShapeRef.new(shape: ClusterSnapshotNotFoundFault)
2837
2866
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterSnapshotStateFault)
@@ -2878,6 +2907,8 @@ module Aws::Redshift
2878
2907
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterTrackFault)
2879
2908
  o.errors << Shapes::ShapeRef.new(shape: SnapshotScheduleNotFoundFault)
2880
2909
  o.errors << Shapes::ShapeRef.new(shape: InvalidRetentionPeriodFault)
2910
+ o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundFault)
2911
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
2881
2912
  end)
2882
2913
 
2883
2914
  api.add_operation(:create_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
@@ -3013,12 +3044,14 @@ module Aws::Redshift
3013
3044
  o.http_request_uri = "/"
3014
3045
  o.input = Shapes::ShapeRef.new(shape: CreateScheduledActionMessage)
3015
3046
  o.output = Shapes::ShapeRef.new(shape: ScheduledAction)
3047
+ o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
3016
3048
  o.errors << Shapes::ShapeRef.new(shape: ScheduledActionAlreadyExistsFault)
3017
3049
  o.errors << Shapes::ShapeRef.new(shape: ScheduledActionQuotaExceededFault)
3018
3050
  o.errors << Shapes::ShapeRef.new(shape: ScheduledActionTypeUnsupportedFault)
3019
3051
  o.errors << Shapes::ShapeRef.new(shape: InvalidScheduleFault)
3020
3052
  o.errors << Shapes::ShapeRef.new(shape: InvalidScheduledActionFault)
3021
3053
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedOperation)
3054
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3022
3055
  end)
3023
3056
 
3024
3057
  api.add_operation(:create_snapshot_copy_grant, Seahorse::Model::Operation.new.tap do |o|
@@ -3212,6 +3245,7 @@ module Aws::Redshift
3212
3245
  o.errors << Shapes::ShapeRef.new(shape: PartnerNotFoundFault)
3213
3246
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
3214
3247
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedPartnerIntegrationFault)
3248
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3215
3249
  end)
3216
3250
 
3217
3251
  api.add_operation(:delete_resource_policy, Seahorse::Model::Operation.new.tap do |o|
@@ -3637,6 +3671,7 @@ module Aws::Redshift
3637
3671
  o.input = Shapes::ShapeRef.new(shape: DescribeLoggingStatusMessage)
3638
3672
  o.output = Shapes::ShapeRef.new(shape: LoggingStatus)
3639
3673
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
3674
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3640
3675
  end)
3641
3676
 
3642
3677
  api.add_operation(:describe_node_configuration_options, Seahorse::Model::Operation.new.tap do |o|
@@ -3680,6 +3715,7 @@ module Aws::Redshift
3680
3715
  o.output = Shapes::ShapeRef.new(shape: DescribePartnersOutputMessage)
3681
3716
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
3682
3717
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedPartnerIntegrationFault)
3718
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3683
3719
  end)
3684
3720
 
3685
3721
  api.add_operation(:describe_reserved_node_exchange_status, Seahorse::Model::Operation.new.tap do |o|
@@ -3740,6 +3776,7 @@ module Aws::Redshift
3740
3776
  o.output = Shapes::ShapeRef.new(shape: ResizeProgressMessage)
3741
3777
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
3742
3778
  o.errors << Shapes::ShapeRef.new(shape: ResizeNotFoundFault)
3779
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3743
3780
  end)
3744
3781
 
3745
3782
  api.add_operation(:describe_scheduled_actions, Seahorse::Model::Operation.new.tap do |o|
@@ -3852,6 +3889,7 @@ module Aws::Redshift
3852
3889
  o.output = Shapes::ShapeRef.new(shape: LoggingStatus)
3853
3890
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
3854
3891
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
3892
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3855
3893
  end)
3856
3894
 
3857
3895
  api.add_operation(:disable_snapshot_copy, Seahorse::Model::Operation.new.tap do |o|
@@ -3864,6 +3902,7 @@ module Aws::Redshift
3864
3902
  o.errors << Shapes::ShapeRef.new(shape: SnapshotCopyAlreadyDisabledFault)
3865
3903
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
3866
3904
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedOperation)
3905
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3867
3906
  end)
3868
3907
 
3869
3908
  api.add_operation(:disassociate_data_share_consumer, Seahorse::Model::Operation.new.tap do |o|
@@ -3888,6 +3927,7 @@ module Aws::Redshift
3888
3927
  o.errors << Shapes::ShapeRef.new(shape: InvalidS3KeyPrefixFault)
3889
3928
  o.errors << Shapes::ShapeRef.new(shape: InvalidS3BucketNameFault)
3890
3929
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
3930
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3891
3931
  end)
3892
3932
 
3893
3933
  api.add_operation(:enable_snapshot_copy, Seahorse::Model::Operation.new.tap do |o|
@@ -3909,6 +3949,18 @@ module Aws::Redshift
3909
3949
  o.errors << Shapes::ShapeRef.new(shape: InvalidRetentionPeriodFault)
3910
3950
  end)
3911
3951
 
3952
+ api.add_operation(:failover_primary_compute, Seahorse::Model::Operation.new.tap do |o|
3953
+ o.name = "FailoverPrimaryCompute"
3954
+ o.http_method = "POST"
3955
+ o.http_request_uri = "/"
3956
+ o.input = Shapes::ShapeRef.new(shape: FailoverPrimaryComputeInputMessage)
3957
+ o.output = Shapes::ShapeRef.new(shape: FailoverPrimaryComputeResult)
3958
+ o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
3959
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
3960
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedOperation)
3961
+ o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
3962
+ end)
3963
+
3912
3964
  api.add_operation(:get_cluster_credentials, Seahorse::Model::Operation.new.tap do |o|
3913
3965
  o.name = "GetClusterCredentials"
3914
3966
  o.http_method = "POST"
@@ -4031,6 +4083,7 @@ module Aws::Redshift
4031
4083
  o.errors << Shapes::ShapeRef.new(shape: InvalidRetentionPeriodFault)
4032
4084
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4033
4085
  o.errors << Shapes::ShapeRef.new(shape: CustomCnameAssociationFault)
4086
+ o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundFault)
4034
4087
  end)
4035
4088
 
4036
4089
  api.add_operation(:modify_cluster_db_revision, Seahorse::Model::Operation.new.tap do |o|
@@ -4042,6 +4095,7 @@ module Aws::Redshift
4042
4095
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
4043
4096
  o.errors << Shapes::ShapeRef.new(shape: ClusterOnLatestRevisionFault)
4044
4097
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
4098
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4045
4099
  end)
4046
4100
 
4047
4101
  api.add_operation(:modify_cluster_iam_roles, Seahorse::Model::Operation.new.tap do |o|
@@ -4158,11 +4212,13 @@ module Aws::Redshift
4158
4212
  o.http_request_uri = "/"
4159
4213
  o.input = Shapes::ShapeRef.new(shape: ModifyScheduledActionMessage)
4160
4214
  o.output = Shapes::ShapeRef.new(shape: ScheduledAction)
4215
+ o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
4161
4216
  o.errors << Shapes::ShapeRef.new(shape: ScheduledActionNotFoundFault)
4162
4217
  o.errors << Shapes::ShapeRef.new(shape: ScheduledActionTypeUnsupportedFault)
4163
4218
  o.errors << Shapes::ShapeRef.new(shape: InvalidScheduleFault)
4164
4219
  o.errors << Shapes::ShapeRef.new(shape: InvalidScheduledActionFault)
4165
4220
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedOperation)
4221
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4166
4222
  end)
4167
4223
 
4168
4224
  api.add_operation(:modify_snapshot_copy_retention_period, Seahorse::Model::Operation.new.tap do |o|
@@ -4208,6 +4264,7 @@ module Aws::Redshift
4208
4264
  o.output = Shapes::ShapeRef.new(shape: PauseClusterResult)
4209
4265
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
4210
4266
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
4267
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4211
4268
  end)
4212
4269
 
4213
4270
  api.add_operation(:purchase_reserved_node_offering, Seahorse::Model::Operation.new.tap do |o|
@@ -4324,6 +4381,7 @@ module Aws::Redshift
4324
4381
  o.errors << Shapes::ShapeRef.new(shape: DependentServiceUnavailableFault)
4325
4382
  o.errors << Shapes::ShapeRef.new(shape: ReservedNodeAlreadyExistsFault)
4326
4383
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4384
+ o.errors << Shapes::ShapeRef.new(shape: Ipv6CidrBlockNotFoundFault)
4327
4385
  end)
4328
4386
 
4329
4387
  api.add_operation(:restore_table_from_cluster_snapshot, Seahorse::Model::Operation.new.tap do |o|
@@ -4350,6 +4408,7 @@ module Aws::Redshift
4350
4408
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
4351
4409
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
4352
4410
  o.errors << Shapes::ShapeRef.new(shape: InsufficientClusterCapacityFault)
4411
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4353
4412
  end)
4354
4413
 
4355
4414
  api.add_operation(:revoke_cluster_security_group_ingress, Seahorse::Model::Operation.new.tap do |o|
@@ -4399,6 +4458,7 @@ module Aws::Redshift
4399
4458
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
4400
4459
  o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
4401
4460
  o.errors << Shapes::ShapeRef.new(shape: DependentServiceRequestThrottlingFault)
4461
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4402
4462
  end)
4403
4463
 
4404
4464
  api.add_operation(:update_partner_status, Seahorse::Model::Operation.new.tap do |o|
@@ -4410,6 +4470,7 @@ module Aws::Redshift
4410
4470
  o.errors << Shapes::ShapeRef.new(shape: PartnerNotFoundFault)
4411
4471
  o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
4412
4472
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedPartnerIntegrationFault)
4473
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
4413
4474
  end)
4414
4475
  end
4415
4476
 
@@ -1272,6 +1272,20 @@ module Aws::Redshift
1272
1272
  end
1273
1273
  end
1274
1274
 
1275
+ class FailoverPrimaryCompute
1276
+ def self.build(context)
1277
+ unless context.config.regional_endpoint
1278
+ endpoint = context.config.endpoint.to_s
1279
+ end
1280
+ Aws::Redshift::EndpointParameters.new(
1281
+ region: context.config.region,
1282
+ use_dual_stack: context.config.use_dualstack_endpoint,
1283
+ use_fips: context.config.use_fips_endpoint,
1284
+ endpoint: endpoint,
1285
+ )
1286
+ end
1287
+ end
1288
+
1275
1289
  class GetClusterCredentials
1276
1290
  def self.build(context)
1277
1291
  unless context.config.regional_endpoint
@@ -111,6 +111,7 @@ module Aws::Redshift
111
111
  # * {InvalidTagFault}
112
112
  # * {InvalidUsageLimitFault}
113
113
  # * {InvalidVPCNetworkStateFault}
114
+ # * {Ipv6CidrBlockNotFoundFault}
114
115
  # * {LimitExceededFault}
115
116
  # * {NumberOfNodesPerClusterLimitExceededFault}
116
117
  # * {NumberOfNodesQuotaExceededFault}
@@ -1005,6 +1006,16 @@ module Aws::Redshift
1005
1006
  end
1006
1007
  end
1007
1008
 
1009
+ class Ipv6CidrBlockNotFoundFault < ServiceError
1010
+
1011
+ # @param [Seahorse::Client::RequestContext] context
1012
+ # @param [String] message
1013
+ # @param [Aws::Redshift::Types::Ipv6CidrBlockNotFoundFault] data
1014
+ def initialize(context, message, data = Aws::EmptyStructure.new)
1015
+ super(context, message, data)
1016
+ end
1017
+ end
1018
+
1008
1019
  class LimitExceededFault < ServiceError
1009
1020
 
1010
1021
  # @param [Seahorse::Client::RequestContext] context
@@ -236,6 +236,8 @@ module Aws::Redshift
236
236
  Aws::Redshift::Endpoints::EnableLogging.build(context)
237
237
  when :enable_snapshot_copy
238
238
  Aws::Redshift::Endpoints::EnableSnapshotCopy.build(context)
239
+ when :failover_primary_compute
240
+ Aws::Redshift::Endpoints::FailoverPrimaryCompute.build(context)
239
241
  when :get_cluster_credentials
240
242
  Aws::Redshift::Endpoints::GetClusterCredentials.build(context)
241
243
  when :get_cluster_credentials_with_iam
@@ -898,6 +898,21 @@ module Aws::Redshift
898
898
  # store the cluster's admin credentials secret.
899
899
  # @return [String]
900
900
  #
901
+ # @!attribute [rw] ip_address_type
902
+ # The IP address type for the cluster. Possible values are `ipv4` and
903
+ # `dualstack`.
904
+ # @return [String]
905
+ #
906
+ # @!attribute [rw] multi_az
907
+ # A boolean value that, if true, indicates that the cluster is
908
+ # deployed in two Availability Zones.
909
+ # @return [String]
910
+ #
911
+ # @!attribute [rw] multi_az_secondary
912
+ # The secondary compute unit of a cluster, if Multi-AZ deployment is
913
+ # turned on.
914
+ # @return [Types::SecondaryClusterInfo]
915
+ #
901
916
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
902
917
  #
903
918
  class Cluster < Struct.new(
@@ -957,7 +972,10 @@ module Aws::Redshift
957
972
  :custom_domain_certificate_arn,
958
973
  :custom_domain_certificate_expiry_date,
959
974
  :master_password_secret_arn,
960
- :master_password_secret_kms_key_id)
975
+ :master_password_secret_kms_key_id,
976
+ :ip_address_type,
977
+ :multi_az,
978
+ :multi_az_secondary)
961
979
  SENSITIVE = []
962
980
  include Aws::Structure
963
981
  end
@@ -1573,6 +1591,11 @@ module Aws::Redshift
1573
1591
  # The list of tags for the cluster subnet group.
1574
1592
  # @return [Array<Types::Tag>]
1575
1593
  #
1594
+ # @!attribute [rw] supported_cluster_ip_address_types
1595
+ # The IP address types supported by this cluster subnet group.
1596
+ # Possible values are `ipv4` and `dualstack`.
1597
+ # @return [Array<String>]
1598
+ #
1576
1599
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ClusterSubnetGroup AWS API Documentation
1577
1600
  #
1578
1601
  class ClusterSubnetGroup < Struct.new(
@@ -1581,7 +1604,8 @@ module Aws::Redshift
1581
1604
  :vpc_id,
1582
1605
  :subnet_group_status,
1583
1606
  :subnets,
1584
- :tags)
1607
+ :tags,
1608
+ :supported_cluster_ip_address_types)
1585
1609
  SENSITIVE = []
1586
1610
  include Aws::Structure
1587
1611
  end
@@ -2251,6 +2275,16 @@ module Aws::Redshift
2251
2275
  # parameter if `ManageMasterPassword` is true.
2252
2276
  # @return [String]
2253
2277
  #
2278
+ # @!attribute [rw] ip_address_type
2279
+ # The IP address types that the cluster supports. Possible values are
2280
+ # `ipv4` and `dualstack`.
2281
+ # @return [String]
2282
+ #
2283
+ # @!attribute [rw] multi_az
2284
+ # If true, Amazon Redshift will deploy the cluster in two Availability
2285
+ # Zones (AZ).
2286
+ # @return [Boolean]
2287
+ #
2254
2288
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
2255
2289
  #
2256
2290
  class CreateClusterMessage < Struct.new(
@@ -2289,7 +2323,9 @@ module Aws::Redshift
2289
2323
  :default_iam_role_arn,
2290
2324
  :load_sample_data,
2291
2325
  :manage_master_password,
2292
- :master_password_secret_kms_key_id)
2326
+ :master_password_secret_kms_key_id,
2327
+ :ip_address_type,
2328
+ :multi_az)
2293
2329
  SENSITIVE = [:master_user_password]
2294
2330
  include Aws::Structure
2295
2331
  end
@@ -6368,6 +6404,31 @@ module Aws::Redshift
6368
6404
  include Aws::Structure
6369
6405
  end
6370
6406
 
6407
+ # @!attribute [rw] cluster_identifier
6408
+ # The unique identifier of the cluster for which the primary compute
6409
+ # unit will be failed over to another Availability Zone.
6410
+ # @return [String]
6411
+ #
6412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/FailoverPrimaryComputeInputMessage AWS API Documentation
6413
+ #
6414
+ class FailoverPrimaryComputeInputMessage < Struct.new(
6415
+ :cluster_identifier)
6416
+ SENSITIVE = []
6417
+ include Aws::Structure
6418
+ end
6419
+
6420
+ # @!attribute [rw] cluster
6421
+ # Describes a cluster.
6422
+ # @return [Types::Cluster]
6423
+ #
6424
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/FailoverPrimaryComputeResult AWS API Documentation
6425
+ #
6426
+ class FailoverPrimaryComputeResult < Struct.new(
6427
+ :cluster)
6428
+ SENSITIVE = []
6429
+ include Aws::Structure
6430
+ end
6431
+
6371
6432
  # The request parameters to get cluster credentials.
6372
6433
  #
6373
6434
  # @!attribute [rw] db_user
@@ -7210,6 +7271,14 @@ module Aws::Redshift
7210
7271
  #
7211
7272
  class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
7212
7273
 
7274
+ # There are no subnets in your VPC with associated IPv6 CIDR blocks. To
7275
+ # use dual-stack mode, associate an IPv6 CIDR block with each subnet in
7276
+ # your VPC.
7277
+ #
7278
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Ipv6CidrBlockNotFoundFault AWS API Documentation
7279
+ #
7280
+ class Ipv6CidrBlockNotFoundFault < Aws::EmptyStructure; end
7281
+
7213
7282
  # The encryption key has exceeded its grant limit in Amazon Web Services
7214
7283
  # KMS.
7215
7284
  #
@@ -7804,6 +7873,17 @@ module Aws::Redshift
7804
7873
  # parameter if `ManageMasterPassword` is true.
7805
7874
  # @return [String]
7806
7875
  #
7876
+ # @!attribute [rw] ip_address_type
7877
+ # The IP address types that the cluster supports. Possible values are
7878
+ # `ipv4` and `dualstack`.
7879
+ # @return [String]
7880
+ #
7881
+ # @!attribute [rw] multi_az
7882
+ # If true and the cluster is currently only deployed in a single
7883
+ # Availability Zone, the cluster will be modified to be deployed in
7884
+ # two Availability Zones.
7885
+ # @return [Boolean]
7886
+ #
7807
7887
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMessage AWS API Documentation
7808
7888
  #
7809
7889
  class ModifyClusterMessage < Struct.new(
@@ -7833,7 +7913,9 @@ module Aws::Redshift
7833
7913
  :availability_zone,
7834
7914
  :port,
7835
7915
  :manage_master_password,
7836
- :master_password_secret_kms_key_id)
7916
+ :master_password_secret_kms_key_id,
7917
+ :ip_address_type,
7918
+ :multi_az)
7837
7919
  SENSITIVE = [:master_user_password]
7838
7920
  include Aws::Structure
7839
7921
  end
@@ -8309,13 +8391,18 @@ module Aws::Redshift
8309
8391
  # The Availability Zone.
8310
8392
  # @return [String]
8311
8393
  #
8394
+ # @!attribute [rw] ipv_6_address
8395
+ # The IPv6 address of the network interface within the subnet.
8396
+ # @return [String]
8397
+ #
8312
8398
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/NetworkInterface AWS API Documentation
8313
8399
  #
8314
8400
  class NetworkInterface < Struct.new(
8315
8401
  :network_interface_id,
8316
8402
  :subnet_id,
8317
8403
  :private_ip_address,
8318
- :availability_zone)
8404
+ :availability_zone,
8405
+ :ipv_6_address)
8319
8406
  SENSITIVE = []
8320
8407
  include Aws::Structure
8321
8408
  end
@@ -9760,6 +9847,16 @@ module Aws::Redshift
9760
9847
  # parameter if `ManageMasterPassword` is true.
9761
9848
  # @return [String]
9762
9849
  #
9850
+ # @!attribute [rw] ip_address_type
9851
+ # The IP address type for the cluster. Possible values are `ipv4` and
9852
+ # `dualstack`.
9853
+ # @return [String]
9854
+ #
9855
+ # @!attribute [rw] multi_az
9856
+ # If true, the snapshot will be restored to a cluster deployed in two
9857
+ # Availability Zones.
9858
+ # @return [Boolean]
9859
+ #
9763
9860
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
9764
9861
  #
9765
9862
  class RestoreFromClusterSnapshotMessage < Struct.new(
@@ -9797,7 +9894,9 @@ module Aws::Redshift
9797
9894
  :target_reserved_node_offering_id,
9798
9895
  :encrypted,
9799
9896
  :manage_master_password,
9800
- :master_password_secret_kms_key_id)
9897
+ :master_password_secret_kms_key_id,
9898
+ :ip_address_type,
9899
+ :multi_az)
9801
9900
  SENSITIVE = []
9802
9901
  include Aws::Structure
9803
9902
  end
@@ -10351,6 +10450,27 @@ module Aws::Redshift
10351
10450
  include Aws::Structure
10352
10451
  end
10353
10452
 
10453
+ # The AvailabilityZone and ClusterNodes information of the secondary
10454
+ # compute unit.
10455
+ #
10456
+ # @!attribute [rw] availability_zone
10457
+ # The name of the Availability Zone in which the secondary compute
10458
+ # unit of the cluster is located.
10459
+ # @return [String]
10460
+ #
10461
+ # @!attribute [rw] cluster_nodes
10462
+ # The nodes in the secondary compute unit.
10463
+ # @return [Array<Types::ClusterNode>]
10464
+ #
10465
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/SecondaryClusterInfo AWS API Documentation
10466
+ #
10467
+ class SecondaryClusterInfo < Struct.new(
10468
+ :availability_zone,
10469
+ :cluster_nodes)
10470
+ SENSITIVE = []
10471
+ include Aws::Structure
10472
+ end
10473
+
10354
10474
  # Describes a snapshot.
10355
10475
  #
10356
10476
  # @!attribute [rw] snapshot_identifier
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-redshift/customizations'
53
53
  # @!group service
54
54
  module Aws::Redshift
55
55
 
56
- GEM_VERSION = '1.100.0'
56
+ GEM_VERSION = '1.102.0'
57
57
 
58
58
  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.100.0
4
+ version: 1.102.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: 2023-10-26 00:00:00.000000000 Z
11
+ date: 2023-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core