aws-sdk-redshift 1.61.0 → 1.62.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +215 -5
- data/lib/aws-sdk-redshift/client_api.rb +111 -0
- data/lib/aws-sdk-redshift/errors.rb +22 -0
- data/lib/aws-sdk-redshift/types.rb +235 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c10ef81dfa2ee8c905d930216f8999dc715193c5396965579eacdbdb48ab4514
|
4
|
+
data.tar.gz: 9d07eb9f3f8f9b267a48b912070055e558ffb863f54af3b85ccca81c45c900a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97a89e4fb3e28fb3b14927ff197a43e1b4472efab6387e09de1397c97155bafedfc314999b58a9f4f528df3647a408244cde47098d448bdcf41df61e40456513
|
7
|
+
data.tar.gz: 52752f3a7a8dab26fb1a80791a313490d0b57953bc4ba38ee39641027b2c2d04a2ac042726e7282d919c9dd5421e877e53513142e247c009e8691a25f78e2286
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.62.0 (2021-04-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add operations: AddPartner, DescribePartners, DeletePartner, and UpdatePartnerStatus to support tracking integration status with data partners.
|
8
|
+
|
4
9
|
1.61.0 (2021-04-13)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.62.0
|
data/lib/aws-sdk-redshift.rb
CHANGED
@@ -378,6 +378,52 @@ module Aws::Redshift
|
|
378
378
|
req.send_request(options)
|
379
379
|
end
|
380
380
|
|
381
|
+
# Adds a partner integration to a cluster. This operation authorizes a
|
382
|
+
# partner to push status updates for the specified database. To complete
|
383
|
+
# the integration, you also set up the integration on the partner
|
384
|
+
# website.
|
385
|
+
#
|
386
|
+
# @option params [required, String] :account_id
|
387
|
+
# The AWS account ID that owns the cluster.
|
388
|
+
#
|
389
|
+
# @option params [required, String] :cluster_identifier
|
390
|
+
# The cluster identifier of the cluster that receives data from the
|
391
|
+
# partner.
|
392
|
+
#
|
393
|
+
# @option params [required, String] :database_name
|
394
|
+
# The name of the database that receives data from the partner.
|
395
|
+
#
|
396
|
+
# @option params [required, String] :partner_name
|
397
|
+
# The name of the partner that is authorized to send data.
|
398
|
+
#
|
399
|
+
# @return [Types::PartnerIntegrationOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
400
|
+
#
|
401
|
+
# * {Types::PartnerIntegrationOutputMessage#database_name #database_name} => String
|
402
|
+
# * {Types::PartnerIntegrationOutputMessage#partner_name #partner_name} => String
|
403
|
+
#
|
404
|
+
# @example Request syntax with placeholder values
|
405
|
+
#
|
406
|
+
# resp = client.add_partner({
|
407
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
408
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
409
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
410
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
411
|
+
# })
|
412
|
+
#
|
413
|
+
# @example Response structure
|
414
|
+
#
|
415
|
+
# resp.database_name #=> String
|
416
|
+
# resp.partner_name #=> String
|
417
|
+
#
|
418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AddPartner AWS API Documentation
|
419
|
+
#
|
420
|
+
# @overload add_partner(params = {})
|
421
|
+
# @param [Hash] params ({})
|
422
|
+
def add_partner(params = {}, options = {})
|
423
|
+
req = build_request(:add_partner, params)
|
424
|
+
req.send_request(options)
|
425
|
+
end
|
426
|
+
|
381
427
|
# Adds an inbound (ingress) rule to an Amazon Redshift security group.
|
382
428
|
# Depending on whether the application accessing your cluster is running
|
383
429
|
# on the Internet or an Amazon EC2 instance, you can authorize inbound
|
@@ -2983,6 +3029,51 @@ module Aws::Redshift
|
|
2983
3029
|
req.send_request(options)
|
2984
3030
|
end
|
2985
3031
|
|
3032
|
+
# Deletes a partner integration from a cluster. Data can still flow to
|
3033
|
+
# the cluster until the integration is deleted at the partner's
|
3034
|
+
# website.
|
3035
|
+
#
|
3036
|
+
# @option params [required, String] :account_id
|
3037
|
+
# The AWS account ID that owns the cluster.
|
3038
|
+
#
|
3039
|
+
# @option params [required, String] :cluster_identifier
|
3040
|
+
# The cluster identifier of the cluster that receives data from the
|
3041
|
+
# partner.
|
3042
|
+
#
|
3043
|
+
# @option params [required, String] :database_name
|
3044
|
+
# The name of the database that receives data from the partner.
|
3045
|
+
#
|
3046
|
+
# @option params [required, String] :partner_name
|
3047
|
+
# The name of the partner that is authorized to send data.
|
3048
|
+
#
|
3049
|
+
# @return [Types::PartnerIntegrationOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3050
|
+
#
|
3051
|
+
# * {Types::PartnerIntegrationOutputMessage#database_name #database_name} => String
|
3052
|
+
# * {Types::PartnerIntegrationOutputMessage#partner_name #partner_name} => String
|
3053
|
+
#
|
3054
|
+
# @example Request syntax with placeholder values
|
3055
|
+
#
|
3056
|
+
# resp = client.delete_partner({
|
3057
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
3058
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
3059
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
3060
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
3061
|
+
# })
|
3062
|
+
#
|
3063
|
+
# @example Response structure
|
3064
|
+
#
|
3065
|
+
# resp.database_name #=> String
|
3066
|
+
# resp.partner_name #=> String
|
3067
|
+
#
|
3068
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeletePartner AWS API Documentation
|
3069
|
+
#
|
3070
|
+
# @overload delete_partner(params = {})
|
3071
|
+
# @param [Hash] params ({})
|
3072
|
+
def delete_partner(params = {}, options = {})
|
3073
|
+
req = build_request(:delete_partner, params)
|
3074
|
+
req.send_request(options)
|
3075
|
+
end
|
3076
|
+
|
2986
3077
|
# Deletes a scheduled action.
|
2987
3078
|
#
|
2988
3079
|
# @option params [required, String] :scheduled_action_name
|
@@ -4252,16 +4343,24 @@ module Aws::Redshift
|
|
4252
4343
|
# The virtual private cloud (VPC) identifier with access to the cluster.
|
4253
4344
|
#
|
4254
4345
|
# @option params [Integer] :max_records
|
4255
|
-
#
|
4346
|
+
# The maximum number of records to include in the response. If more
|
4347
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4348
|
+
# token called a `Marker` is included in the response so that the
|
4349
|
+
# remaining results can be retrieved.
|
4256
4350
|
#
|
4257
4351
|
# @option params [String] :marker
|
4258
|
-
#
|
4352
|
+
# An optional pagination token provided by a previous
|
4353
|
+
# `DescribeEndpointAccess` request. If this parameter is specified, the
|
4354
|
+
# response includes only records beyond the marker, up to the value
|
4355
|
+
# specified by the `MaxRecords` parameter.
|
4259
4356
|
#
|
4260
4357
|
# @return [Types::EndpointAccessList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4261
4358
|
#
|
4262
4359
|
# * {Types::EndpointAccessList#endpoint_access_list #endpoint_access_list} => Array<Types::EndpointAccess>
|
4263
4360
|
# * {Types::EndpointAccessList#marker #marker} => String
|
4264
4361
|
#
|
4362
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4363
|
+
#
|
4265
4364
|
# @example Request syntax with placeholder values
|
4266
4365
|
#
|
4267
4366
|
# resp = client.describe_endpoint_access({
|
@@ -4322,16 +4421,24 @@ module Aws::Redshift
|
|
4322
4421
|
# authorization from a grantor point of view.
|
4323
4422
|
#
|
4324
4423
|
# @option params [Integer] :max_records
|
4325
|
-
#
|
4424
|
+
# The maximum number of records to include in the response. If more
|
4425
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4426
|
+
# token called a `Marker` is included in the response so that the
|
4427
|
+
# remaining results can be retrieved.
|
4326
4428
|
#
|
4327
4429
|
# @option params [String] :marker
|
4328
|
-
#
|
4430
|
+
# An optional pagination token provided by a previous
|
4431
|
+
# `DescribeEndpointAuthorization` request. If this parameter is
|
4432
|
+
# specified, the response includes only records beyond the marker, up to
|
4433
|
+
# the value specified by the `MaxRecords` parameter.
|
4329
4434
|
#
|
4330
4435
|
# @return [Types::EndpointAuthorizationList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4331
4436
|
#
|
4332
4437
|
# * {Types::EndpointAuthorizationList#endpoint_authorization_list #endpoint_authorization_list} => Array<Types::EndpointAuthorization>
|
4333
4438
|
# * {Types::EndpointAuthorizationList#marker #marker} => String
|
4334
4439
|
#
|
4440
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4441
|
+
#
|
4335
4442
|
# @example Request syntax with placeholder values
|
4336
4443
|
#
|
4337
4444
|
# resp = client.describe_endpoint_authorization({
|
@@ -5055,6 +5162,57 @@ module Aws::Redshift
|
|
5055
5162
|
req.send_request(options)
|
5056
5163
|
end
|
5057
5164
|
|
5165
|
+
# Returns information about the partner integrations defined for a
|
5166
|
+
# cluster.
|
5167
|
+
#
|
5168
|
+
# @option params [required, String] :account_id
|
5169
|
+
# The AWS account ID that owns the cluster.
|
5170
|
+
#
|
5171
|
+
# @option params [required, String] :cluster_identifier
|
5172
|
+
# The cluster identifier of the cluster whose partner integration is
|
5173
|
+
# being described.
|
5174
|
+
#
|
5175
|
+
# @option params [String] :database_name
|
5176
|
+
# The name of the database whose partner integration is being described.
|
5177
|
+
# If database name is not specified, then all databases in the cluster
|
5178
|
+
# are described.
|
5179
|
+
#
|
5180
|
+
# @option params [String] :partner_name
|
5181
|
+
# The name of the partner that is being described. If partner name is
|
5182
|
+
# not specified, then all partner integrations are described.
|
5183
|
+
#
|
5184
|
+
# @return [Types::DescribePartnersOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5185
|
+
#
|
5186
|
+
# * {Types::DescribePartnersOutputMessage#partner_integration_info_list #partner_integration_info_list} => Array<Types::PartnerIntegrationInfo>
|
5187
|
+
#
|
5188
|
+
# @example Request syntax with placeholder values
|
5189
|
+
#
|
5190
|
+
# resp = client.describe_partners({
|
5191
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
5192
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
5193
|
+
# database_name: "PartnerIntegrationDatabaseName",
|
5194
|
+
# partner_name: "PartnerIntegrationPartnerName",
|
5195
|
+
# })
|
5196
|
+
#
|
5197
|
+
# @example Response structure
|
5198
|
+
#
|
5199
|
+
# resp.partner_integration_info_list #=> Array
|
5200
|
+
# resp.partner_integration_info_list[0].database_name #=> String
|
5201
|
+
# resp.partner_integration_info_list[0].partner_name #=> String
|
5202
|
+
# resp.partner_integration_info_list[0].status #=> String, one of "Active", "Inactive", "RuntimeFailure", "ConnectionFailure"
|
5203
|
+
# resp.partner_integration_info_list[0].status_message #=> String
|
5204
|
+
# resp.partner_integration_info_list[0].created_at #=> Time
|
5205
|
+
# resp.partner_integration_info_list[0].updated_at #=> Time
|
5206
|
+
#
|
5207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribePartners AWS API Documentation
|
5208
|
+
#
|
5209
|
+
# @overload describe_partners(params = {})
|
5210
|
+
# @param [Hash] params ({})
|
5211
|
+
def describe_partners(params = {}, options = {})
|
5212
|
+
req = build_request(:describe_partners, params)
|
5213
|
+
req.send_request(options)
|
5214
|
+
end
|
5215
|
+
|
5058
5216
|
# Returns a list of the available reserved node offerings by Amazon
|
5059
5217
|
# Redshift with their descriptions including the node type, the fixed
|
5060
5218
|
# and recurring costs of reserving the node and duration the node will
|
@@ -9800,6 +9958,58 @@ module Aws::Redshift
|
|
9800
9958
|
req.send_request(options)
|
9801
9959
|
end
|
9802
9960
|
|
9961
|
+
# Updates the status of a partner integration.
|
9962
|
+
#
|
9963
|
+
# @option params [required, String] :account_id
|
9964
|
+
# The AWS account ID that owns the cluster.
|
9965
|
+
#
|
9966
|
+
# @option params [required, String] :cluster_identifier
|
9967
|
+
# The cluster identifier of the cluster whose partner integration status
|
9968
|
+
# is being updated.
|
9969
|
+
#
|
9970
|
+
# @option params [required, String] :database_name
|
9971
|
+
# The name of the database whose partner integration status is being
|
9972
|
+
# updated.
|
9973
|
+
#
|
9974
|
+
# @option params [required, String] :partner_name
|
9975
|
+
# The name of the partner whose integration status is being updated.
|
9976
|
+
#
|
9977
|
+
# @option params [required, String] :status
|
9978
|
+
# The value of the updated status.
|
9979
|
+
#
|
9980
|
+
# @option params [String] :status_message
|
9981
|
+
# The status message provided by the partner.
|
9982
|
+
#
|
9983
|
+
# @return [Types::PartnerIntegrationOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9984
|
+
#
|
9985
|
+
# * {Types::PartnerIntegrationOutputMessage#database_name #database_name} => String
|
9986
|
+
# * {Types::PartnerIntegrationOutputMessage#partner_name #partner_name} => String
|
9987
|
+
#
|
9988
|
+
# @example Request syntax with placeholder values
|
9989
|
+
#
|
9990
|
+
# resp = client.update_partner_status({
|
9991
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
9992
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
9993
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
9994
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
9995
|
+
# status: "Active", # required, accepts Active, Inactive, RuntimeFailure, ConnectionFailure
|
9996
|
+
# status_message: "PartnerIntegrationStatusMessage",
|
9997
|
+
# })
|
9998
|
+
#
|
9999
|
+
# @example Response structure
|
10000
|
+
#
|
10001
|
+
# resp.database_name #=> String
|
10002
|
+
# resp.partner_name #=> String
|
10003
|
+
#
|
10004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UpdatePartnerStatus AWS API Documentation
|
10005
|
+
#
|
10006
|
+
# @overload update_partner_status(params = {})
|
10007
|
+
# @param [Hash] params ({})
|
10008
|
+
def update_partner_status(params = {}, options = {})
|
10009
|
+
req = build_request(:update_partner_status, params)
|
10010
|
+
req.send_request(options)
|
10011
|
+
end
|
10012
|
+
|
9803
10013
|
# @!endgroup
|
9804
10014
|
|
9805
10015
|
# @param params ({})
|
@@ -9813,7 +10023,7 @@ module Aws::Redshift
|
|
9813
10023
|
params: params,
|
9814
10024
|
config: config)
|
9815
10025
|
context[:gem_name] = 'aws-sdk-redshift'
|
9816
|
-
context[:gem_version] = '1.
|
10026
|
+
context[:gem_version] = '1.62.0'
|
9817
10027
|
Seahorse::Client::Request.new(handlers, context)
|
9818
10028
|
end
|
9819
10029
|
|
@@ -176,6 +176,8 @@ module Aws::Redshift
|
|
176
176
|
DescribeLoggingStatusMessage = Shapes::StructureShape.new(name: 'DescribeLoggingStatusMessage')
|
177
177
|
DescribeNodeConfigurationOptionsMessage = Shapes::StructureShape.new(name: 'DescribeNodeConfigurationOptionsMessage')
|
178
178
|
DescribeOrderableClusterOptionsMessage = Shapes::StructureShape.new(name: 'DescribeOrderableClusterOptionsMessage')
|
179
|
+
DescribePartnersInputMessage = Shapes::StructureShape.new(name: 'DescribePartnersInputMessage')
|
180
|
+
DescribePartnersOutputMessage = Shapes::StructureShape.new(name: 'DescribePartnersOutputMessage')
|
179
181
|
DescribeReservedNodeOfferingsMessage = Shapes::StructureShape.new(name: 'DescribeReservedNodeOfferingsMessage')
|
180
182
|
DescribeReservedNodesMessage = Shapes::StructureShape.new(name: 'DescribeReservedNodesMessage')
|
181
183
|
DescribeResizeMessage = Shapes::StructureShape.new(name: 'DescribeResizeMessage')
|
@@ -328,6 +330,17 @@ module Aws::Redshift
|
|
328
330
|
ParameterApplyType = Shapes::StringShape.new(name: 'ParameterApplyType')
|
329
331
|
ParameterGroupList = Shapes::ListShape.new(name: 'ParameterGroupList')
|
330
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')
|
331
344
|
PauseClusterMessage = Shapes::StructureShape.new(name: 'PauseClusterMessage')
|
332
345
|
PauseClusterResult = Shapes::StructureShape.new(name: 'PauseClusterResult')
|
333
346
|
PendingActionsList = Shapes::ListShape.new(name: 'PendingActionsList')
|
@@ -455,9 +468,11 @@ module Aws::Redshift
|
|
455
468
|
TrackList = Shapes::ListShape.new(name: 'TrackList')
|
456
469
|
TrackListMessage = Shapes::StructureShape.new(name: 'TrackListMessage')
|
457
470
|
UnauthorizedOperation = Shapes::StructureShape.new(name: 'UnauthorizedOperation')
|
471
|
+
UnauthorizedPartnerIntegrationFault = Shapes::StructureShape.new(name: 'UnauthorizedPartnerIntegrationFault')
|
458
472
|
UnknownSnapshotCopyRegionFault = Shapes::StructureShape.new(name: 'UnknownSnapshotCopyRegionFault')
|
459
473
|
UnsupportedOperationFault = Shapes::StructureShape.new(name: 'UnsupportedOperationFault')
|
460
474
|
UnsupportedOptionFault = Shapes::StructureShape.new(name: 'UnsupportedOptionFault')
|
475
|
+
UpdatePartnerStatusInputMessage = Shapes::StructureShape.new(name: 'UpdatePartnerStatusInputMessage')
|
461
476
|
UpdateTarget = Shapes::StructureShape.new(name: 'UpdateTarget')
|
462
477
|
UsageLimit = Shapes::StructureShape.new(name: 'UsageLimit')
|
463
478
|
UsageLimitAlreadyExistsFault = Shapes::StructureShape.new(name: 'UsageLimitAlreadyExistsFault')
|
@@ -1175,6 +1190,15 @@ module Aws::Redshift
|
|
1175
1190
|
DescribeOrderableClusterOptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1176
1191
|
DescribeOrderableClusterOptionsMessage.struct_class = Types::DescribeOrderableClusterOptionsMessage
|
1177
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
|
+
|
1178
1202
|
DescribeReservedNodeOfferingsMessage.add_member(:reserved_node_offering_id, Shapes::ShapeRef.new(shape: String, location_name: "ReservedNodeOfferingId"))
|
1179
1203
|
DescribeReservedNodeOfferingsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
1180
1204
|
DescribeReservedNodeOfferingsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
@@ -1726,6 +1750,28 @@ module Aws::Redshift
|
|
1726
1750
|
|
1727
1751
|
ParametersList.member = Shapes::ShapeRef.new(shape: Parameter, location_name: "Parameter")
|
1728
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
|
+
|
1729
1775
|
PauseClusterMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
1730
1776
|
PauseClusterMessage.struct_class = Types::PauseClusterMessage
|
1731
1777
|
|
@@ -2194,12 +2240,22 @@ module Aws::Redshift
|
|
2194
2240
|
|
2195
2241
|
UnauthorizedOperation.struct_class = Types::UnauthorizedOperation
|
2196
2242
|
|
2243
|
+
UnauthorizedPartnerIntegrationFault.struct_class = Types::UnauthorizedPartnerIntegrationFault
|
2244
|
+
|
2197
2245
|
UnknownSnapshotCopyRegionFault.struct_class = Types::UnknownSnapshotCopyRegionFault
|
2198
2246
|
|
2199
2247
|
UnsupportedOperationFault.struct_class = Types::UnsupportedOperationFault
|
2200
2248
|
|
2201
2249
|
UnsupportedOptionFault.struct_class = Types::UnsupportedOptionFault
|
2202
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
|
+
|
2203
2259
|
UpdateTarget.add_member(:maintenance_track_name, Shapes::ShapeRef.new(shape: String, location_name: "MaintenanceTrackName"))
|
2204
2260
|
UpdateTarget.add_member(:database_version, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseVersion"))
|
2205
2261
|
UpdateTarget.add_member(:supported_operations, Shapes::ShapeRef.new(shape: SupportedOperationList, location_name: "SupportedOperations"))
|
@@ -2276,6 +2332,17 @@ module Aws::Redshift
|
|
2276
2332
|
o.errors << Shapes::ShapeRef.new(shape: ReservedNodeAlreadyExistsFault)
|
2277
2333
|
end)
|
2278
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
|
+
|
2279
2346
|
api.add_operation(:authorize_cluster_security_group_ingress, Seahorse::Model::Operation.new.tap do |o|
|
2280
2347
|
o.name = "AuthorizeClusterSecurityGroupIngress"
|
2281
2348
|
o.http_method = "POST"
|
@@ -2672,6 +2739,17 @@ module Aws::Redshift
|
|
2672
2739
|
o.errors << Shapes::ShapeRef.new(shape: HsmConfigurationNotFoundFault)
|
2673
2740
|
end)
|
2674
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
|
+
|
2675
2753
|
api.add_operation(:delete_scheduled_action, Seahorse::Model::Operation.new.tap do |o|
|
2676
2754
|
o.name = "DeleteScheduledAction"
|
2677
2755
|
o.http_method = "POST"
|
@@ -2895,6 +2973,12 @@ module Aws::Redshift
|
|
2895
2973
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
2896
2974
|
o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
|
2897
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
|
+
)
|
2898
2982
|
end)
|
2899
2983
|
|
2900
2984
|
api.add_operation(:describe_endpoint_authorization, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2905,6 +2989,12 @@ module Aws::Redshift
|
|
2905
2989
|
o.output = Shapes::ShapeRef.new(shape: EndpointAuthorizationList)
|
2906
2990
|
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
2907
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
|
+
)
|
2908
2998
|
end)
|
2909
2999
|
|
2910
3000
|
api.add_operation(:describe_event_categories, Seahorse::Model::Operation.new.tap do |o|
|
@@ -3018,6 +3108,16 @@ module Aws::Redshift
|
|
3018
3108
|
)
|
3019
3109
|
end)
|
3020
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
|
+
|
3021
3121
|
api.add_operation(:describe_reserved_node_offerings, Seahorse::Model::Operation.new.tap do |o|
|
3022
3122
|
o.name = "DescribeReservedNodeOfferings"
|
3023
3123
|
o.http_method = "POST"
|
@@ -3605,6 +3705,17 @@ module Aws::Redshift
|
|
3605
3705
|
o.errors << Shapes::ShapeRef.new(shape: InvalidClusterStateFault)
|
3606
3706
|
o.errors << Shapes::ShapeRef.new(shape: DependentServiceRequestThrottlingFault)
|
3607
3707
|
end)
|
3708
|
+
|
3709
|
+
api.add_operation(:update_partner_status, Seahorse::Model::Operation.new.tap do |o|
|
3710
|
+
o.name = "UpdatePartnerStatus"
|
3711
|
+
o.http_method = "POST"
|
3712
|
+
o.http_request_uri = "/"
|
3713
|
+
o.input = Shapes::ShapeRef.new(shape: UpdatePartnerStatusInputMessage)
|
3714
|
+
o.output = Shapes::ShapeRef.new(shape: PartnerIntegrationOutputMessage)
|
3715
|
+
o.errors << Shapes::ShapeRef.new(shape: PartnerNotFoundFault)
|
3716
|
+
o.errors << Shapes::ShapeRef.new(shape: ClusterNotFoundFault)
|
3717
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedPartnerIntegrationFault)
|
3718
|
+
end)
|
3608
3719
|
end
|
3609
3720
|
|
3610
3721
|
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
|
@@ -4300,11 +4300,17 @@ module Aws::Redshift
|
|
4300
4300
|
# @return [String]
|
4301
4301
|
#
|
4302
4302
|
# @!attribute [rw] max_records
|
4303
|
-
#
|
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.
|
4304
4307
|
# @return [Integer]
|
4305
4308
|
#
|
4306
4309
|
# @!attribute [rw] marker
|
4307
|
-
#
|
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.
|
4308
4314
|
# @return [String]
|
4309
4315
|
#
|
4310
4316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAccessMessage AWS API Documentation
|
@@ -4349,11 +4355,17 @@ module Aws::Redshift
|
|
4349
4355
|
# @return [Boolean]
|
4350
4356
|
#
|
4351
4357
|
# @!attribute [rw] max_records
|
4352
|
-
#
|
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.
|
4353
4362
|
# @return [Integer]
|
4354
4363
|
#
|
4355
4364
|
# @!attribute [rw] marker
|
4356
|
-
#
|
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.
|
4357
4369
|
# @return [String]
|
4358
4370
|
#
|
4359
4371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeEndpointAuthorizationMessage AWS API Documentation
|
@@ -4891,6 +4903,59 @@ module Aws::Redshift
|
|
4891
4903
|
include Aws::Structure
|
4892
4904
|
end
|
4893
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
|
+
|
4894
4959
|
# @note When making an API call, you may pass DescribeReservedNodeOfferingsMessage
|
4895
4960
|
# data as a hash:
|
4896
4961
|
#
|
@@ -5800,7 +5865,10 @@ module Aws::Redshift
|
|
5800
5865
|
# @return [Array<Types::EndpointAccess>]
|
5801
5866
|
#
|
5802
5867
|
# @!attribute [rw] marker
|
5803
|
-
#
|
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.
|
5804
5872
|
# @return [String]
|
5805
5873
|
#
|
5806
5874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAccessList AWS API Documentation
|
@@ -5887,7 +5955,10 @@ module Aws::Redshift
|
|
5887
5955
|
# @return [Array<Types::EndpointAuthorization>]
|
5888
5956
|
#
|
5889
5957
|
# @!attribute [rw] marker
|
5890
|
-
#
|
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.
|
5891
5962
|
# @return [String]
|
5892
5963
|
#
|
5893
5964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EndpointAuthorizationList AWS API Documentation
|
@@ -8228,6 +8299,107 @@ module Aws::Redshift
|
|
8228
8299
|
include Aws::Structure
|
8229
8300
|
end
|
8230
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
|
+
|
8231
8403
|
# Describes a pause cluster operation. For example, a scheduled action
|
8232
8404
|
# to run the `PauseCluster` API operation.
|
8233
8405
|
#
|
@@ -10733,6 +10905,12 @@ module Aws::Redshift
|
|
10733
10905
|
#
|
10734
10906
|
class UnauthorizedOperation < Aws::EmptyStructure; end
|
10735
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
|
+
|
10736
10914
|
# The specified region is incorrect or does not exist.
|
10737
10915
|
#
|
10738
10916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UnknownSnapshotCopyRegionFault AWS API Documentation
|
@@ -10751,6 +10929,57 @@ module Aws::Redshift
|
|
10751
10929
|
#
|
10752
10930
|
class UnsupportedOptionFault < Aws::EmptyStructure; end
|
10753
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
|
+
|
10754
10983
|
# A maintenance track that you can switch the current track to.
|
10755
10984
|
#
|
10756
10985
|
# @!attribute [rw] maintenance_track_name
|
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.62.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-04-
|
11
|
+
date: 2021-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
87
|
rubyforge_project:
|
88
|
-
rubygems_version: 2.7.6.
|
88
|
+
rubygems_version: 2.7.6.3
|
89
89
|
signing_key:
|
90
90
|
specification_version: 4
|
91
91
|
summary: AWS SDK for Ruby - Amazon Redshift
|