aws-sdk-redshift 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-redshift.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +35 -10
- data/lib/aws-sdk-redshift/client_api.rb +13 -0
- data/lib/aws-sdk-redshift/types.rb +53 -14
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f8b00f26d906e0ca7ad8f0df0125054bcb9e781
|
4
|
+
data.tar.gz: a0c25c6ff8c5aad014d072e5a28ea0543a827dd8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2bdbdffe34d72a12e6ba4e3f71fbf64da1d3cfe63e54ac12769675097a4726482c71051190ad51e6e58ebfcc5d2e40e3e6bebf2b66453ecc1429e90e1fef28f
|
7
|
+
data.tar.gz: be0a41f94a124aa2a74e1f1ae373e73dc1e4a2389b558beb9a9c9ace052d6bf44cd20d9ec4ae4a578004a9ae659a065246a752965de5aed3c6e0f7aedb648d83
|
data/lib/aws-sdk-redshift.rb
CHANGED
@@ -504,8 +504,9 @@ module Aws::Redshift
|
|
504
504
|
# node types, go to [ Working with Clusters][1] in the *Amazon Redshift
|
505
505
|
# Cluster Management Guide*.
|
506
506
|
#
|
507
|
-
# Valid Values: `
|
508
|
-
# `ds2.8xlarge` \| `dc1.large` \| `dc1.8xlarge
|
507
|
+
# Valid Values: `ds2.xlarge` \| `ds2.8xlarge` \| `ds2.xlarge` \|
|
508
|
+
# `ds2.8xlarge` \| `dc1.large` \| `dc1.8xlarge` \| `dc2.large` \|
|
509
|
+
# `dc2.8xlarge`
|
509
510
|
#
|
510
511
|
#
|
511
512
|
#
|
@@ -517,7 +518,8 @@ module Aws::Redshift
|
|
517
518
|
#
|
518
519
|
# Constraints:
|
519
520
|
#
|
520
|
-
# * Must be 1 - 128 alphanumeric characters.
|
521
|
+
# * Must be 1 - 128 alphanumeric characters. The user name can't be
|
522
|
+
# `PUBLIC`.
|
521
523
|
#
|
522
524
|
# * First character must be a letter.
|
523
525
|
#
|
@@ -1191,6 +1193,8 @@ module Aws::Redshift
|
|
1191
1193
|
# resp.cluster_subnet_group.subnets #=> Array
|
1192
1194
|
# resp.cluster_subnet_group.subnets[0].subnet_identifier #=> String
|
1193
1195
|
# resp.cluster_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
1196
|
+
# resp.cluster_subnet_group.subnets[0].subnet_availability_zone.supported_platforms #=> Array
|
1197
|
+
# resp.cluster_subnet_group.subnets[0].subnet_availability_zone.supported_platforms[0].name #=> String
|
1194
1198
|
# resp.cluster_subnet_group.subnets[0].subnet_status #=> String
|
1195
1199
|
# resp.cluster_subnet_group.tags #=> Array
|
1196
1200
|
# resp.cluster_subnet_group.tags[0].key #=> String
|
@@ -2439,6 +2443,13 @@ module Aws::Redshift
|
|
2439
2443
|
# snapshots that have either or both of these tag values associated with
|
2440
2444
|
# them.
|
2441
2445
|
#
|
2446
|
+
# @option params [Boolean] :cluster_exists
|
2447
|
+
# A value that indicates whether to return snapshots only for an
|
2448
|
+
# existing cluster. Table-level restore can be performed only using a
|
2449
|
+
# snapshot of an existing cluster, that is, a cluster that has not been
|
2450
|
+
# deleted. If `ClusterExists` is set to `true`, `ClusterIdentifier` is
|
2451
|
+
# required.
|
2452
|
+
#
|
2442
2453
|
# @return [Types::SnapshotMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2443
2454
|
#
|
2444
2455
|
# * {Types::SnapshotMessage#marker #marker} => String
|
@@ -2457,6 +2468,7 @@ module Aws::Redshift
|
|
2457
2468
|
# owner_account: "String",
|
2458
2469
|
# tag_keys: ["String"],
|
2459
2470
|
# tag_values: ["String"],
|
2471
|
+
# cluster_exists: false,
|
2460
2472
|
# })
|
2461
2473
|
#
|
2462
2474
|
# @example Response structure
|
@@ -2590,6 +2602,8 @@ module Aws::Redshift
|
|
2590
2602
|
# resp.cluster_subnet_groups[0].subnets #=> Array
|
2591
2603
|
# resp.cluster_subnet_groups[0].subnets[0].subnet_identifier #=> String
|
2592
2604
|
# resp.cluster_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
|
2605
|
+
# resp.cluster_subnet_groups[0].subnets[0].subnet_availability_zone.supported_platforms #=> Array
|
2606
|
+
# resp.cluster_subnet_groups[0].subnets[0].subnet_availability_zone.supported_platforms[0].name #=> String
|
2593
2607
|
# resp.cluster_subnet_groups[0].subnets[0].subnet_status #=> String
|
2594
2608
|
# resp.cluster_subnet_groups[0].tags #=> Array
|
2595
2609
|
# resp.cluster_subnet_groups[0].tags[0].key #=> String
|
@@ -3491,6 +3505,8 @@ module Aws::Redshift
|
|
3491
3505
|
# resp.orderable_cluster_options[0].node_type #=> String
|
3492
3506
|
# resp.orderable_cluster_options[0].availability_zones #=> Array
|
3493
3507
|
# resp.orderable_cluster_options[0].availability_zones[0].name #=> String
|
3508
|
+
# resp.orderable_cluster_options[0].availability_zones[0].supported_platforms #=> Array
|
3509
|
+
# resp.orderable_cluster_options[0].availability_zones[0].supported_platforms[0].name #=> String
|
3494
3510
|
# resp.marker #=> String
|
3495
3511
|
#
|
3496
3512
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeOrderableClusterOptions AWS API Documentation
|
@@ -3567,6 +3583,7 @@ module Aws::Redshift
|
|
3567
3583
|
# resp.reserved_node_offerings[0].recurring_charges #=> Array
|
3568
3584
|
# resp.reserved_node_offerings[0].recurring_charges[0].recurring_charge_amount #=> Float
|
3569
3585
|
# resp.reserved_node_offerings[0].recurring_charges[0].recurring_charge_frequency #=> String
|
3586
|
+
# resp.reserved_node_offerings[0].reserved_node_offering_type #=> String, one of "Regular", "Upgradable"
|
3570
3587
|
#
|
3571
3588
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeOfferings AWS API Documentation
|
3572
3589
|
#
|
@@ -3632,6 +3649,7 @@ module Aws::Redshift
|
|
3632
3649
|
# resp.reserved_nodes[0].recurring_charges #=> Array
|
3633
3650
|
# resp.reserved_nodes[0].recurring_charges[0].recurring_charge_amount #=> Float
|
3634
3651
|
# resp.reserved_nodes[0].recurring_charges[0].recurring_charge_frequency #=> String
|
3652
|
+
# resp.reserved_nodes[0].reserved_node_offering_type #=> String, one of "Regular", "Upgradable"
|
3635
3653
|
#
|
3636
3654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodes AWS API Documentation
|
3637
3655
|
#
|
@@ -4386,7 +4404,8 @@ module Aws::Redshift
|
|
4386
4404
|
#
|
4387
4405
|
# Constraints:
|
4388
4406
|
#
|
4389
|
-
# * Must be 1 to 64 alphanumeric characters or hyphens
|
4407
|
+
# * Must be 1 to 64 alphanumeric characters or hyphens. The user name
|
4408
|
+
# can't be `PUBLIC`.
|
4390
4409
|
#
|
4391
4410
|
# * Must contain only lowercase letters, numbers, underscore, plus sign,
|
4392
4411
|
# period (dot), at symbol (@), or hyphen.
|
@@ -4546,8 +4565,8 @@ module Aws::Redshift
|
|
4546
4565
|
# restored. You can use DescribeResize to track the progress of the
|
4547
4566
|
# resize request.
|
4548
4567
|
#
|
4549
|
-
# Valid Values: `
|
4550
|
-
# `
|
4568
|
+
# Valid Values: `ds2.xlarge` \| `ds2.8xlarge` \| `dc1.large` \|
|
4569
|
+
# `dc1.8xlarge` \| `dc2.large` \| `dc2.8xlarge`
|
4551
4570
|
#
|
4552
4571
|
# @option params [Integer] :number_of_nodes
|
4553
4572
|
# The new number of nodes of the cluster. If you specify a new number of
|
@@ -5051,6 +5070,8 @@ module Aws::Redshift
|
|
5051
5070
|
# resp.cluster_subnet_group.subnets #=> Array
|
5052
5071
|
# resp.cluster_subnet_group.subnets[0].subnet_identifier #=> String
|
5053
5072
|
# resp.cluster_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
5073
|
+
# resp.cluster_subnet_group.subnets[0].subnet_availability_zone.supported_platforms #=> Array
|
5074
|
+
# resp.cluster_subnet_group.subnets[0].subnet_availability_zone.supported_platforms[0].name #=> String
|
5054
5075
|
# resp.cluster_subnet_group.subnets[0].subnet_status #=> String
|
5055
5076
|
# resp.cluster_subnet_group.tags #=> Array
|
5056
5077
|
# resp.cluster_subnet_group.tags[0].key #=> String
|
@@ -5319,6 +5340,7 @@ module Aws::Redshift
|
|
5319
5340
|
# resp.reserved_node.recurring_charges #=> Array
|
5320
5341
|
# resp.reserved_node.recurring_charges[0].recurring_charge_amount #=> Float
|
5321
5342
|
# resp.reserved_node.recurring_charges[0].recurring_charge_frequency #=> String
|
5343
|
+
# resp.reserved_node.reserved_node_offering_type #=> String, one of "Regular", "Upgradable"
|
5322
5344
|
#
|
5323
5345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PurchaseReservedNodeOffering AWS API Documentation
|
5324
5346
|
#
|
@@ -5670,11 +5692,14 @@ module Aws::Redshift
|
|
5670
5692
|
# taken. You can modify this if you are using any DS node type. In that
|
5671
5693
|
# case, you can choose to restore into another DS node type of the same
|
5672
5694
|
# size. For example, you can restore ds1.8xlarge into ds2.8xlarge, or
|
5673
|
-
#
|
5695
|
+
# ds1.xlarge into ds2.xlarge. If you have a DC instance type, you must
|
5674
5696
|
# restore into that same instance type and size. In other words, you can
|
5675
5697
|
# only restore a dc1.large instance type into another dc1.large instance
|
5676
|
-
# type
|
5677
|
-
#
|
5698
|
+
# type or dc2.large instance type. You can't restore dc1.8xlarge to
|
5699
|
+
# dc2.8xlarge. First restore to a dc1.8xlareg cluster, then resize to a
|
5700
|
+
# dc2.8large cluster. For more information about node types, see [ About
|
5701
|
+
# Clusters and Nodes][1] in the *Amazon Redshift Cluster Management
|
5702
|
+
# Guide*.
|
5678
5703
|
#
|
5679
5704
|
#
|
5680
5705
|
#
|
@@ -6178,7 +6203,7 @@ module Aws::Redshift
|
|
6178
6203
|
params: params,
|
6179
6204
|
config: config)
|
6180
6205
|
context[:gem_name] = 'aws-sdk-redshift'
|
6181
|
-
context[:gem_version] = '1.
|
6206
|
+
context[:gem_version] = '1.2.0'
|
6182
6207
|
Seahorse::Client::Request.new(handlers, context)
|
6183
6208
|
end
|
6184
6209
|
|
@@ -238,6 +238,7 @@ module Aws::Redshift
|
|
238
238
|
ReservedNodeOffering = Shapes::StructureShape.new(name: 'ReservedNodeOffering')
|
239
239
|
ReservedNodeOfferingList = Shapes::ListShape.new(name: 'ReservedNodeOfferingList')
|
240
240
|
ReservedNodeOfferingNotFoundFault = Shapes::StructureShape.new(name: 'ReservedNodeOfferingNotFoundFault')
|
241
|
+
ReservedNodeOfferingType = Shapes::StringShape.new(name: 'ReservedNodeOfferingType')
|
241
242
|
ReservedNodeOfferingsMessage = Shapes::StructureShape.new(name: 'ReservedNodeOfferingsMessage')
|
242
243
|
ReservedNodeQuotaExceededFault = Shapes::StructureShape.new(name: 'ReservedNodeQuotaExceededFault')
|
243
244
|
ReservedNodesMessage = Shapes::StructureShape.new(name: 'ReservedNodesMessage')
|
@@ -286,6 +287,8 @@ module Aws::Redshift
|
|
286
287
|
SubscriptionEventIdNotFoundFault = Shapes::StructureShape.new(name: 'SubscriptionEventIdNotFoundFault')
|
287
288
|
SubscriptionNotFoundFault = Shapes::StructureShape.new(name: 'SubscriptionNotFoundFault')
|
288
289
|
SubscriptionSeverityNotFoundFault = Shapes::StructureShape.new(name: 'SubscriptionSeverityNotFoundFault')
|
290
|
+
SupportedPlatform = Shapes::StructureShape.new(name: 'SupportedPlatform')
|
291
|
+
SupportedPlatformsList = Shapes::ListShape.new(name: 'SupportedPlatformsList')
|
289
292
|
TStamp = Shapes::TimestampShape.new(name: 'TStamp')
|
290
293
|
TableRestoreNotFoundFault = Shapes::StructureShape.new(name: 'TableRestoreNotFoundFault')
|
291
294
|
TableRestoreStatus = Shapes::StructureShape.new(name: 'TableRestoreStatus')
|
@@ -332,6 +335,7 @@ module Aws::Redshift
|
|
332
335
|
AuthorizeSnapshotAccessResult.struct_class = Types::AuthorizeSnapshotAccessResult
|
333
336
|
|
334
337
|
AvailabilityZone.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
338
|
+
AvailabilityZone.add_member(:supported_platforms, Shapes::ShapeRef.new(shape: SupportedPlatformsList, location_name: "SupportedPlatforms"))
|
335
339
|
AvailabilityZone.struct_class = Types::AvailabilityZone
|
336
340
|
|
337
341
|
AvailabilityZoneList.member = Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "AvailabilityZone")
|
@@ -673,6 +677,7 @@ module Aws::Redshift
|
|
673
677
|
DescribeClusterSnapshotsMessage.add_member(:owner_account, Shapes::ShapeRef.new(shape: String, location_name: "OwnerAccount"))
|
674
678
|
DescribeClusterSnapshotsMessage.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, location_name: "TagKeys"))
|
675
679
|
DescribeClusterSnapshotsMessage.add_member(:tag_values, Shapes::ShapeRef.new(shape: TagValueList, location_name: "TagValues"))
|
680
|
+
DescribeClusterSnapshotsMessage.add_member(:cluster_exists, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ClusterExists"))
|
676
681
|
DescribeClusterSnapshotsMessage.struct_class = Types::DescribeClusterSnapshotsMessage
|
677
682
|
|
678
683
|
DescribeClusterSubnetGroupsMessage.add_member(:cluster_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "ClusterSubnetGroupName"))
|
@@ -1062,6 +1067,7 @@ module Aws::Redshift
|
|
1062
1067
|
ReservedNode.add_member(:state, Shapes::ShapeRef.new(shape: String, location_name: "State"))
|
1063
1068
|
ReservedNode.add_member(:offering_type, Shapes::ShapeRef.new(shape: String, location_name: "OfferingType"))
|
1064
1069
|
ReservedNode.add_member(:recurring_charges, Shapes::ShapeRef.new(shape: RecurringChargeList, location_name: "RecurringCharges"))
|
1070
|
+
ReservedNode.add_member(:reserved_node_offering_type, Shapes::ShapeRef.new(shape: ReservedNodeOfferingType, location_name: "ReservedNodeOfferingType"))
|
1065
1071
|
ReservedNode.struct_class = Types::ReservedNode
|
1066
1072
|
|
1067
1073
|
ReservedNodeList.member = Shapes::ShapeRef.new(shape: ReservedNode, location_name: "ReservedNode")
|
@@ -1074,6 +1080,7 @@ module Aws::Redshift
|
|
1074
1080
|
ReservedNodeOffering.add_member(:currency_code, Shapes::ShapeRef.new(shape: String, location_name: "CurrencyCode"))
|
1075
1081
|
ReservedNodeOffering.add_member(:offering_type, Shapes::ShapeRef.new(shape: String, location_name: "OfferingType"))
|
1076
1082
|
ReservedNodeOffering.add_member(:recurring_charges, Shapes::ShapeRef.new(shape: RecurringChargeList, location_name: "RecurringCharges"))
|
1083
|
+
ReservedNodeOffering.add_member(:reserved_node_offering_type, Shapes::ShapeRef.new(shape: ReservedNodeOfferingType, location_name: "ReservedNodeOfferingType"))
|
1077
1084
|
ReservedNodeOffering.struct_class = Types::ReservedNodeOffering
|
1078
1085
|
|
1079
1086
|
ReservedNodeOfferingList.member = Shapes::ShapeRef.new(shape: ReservedNodeOffering, location_name: "ReservedNodeOffering")
|
@@ -1237,6 +1244,11 @@ module Aws::Redshift
|
|
1237
1244
|
|
1238
1245
|
SubnetList.member = Shapes::ShapeRef.new(shape: Subnet, location_name: "Subnet")
|
1239
1246
|
|
1247
|
+
SupportedPlatform.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
1248
|
+
SupportedPlatform.struct_class = Types::SupportedPlatform
|
1249
|
+
|
1250
|
+
SupportedPlatformsList.member = Shapes::ShapeRef.new(shape: SupportedPlatform, location_name: "SupportedPlatform")
|
1251
|
+
|
1240
1252
|
TableRestoreStatus.add_member(:table_restore_request_id, Shapes::ShapeRef.new(shape: String, location_name: "TableRestoreRequestId"))
|
1241
1253
|
TableRestoreStatus.add_member(:status, Shapes::ShapeRef.new(shape: TableRestoreStatusType, location_name: "Status"))
|
1242
1254
|
TableRestoreStatus.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -1645,6 +1657,7 @@ module Aws::Redshift
|
|
1645
1657
|
o.http_request_uri = "/"
|
1646
1658
|
o.input = Shapes::ShapeRef.new(shape: DescribeClusterSnapshotsMessage)
|
1647
1659
|
o.output = Shapes::ShapeRef.new(shape: SnapshotMessage)
|
1660
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
1648
1661
|
o.errors << Shapes::ShapeRef.new(shape: ClusterSnapshotNotFoundFault)
|
1649
1662
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTagFault)
|
1650
1663
|
o[:pager] = Aws::Pager.new(
|
@@ -135,10 +135,14 @@ module Aws::Redshift
|
|
135
135
|
# The name of the availability zone.
|
136
136
|
# @return [String]
|
137
137
|
#
|
138
|
+
# @!attribute [rw] supported_platforms
|
139
|
+
# @return [Array<Types::SupportedPlatform>]
|
140
|
+
#
|
138
141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AvailabilityZone AWS API Documentation
|
139
142
|
#
|
140
143
|
class AvailabilityZone < Struct.new(
|
141
|
-
:name
|
144
|
+
:name,
|
145
|
+
:supported_platforms)
|
142
146
|
include Aws::Structure
|
143
147
|
end
|
144
148
|
|
@@ -1057,8 +1061,9 @@ module Aws::Redshift
|
|
1057
1061
|
# about node types, go to [ Working with Clusters][1] in the *Amazon
|
1058
1062
|
# Redshift Cluster Management Guide*.
|
1059
1063
|
#
|
1060
|
-
# Valid Values: `
|
1061
|
-
# `ds2.8xlarge` \| `dc1.large` \| `dc1.8xlarge
|
1064
|
+
# Valid Values: `ds2.xlarge` \| `ds2.8xlarge` \| `ds2.xlarge` \|
|
1065
|
+
# `ds2.8xlarge` \| `dc1.large` \| `dc1.8xlarge` \| `dc2.large` \|
|
1066
|
+
# `dc2.8xlarge`
|
1062
1067
|
#
|
1063
1068
|
#
|
1064
1069
|
#
|
@@ -1071,7 +1076,8 @@ module Aws::Redshift
|
|
1071
1076
|
#
|
1072
1077
|
# Constraints:
|
1073
1078
|
#
|
1074
|
-
# * Must be 1 - 128 alphanumeric characters.
|
1079
|
+
# * Must be 1 - 128 alphanumeric characters. The user name can't be
|
1080
|
+
# `PUBLIC`.
|
1075
1081
|
#
|
1076
1082
|
# * First character must be a letter.
|
1077
1083
|
#
|
@@ -2493,6 +2499,7 @@ module Aws::Redshift
|
|
2493
2499
|
# owner_account: "String",
|
2494
2500
|
# tag_keys: ["String"],
|
2495
2501
|
# tag_values: ["String"],
|
2502
|
+
# cluster_exists: false,
|
2496
2503
|
# }
|
2497
2504
|
#
|
2498
2505
|
# @!attribute [rw] cluster_identifier
|
@@ -2587,6 +2594,14 @@ module Aws::Redshift
|
|
2587
2594
|
# associated with them.
|
2588
2595
|
# @return [Array<String>]
|
2589
2596
|
#
|
2597
|
+
# @!attribute [rw] cluster_exists
|
2598
|
+
# A value that indicates whether to return snapshots only for an
|
2599
|
+
# existing cluster. Table-level restore can be performed only using a
|
2600
|
+
# snapshot of an existing cluster, that is, a cluster that has not
|
2601
|
+
# been deleted. If `ClusterExists` is set to `true`,
|
2602
|
+
# `ClusterIdentifier` is required.
|
2603
|
+
# @return [Boolean]
|
2604
|
+
#
|
2590
2605
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeClusterSnapshotsMessage AWS API Documentation
|
2591
2606
|
#
|
2592
2607
|
class DescribeClusterSnapshotsMessage < Struct.new(
|
@@ -2599,7 +2614,8 @@ module Aws::Redshift
|
|
2599
2614
|
:marker,
|
2600
2615
|
:owner_account,
|
2601
2616
|
:tag_keys,
|
2602
|
-
:tag_values
|
2617
|
+
:tag_values,
|
2618
|
+
:cluster_exists)
|
2603
2619
|
include Aws::Structure
|
2604
2620
|
end
|
2605
2621
|
|
@@ -4122,7 +4138,8 @@ module Aws::Redshift
|
|
4122
4138
|
#
|
4123
4139
|
# Constraints:
|
4124
4140
|
#
|
4125
|
-
# * Must be 1 to 64 alphanumeric characters or hyphens
|
4141
|
+
# * Must be 1 to 64 alphanumeric characters or hyphens. The user name
|
4142
|
+
# can't be `PUBLIC`.
|
4126
4143
|
#
|
4127
4144
|
# * Must contain only lowercase letters, numbers, underscore, plus
|
4128
4145
|
# sign, period (dot), at symbol (@), or hyphen.
|
@@ -4523,8 +4540,8 @@ module Aws::Redshift
|
|
4523
4540
|
# the cluster are restored. You can use DescribeResize to track the
|
4524
4541
|
# progress of the resize request.
|
4525
4542
|
#
|
4526
|
-
# Valid Values: `
|
4527
|
-
# `
|
4543
|
+
# Valid Values: `ds2.xlarge` \| `ds2.8xlarge` \| `dc1.large` \|
|
4544
|
+
# `dc1.8xlarge` \| `dc2.large` \| `dc2.8xlarge`
|
4528
4545
|
# @return [String]
|
4529
4546
|
#
|
4530
4547
|
# @!attribute [rw] number_of_nodes
|
@@ -5344,6 +5361,9 @@ module Aws::Redshift
|
|
5344
5361
|
# The recurring charges for the reserved node.
|
5345
5362
|
# @return [Array<Types::RecurringCharge>]
|
5346
5363
|
#
|
5364
|
+
# @!attribute [rw] reserved_node_offering_type
|
5365
|
+
# @return [String]
|
5366
|
+
#
|
5347
5367
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNode AWS API Documentation
|
5348
5368
|
#
|
5349
5369
|
class ReservedNode < Struct.new(
|
@@ -5358,7 +5378,8 @@ module Aws::Redshift
|
|
5358
5378
|
:node_count,
|
5359
5379
|
:state,
|
5360
5380
|
:offering_type,
|
5361
|
-
:recurring_charges
|
5381
|
+
:recurring_charges,
|
5382
|
+
:reserved_node_offering_type)
|
5362
5383
|
include Aws::Structure
|
5363
5384
|
end
|
5364
5385
|
|
@@ -5402,6 +5423,9 @@ module Aws::Redshift
|
|
5402
5423
|
# effect for heavy-utilization reserved nodes.
|
5403
5424
|
# @return [Array<Types::RecurringCharge>]
|
5404
5425
|
#
|
5426
|
+
# @!attribute [rw] reserved_node_offering_type
|
5427
|
+
# @return [String]
|
5428
|
+
#
|
5405
5429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeOffering AWS API Documentation
|
5406
5430
|
#
|
5407
5431
|
class ReservedNodeOffering < Struct.new(
|
@@ -5412,7 +5436,8 @@ module Aws::Redshift
|
|
5412
5436
|
:usage_price,
|
5413
5437
|
:currency_code,
|
5414
5438
|
:offering_type,
|
5415
|
-
:recurring_charges
|
5439
|
+
:recurring_charges,
|
5440
|
+
:reserved_node_offering_type)
|
5416
5441
|
include Aws::Structure
|
5417
5442
|
end
|
5418
5443
|
|
@@ -5801,12 +5826,14 @@ module Aws::Redshift
|
|
5801
5826
|
# taken. You can modify this if you are using any DS node type. In
|
5802
5827
|
# that case, you can choose to restore into another DS node type of
|
5803
5828
|
# the same size. For example, you can restore ds1.8xlarge into
|
5804
|
-
# ds2.8xlarge, or
|
5829
|
+
# ds2.8xlarge, or ds1.xlarge into ds2.xlarge. If you have a DC
|
5805
5830
|
# instance type, you must restore into that same instance type and
|
5806
5831
|
# size. In other words, you can only restore a dc1.large instance type
|
5807
|
-
# into another dc1.large instance type.
|
5808
|
-
#
|
5809
|
-
#
|
5832
|
+
# into another dc1.large instance type or dc2.large instance type. You
|
5833
|
+
# can't restore dc1.8xlarge to dc2.8xlarge. First restore to a
|
5834
|
+
# dc1.8xlareg cluster, then resize to a dc2.8large cluster. For more
|
5835
|
+
# information about node types, see [ About Clusters and Nodes][1] in
|
5836
|
+
# the *Amazon Redshift Cluster Management Guide*.
|
5810
5837
|
#
|
5811
5838
|
#
|
5812
5839
|
#
|
@@ -6439,6 +6466,18 @@ module Aws::Redshift
|
|
6439
6466
|
include Aws::Structure
|
6440
6467
|
end
|
6441
6468
|
|
6469
|
+
# A list of supported platforms for orderable clusters.
|
6470
|
+
#
|
6471
|
+
# @!attribute [rw] name
|
6472
|
+
# @return [String]
|
6473
|
+
#
|
6474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/SupportedPlatform AWS API Documentation
|
6475
|
+
#
|
6476
|
+
class SupportedPlatform < Struct.new(
|
6477
|
+
:name)
|
6478
|
+
include Aws::Structure
|
6479
|
+
end
|
6480
|
+
|
6442
6481
|
# Describes the status of a RestoreTableFromClusterSnapshot operation.
|
6443
6482
|
#
|
6444
6483
|
# @!attribute [rw] table_restore_request_id
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-redshift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.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:
|
11
|
+
date: 2018-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
78
|
rubyforge_project:
|
79
|
-
rubygems_version: 2.5.
|
79
|
+
rubygems_version: 2.5.2.2
|
80
80
|
signing_key:
|
81
81
|
specification_version: 4
|
82
82
|
summary: AWS SDK for Ruby - Amazon Redshift
|