aws-sdk-redshift 1.59.0 → 1.64.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +323 -8
- data/lib/aws-sdk-redshift/client_api.rb +143 -0
- data/lib/aws-sdk-redshift/errors.rb +22 -0
- data/lib/aws-sdk-redshift/types.rb +361 -10
- metadata +3 -4
@@ -22,6 +22,9 @@ module Aws::Redshift
|
|
22
22
|
AccountWithRestoreAccess = Shapes::StructureShape.new(name: 'AccountWithRestoreAccess')
|
23
23
|
AccountsWithRestoreAccessList = Shapes::ListShape.new(name: 'AccountsWithRestoreAccessList')
|
24
24
|
ActionType = Shapes::StringShape.new(name: 'ActionType')
|
25
|
+
AquaConfiguration = Shapes::StructureShape.new(name: 'AquaConfiguration')
|
26
|
+
AquaConfigurationStatus = Shapes::StringShape.new(name: 'AquaConfigurationStatus')
|
27
|
+
AquaStatus = Shapes::StringShape.new(name: 'AquaStatus')
|
25
28
|
AssociatedClusterList = Shapes::ListShape.new(name: 'AssociatedClusterList')
|
26
29
|
AttributeList = Shapes::ListShape.new(name: 'AttributeList')
|
27
30
|
AttributeNameList = Shapes::ListShape.new(name: 'AttributeNameList')
|
@@ -173,6 +176,8 @@ module Aws::Redshift
|
|
173
176
|
DescribeLoggingStatusMessage = Shapes::StructureShape.new(name: 'DescribeLoggingStatusMessage')
|
174
177
|
DescribeNodeConfigurationOptionsMessage = Shapes::StructureShape.new(name: 'DescribeNodeConfigurationOptionsMessage')
|
175
178
|
DescribeOrderableClusterOptionsMessage = Shapes::StructureShape.new(name: 'DescribeOrderableClusterOptionsMessage')
|
179
|
+
DescribePartnersInputMessage = Shapes::StructureShape.new(name: 'DescribePartnersInputMessage')
|
180
|
+
DescribePartnersOutputMessage = Shapes::StructureShape.new(name: 'DescribePartnersOutputMessage')
|
176
181
|
DescribeReservedNodeOfferingsMessage = Shapes::StructureShape.new(name: 'DescribeReservedNodeOfferingsMessage')
|
177
182
|
DescribeReservedNodesMessage = Shapes::StructureShape.new(name: 'DescribeReservedNodesMessage')
|
178
183
|
DescribeResizeMessage = Shapes::StructureShape.new(name: 'DescribeResizeMessage')
|
@@ -283,6 +288,8 @@ module Aws::Redshift
|
|
283
288
|
LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
|
284
289
|
MaintenanceTrack = Shapes::StructureShape.new(name: 'MaintenanceTrack')
|
285
290
|
Mode = Shapes::StringShape.new(name: 'Mode')
|
291
|
+
ModifyAquaInputMessage = Shapes::StructureShape.new(name: 'ModifyAquaInputMessage')
|
292
|
+
ModifyAquaOutputMessage = Shapes::StructureShape.new(name: 'ModifyAquaOutputMessage')
|
286
293
|
ModifyClusterDbRevisionMessage = Shapes::StructureShape.new(name: 'ModifyClusterDbRevisionMessage')
|
287
294
|
ModifyClusterDbRevisionResult = Shapes::StructureShape.new(name: 'ModifyClusterDbRevisionResult')
|
288
295
|
ModifyClusterIamRolesMessage = Shapes::StructureShape.new(name: 'ModifyClusterIamRolesMessage')
|
@@ -323,6 +330,17 @@ module Aws::Redshift
|
|
323
330
|
ParameterApplyType = Shapes::StringShape.new(name: 'ParameterApplyType')
|
324
331
|
ParameterGroupList = Shapes::ListShape.new(name: 'ParameterGroupList')
|
325
332
|
ParametersList = Shapes::ListShape.new(name: 'ParametersList')
|
333
|
+
PartnerIntegrationAccountId = Shapes::StringShape.new(name: 'PartnerIntegrationAccountId')
|
334
|
+
PartnerIntegrationClusterIdentifier = Shapes::StringShape.new(name: 'PartnerIntegrationClusterIdentifier')
|
335
|
+
PartnerIntegrationDatabaseName = Shapes::StringShape.new(name: 'PartnerIntegrationDatabaseName')
|
336
|
+
PartnerIntegrationInfo = Shapes::StructureShape.new(name: 'PartnerIntegrationInfo')
|
337
|
+
PartnerIntegrationInfoList = Shapes::ListShape.new(name: 'PartnerIntegrationInfoList')
|
338
|
+
PartnerIntegrationInputMessage = Shapes::StructureShape.new(name: 'PartnerIntegrationInputMessage')
|
339
|
+
PartnerIntegrationOutputMessage = Shapes::StructureShape.new(name: 'PartnerIntegrationOutputMessage')
|
340
|
+
PartnerIntegrationPartnerName = Shapes::StringShape.new(name: 'PartnerIntegrationPartnerName')
|
341
|
+
PartnerIntegrationStatus = Shapes::StringShape.new(name: 'PartnerIntegrationStatus')
|
342
|
+
PartnerIntegrationStatusMessage = Shapes::StringShape.new(name: 'PartnerIntegrationStatusMessage')
|
343
|
+
PartnerNotFoundFault = Shapes::StructureShape.new(name: 'PartnerNotFoundFault')
|
326
344
|
PauseClusterMessage = Shapes::StructureShape.new(name: 'PauseClusterMessage')
|
327
345
|
PauseClusterResult = Shapes::StructureShape.new(name: 'PauseClusterResult')
|
328
346
|
PendingActionsList = Shapes::ListShape.new(name: 'PendingActionsList')
|
@@ -450,9 +468,11 @@ module Aws::Redshift
|
|
450
468
|
TrackList = Shapes::ListShape.new(name: 'TrackList')
|
451
469
|
TrackListMessage = Shapes::StructureShape.new(name: 'TrackListMessage')
|
452
470
|
UnauthorizedOperation = Shapes::StructureShape.new(name: 'UnauthorizedOperation')
|
471
|
+
UnauthorizedPartnerIntegrationFault = Shapes::StructureShape.new(name: 'UnauthorizedPartnerIntegrationFault')
|
453
472
|
UnknownSnapshotCopyRegionFault = Shapes::StructureShape.new(name: 'UnknownSnapshotCopyRegionFault')
|
454
473
|
UnsupportedOperationFault = Shapes::StructureShape.new(name: 'UnsupportedOperationFault')
|
455
474
|
UnsupportedOptionFault = Shapes::StructureShape.new(name: 'UnsupportedOptionFault')
|
475
|
+
UpdatePartnerStatusInputMessage = Shapes::StructureShape.new(name: 'UpdatePartnerStatusInputMessage')
|
456
476
|
UpdateTarget = Shapes::StructureShape.new(name: 'UpdateTarget')
|
457
477
|
UsageLimit = Shapes::StructureShape.new(name: 'UsageLimit')
|
458
478
|
UsageLimitAlreadyExistsFault = Shapes::StructureShape.new(name: 'UsageLimitAlreadyExistsFault')
|
@@ -495,6 +515,10 @@ module Aws::Redshift
|
|
495
515
|
|
496
516
|
AccountsWithRestoreAccessList.member = Shapes::ShapeRef.new(shape: AccountWithRestoreAccess, location_name: "AccountWithRestoreAccess")
|
497
517
|
|
518
|
+
AquaConfiguration.add_member(:aqua_status, Shapes::ShapeRef.new(shape: AquaStatus, location_name: "AquaStatus"))
|
519
|
+
AquaConfiguration.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
520
|
+
AquaConfiguration.struct_class = Types::AquaConfiguration
|
521
|
+
|
498
522
|
AssociatedClusterList.member = Shapes::ShapeRef.new(shape: ClusterAssociatedToSchedule, location_name: "ClusterAssociatedToSchedule")
|
499
523
|
|
500
524
|
AttributeList.member = Shapes::ShapeRef.new(shape: AccountAttribute, location_name: "AccountAttribute")
|
@@ -618,6 +642,7 @@ module Aws::Redshift
|
|
618
642
|
Cluster.add_member(:availability_zone_relocation_status, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZoneRelocationStatus"))
|
619
643
|
Cluster.add_member(:cluster_namespace_arn, Shapes::ShapeRef.new(shape: String, location_name: "ClusterNamespaceArn"))
|
620
644
|
Cluster.add_member(:total_storage_capacity_in_mega_bytes, Shapes::ShapeRef.new(shape: LongOptional, location_name: "TotalStorageCapacityInMegaBytes"))
|
645
|
+
Cluster.add_member(:aqua_configuration, Shapes::ShapeRef.new(shape: AquaConfiguration, location_name: "AquaConfiguration"))
|
621
646
|
Cluster.struct_class = Types::Cluster
|
622
647
|
|
623
648
|
ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
|
@@ -820,6 +845,7 @@ module Aws::Redshift
|
|
820
845
|
CreateClusterMessage.add_member(:maintenance_track_name, Shapes::ShapeRef.new(shape: String, location_name: "MaintenanceTrackName"))
|
821
846
|
CreateClusterMessage.add_member(:snapshot_schedule_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotScheduleIdentifier"))
|
822
847
|
CreateClusterMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
|
848
|
+
CreateClusterMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
823
849
|
CreateClusterMessage.struct_class = Types::CreateClusterMessage
|
824
850
|
|
825
851
|
CreateClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
|
@@ -1164,6 +1190,15 @@ module Aws::Redshift
|
|
1164
1190
|
DescribeOrderableClusterOptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1165
1191
|
DescribeOrderableClusterOptionsMessage.struct_class = Types::DescribeOrderableClusterOptionsMessage
|
1166
1192
|
|
1193
|
+
DescribePartnersInputMessage.add_member(:account_id, Shapes::ShapeRef.new(shape: PartnerIntegrationAccountId, required: true, location_name: "AccountId"))
|
1194
|
+
DescribePartnersInputMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: PartnerIntegrationClusterIdentifier, required: true, location_name: "ClusterIdentifier"))
|
1195
|
+
DescribePartnersInputMessage.add_member(:database_name, Shapes::ShapeRef.new(shape: PartnerIntegrationDatabaseName, location_name: "DatabaseName"))
|
1196
|
+
DescribePartnersInputMessage.add_member(:partner_name, Shapes::ShapeRef.new(shape: PartnerIntegrationPartnerName, location_name: "PartnerName"))
|
1197
|
+
DescribePartnersInputMessage.struct_class = Types::DescribePartnersInputMessage
|
1198
|
+
|
1199
|
+
DescribePartnersOutputMessage.add_member(:partner_integration_info_list, Shapes::ShapeRef.new(shape: PartnerIntegrationInfoList, location_name: "PartnerIntegrationInfoList"))
|
1200
|
+
DescribePartnersOutputMessage.struct_class = Types::DescribePartnersOutputMessage
|
1201
|
+
|
1167
1202
|
DescribeReservedNodeOfferingsMessage.add_member(:reserved_node_offering_id, Shapes::ShapeRef.new(shape: String, location_name: "ReservedNodeOfferingId"))
|
1168
1203
|
DescribeReservedNodeOfferingsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
1169
1204
|
DescribeReservedNodeOfferingsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
@@ -1526,6 +1561,13 @@ module Aws::Redshift
|
|
1526
1561
|
MaintenanceTrack.add_member(:update_targets, Shapes::ShapeRef.new(shape: EligibleTracksToUpdateList, location_name: "UpdateTargets"))
|
1527
1562
|
MaintenanceTrack.struct_class = Types::MaintenanceTrack
|
1528
1563
|
|
1564
|
+
ModifyAquaInputMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
1565
|
+
ModifyAquaInputMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
1566
|
+
ModifyAquaInputMessage.struct_class = Types::ModifyAquaInputMessage
|
1567
|
+
|
1568
|
+
ModifyAquaOutputMessage.add_member(:aqua_configuration, Shapes::ShapeRef.new(shape: AquaConfiguration, location_name: "AquaConfiguration"))
|
1569
|
+
ModifyAquaOutputMessage.struct_class = Types::ModifyAquaOutputMessage
|
1570
|
+
|
1529
1571
|
ModifyClusterDbRevisionMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
1530
1572
|
ModifyClusterDbRevisionMessage.add_member(:revision_target, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RevisionTarget"))
|
1531
1573
|
ModifyClusterDbRevisionMessage.struct_class = Types::ModifyClusterDbRevisionMessage
|
@@ -1708,6 +1750,28 @@ module Aws::Redshift
|
|
1708
1750
|
|
1709
1751
|
ParametersList.member = Shapes::ShapeRef.new(shape: Parameter, location_name: "Parameter")
|
1710
1752
|
|
1753
|
+
PartnerIntegrationInfo.add_member(:database_name, Shapes::ShapeRef.new(shape: PartnerIntegrationDatabaseName, location_name: "DatabaseName"))
|
1754
|
+
PartnerIntegrationInfo.add_member(:partner_name, Shapes::ShapeRef.new(shape: PartnerIntegrationPartnerName, location_name: "PartnerName"))
|
1755
|
+
PartnerIntegrationInfo.add_member(:status, Shapes::ShapeRef.new(shape: PartnerIntegrationStatus, location_name: "Status"))
|
1756
|
+
PartnerIntegrationInfo.add_member(:status_message, Shapes::ShapeRef.new(shape: PartnerIntegrationStatusMessage, location_name: "StatusMessage"))
|
1757
|
+
PartnerIntegrationInfo.add_member(:created_at, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreatedAt"))
|
1758
|
+
PartnerIntegrationInfo.add_member(:updated_at, Shapes::ShapeRef.new(shape: TStamp, location_name: "UpdatedAt"))
|
1759
|
+
PartnerIntegrationInfo.struct_class = Types::PartnerIntegrationInfo
|
1760
|
+
|
1761
|
+
PartnerIntegrationInfoList.member = Shapes::ShapeRef.new(shape: PartnerIntegrationInfo, location_name: "PartnerIntegrationInfo")
|
1762
|
+
|
1763
|
+
PartnerIntegrationInputMessage.add_member(:account_id, Shapes::ShapeRef.new(shape: PartnerIntegrationAccountId, required: true, location_name: "AccountId"))
|
1764
|
+
PartnerIntegrationInputMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: PartnerIntegrationClusterIdentifier, required: true, location_name: "ClusterIdentifier"))
|
1765
|
+
PartnerIntegrationInputMessage.add_member(:database_name, Shapes::ShapeRef.new(shape: PartnerIntegrationDatabaseName, required: true, location_name: "DatabaseName"))
|
1766
|
+
PartnerIntegrationInputMessage.add_member(:partner_name, Shapes::ShapeRef.new(shape: PartnerIntegrationPartnerName, required: true, location_name: "PartnerName"))
|
1767
|
+
PartnerIntegrationInputMessage.struct_class = Types::PartnerIntegrationInputMessage
|
1768
|
+
|
1769
|
+
PartnerIntegrationOutputMessage.add_member(:database_name, Shapes::ShapeRef.new(shape: PartnerIntegrationDatabaseName, location_name: "DatabaseName"))
|
1770
|
+
PartnerIntegrationOutputMessage.add_member(:partner_name, Shapes::ShapeRef.new(shape: PartnerIntegrationPartnerName, location_name: "PartnerName"))
|
1771
|
+
PartnerIntegrationOutputMessage.struct_class = Types::PartnerIntegrationOutputMessage
|
1772
|
+
|
1773
|
+
PartnerNotFoundFault.struct_class = Types::PartnerNotFoundFault
|
1774
|
+
|
1711
1775
|
PauseClusterMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
1712
1776
|
PauseClusterMessage.struct_class = Types::PauseClusterMessage
|
1713
1777
|
|
@@ -1866,6 +1930,7 @@ module Aws::Redshift
|
|
1866
1930
|
RestoreFromClusterSnapshotMessage.add_member(:snapshot_schedule_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotScheduleIdentifier"))
|
1867
1931
|
RestoreFromClusterSnapshotMessage.add_member(:number_of_nodes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumberOfNodes"))
|
1868
1932
|
RestoreFromClusterSnapshotMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
|
1933
|
+
RestoreFromClusterSnapshotMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
|
1869
1934
|
RestoreFromClusterSnapshotMessage.struct_class = Types::RestoreFromClusterSnapshotMessage
|
1870
1935
|
|
1871
1936
|
RestoreFromClusterSnapshotResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
|
@@ -1887,6 +1952,7 @@ module Aws::Redshift
|
|
1887
1952
|
RestoreTableFromClusterSnapshotMessage.add_member(:target_database_name, Shapes::ShapeRef.new(shape: String, location_name: "TargetDatabaseName"))
|
1888
1953
|
RestoreTableFromClusterSnapshotMessage.add_member(:target_schema_name, Shapes::ShapeRef.new(shape: String, location_name: "TargetSchemaName"))
|
1889
1954
|
RestoreTableFromClusterSnapshotMessage.add_member(:new_table_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "NewTableName"))
|
1955
|
+
RestoreTableFromClusterSnapshotMessage.add_member(:enable_case_sensitive_identifier, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCaseSensitiveIdentifier"))
|
1890
1956
|
RestoreTableFromClusterSnapshotMessage.struct_class = Types::RestoreTableFromClusterSnapshotMessage
|
1891
1957
|
|
1892
1958
|
RestoreTableFromClusterSnapshotResult.add_member(:table_restore_status, Shapes::ShapeRef.new(shape: TableRestoreStatus, location_name: "TableRestoreStatus"))
|
@@ -2174,12 +2240,22 @@ module Aws::Redshift
|
|
2174
2240
|
|
2175
2241
|
UnauthorizedOperation.struct_class = Types::UnauthorizedOperation
|
2176
2242
|
|
2243
|
+
UnauthorizedPartnerIntegrationFault.struct_class = Types::UnauthorizedPartnerIntegrationFault
|
2244
|
+
|
2177
2245
|
UnknownSnapshotCopyRegionFault.struct_class = Types::UnknownSnapshotCopyRegionFault
|
2178
2246
|
|
2179
2247
|
UnsupportedOperationFault.struct_class = Types::UnsupportedOperationFault
|
2180
2248
|
|
2181
2249
|
UnsupportedOptionFault.struct_class = Types::UnsupportedOptionFault
|
2182
2250
|
|
2251
|
+
UpdatePartnerStatusInputMessage.add_member(:account_id, Shapes::ShapeRef.new(shape: PartnerIntegrationAccountId, required: true, location_name: "AccountId"))
|
2252
|
+
UpdatePartnerStatusInputMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: PartnerIntegrationClusterIdentifier, required: true, location_name: "ClusterIdentifier"))
|
2253
|
+
UpdatePartnerStatusInputMessage.add_member(:database_name, Shapes::ShapeRef.new(shape: PartnerIntegrationDatabaseName, required: true, location_name: "DatabaseName"))
|
2254
|
+
UpdatePartnerStatusInputMessage.add_member(:partner_name, Shapes::ShapeRef.new(shape: PartnerIntegrationPartnerName, required: true, location_name: "PartnerName"))
|
2255
|
+
UpdatePartnerStatusInputMessage.add_member(:status, Shapes::ShapeRef.new(shape: PartnerIntegrationStatus, required: true, location_name: "Status"))
|
2256
|
+
UpdatePartnerStatusInputMessage.add_member(:status_message, Shapes::ShapeRef.new(shape: PartnerIntegrationStatusMessage, location_name: "StatusMessage"))
|
2257
|
+
UpdatePartnerStatusInputMessage.struct_class = Types::UpdatePartnerStatusInputMessage
|
2258
|
+
|
2183
2259
|
UpdateTarget.add_member(:maintenance_track_name, Shapes::ShapeRef.new(shape: String, location_name: "MaintenanceTrackName"))
|
2184
2260
|
UpdateTarget.add_member(:database_version, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseVersion"))
|
2185
2261
|
UpdateTarget.add_member(:supported_operations, Shapes::ShapeRef.new(shape: SupportedOperationList, location_name: "SupportedOperations"))
|
@@ -2256,6 +2332,17 @@ module Aws::Redshift
|
|
2256
2332
|
o.errors << Shapes::ShapeRef.new(shape: ReservedNodeAlreadyExistsFault)
|
2257
2333
|
end)
|
2258
2334
|
|
2335
|
+
api.add_operation(:add_partner, Seahorse::Model::Operation.new.tap do |o|
|
2336
|
+
o.name = "AddPartner"
|
2337
|
+
o.http_method = "POST"
|
2338
|
+
o.http_request_uri = "/"
|
2339
|
+
o.input = Shapes::ShapeRef.new(shape: PartnerIntegrationInputMessage)
|
2340
|
+
o.output = Shapes::ShapeRef.new(shape: PartnerIntegrationOutputMessage)
|
2341
|
+
o.errors << Shapes::ShapeRef.new(shape: PartnerNotFoundFault)
|
2342
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
2343
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedPartnerIntegrationFault)
|
2344
|
+
end)
|
2345
|
+
|
2259
2346
|
api.add_operation(:authorize_cluster_security_group_ingress, Seahorse::Model::Operation.new.tap do |o|
|
2260
2347
|
o.name = "AuthorizeClusterSecurityGroupIngress"
|
2261
2348
|
o.http_method = "POST"
|
@@ -2652,6 +2739,17 @@ module Aws::Redshift
|
|
2652
2739
|
o.errors << Shapes::ShapeRef.new(shape: HsmConfigurationNotFoundFault)
|
2653
2740
|
end)
|
2654
2741
|
|
2742
|
+
api.add_operation(:delete_partner, Seahorse::Model::Operation.new.tap do |o|
|
2743
|
+
o.name = "DeletePartner"
|
2744
|
+
o.http_method = "POST"
|
2745
|
+
o.http_request_uri = "/"
|
2746
|
+
o.input = Shapes::ShapeRef.new(shape: PartnerIntegrationInputMessage)
|
2747
|
+
o.output = Shapes::ShapeRef.new(shape: PartnerIntegrationOutputMessage)
|
2748
|
+
o.errors << Shapes::ShapeRef.new(shape: PartnerNotFoundFault)
|
2749
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
2750
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedPartnerIntegrationFault)
|
2751
|
+
end)
|
2752
|
+
|
2655
2753
|
api.add_operation(:delete_scheduled_action, Seahorse::Model::Operation.new.tap do |o|
|
2656
2754
|
o.name = "DeleteScheduledAction"
|
2657
2755
|
o.http_method = "POST"
|
@@ -2875,6 +2973,12 @@ module Aws::Redshift
|
|
2875
2973
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
2876
2974
|
o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
|
2877
2975
|
o.errors << Shapes::ShapeRef.new(shape: EndpointNotFoundFault)
|
2976
|
+
o[:pager] = Aws::Pager.new(
|
2977
|
+
limit_key: "max_records",
|
2978
|
+
tokens: {
|
2979
|
+
"marker" => "marker"
|
2980
|
+
}
|
2981
|
+
)
|
2878
2982
|
end)
|
2879
2983
|
|
2880
2984
|
api.add_operation(:describe_endpoint_authorization, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2885,6 +2989,12 @@ module Aws::Redshift
|
|
2885
2989
|
o.output = Shapes::ShapeRef.new(shape: EndpointAuthorizationList)
|
2886
2990
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
2887
2991
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
2992
|
+
o[:pager] = Aws::Pager.new(
|
2993
|
+
limit_key: "max_records",
|
2994
|
+
tokens: {
|
2995
|
+
"marker" => "marker"
|
2996
|
+
}
|
2997
|
+
)
|
2888
2998
|
end)
|
2889
2999
|
|
2890
3000
|
api.add_operation(:describe_event_categories, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2998,6 +3108,16 @@ module Aws::Redshift
|
|
2998
3108
|
)
|
2999
3109
|
end)
|
3000
3110
|
|
3111
|
+
api.add_operation(:describe_partners, Seahorse::Model::Operation.new.tap do |o|
|
3112
|
+
o.name = "DescribePartners"
|
3113
|
+
o.http_method = "POST"
|
3114
|
+
o.http_request_uri = "/"
|
3115
|
+
o.input = Shapes::ShapeRef.new(shape: DescribePartnersInputMessage)
|
3116
|
+
o.output = Shapes::ShapeRef.new(shape: DescribePartnersOutputMessage)
|
3117
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
3118
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedPartnerIntegrationFault)
|
3119
|
+
end)
|
3120
|
+
|
3001
3121
|
api.add_operation(:describe_reserved_node_offerings, Seahorse::Model::Operation.new.tap do |o|
|
3002
3122
|
o.name = "DescribeReservedNodeOfferings"
|
3003
3123
|
o.http_method = "POST"
|
@@ -3150,6 +3270,7 @@ module Aws::Redshift
|
|
3150
3270
|
o.input = Shapes::ShapeRef.new(shape: DisableLoggingMessage)
|
3151
3271
|
o.output = Shapes::ShapeRef.new(shape: LoggingStatus)
|
3152
3272
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
3273
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
|
3153
3274
|
end)
|
3154
3275
|
|
3155
3276
|
api.add_operation(:disable_snapshot_copy, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3227,6 +3348,17 @@ module Aws::Redshift
|
|
3227
3348
|
)
|
3228
3349
|
end)
|
3229
3350
|
|
3351
|
+
api.add_operation(:modify_aqua_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3352
|
+
o.name = "ModifyAquaConfiguration"
|
3353
|
+
o.http_method = "POST"
|
3354
|
+
o.http_request_uri = "/"
|
3355
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyAquaInputMessage)
|
3356
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyAquaOutputMessage)
|
3357
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
3358
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
|
3359
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationFault)
|
3360
|
+
end)
|
3361
|
+
|
3230
3362
|
api.add_operation(:modify_cluster, Seahorse::Model::Operation.new.tap do |o|
|
3231
3363
|
o.name = "ModifyCluster"
|
3232
3364
|
o.http_method = "POST"
|
@@ -3575,6 +3707,17 @@ module Aws::Redshift
|
|
3575
3707
|
o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
|
3576
3708
|
o.errors << Shapes::ShapeRef.new(shape: DependentServiceRequestThrottlingFault)
|
3577
3709
|
end)
|
3710
|
+
|
3711
|
+
api.add_operation(:update_partner_status, Seahorse::Model::Operation.new.tap do |o|
|
3712
|
+
o.name = "UpdatePartnerStatus"
|
3713
|
+
o.http_method = "POST"
|
3714
|
+
o.http_request_uri = "/"
|
3715
|
+
o.input = Shapes::ShapeRef.new(shape: UpdatePartnerStatusInputMessage)
|
3716
|
+
o.output = Shapes::ShapeRef.new(shape: PartnerIntegrationOutputMessage)
|
3717
|
+
o.errors << Shapes::ShapeRef.new(shape: PartnerNotFoundFault)
|
3718
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
3719
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedPartnerIntegrationFault)
|
3720
|
+
end)
|
3578
3721
|
end
|
3579
3722
|
|
3580
3723
|
end
|
@@ -103,6 +103,7 @@ module Aws::Redshift
|
|
103
103
|
# * {LimitExceededFault}
|
104
104
|
# * {NumberOfNodesPerClusterLimitExceededFault}
|
105
105
|
# * {NumberOfNodesQuotaExceededFault}
|
106
|
+
# * {PartnerNotFoundFault}
|
106
107
|
# * {ReservedNodeAlreadyExistsFault}
|
107
108
|
# * {ReservedNodeAlreadyMigratedFault}
|
108
109
|
# * {ReservedNodeNotFoundFault}
|
@@ -139,6 +140,7 @@ module Aws::Redshift
|
|
139
140
|
# * {TableRestoreNotFoundFault}
|
140
141
|
# * {TagLimitExceededFault}
|
141
142
|
# * {UnauthorizedOperation}
|
143
|
+
# * {UnauthorizedPartnerIntegrationFault}
|
142
144
|
# * {UnknownSnapshotCopyRegionFault}
|
143
145
|
# * {UnsupportedOperationFault}
|
144
146
|
# * {UnsupportedOptionFault}
|
@@ -911,6 +913,16 @@ module Aws::Redshift
|
|
911
913
|
end
|
912
914
|
end
|
913
915
|
|
916
|
+
class PartnerNotFoundFault < ServiceError
|
917
|
+
|
918
|
+
# @param [Seahorse::Client::RequestContext] context
|
919
|
+
# @param [String] message
|
920
|
+
# @param [Aws::Redshift::Types::PartnerNotFoundFault] data
|
921
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
922
|
+
super(context, message, data)
|
923
|
+
end
|
924
|
+
end
|
925
|
+
|
914
926
|
class ReservedNodeAlreadyExistsFault < ServiceError
|
915
927
|
|
916
928
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1271,6 +1283,16 @@ module Aws::Redshift
|
|
1271
1283
|
end
|
1272
1284
|
end
|
1273
1285
|
|
1286
|
+
class UnauthorizedPartnerIntegrationFault < ServiceError
|
1287
|
+
|
1288
|
+
# @param [Seahorse::Client::RequestContext] context
|
1289
|
+
# @param [String] message
|
1290
|
+
# @param [Aws::Redshift::Types::UnauthorizedPartnerIntegrationFault] data
|
1291
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1292
|
+
super(context, message, data)
|
1293
|
+
end
|
1294
|
+
end
|
1295
|
+
|
1274
1296
|
class UnknownSnapshotCopyRegionFault < ServiceError
|
1275
1297
|
|
1276
1298
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -115,6 +115,40 @@ module Aws::Redshift
|
|
115
115
|
include Aws::Structure
|
116
116
|
end
|
117
117
|
|
118
|
+
# The AQUA (Advanced Query Accelerator) configuration of the cluster.
|
119
|
+
#
|
120
|
+
# @!attribute [rw] aqua_status
|
121
|
+
# The value indicates the status of AQUA on the cluster. Possible
|
122
|
+
# values include the following.
|
123
|
+
#
|
124
|
+
# * enabled - AQUA is enabled.
|
125
|
+
#
|
126
|
+
# * disabled - AQUA is not enabled.
|
127
|
+
#
|
128
|
+
# * applying - AQUA status is being applied.
|
129
|
+
# @return [String]
|
130
|
+
#
|
131
|
+
# @!attribute [rw] aqua_configuration_status
|
132
|
+
# The value represents how the cluster is configured to use AQUA.
|
133
|
+
# Possible values include the following.
|
134
|
+
#
|
135
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
136
|
+
# and Amazon Redshift node type.
|
137
|
+
#
|
138
|
+
# * disabled - Don't use AQUA.
|
139
|
+
#
|
140
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
141
|
+
# @return [String]
|
142
|
+
#
|
143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AquaConfiguration AWS API Documentation
|
144
|
+
#
|
145
|
+
class AquaConfiguration < Struct.new(
|
146
|
+
:aqua_status,
|
147
|
+
:aqua_configuration_status)
|
148
|
+
SENSITIVE = []
|
149
|
+
include Aws::Structure
|
150
|
+
end
|
151
|
+
|
118
152
|
# Describes an attribute value.
|
119
153
|
#
|
120
154
|
# @!attribute [rw] attribute_value
|
@@ -754,6 +788,10 @@ module Aws::Redshift
|
|
754
788
|
# The total storage capacity of the cluster in megabytes.
|
755
789
|
# @return [Integer]
|
756
790
|
#
|
791
|
+
# @!attribute [rw] aqua_configuration
|
792
|
+
# The AQUA (Advanced Query Accelerator) configuration of the cluster.
|
793
|
+
# @return [Types::AquaConfiguration]
|
794
|
+
#
|
757
795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
|
758
796
|
#
|
759
797
|
class Cluster < Struct.new(
|
@@ -805,7 +843,8 @@ module Aws::Redshift
|
|
805
843
|
:resize_info,
|
806
844
|
:availability_zone_relocation_status,
|
807
845
|
:cluster_namespace_arn,
|
808
|
-
:total_storage_capacity_in_mega_bytes
|
846
|
+
:total_storage_capacity_in_mega_bytes,
|
847
|
+
:aqua_configuration)
|
809
848
|
SENSITIVE = []
|
810
849
|
include Aws::Structure
|
811
850
|
end
|
@@ -1669,6 +1708,7 @@ module Aws::Redshift
|
|
1669
1708
|
# maintenance_track_name: "String",
|
1670
1709
|
# snapshot_schedule_identifier: "String",
|
1671
1710
|
# availability_zone_relocation: false,
|
1711
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
1672
1712
|
# }
|
1673
1713
|
#
|
1674
1714
|
# @!attribute [rw] db_name
|
@@ -2030,6 +2070,19 @@ module Aws::Redshift
|
|
2030
2070
|
# between Availability Zones after the cluster is created.
|
2031
2071
|
# @return [Boolean]
|
2032
2072
|
#
|
2073
|
+
# @!attribute [rw] aqua_configuration_status
|
2074
|
+
# The value represents how the cluster is configured to use AQUA
|
2075
|
+
# (Advanced Query Accelerator) when it is created. Possible values
|
2076
|
+
# include the following.
|
2077
|
+
#
|
2078
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
2079
|
+
# and Amazon Redshift node type.
|
2080
|
+
#
|
2081
|
+
# * disabled - Don't use AQUA.
|
2082
|
+
#
|
2083
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
2084
|
+
# @return [String]
|
2085
|
+
#
|
2033
2086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
|
2034
2087
|
#
|
2035
2088
|
class CreateClusterMessage < Struct.new(
|
@@ -2063,7 +2116,8 @@ module Aws::Redshift
|
|
2063
2116
|
:iam_roles,
|
2064
2117
|
:maintenance_track_name,
|
2065
2118
|
:snapshot_schedule_identifier,
|
2066
|
-
:availability_zone_relocation
|
2119
|
+
:availability_zone_relocation,
|
2120
|
+
:aqua_configuration_status)
|
2067
2121
|
SENSITIVE = []
|
2068
2122
|
include Aws::Structure
|
2069
2123
|
end
|
@@ -4246,11 +4300,17 @@ module Aws::Redshift
|
|
4246
4300
|
# @return [String]
|
4247
4301
|
#
|
4248
4302
|
# @!attribute [rw] max_records
|
4249
|
-
#
|
4303
|
+
# The maximum number of records to include in the response. If more
|
4304
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4305
|
+
# token called a `Marker` is included in the response so that the
|
4306
|
+
# remaining results can be retrieved.
|
4250
4307
|
# @return [Integer]
|
4251
4308
|
#
|
4252
4309
|
# @!attribute [rw] marker
|
4253
|
-
#
|
4310
|
+
# An optional pagination token provided by a previous
|
4311
|
+
# `DescribeEndpointAccess` request. If this parameter is specified,
|
4312
|
+
# the response includes only records beyond the marker, up to the
|
4313
|
+
# value specified by the `MaxRecords` parameter.
|
4254
4314
|
# @return [String]
|
4255
4315
|
#
|
4256
4316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccessMessage AWS API Documentation
|
@@ -4295,11 +4355,17 @@ module Aws::Redshift
|
|
4295
4355
|
# @return [Boolean]
|
4296
4356
|
#
|
4297
4357
|
# @!attribute [rw] max_records
|
4298
|
-
#
|
4358
|
+
# The maximum number of records to include in the response. If more
|
4359
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4360
|
+
# token called a `Marker` is included in the response so that the
|
4361
|
+
# remaining results can be retrieved.
|
4299
4362
|
# @return [Integer]
|
4300
4363
|
#
|
4301
4364
|
# @!attribute [rw] marker
|
4302
|
-
#
|
4365
|
+
# An optional pagination token provided by a previous
|
4366
|
+
# `DescribeEndpointAuthorization` request. If this parameter is
|
4367
|
+
# specified, the response includes only records beyond the marker, up
|
4368
|
+
# to the value specified by the `MaxRecords` parameter.
|
4303
4369
|
# @return [String]
|
4304
4370
|
#
|
4305
4371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAuthorizationMessage AWS API Documentation
|
@@ -4837,6 +4903,59 @@ module Aws::Redshift
|
|
4837
4903
|
include Aws::Structure
|
4838
4904
|
end
|
4839
4905
|
|
4906
|
+
# @note When making an API call, you may pass DescribePartnersInputMessage
|
4907
|
+
# data as a hash:
|
4908
|
+
#
|
4909
|
+
# {
|
4910
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
4911
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
4912
|
+
# database_name: "PartnerIntegrationDatabaseName",
|
4913
|
+
# partner_name: "PartnerIntegrationPartnerName",
|
4914
|
+
# }
|
4915
|
+
#
|
4916
|
+
# @!attribute [rw] account_id
|
4917
|
+
# The AWS account ID that owns the cluster.
|
4918
|
+
# @return [String]
|
4919
|
+
#
|
4920
|
+
# @!attribute [rw] cluster_identifier
|
4921
|
+
# The cluster identifier of the cluster whose partner integration is
|
4922
|
+
# being described.
|
4923
|
+
# @return [String]
|
4924
|
+
#
|
4925
|
+
# @!attribute [rw] database_name
|
4926
|
+
# The name of the database whose partner integration is being
|
4927
|
+
# described. If database name is not specified, then all databases in
|
4928
|
+
# the cluster are described.
|
4929
|
+
# @return [String]
|
4930
|
+
#
|
4931
|
+
# @!attribute [rw] partner_name
|
4932
|
+
# The name of the partner that is being described. If partner name is
|
4933
|
+
# not specified, then all partner integrations are described.
|
4934
|
+
# @return [String]
|
4935
|
+
#
|
4936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribePartnersInputMessage AWS API Documentation
|
4937
|
+
#
|
4938
|
+
class DescribePartnersInputMessage < Struct.new(
|
4939
|
+
:account_id,
|
4940
|
+
:cluster_identifier,
|
4941
|
+
:database_name,
|
4942
|
+
:partner_name)
|
4943
|
+
SENSITIVE = []
|
4944
|
+
include Aws::Structure
|
4945
|
+
end
|
4946
|
+
|
4947
|
+
# @!attribute [rw] partner_integration_info_list
|
4948
|
+
# A list of partner integrations.
|
4949
|
+
# @return [Array<Types::PartnerIntegrationInfo>]
|
4950
|
+
#
|
4951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribePartnersOutputMessage AWS API Documentation
|
4952
|
+
#
|
4953
|
+
class DescribePartnersOutputMessage < Struct.new(
|
4954
|
+
:partner_integration_info_list)
|
4955
|
+
SENSITIVE = []
|
4956
|
+
include Aws::Structure
|
4957
|
+
end
|
4958
|
+
|
4840
4959
|
# @note When making an API call, you may pass DescribeReservedNodeOfferingsMessage
|
4841
4960
|
# data as a hash:
|
4842
4961
|
#
|
@@ -5746,7 +5865,10 @@ module Aws::Redshift
|
|
5746
5865
|
# @return [Array<Types::EndpointAccess>]
|
5747
5866
|
#
|
5748
5867
|
# @!attribute [rw] marker
|
5749
|
-
#
|
5868
|
+
# An optional pagination token provided by a previous
|
5869
|
+
# `DescribeEndpointAccess` request. If this parameter is specified,
|
5870
|
+
# the response includes only records beyond the marker, up to the
|
5871
|
+
# value specified by the `MaxRecords` parameter.
|
5750
5872
|
# @return [String]
|
5751
5873
|
#
|
5752
5874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAccessList AWS API Documentation
|
@@ -5833,7 +5955,10 @@ module Aws::Redshift
|
|
5833
5955
|
# @return [Array<Types::EndpointAuthorization>]
|
5834
5956
|
#
|
5835
5957
|
# @!attribute [rw] marker
|
5836
|
-
#
|
5958
|
+
# An optional pagination token provided by a previous
|
5959
|
+
# `DescribeEndpointAuthorization` request. If this parameter is
|
5960
|
+
# specified, the response includes only records beyond the marker, up
|
5961
|
+
# to the value specified by the `MaxRecords` parameter.
|
5837
5962
|
# @return [String]
|
5838
5963
|
#
|
5839
5964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationList AWS API Documentation
|
@@ -6828,6 +6953,51 @@ module Aws::Redshift
|
|
6828
6953
|
include Aws::Structure
|
6829
6954
|
end
|
6830
6955
|
|
6956
|
+
# @note When making an API call, you may pass ModifyAquaInputMessage
|
6957
|
+
# data as a hash:
|
6958
|
+
#
|
6959
|
+
# {
|
6960
|
+
# cluster_identifier: "String", # required
|
6961
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
6962
|
+
# }
|
6963
|
+
#
|
6964
|
+
# @!attribute [rw] cluster_identifier
|
6965
|
+
# The identifier of the cluster to be modified.
|
6966
|
+
# @return [String]
|
6967
|
+
#
|
6968
|
+
# @!attribute [rw] aqua_configuration_status
|
6969
|
+
# The new value of AQUA configuration status. Possible values include
|
6970
|
+
# the following.
|
6971
|
+
#
|
6972
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
6973
|
+
# and Amazon Redshift node type.
|
6974
|
+
#
|
6975
|
+
# * disabled - Don't use AQUA.
|
6976
|
+
#
|
6977
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
6978
|
+
# @return [String]
|
6979
|
+
#
|
6980
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaInputMessage AWS API Documentation
|
6981
|
+
#
|
6982
|
+
class ModifyAquaInputMessage < Struct.new(
|
6983
|
+
:cluster_identifier,
|
6984
|
+
:aqua_configuration_status)
|
6985
|
+
SENSITIVE = []
|
6986
|
+
include Aws::Structure
|
6987
|
+
end
|
6988
|
+
|
6989
|
+
# @!attribute [rw] aqua_configuration
|
6990
|
+
# The updated AQUA configuration of the cluster.
|
6991
|
+
# @return [Types::AquaConfiguration]
|
6992
|
+
#
|
6993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAquaOutputMessage AWS API Documentation
|
6994
|
+
#
|
6995
|
+
class ModifyAquaOutputMessage < Struct.new(
|
6996
|
+
:aqua_configuration)
|
6997
|
+
SENSITIVE = []
|
6998
|
+
include Aws::Structure
|
6999
|
+
end
|
7000
|
+
|
6831
7001
|
# @note When making an API call, you may pass ModifyClusterDbRevisionMessage
|
6832
7002
|
# data as a hash:
|
6833
7003
|
#
|
@@ -8129,6 +8299,107 @@ module Aws::Redshift
|
|
8129
8299
|
include Aws::Structure
|
8130
8300
|
end
|
8131
8301
|
|
8302
|
+
# Describes a partner integration.
|
8303
|
+
#
|
8304
|
+
# @!attribute [rw] database_name
|
8305
|
+
# The name of the database that receives data from a partner.
|
8306
|
+
# @return [String]
|
8307
|
+
#
|
8308
|
+
# @!attribute [rw] partner_name
|
8309
|
+
# The name of the partner.
|
8310
|
+
# @return [String]
|
8311
|
+
#
|
8312
|
+
# @!attribute [rw] status
|
8313
|
+
# The partner integration status.
|
8314
|
+
# @return [String]
|
8315
|
+
#
|
8316
|
+
# @!attribute [rw] status_message
|
8317
|
+
# The status message provided by the partner.
|
8318
|
+
# @return [String]
|
8319
|
+
#
|
8320
|
+
# @!attribute [rw] created_at
|
8321
|
+
# The date (UTC) that the partner integration was created.
|
8322
|
+
# @return [Time]
|
8323
|
+
#
|
8324
|
+
# @!attribute [rw] updated_at
|
8325
|
+
# The date (UTC) that the partner integration status was last updated
|
8326
|
+
# by the partner.
|
8327
|
+
# @return [Time]
|
8328
|
+
#
|
8329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerIntegrationInfo AWS API Documentation
|
8330
|
+
#
|
8331
|
+
class PartnerIntegrationInfo < Struct.new(
|
8332
|
+
:database_name,
|
8333
|
+
:partner_name,
|
8334
|
+
:status,
|
8335
|
+
:status_message,
|
8336
|
+
:created_at,
|
8337
|
+
:updated_at)
|
8338
|
+
SENSITIVE = []
|
8339
|
+
include Aws::Structure
|
8340
|
+
end
|
8341
|
+
|
8342
|
+
# @note When making an API call, you may pass PartnerIntegrationInputMessage
|
8343
|
+
# data as a hash:
|
8344
|
+
#
|
8345
|
+
# {
|
8346
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
8347
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
8348
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
8349
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
8350
|
+
# }
|
8351
|
+
#
|
8352
|
+
# @!attribute [rw] account_id
|
8353
|
+
# The AWS account ID that owns the cluster.
|
8354
|
+
# @return [String]
|
8355
|
+
#
|
8356
|
+
# @!attribute [rw] cluster_identifier
|
8357
|
+
# The cluster identifier of the cluster that receives data from the
|
8358
|
+
# partner.
|
8359
|
+
# @return [String]
|
8360
|
+
#
|
8361
|
+
# @!attribute [rw] database_name
|
8362
|
+
# The name of the database that receives data from the partner.
|
8363
|
+
# @return [String]
|
8364
|
+
#
|
8365
|
+
# @!attribute [rw] partner_name
|
8366
|
+
# The name of the partner that is authorized to send data.
|
8367
|
+
# @return [String]
|
8368
|
+
#
|
8369
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerIntegrationInputMessage AWS API Documentation
|
8370
|
+
#
|
8371
|
+
class PartnerIntegrationInputMessage < Struct.new(
|
8372
|
+
:account_id,
|
8373
|
+
:cluster_identifier,
|
8374
|
+
:database_name,
|
8375
|
+
:partner_name)
|
8376
|
+
SENSITIVE = []
|
8377
|
+
include Aws::Structure
|
8378
|
+
end
|
8379
|
+
|
8380
|
+
# @!attribute [rw] database_name
|
8381
|
+
# The name of the database that receives data from the partner.
|
8382
|
+
# @return [String]
|
8383
|
+
#
|
8384
|
+
# @!attribute [rw] partner_name
|
8385
|
+
# The name of the partner that is authorized to send data.
|
8386
|
+
# @return [String]
|
8387
|
+
#
|
8388
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerIntegrationOutputMessage AWS API Documentation
|
8389
|
+
#
|
8390
|
+
class PartnerIntegrationOutputMessage < Struct.new(
|
8391
|
+
:database_name,
|
8392
|
+
:partner_name)
|
8393
|
+
SENSITIVE = []
|
8394
|
+
include Aws::Structure
|
8395
|
+
end
|
8396
|
+
|
8397
|
+
# The name of the partner was not found.
|
8398
|
+
#
|
8399
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PartnerNotFoundFault AWS API Documentation
|
8400
|
+
#
|
8401
|
+
class PartnerNotFoundFault < Aws::EmptyStructure; end
|
8402
|
+
|
8132
8403
|
# Describes a pause cluster operation. For example, a scheduled action
|
8133
8404
|
# to run the `PauseCluster` API operation.
|
8134
8405
|
#
|
@@ -8869,6 +9140,7 @@ module Aws::Redshift
|
|
8869
9140
|
# snapshot_schedule_identifier: "String",
|
8870
9141
|
# number_of_nodes: 1,
|
8871
9142
|
# availability_zone_relocation: false,
|
9143
|
+
# aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
|
8872
9144
|
# }
|
8873
9145
|
#
|
8874
9146
|
# @!attribute [rw] cluster_identifier
|
@@ -9121,6 +9393,19 @@ module Aws::Redshift
|
|
9121
9393
|
# between Availability Zones after the cluster is restored.
|
9122
9394
|
# @return [Boolean]
|
9123
9395
|
#
|
9396
|
+
# @!attribute [rw] aqua_configuration_status
|
9397
|
+
# The value represents how the cluster is configured to use AQUA
|
9398
|
+
# (Advanced Query Accelerator) after the cluster is restored. Possible
|
9399
|
+
# values include the following.
|
9400
|
+
#
|
9401
|
+
# * enabled - Use AQUA if it is available for the current AWS Region
|
9402
|
+
# and Amazon Redshift node type.
|
9403
|
+
#
|
9404
|
+
# * disabled - Don't use AQUA.
|
9405
|
+
#
|
9406
|
+
# * auto - Amazon Redshift determines whether to use AQUA.
|
9407
|
+
# @return [String]
|
9408
|
+
#
|
9124
9409
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
|
9125
9410
|
#
|
9126
9411
|
class RestoreFromClusterSnapshotMessage < Struct.new(
|
@@ -9150,7 +9435,8 @@ module Aws::Redshift
|
|
9150
9435
|
:maintenance_track_name,
|
9151
9436
|
:snapshot_schedule_identifier,
|
9152
9437
|
:number_of_nodes,
|
9153
|
-
:availability_zone_relocation
|
9438
|
+
:availability_zone_relocation,
|
9439
|
+
:aqua_configuration_status)
|
9154
9440
|
SENSITIVE = []
|
9155
9441
|
include Aws::Structure
|
9156
9442
|
end
|
@@ -9230,6 +9516,7 @@ module Aws::Redshift
|
|
9230
9516
|
# target_database_name: "String",
|
9231
9517
|
# target_schema_name: "String",
|
9232
9518
|
# new_table_name: "String", # required
|
9519
|
+
# enable_case_sensitive_identifier: false,
|
9233
9520
|
# }
|
9234
9521
|
#
|
9235
9522
|
# @!attribute [rw] cluster_identifier
|
@@ -9270,6 +9557,12 @@ module Aws::Redshift
|
|
9270
9557
|
# The name of the table to create as a result of the current request.
|
9271
9558
|
# @return [String]
|
9272
9559
|
#
|
9560
|
+
# @!attribute [rw] enable_case_sensitive_identifier
|
9561
|
+
# Indicates whether name identifiers for database, schema, and table
|
9562
|
+
# are case sensitive. If `true`, the names are case sensitive. If
|
9563
|
+
# `false` (default), the names are not case sensitive.
|
9564
|
+
# @return [Boolean]
|
9565
|
+
#
|
9273
9566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreTableFromClusterSnapshotMessage AWS API Documentation
|
9274
9567
|
#
|
9275
9568
|
class RestoreTableFromClusterSnapshotMessage < Struct.new(
|
@@ -9280,7 +9573,8 @@ module Aws::Redshift
|
|
9280
9573
|
:source_table_name,
|
9281
9574
|
:target_database_name,
|
9282
9575
|
:target_schema_name,
|
9283
|
-
:new_table_name
|
9576
|
+
:new_table_name,
|
9577
|
+
:enable_case_sensitive_identifier)
|
9284
9578
|
SENSITIVE = []
|
9285
9579
|
include Aws::Structure
|
9286
9580
|
end
|
@@ -10611,6 +10905,12 @@ module Aws::Redshift
|
|
10611
10905
|
#
|
10612
10906
|
class UnauthorizedOperation < Aws::EmptyStructure; end
|
10613
10907
|
|
10908
|
+
# The partner integration is not authorized.
|
10909
|
+
#
|
10910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UnauthorizedPartnerIntegrationFault AWS API Documentation
|
10911
|
+
#
|
10912
|
+
class UnauthorizedPartnerIntegrationFault < Aws::EmptyStructure; end
|
10913
|
+
|
10614
10914
|
# The specified region is incorrect or does not exist.
|
10615
10915
|
#
|
10616
10916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UnknownSnapshotCopyRegionFault AWS API Documentation
|
@@ -10629,6 +10929,57 @@ module Aws::Redshift
|
|
10629
10929
|
#
|
10630
10930
|
class UnsupportedOptionFault < Aws::EmptyStructure; end
|
10631
10931
|
|
10932
|
+
# @note When making an API call, you may pass UpdatePartnerStatusInputMessage
|
10933
|
+
# data as a hash:
|
10934
|
+
#
|
10935
|
+
# {
|
10936
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
10937
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
10938
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
10939
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
10940
|
+
# status: "Active", # required, accepts Active, Inactive, RuntimeFailure, ConnectionFailure
|
10941
|
+
# status_message: "PartnerIntegrationStatusMessage",
|
10942
|
+
# }
|
10943
|
+
#
|
10944
|
+
# @!attribute [rw] account_id
|
10945
|
+
# The AWS account ID that owns the cluster.
|
10946
|
+
# @return [String]
|
10947
|
+
#
|
10948
|
+
# @!attribute [rw] cluster_identifier
|
10949
|
+
# The cluster identifier of the cluster whose partner integration
|
10950
|
+
# status is being updated.
|
10951
|
+
# @return [String]
|
10952
|
+
#
|
10953
|
+
# @!attribute [rw] database_name
|
10954
|
+
# The name of the database whose partner integration status is being
|
10955
|
+
# updated.
|
10956
|
+
# @return [String]
|
10957
|
+
#
|
10958
|
+
# @!attribute [rw] partner_name
|
10959
|
+
# The name of the partner whose integration status is being updated.
|
10960
|
+
# @return [String]
|
10961
|
+
#
|
10962
|
+
# @!attribute [rw] status
|
10963
|
+
# The value of the updated status.
|
10964
|
+
# @return [String]
|
10965
|
+
#
|
10966
|
+
# @!attribute [rw] status_message
|
10967
|
+
# The status message provided by the partner.
|
10968
|
+
# @return [String]
|
10969
|
+
#
|
10970
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UpdatePartnerStatusInputMessage AWS API Documentation
|
10971
|
+
#
|
10972
|
+
class UpdatePartnerStatusInputMessage < Struct.new(
|
10973
|
+
:account_id,
|
10974
|
+
:cluster_identifier,
|
10975
|
+
:database_name,
|
10976
|
+
:partner_name,
|
10977
|
+
:status,
|
10978
|
+
:status_message)
|
10979
|
+
SENSITIVE = []
|
10980
|
+
include Aws::Structure
|
10981
|
+
end
|
10982
|
+
|
10632
10983
|
# A maintenance track that you can switch the current track to.
|
10633
10984
|
#
|
10634
10985
|
# @!attribute [rw] maintenance_track_name
|