aws-sdk-partnercentralaccount 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-partnercentralaccount/client.rb +114 -1
- data/lib/aws-sdk-partnercentralaccount/client_api.rb +99 -0
- data/lib/aws-sdk-partnercentralaccount/types.rb +277 -0
- data/lib/aws-sdk-partnercentralaccount.rb +1 -1
- data/sig/client.rbs +40 -0
- data/sig/types.rbs +83 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb70641008629961ec6a8d6b99d1b3612547583e024ec1a292e77a9572822a20
|
|
4
|
+
data.tar.gz: 716786154b83e69690a397bdeefa0e5d7a3f05ea09dc0a77334796a5eec2d8c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf9e2f07ae37f9c82215cf2b733c14399ddb7f1e577e024b8663cdb938044a8ee6d3df8e796024152f5aba65850c70d49db999e67f4c640b889003e172feb4e6
|
|
7
|
+
data.tar.gz: 95ea9fe027e78edaa3b1de64a23a7632df95ecb47f79e0fd6b57ae0d9376868224ffd86a04144086234691118c5df505069a386a06f26edc9719430e7d801d4d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.1.0
|
|
@@ -1388,6 +1388,53 @@ module Aws::PartnerCentralAccount
|
|
|
1388
1388
|
req.send_request(options)
|
|
1389
1389
|
end
|
|
1390
1390
|
|
|
1391
|
+
# Retrieves the current status and details of a verification process for
|
|
1392
|
+
# a partner account. This operation allows partners to check the
|
|
1393
|
+
# progress and results of business or registrant verification processes.
|
|
1394
|
+
#
|
|
1395
|
+
# @option params [required, String] :verification_type
|
|
1396
|
+
# The type of verification to retrieve information for. Valid values
|
|
1397
|
+
# include business verification for company registration details and
|
|
1398
|
+
# registrant verification for individual identity confirmation.
|
|
1399
|
+
#
|
|
1400
|
+
# @return [Types::GetVerificationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1401
|
+
#
|
|
1402
|
+
# * {Types::GetVerificationResponse#verification_type #verification_type} => String
|
|
1403
|
+
# * {Types::GetVerificationResponse#verification_status #verification_status} => String
|
|
1404
|
+
# * {Types::GetVerificationResponse#verification_status_reason #verification_status_reason} => String
|
|
1405
|
+
# * {Types::GetVerificationResponse#verification_response_details #verification_response_details} => Types::VerificationResponseDetails
|
|
1406
|
+
# * {Types::GetVerificationResponse#started_at #started_at} => Time
|
|
1407
|
+
# * {Types::GetVerificationResponse#completed_at #completed_at} => Time
|
|
1408
|
+
#
|
|
1409
|
+
# @example Request syntax with placeholder values
|
|
1410
|
+
#
|
|
1411
|
+
# resp = client.get_verification({
|
|
1412
|
+
# verification_type: "BUSINESS_VERIFICATION", # required, accepts BUSINESS_VERIFICATION, REGISTRANT_VERIFICATION
|
|
1413
|
+
# })
|
|
1414
|
+
#
|
|
1415
|
+
# @example Response structure
|
|
1416
|
+
#
|
|
1417
|
+
# resp.verification_type #=> String, one of "BUSINESS_VERIFICATION", "REGISTRANT_VERIFICATION"
|
|
1418
|
+
# resp.verification_status #=> String, one of "PENDING_CUSTOMER_ACTION", "IN_PROGRESS", "FAILED", "SUCCEEDED", "REJECTED"
|
|
1419
|
+
# resp.verification_status_reason #=> String
|
|
1420
|
+
# resp.verification_response_details.business_verification_response.business_verification_details.legal_name #=> String
|
|
1421
|
+
# resp.verification_response_details.business_verification_response.business_verification_details.registration_id #=> String
|
|
1422
|
+
# resp.verification_response_details.business_verification_response.business_verification_details.country_code #=> String
|
|
1423
|
+
# resp.verification_response_details.business_verification_response.business_verification_details.jurisdiction_of_incorporation #=> String
|
|
1424
|
+
# resp.verification_response_details.registrant_verification_response.completion_url #=> String
|
|
1425
|
+
# resp.verification_response_details.registrant_verification_response.completion_url_expires_at #=> Time
|
|
1426
|
+
# resp.started_at #=> Time
|
|
1427
|
+
# resp.completed_at #=> Time
|
|
1428
|
+
#
|
|
1429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetVerification AWS API Documentation
|
|
1430
|
+
#
|
|
1431
|
+
# @overload get_verification(params = {})
|
|
1432
|
+
# @param [Hash] params ({})
|
|
1433
|
+
def get_verification(params = {}, options = {})
|
|
1434
|
+
req = build_request(:get_verification, params)
|
|
1435
|
+
req.send_request(options)
|
|
1436
|
+
end
|
|
1437
|
+
|
|
1391
1438
|
# Lists connection invitations for the partner account, with optional
|
|
1392
1439
|
# filtering by status, type, and other criteria.
|
|
1393
1440
|
#
|
|
@@ -1892,6 +1939,72 @@ module Aws::PartnerCentralAccount
|
|
|
1892
1939
|
req.send_request(options)
|
|
1893
1940
|
end
|
|
1894
1941
|
|
|
1942
|
+
# Initiates a new verification process for a partner account. This
|
|
1943
|
+
# operation begins the verification workflow for either business
|
|
1944
|
+
# registration or individual registrant identity verification as
|
|
1945
|
+
# required by AWS Partner Central.
|
|
1946
|
+
#
|
|
1947
|
+
# @option params [String] :client_token
|
|
1948
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
1949
|
+
# idempotency of the request. This prevents duplicate verification
|
|
1950
|
+
# processes from being started accidentally.
|
|
1951
|
+
#
|
|
1952
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1953
|
+
# not need to pass this option.**
|
|
1954
|
+
#
|
|
1955
|
+
# @option params [Types::VerificationDetails] :verification_details
|
|
1956
|
+
# The specific details required for the verification process, including
|
|
1957
|
+
# business information for business verification or personal information
|
|
1958
|
+
# for registrant verification.
|
|
1959
|
+
#
|
|
1960
|
+
# @return [Types::StartVerificationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1961
|
+
#
|
|
1962
|
+
# * {Types::StartVerificationResponse#verification_type #verification_type} => String
|
|
1963
|
+
# * {Types::StartVerificationResponse#verification_status #verification_status} => String
|
|
1964
|
+
# * {Types::StartVerificationResponse#verification_status_reason #verification_status_reason} => String
|
|
1965
|
+
# * {Types::StartVerificationResponse#verification_response_details #verification_response_details} => Types::VerificationResponseDetails
|
|
1966
|
+
# * {Types::StartVerificationResponse#started_at #started_at} => Time
|
|
1967
|
+
# * {Types::StartVerificationResponse#completed_at #completed_at} => Time
|
|
1968
|
+
#
|
|
1969
|
+
# @example Request syntax with placeholder values
|
|
1970
|
+
#
|
|
1971
|
+
# resp = client.start_verification({
|
|
1972
|
+
# client_token: "ClientToken",
|
|
1973
|
+
# verification_details: {
|
|
1974
|
+
# business_verification_details: {
|
|
1975
|
+
# legal_name: "LegalName", # required
|
|
1976
|
+
# registration_id: "RegistrationId", # required
|
|
1977
|
+
# country_code: "CountryCode", # required
|
|
1978
|
+
# jurisdiction_of_incorporation: "JurisdictionCode",
|
|
1979
|
+
# },
|
|
1980
|
+
# registrant_verification_details: {
|
|
1981
|
+
# },
|
|
1982
|
+
# },
|
|
1983
|
+
# })
|
|
1984
|
+
#
|
|
1985
|
+
# @example Response structure
|
|
1986
|
+
#
|
|
1987
|
+
# resp.verification_type #=> String, one of "BUSINESS_VERIFICATION", "REGISTRANT_VERIFICATION"
|
|
1988
|
+
# resp.verification_status #=> String, one of "PENDING_CUSTOMER_ACTION", "IN_PROGRESS", "FAILED", "SUCCEEDED", "REJECTED"
|
|
1989
|
+
# resp.verification_status_reason #=> String
|
|
1990
|
+
# resp.verification_response_details.business_verification_response.business_verification_details.legal_name #=> String
|
|
1991
|
+
# resp.verification_response_details.business_verification_response.business_verification_details.registration_id #=> String
|
|
1992
|
+
# resp.verification_response_details.business_verification_response.business_verification_details.country_code #=> String
|
|
1993
|
+
# resp.verification_response_details.business_verification_response.business_verification_details.jurisdiction_of_incorporation #=> String
|
|
1994
|
+
# resp.verification_response_details.registrant_verification_response.completion_url #=> String
|
|
1995
|
+
# resp.verification_response_details.registrant_verification_response.completion_url_expires_at #=> Time
|
|
1996
|
+
# resp.started_at #=> Time
|
|
1997
|
+
# resp.completed_at #=> Time
|
|
1998
|
+
#
|
|
1999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/StartVerification AWS API Documentation
|
|
2000
|
+
#
|
|
2001
|
+
# @overload start_verification(params = {})
|
|
2002
|
+
# @param [Hash] params ({})
|
|
2003
|
+
def start_verification(params = {}, options = {})
|
|
2004
|
+
req = build_request(:start_verification, params)
|
|
2005
|
+
req.send_request(options)
|
|
2006
|
+
end
|
|
2007
|
+
|
|
1895
2008
|
# Adds or updates tags for a specified AWS Partner Central Account
|
|
1896
2009
|
# resource.
|
|
1897
2010
|
#
|
|
@@ -2023,7 +2136,7 @@ module Aws::PartnerCentralAccount
|
|
|
2023
2136
|
tracer: tracer
|
|
2024
2137
|
)
|
|
2025
2138
|
context[:gem_name] = 'aws-sdk-partnercentralaccount'
|
|
2026
|
-
context[:gem_version] = '1.
|
|
2139
|
+
context[:gem_version] = '1.1.0'
|
|
2027
2140
|
Seahorse::Client::Request.new(handlers, context)
|
|
2028
2141
|
end
|
|
2029
2142
|
|
|
@@ -26,6 +26,8 @@ module Aws::PartnerCentralAccount
|
|
|
26
26
|
AwsAccountId = Shapes::StringShape.new(name: 'AwsAccountId')
|
|
27
27
|
BusinessValidationCode = Shapes::StringShape.new(name: 'BusinessValidationCode')
|
|
28
28
|
BusinessValidationError = Shapes::StructureShape.new(name: 'BusinessValidationError')
|
|
29
|
+
BusinessVerificationDetails = Shapes::StructureShape.new(name: 'BusinessVerificationDetails')
|
|
30
|
+
BusinessVerificationResponse = Shapes::StructureShape.new(name: 'BusinessVerificationResponse')
|
|
29
31
|
CancelConnectionInvitationRequest = Shapes::StructureShape.new(name: 'CancelConnectionInvitationRequest')
|
|
30
32
|
CancelConnectionInvitationResponse = Shapes::StructureShape.new(name: 'CancelConnectionInvitationResponse')
|
|
31
33
|
CancelConnectionInvitationResponseInvitationMessageString = Shapes::StringShape.new(name: 'CancelConnectionInvitationResponseInvitationMessageString')
|
|
@@ -36,6 +38,7 @@ module Aws::PartnerCentralAccount
|
|
|
36
38
|
CancelProfileUpdateTaskResponse = Shapes::StructureShape.new(name: 'CancelProfileUpdateTaskResponse')
|
|
37
39
|
Catalog = Shapes::StringShape.new(name: 'Catalog')
|
|
38
40
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
41
|
+
CompletionUrl = Shapes::StringShape.new(name: 'CompletionUrl')
|
|
39
42
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
40
43
|
ConflictExceptionReason = Shapes::StringShape.new(name: 'ConflictExceptionReason')
|
|
41
44
|
Connection = Shapes::StructureShape.new(name: 'Connection')
|
|
@@ -55,6 +58,7 @@ module Aws::PartnerCentralAccount
|
|
|
55
58
|
ConnectionTypeStatus = Shapes::StringShape.new(name: 'ConnectionTypeStatus')
|
|
56
59
|
ConnectionTypeSummary = Shapes::StructureShape.new(name: 'ConnectionTypeSummary')
|
|
57
60
|
ConnectionTypeSummaryMap = Shapes::MapShape.new(name: 'ConnectionTypeSummaryMap')
|
|
61
|
+
CountryCode = Shapes::StringShape.new(name: 'CountryCode')
|
|
58
62
|
CreateConnectionInvitationRequest = Shapes::StructureShape.new(name: 'CreateConnectionInvitationRequest')
|
|
59
63
|
CreateConnectionInvitationRequestMessageString = Shapes::StringShape.new(name: 'CreateConnectionInvitationRequestMessageString')
|
|
60
64
|
CreateConnectionInvitationResponse = Shapes::StructureShape.new(name: 'CreateConnectionInvitationResponse')
|
|
@@ -86,10 +90,14 @@ module Aws::PartnerCentralAccount
|
|
|
86
90
|
GetProfileUpdateTaskResponse = Shapes::StructureShape.new(name: 'GetProfileUpdateTaskResponse')
|
|
87
91
|
GetProfileVisibilityRequest = Shapes::StructureShape.new(name: 'GetProfileVisibilityRequest')
|
|
88
92
|
GetProfileVisibilityResponse = Shapes::StructureShape.new(name: 'GetProfileVisibilityResponse')
|
|
93
|
+
GetVerificationRequest = Shapes::StructureShape.new(name: 'GetVerificationRequest')
|
|
94
|
+
GetVerificationResponse = Shapes::StructureShape.new(name: 'GetVerificationResponse')
|
|
89
95
|
IndustrySegment = Shapes::StringShape.new(name: 'IndustrySegment')
|
|
90
96
|
IndustrySegmentList = Shapes::ListShape.new(name: 'IndustrySegmentList')
|
|
91
97
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
|
92
98
|
InvitationStatus = Shapes::StringShape.new(name: 'InvitationStatus')
|
|
99
|
+
JurisdictionCode = Shapes::StringShape.new(name: 'JurisdictionCode')
|
|
100
|
+
LegalName = Shapes::StringShape.new(name: 'LegalName')
|
|
93
101
|
ListConnectionInvitationsRequest = Shapes::StructureShape.new(name: 'ListConnectionInvitationsRequest')
|
|
94
102
|
ListConnectionInvitationsResponse = Shapes::StructureShape.new(name: 'ListConnectionInvitationsResponse')
|
|
95
103
|
ListConnectionsRequest = Shapes::StructureShape.new(name: 'ListConnectionsRequest')
|
|
@@ -128,6 +136,9 @@ module Aws::PartnerCentralAccount
|
|
|
128
136
|
PutAllianceLeadContactResponse = Shapes::StructureShape.new(name: 'PutAllianceLeadContactResponse')
|
|
129
137
|
PutProfileVisibilityRequest = Shapes::StructureShape.new(name: 'PutProfileVisibilityRequest')
|
|
130
138
|
PutProfileVisibilityResponse = Shapes::StructureShape.new(name: 'PutProfileVisibilityResponse')
|
|
139
|
+
RegistrantVerificationDetails = Shapes::StructureShape.new(name: 'RegistrantVerificationDetails')
|
|
140
|
+
RegistrantVerificationResponse = Shapes::StructureShape.new(name: 'RegistrantVerificationResponse')
|
|
141
|
+
RegistrationId = Shapes::StringShape.new(name: 'RegistrationId')
|
|
131
142
|
RejectConnectionInvitationRequest = Shapes::StructureShape.new(name: 'RejectConnectionInvitationRequest')
|
|
132
143
|
RejectConnectionInvitationRequestReasonString = Shapes::StringShape.new(name: 'RejectConnectionInvitationRequestReasonString')
|
|
133
144
|
RejectConnectionInvitationResponse = Shapes::StructureShape.new(name: 'RejectConnectionInvitationResponse')
|
|
@@ -144,6 +155,8 @@ module Aws::PartnerCentralAccount
|
|
|
144
155
|
ServiceQuotaExceededExceptionReason = Shapes::StringShape.new(name: 'ServiceQuotaExceededExceptionReason')
|
|
145
156
|
StartProfileUpdateTaskRequest = Shapes::StructureShape.new(name: 'StartProfileUpdateTaskRequest')
|
|
146
157
|
StartProfileUpdateTaskResponse = Shapes::StructureShape.new(name: 'StartProfileUpdateTaskResponse')
|
|
158
|
+
StartVerificationRequest = Shapes::StructureShape.new(name: 'StartVerificationRequest')
|
|
159
|
+
StartVerificationResponse = Shapes::StructureShape.new(name: 'StartVerificationResponse')
|
|
147
160
|
String = Shapes::StringShape.new(name: 'String')
|
|
148
161
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
|
149
162
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
@@ -167,6 +180,11 @@ module Aws::PartnerCentralAccount
|
|
|
167
180
|
ValidationErrorList = Shapes::ListShape.new(name: 'ValidationErrorList')
|
|
168
181
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
169
182
|
ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
|
|
183
|
+
VerificationDetails = Shapes::UnionShape.new(name: 'VerificationDetails')
|
|
184
|
+
VerificationResponseDetails = Shapes::UnionShape.new(name: 'VerificationResponseDetails')
|
|
185
|
+
VerificationStatus = Shapes::StringShape.new(name: 'VerificationStatus')
|
|
186
|
+
VerificationStatusReason = Shapes::StringShape.new(name: 'VerificationStatusReason')
|
|
187
|
+
VerificationType = Shapes::StringShape.new(name: 'VerificationType')
|
|
170
188
|
|
|
171
189
|
AcceptConnectionInvitationRequest.add_member(:catalog, Shapes::ShapeRef.new(shape: Catalog, required: true, location_name: "Catalog"))
|
|
172
190
|
AcceptConnectionInvitationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: ConnectionInvitationId, required: true, location_name: "Identifier"))
|
|
@@ -202,6 +220,15 @@ module Aws::PartnerCentralAccount
|
|
|
202
220
|
BusinessValidationError.add_member(:code, Shapes::ShapeRef.new(shape: BusinessValidationCode, required: true, location_name: "Code"))
|
|
203
221
|
BusinessValidationError.struct_class = Types::BusinessValidationError
|
|
204
222
|
|
|
223
|
+
BusinessVerificationDetails.add_member(:legal_name, Shapes::ShapeRef.new(shape: LegalName, required: true, location_name: "LegalName"))
|
|
224
|
+
BusinessVerificationDetails.add_member(:registration_id, Shapes::ShapeRef.new(shape: RegistrationId, required: true, location_name: "RegistrationId"))
|
|
225
|
+
BusinessVerificationDetails.add_member(:country_code, Shapes::ShapeRef.new(shape: CountryCode, required: true, location_name: "CountryCode"))
|
|
226
|
+
BusinessVerificationDetails.add_member(:jurisdiction_of_incorporation, Shapes::ShapeRef.new(shape: JurisdictionCode, location_name: "JurisdictionOfIncorporation"))
|
|
227
|
+
BusinessVerificationDetails.struct_class = Types::BusinessVerificationDetails
|
|
228
|
+
|
|
229
|
+
BusinessVerificationResponse.add_member(:business_verification_details, Shapes::ShapeRef.new(shape: BusinessVerificationDetails, required: true, location_name: "BusinessVerificationDetails"))
|
|
230
|
+
BusinessVerificationResponse.struct_class = Types::BusinessVerificationResponse
|
|
231
|
+
|
|
205
232
|
CancelConnectionInvitationRequest.add_member(:catalog, Shapes::ShapeRef.new(shape: Catalog, required: true, location_name: "Catalog"))
|
|
206
233
|
CancelConnectionInvitationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: ConnectionInvitationId, required: true, location_name: "Identifier"))
|
|
207
234
|
CancelConnectionInvitationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
@@ -467,6 +494,17 @@ module Aws::PartnerCentralAccount
|
|
|
467
494
|
GetProfileVisibilityResponse.add_member(:profile_id, Shapes::ShapeRef.new(shape: PartnerProfileId, required: true, location_name: "ProfileId"))
|
|
468
495
|
GetProfileVisibilityResponse.struct_class = Types::GetProfileVisibilityResponse
|
|
469
496
|
|
|
497
|
+
GetVerificationRequest.add_member(:verification_type, Shapes::ShapeRef.new(shape: VerificationType, required: true, location_name: "VerificationType"))
|
|
498
|
+
GetVerificationRequest.struct_class = Types::GetVerificationRequest
|
|
499
|
+
|
|
500
|
+
GetVerificationResponse.add_member(:verification_type, Shapes::ShapeRef.new(shape: VerificationType, required: true, location_name: "VerificationType"))
|
|
501
|
+
GetVerificationResponse.add_member(:verification_status, Shapes::ShapeRef.new(shape: VerificationStatus, required: true, location_name: "VerificationStatus"))
|
|
502
|
+
GetVerificationResponse.add_member(:verification_status_reason, Shapes::ShapeRef.new(shape: VerificationStatusReason, location_name: "VerificationStatusReason"))
|
|
503
|
+
GetVerificationResponse.add_member(:verification_response_details, Shapes::ShapeRef.new(shape: VerificationResponseDetails, required: true, location_name: "VerificationResponseDetails"))
|
|
504
|
+
GetVerificationResponse.add_member(:started_at, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "StartedAt"))
|
|
505
|
+
GetVerificationResponse.add_member(:completed_at, Shapes::ShapeRef.new(shape: DateTime, location_name: "CompletedAt"))
|
|
506
|
+
GetVerificationResponse.struct_class = Types::GetVerificationResponse
|
|
507
|
+
|
|
470
508
|
IndustrySegmentList.member = Shapes::ShapeRef.new(shape: IndustrySegment)
|
|
471
509
|
|
|
472
510
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
|
@@ -586,6 +624,12 @@ module Aws::PartnerCentralAccount
|
|
|
586
624
|
PutProfileVisibilityResponse.add_member(:profile_id, Shapes::ShapeRef.new(shape: PartnerProfileId, required: true, location_name: "ProfileId"))
|
|
587
625
|
PutProfileVisibilityResponse.struct_class = Types::PutProfileVisibilityResponse
|
|
588
626
|
|
|
627
|
+
RegistrantVerificationDetails.struct_class = Types::RegistrantVerificationDetails
|
|
628
|
+
|
|
629
|
+
RegistrantVerificationResponse.add_member(:completion_url, Shapes::ShapeRef.new(shape: CompletionUrl, required: true, location_name: "CompletionUrl"))
|
|
630
|
+
RegistrantVerificationResponse.add_member(:completion_url_expires_at, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "CompletionUrlExpiresAt"))
|
|
631
|
+
RegistrantVerificationResponse.struct_class = Types::RegistrantVerificationResponse
|
|
632
|
+
|
|
589
633
|
RejectConnectionInvitationRequest.add_member(:catalog, Shapes::ShapeRef.new(shape: Catalog, required: true, location_name: "Catalog"))
|
|
590
634
|
RejectConnectionInvitationRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: ConnectionInvitationId, required: true, location_name: "Identifier"))
|
|
591
635
|
RejectConnectionInvitationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
@@ -643,6 +687,18 @@ module Aws::PartnerCentralAccount
|
|
|
643
687
|
StartProfileUpdateTaskResponse.add_member(:error_detail_list, Shapes::ShapeRef.new(shape: ErrorDetailList, location_name: "ErrorDetailList"))
|
|
644
688
|
StartProfileUpdateTaskResponse.struct_class = Types::StartProfileUpdateTaskResponse
|
|
645
689
|
|
|
690
|
+
StartVerificationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
691
|
+
StartVerificationRequest.add_member(:verification_details, Shapes::ShapeRef.new(shape: VerificationDetails, location_name: "VerificationDetails"))
|
|
692
|
+
StartVerificationRequest.struct_class = Types::StartVerificationRequest
|
|
693
|
+
|
|
694
|
+
StartVerificationResponse.add_member(:verification_type, Shapes::ShapeRef.new(shape: VerificationType, required: true, location_name: "VerificationType"))
|
|
695
|
+
StartVerificationResponse.add_member(:verification_status, Shapes::ShapeRef.new(shape: VerificationStatus, required: true, location_name: "VerificationStatus"))
|
|
696
|
+
StartVerificationResponse.add_member(:verification_status_reason, Shapes::ShapeRef.new(shape: VerificationStatusReason, location_name: "VerificationStatusReason"))
|
|
697
|
+
StartVerificationResponse.add_member(:verification_response_details, Shapes::ShapeRef.new(shape: VerificationResponseDetails, required: true, location_name: "VerificationResponseDetails"))
|
|
698
|
+
StartVerificationResponse.add_member(:started_at, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "StartedAt"))
|
|
699
|
+
StartVerificationResponse.add_member(:completed_at, Shapes::ShapeRef.new(shape: DateTime, location_name: "CompletedAt"))
|
|
700
|
+
StartVerificationResponse.struct_class = Types::StartVerificationResponse
|
|
701
|
+
|
|
646
702
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
|
647
703
|
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
|
|
648
704
|
Tag.struct_class = Types::Tag
|
|
@@ -709,6 +765,22 @@ module Aws::PartnerCentralAccount
|
|
|
709
765
|
ValidationException.add_member(:error_details, Shapes::ShapeRef.new(shape: ValidationErrorList, location_name: "ErrorDetails"))
|
|
710
766
|
ValidationException.struct_class = Types::ValidationException
|
|
711
767
|
|
|
768
|
+
VerificationDetails.add_member(:business_verification_details, Shapes::ShapeRef.new(shape: BusinessVerificationDetails, location_name: "BusinessVerificationDetails"))
|
|
769
|
+
VerificationDetails.add_member(:registrant_verification_details, Shapes::ShapeRef.new(shape: RegistrantVerificationDetails, location_name: "RegistrantVerificationDetails"))
|
|
770
|
+
VerificationDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
771
|
+
VerificationDetails.add_member_subclass(:business_verification_details, Types::VerificationDetails::BusinessVerificationDetails)
|
|
772
|
+
VerificationDetails.add_member_subclass(:registrant_verification_details, Types::VerificationDetails::RegistrantVerificationDetails)
|
|
773
|
+
VerificationDetails.add_member_subclass(:unknown, Types::VerificationDetails::Unknown)
|
|
774
|
+
VerificationDetails.struct_class = Types::VerificationDetails
|
|
775
|
+
|
|
776
|
+
VerificationResponseDetails.add_member(:business_verification_response, Shapes::ShapeRef.new(shape: BusinessVerificationResponse, location_name: "BusinessVerificationResponse"))
|
|
777
|
+
VerificationResponseDetails.add_member(:registrant_verification_response, Shapes::ShapeRef.new(shape: RegistrantVerificationResponse, location_name: "RegistrantVerificationResponse"))
|
|
778
|
+
VerificationResponseDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
779
|
+
VerificationResponseDetails.add_member_subclass(:business_verification_response, Types::VerificationResponseDetails::BusinessVerificationResponse)
|
|
780
|
+
VerificationResponseDetails.add_member_subclass(:registrant_verification_response, Types::VerificationResponseDetails::RegistrantVerificationResponse)
|
|
781
|
+
VerificationResponseDetails.add_member_subclass(:unknown, Types::VerificationResponseDetails::Unknown)
|
|
782
|
+
VerificationResponseDetails.struct_class = Types::VerificationResponseDetails
|
|
783
|
+
|
|
712
784
|
|
|
713
785
|
# @api private
|
|
714
786
|
API = Seahorse::Model::Api.new.tap do |api|
|
|
@@ -930,6 +1002,19 @@ module Aws::PartnerCentralAccount
|
|
|
930
1002
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
931
1003
|
end)
|
|
932
1004
|
|
|
1005
|
+
api.add_operation(:get_verification, Seahorse::Model::Operation.new.tap do |o|
|
|
1006
|
+
o.name = "GetVerification"
|
|
1007
|
+
o.http_method = "POST"
|
|
1008
|
+
o.http_request_uri = "/"
|
|
1009
|
+
o.input = Shapes::ShapeRef.new(shape: GetVerificationRequest)
|
|
1010
|
+
o.output = Shapes::ShapeRef.new(shape: GetVerificationResponse)
|
|
1011
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1012
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1013
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1014
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1015
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1016
|
+
end)
|
|
1017
|
+
|
|
933
1018
|
api.add_operation(:list_connection_invitations, Seahorse::Model::Operation.new.tap do |o|
|
|
934
1019
|
o.name = "ListConnectionInvitations"
|
|
935
1020
|
o.http_method = "POST"
|
|
@@ -1063,6 +1148,20 @@ module Aws::PartnerCentralAccount
|
|
|
1063
1148
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1064
1149
|
end)
|
|
1065
1150
|
|
|
1151
|
+
api.add_operation(:start_verification, Seahorse::Model::Operation.new.tap do |o|
|
|
1152
|
+
o.name = "StartVerification"
|
|
1153
|
+
o.http_method = "POST"
|
|
1154
|
+
o.http_request_uri = "/"
|
|
1155
|
+
o.input = Shapes::ShapeRef.new(shape: StartVerificationRequest)
|
|
1156
|
+
o.output = Shapes::ShapeRef.new(shape: StartVerificationResponse)
|
|
1157
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1158
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1159
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1160
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1161
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1162
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1163
|
+
end)
|
|
1164
|
+
|
|
1066
1165
|
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
1067
1166
|
o.name = "TagResource"
|
|
1068
1167
|
o.http_method = "POST"
|
|
@@ -173,6 +173,60 @@ module Aws::PartnerCentralAccount
|
|
|
173
173
|
include Aws::Structure
|
|
174
174
|
end
|
|
175
175
|
|
|
176
|
+
# Contains the business information required for verifying a company's
|
|
177
|
+
# legal status and registration details within AWS Partner Central.
|
|
178
|
+
#
|
|
179
|
+
# @!attribute [rw] legal_name
|
|
180
|
+
# The official legal name of the business as registered with the
|
|
181
|
+
# appropriate government authorities.
|
|
182
|
+
# @return [String]
|
|
183
|
+
#
|
|
184
|
+
# @!attribute [rw] registration_id
|
|
185
|
+
# The unique business registration identifier assigned by the
|
|
186
|
+
# government or regulatory authority, such as a company registration
|
|
187
|
+
# number or tax identification number.
|
|
188
|
+
# @return [String]
|
|
189
|
+
#
|
|
190
|
+
# @!attribute [rw] country_code
|
|
191
|
+
# The ISO 3166-1 alpha-2 country code where the business is legally
|
|
192
|
+
# registered and operates.
|
|
193
|
+
# @return [String]
|
|
194
|
+
#
|
|
195
|
+
# @!attribute [rw] jurisdiction_of_incorporation
|
|
196
|
+
# The specific legal jurisdiction or state where the business was
|
|
197
|
+
# incorporated or registered, providing additional location context
|
|
198
|
+
# beyond the country code.
|
|
199
|
+
# @return [String]
|
|
200
|
+
#
|
|
201
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/BusinessVerificationDetails AWS API Documentation
|
|
202
|
+
#
|
|
203
|
+
class BusinessVerificationDetails < Struct.new(
|
|
204
|
+
:legal_name,
|
|
205
|
+
:registration_id,
|
|
206
|
+
:country_code,
|
|
207
|
+
:jurisdiction_of_incorporation)
|
|
208
|
+
SENSITIVE = [:legal_name, :registration_id]
|
|
209
|
+
include Aws::Structure
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
# Contains the response information and results from a business
|
|
213
|
+
# verification process, including any verification-specific data
|
|
214
|
+
# returned by the verification service.
|
|
215
|
+
#
|
|
216
|
+
# @!attribute [rw] business_verification_details
|
|
217
|
+
# The business verification details that were processed and verified,
|
|
218
|
+
# potentially including additional information discovered during the
|
|
219
|
+
# verification process.
|
|
220
|
+
# @return [Types::BusinessVerificationDetails]
|
|
221
|
+
#
|
|
222
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/BusinessVerificationResponse AWS API Documentation
|
|
223
|
+
#
|
|
224
|
+
class BusinessVerificationResponse < Struct.new(
|
|
225
|
+
:business_verification_details)
|
|
226
|
+
SENSITIVE = []
|
|
227
|
+
include Aws::Structure
|
|
228
|
+
end
|
|
229
|
+
|
|
176
230
|
# @!attribute [rw] catalog
|
|
177
231
|
# The catalog identifier where the connection invitation exists.
|
|
178
232
|
# @return [String]
|
|
@@ -1419,6 +1473,62 @@ module Aws::PartnerCentralAccount
|
|
|
1419
1473
|
include Aws::Structure
|
|
1420
1474
|
end
|
|
1421
1475
|
|
|
1476
|
+
# @!attribute [rw] verification_type
|
|
1477
|
+
# The type of verification to retrieve information for. Valid values
|
|
1478
|
+
# include business verification for company registration details and
|
|
1479
|
+
# registrant verification for individual identity confirmation.
|
|
1480
|
+
# @return [String]
|
|
1481
|
+
#
|
|
1482
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetVerificationRequest AWS API Documentation
|
|
1483
|
+
#
|
|
1484
|
+
class GetVerificationRequest < Struct.new(
|
|
1485
|
+
:verification_type)
|
|
1486
|
+
SENSITIVE = []
|
|
1487
|
+
include Aws::Structure
|
|
1488
|
+
end
|
|
1489
|
+
|
|
1490
|
+
# @!attribute [rw] verification_type
|
|
1491
|
+
# The type of verification that was requested and processed.
|
|
1492
|
+
# @return [String]
|
|
1493
|
+
#
|
|
1494
|
+
# @!attribute [rw] verification_status
|
|
1495
|
+
# The current status of the verification process. Possible values
|
|
1496
|
+
# include pending, in-progress, completed, failed, or expired.
|
|
1497
|
+
# @return [String]
|
|
1498
|
+
#
|
|
1499
|
+
# @!attribute [rw] verification_status_reason
|
|
1500
|
+
# Additional information explaining the current verification status,
|
|
1501
|
+
# particularly useful when the status indicates a failure or requires
|
|
1502
|
+
# additional action.
|
|
1503
|
+
# @return [String]
|
|
1504
|
+
#
|
|
1505
|
+
# @!attribute [rw] verification_response_details
|
|
1506
|
+
# Detailed response information specific to the type of verification
|
|
1507
|
+
# performed, including any verification-specific data or results.
|
|
1508
|
+
# @return [Types::VerificationResponseDetails]
|
|
1509
|
+
#
|
|
1510
|
+
# @!attribute [rw] started_at
|
|
1511
|
+
# The timestamp when the verification process was initiated.
|
|
1512
|
+
# @return [Time]
|
|
1513
|
+
#
|
|
1514
|
+
# @!attribute [rw] completed_at
|
|
1515
|
+
# The timestamp when the verification process was completed. This
|
|
1516
|
+
# field is null if the verification is still in progress.
|
|
1517
|
+
# @return [Time]
|
|
1518
|
+
#
|
|
1519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetVerificationResponse AWS API Documentation
|
|
1520
|
+
#
|
|
1521
|
+
class GetVerificationResponse < Struct.new(
|
|
1522
|
+
:verification_type,
|
|
1523
|
+
:verification_status,
|
|
1524
|
+
:verification_status_reason,
|
|
1525
|
+
:verification_response_details,
|
|
1526
|
+
:started_at,
|
|
1527
|
+
:completed_at)
|
|
1528
|
+
SENSITIVE = []
|
|
1529
|
+
include Aws::Structure
|
|
1530
|
+
end
|
|
1531
|
+
|
|
1422
1532
|
# An internal server error occurred while processing the request. This
|
|
1423
1533
|
# is typically a temporary condition and the request may be retried.
|
|
1424
1534
|
#
|
|
@@ -1928,6 +2038,40 @@ module Aws::PartnerCentralAccount
|
|
|
1928
2038
|
include Aws::Structure
|
|
1929
2039
|
end
|
|
1930
2040
|
|
|
2041
|
+
# Contains the personal information required for verifying an
|
|
2042
|
+
# individual's identity as part of the partner registration process in
|
|
2043
|
+
# AWS Partner Central.
|
|
2044
|
+
#
|
|
2045
|
+
# @api private
|
|
2046
|
+
#
|
|
2047
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/RegistrantVerificationDetails AWS API Documentation
|
|
2048
|
+
#
|
|
2049
|
+
class RegistrantVerificationDetails < Aws::EmptyStructure; end
|
|
2050
|
+
|
|
2051
|
+
# Contains the response information from a registrant verification
|
|
2052
|
+
# process, including any verification-specific data and next steps for
|
|
2053
|
+
# the individual verification workflow.
|
|
2054
|
+
#
|
|
2055
|
+
# @!attribute [rw] completion_url
|
|
2056
|
+
# A secure URL where the registrant can complete additional
|
|
2057
|
+
# verification steps, such as document upload or identity confirmation
|
|
2058
|
+
# through a third-party verification service.
|
|
2059
|
+
# @return [String]
|
|
2060
|
+
#
|
|
2061
|
+
# @!attribute [rw] completion_url_expires_at
|
|
2062
|
+
# The timestamp when the completion URL expires and is no longer valid
|
|
2063
|
+
# for accessing the verification workflow.
|
|
2064
|
+
# @return [Time]
|
|
2065
|
+
#
|
|
2066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/RegistrantVerificationResponse AWS API Documentation
|
|
2067
|
+
#
|
|
2068
|
+
class RegistrantVerificationResponse < Struct.new(
|
|
2069
|
+
:completion_url,
|
|
2070
|
+
:completion_url_expires_at)
|
|
2071
|
+
SENSITIVE = []
|
|
2072
|
+
include Aws::Structure
|
|
2073
|
+
end
|
|
2074
|
+
|
|
1931
2075
|
# @!attribute [rw] catalog
|
|
1932
2076
|
# The catalog identifier where the connection invitation exists.
|
|
1933
2077
|
# @return [String]
|
|
@@ -2206,6 +2350,75 @@ module Aws::PartnerCentralAccount
|
|
|
2206
2350
|
include Aws::Structure
|
|
2207
2351
|
end
|
|
2208
2352
|
|
|
2353
|
+
# @!attribute [rw] client_token
|
|
2354
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
2355
|
+
# idempotency of the request. This prevents duplicate verification
|
|
2356
|
+
# processes from being started accidentally.
|
|
2357
|
+
#
|
|
2358
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2359
|
+
# not need to pass this option.
|
|
2360
|
+
# @return [String]
|
|
2361
|
+
#
|
|
2362
|
+
# @!attribute [rw] verification_details
|
|
2363
|
+
# The specific details required for the verification process,
|
|
2364
|
+
# including business information for business verification or personal
|
|
2365
|
+
# information for registrant verification.
|
|
2366
|
+
# @return [Types::VerificationDetails]
|
|
2367
|
+
#
|
|
2368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/StartVerificationRequest AWS API Documentation
|
|
2369
|
+
#
|
|
2370
|
+
class StartVerificationRequest < Struct.new(
|
|
2371
|
+
:client_token,
|
|
2372
|
+
:verification_details)
|
|
2373
|
+
SENSITIVE = []
|
|
2374
|
+
include Aws::Structure
|
|
2375
|
+
end
|
|
2376
|
+
|
|
2377
|
+
# @!attribute [rw] verification_type
|
|
2378
|
+
# The type of verification that was started based on the provided
|
|
2379
|
+
# verification details.
|
|
2380
|
+
# @return [String]
|
|
2381
|
+
#
|
|
2382
|
+
# @!attribute [rw] verification_status
|
|
2383
|
+
# The initial status of the verification process after it has been
|
|
2384
|
+
# started. Typically this will be pending or in-progress.
|
|
2385
|
+
# @return [String]
|
|
2386
|
+
#
|
|
2387
|
+
# @!attribute [rw] verification_status_reason
|
|
2388
|
+
# Additional information about the initial verification status,
|
|
2389
|
+
# including any immediate feedback about the submitted verification
|
|
2390
|
+
# details.
|
|
2391
|
+
# @return [String]
|
|
2392
|
+
#
|
|
2393
|
+
# @!attribute [rw] verification_response_details
|
|
2394
|
+
# Initial response details specific to the type of verification
|
|
2395
|
+
# started, which may include next steps or additional requirements.
|
|
2396
|
+
# @return [Types::VerificationResponseDetails]
|
|
2397
|
+
#
|
|
2398
|
+
# @!attribute [rw] started_at
|
|
2399
|
+
# The timestamp when the verification process was successfully
|
|
2400
|
+
# initiated.
|
|
2401
|
+
# @return [Time]
|
|
2402
|
+
#
|
|
2403
|
+
# @!attribute [rw] completed_at
|
|
2404
|
+
# The timestamp when the verification process was completed. This
|
|
2405
|
+
# field is typically null for newly started verifications unless they
|
|
2406
|
+
# complete immediately.
|
|
2407
|
+
# @return [Time]
|
|
2408
|
+
#
|
|
2409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/StartVerificationResponse AWS API Documentation
|
|
2410
|
+
#
|
|
2411
|
+
class StartVerificationResponse < Struct.new(
|
|
2412
|
+
:verification_type,
|
|
2413
|
+
:verification_status,
|
|
2414
|
+
:verification_status_reason,
|
|
2415
|
+
:verification_response_details,
|
|
2416
|
+
:started_at,
|
|
2417
|
+
:completed_at)
|
|
2418
|
+
SENSITIVE = []
|
|
2419
|
+
include Aws::Structure
|
|
2420
|
+
end
|
|
2421
|
+
|
|
2209
2422
|
# A key-value pair used to associate metadata with AWS Partner Central
|
|
2210
2423
|
# Account resources.
|
|
2211
2424
|
#
|
|
@@ -2464,6 +2677,70 @@ module Aws::PartnerCentralAccount
|
|
|
2464
2677
|
include Aws::Structure
|
|
2465
2678
|
end
|
|
2466
2679
|
|
|
2680
|
+
# A union structure containing the specific details required for
|
|
2681
|
+
# different types of verification processes supported by AWS Partner
|
|
2682
|
+
# Central.
|
|
2683
|
+
#
|
|
2684
|
+
# @note VerificationDetails is a union - when making an API calls you must set exactly one of the members.
|
|
2685
|
+
#
|
|
2686
|
+
# @!attribute [rw] business_verification_details
|
|
2687
|
+
# The business verification details to be used when starting a
|
|
2688
|
+
# business verification process.
|
|
2689
|
+
# @return [Types::BusinessVerificationDetails]
|
|
2690
|
+
#
|
|
2691
|
+
# @!attribute [rw] registrant_verification_details
|
|
2692
|
+
# The registrant verification details to be used when starting an
|
|
2693
|
+
# individual identity verification process.
|
|
2694
|
+
# @return [Types::RegistrantVerificationDetails]
|
|
2695
|
+
#
|
|
2696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/VerificationDetails AWS API Documentation
|
|
2697
|
+
#
|
|
2698
|
+
class VerificationDetails < Struct.new(
|
|
2699
|
+
:business_verification_details,
|
|
2700
|
+
:registrant_verification_details,
|
|
2701
|
+
:unknown)
|
|
2702
|
+
SENSITIVE = []
|
|
2703
|
+
include Aws::Structure
|
|
2704
|
+
include Aws::Structure::Union
|
|
2705
|
+
|
|
2706
|
+
class BusinessVerificationDetails < VerificationDetails; end
|
|
2707
|
+
class RegistrantVerificationDetails < VerificationDetails; end
|
|
2708
|
+
class Unknown < VerificationDetails; end
|
|
2709
|
+
end
|
|
2710
|
+
|
|
2711
|
+
# A union structure containing the response details specific to
|
|
2712
|
+
# different types of verification processes, providing type-specific
|
|
2713
|
+
# information and results.
|
|
2714
|
+
#
|
|
2715
|
+
# @note VerificationResponseDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of VerificationResponseDetails corresponding to the set member.
|
|
2716
|
+
#
|
|
2717
|
+
# @!attribute [rw] business_verification_response
|
|
2718
|
+
# The response details from a business verification process, including
|
|
2719
|
+
# verification results and any additional business information
|
|
2720
|
+
# discovered.
|
|
2721
|
+
# @return [Types::BusinessVerificationResponse]
|
|
2722
|
+
#
|
|
2723
|
+
# @!attribute [rw] registrant_verification_response
|
|
2724
|
+
# The response details from a registrant verification process,
|
|
2725
|
+
# including verification results and any additional steps required for
|
|
2726
|
+
# identity confirmation.
|
|
2727
|
+
# @return [Types::RegistrantVerificationResponse]
|
|
2728
|
+
#
|
|
2729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/VerificationResponseDetails AWS API Documentation
|
|
2730
|
+
#
|
|
2731
|
+
class VerificationResponseDetails < Struct.new(
|
|
2732
|
+
:business_verification_response,
|
|
2733
|
+
:registrant_verification_response,
|
|
2734
|
+
:unknown)
|
|
2735
|
+
SENSITIVE = []
|
|
2736
|
+
include Aws::Structure
|
|
2737
|
+
include Aws::Structure::Union
|
|
2738
|
+
|
|
2739
|
+
class BusinessVerificationResponse < VerificationResponseDetails; end
|
|
2740
|
+
class RegistrantVerificationResponse < VerificationResponseDetails; end
|
|
2741
|
+
class Unknown < VerificationResponseDetails; end
|
|
2742
|
+
end
|
|
2743
|
+
|
|
2467
2744
|
end
|
|
2468
2745
|
end
|
|
2469
2746
|
|
data/sig/client.rbs
CHANGED
|
@@ -363,6 +363,21 @@ module Aws
|
|
|
363
363
|
) -> _GetProfileVisibilityResponseSuccess
|
|
364
364
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileVisibilityResponseSuccess
|
|
365
365
|
|
|
366
|
+
interface _GetVerificationResponseSuccess
|
|
367
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetVerificationResponse]
|
|
368
|
+
def verification_type: () -> ("BUSINESS_VERIFICATION" | "REGISTRANT_VERIFICATION")
|
|
369
|
+
def verification_status: () -> ("PENDING_CUSTOMER_ACTION" | "IN_PROGRESS" | "FAILED" | "SUCCEEDED" | "REJECTED")
|
|
370
|
+
def verification_status_reason: () -> ::String
|
|
371
|
+
def verification_response_details: () -> Types::VerificationResponseDetails
|
|
372
|
+
def started_at: () -> ::Time
|
|
373
|
+
def completed_at: () -> ::Time
|
|
374
|
+
end
|
|
375
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#get_verification-instance_method
|
|
376
|
+
def get_verification: (
|
|
377
|
+
verification_type: ("BUSINESS_VERIFICATION" | "REGISTRANT_VERIFICATION")
|
|
378
|
+
) -> _GetVerificationResponseSuccess
|
|
379
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVerificationResponseSuccess
|
|
380
|
+
|
|
366
381
|
interface _ListConnectionInvitationsResponseSuccess
|
|
367
382
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectionInvitationsResponse]
|
|
368
383
|
def connection_invitation_summaries: () -> ::Array[Types::ConnectionInvitationSummary]
|
|
@@ -529,6 +544,31 @@ module Aws
|
|
|
529
544
|
) -> _StartProfileUpdateTaskResponseSuccess
|
|
530
545
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProfileUpdateTaskResponseSuccess
|
|
531
546
|
|
|
547
|
+
interface _StartVerificationResponseSuccess
|
|
548
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartVerificationResponse]
|
|
549
|
+
def verification_type: () -> ("BUSINESS_VERIFICATION" | "REGISTRANT_VERIFICATION")
|
|
550
|
+
def verification_status: () -> ("PENDING_CUSTOMER_ACTION" | "IN_PROGRESS" | "FAILED" | "SUCCEEDED" | "REJECTED")
|
|
551
|
+
def verification_status_reason: () -> ::String
|
|
552
|
+
def verification_response_details: () -> Types::VerificationResponseDetails
|
|
553
|
+
def started_at: () -> ::Time
|
|
554
|
+
def completed_at: () -> ::Time
|
|
555
|
+
end
|
|
556
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#start_verification-instance_method
|
|
557
|
+
def start_verification: (
|
|
558
|
+
?client_token: ::String,
|
|
559
|
+
?verification_details: {
|
|
560
|
+
business_verification_details: {
|
|
561
|
+
legal_name: ::String,
|
|
562
|
+
registration_id: ::String,
|
|
563
|
+
country_code: ::String,
|
|
564
|
+
jurisdiction_of_incorporation: ::String?
|
|
565
|
+
}?,
|
|
566
|
+
registrant_verification_details: {
|
|
567
|
+
}?
|
|
568
|
+
}
|
|
569
|
+
) -> _StartVerificationResponseSuccess
|
|
570
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartVerificationResponseSuccess
|
|
571
|
+
|
|
532
572
|
interface _TagResourceResponseSuccess
|
|
533
573
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
|
534
574
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -57,6 +57,19 @@ module Aws::PartnerCentralAccount
|
|
|
57
57
|
SENSITIVE: []
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
+
class BusinessVerificationDetails
|
|
61
|
+
attr_accessor legal_name: ::String
|
|
62
|
+
attr_accessor registration_id: ::String
|
|
63
|
+
attr_accessor country_code: ::String
|
|
64
|
+
attr_accessor jurisdiction_of_incorporation: ::String
|
|
65
|
+
SENSITIVE: [:legal_name, :registration_id]
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
class BusinessVerificationResponse
|
|
69
|
+
attr_accessor business_verification_details: Types::BusinessVerificationDetails
|
|
70
|
+
SENSITIVE: []
|
|
71
|
+
end
|
|
72
|
+
|
|
60
73
|
class CancelConnectionInvitationRequest
|
|
61
74
|
attr_accessor catalog: ::String
|
|
62
75
|
attr_accessor identifier: ::String
|
|
@@ -124,7 +137,7 @@ module Aws::PartnerCentralAccount
|
|
|
124
137
|
|
|
125
138
|
class ConflictException
|
|
126
139
|
attr_accessor message: ::String
|
|
127
|
-
attr_accessor reason: ("CONFLICT_CLIENT_TOKEN" | "DUPLICATE_PARTNER" | "INCOMPATIBLE_PROFILE_STATE" | "INCOMPATIBLE_PARTNER_PROFILE_TASK_STATE" | "DUPLICATE_CONNECTION_INVITATION" | "INCOMPATIBLE_CONNECTION_INVITATION_STATE" | "INCOMPATIBLE_CONNECTION_INVITATION_RECEIVER" | "DUPLICATE_CONNECTION" | "INCOMPATIBLE_CONNECTION_STATE" | "INCOMPATIBLE_CONNECTION_PREFERENCES_REVISION")
|
|
140
|
+
attr_accessor reason: ("CONFLICT_CLIENT_TOKEN" | "DUPLICATE_PARTNER" | "INCOMPATIBLE_PROFILE_STATE" | "INCOMPATIBLE_PARTNER_PROFILE_TASK_STATE" | "DUPLICATE_CONNECTION_INVITATION" | "INCOMPATIBLE_CONNECTION_INVITATION_STATE" | "INCOMPATIBLE_CONNECTION_INVITATION_RECEIVER" | "DUPLICATE_CONNECTION" | "INCOMPATIBLE_CONNECTION_STATE" | "INCOMPATIBLE_CONNECTION_PREFERENCES_REVISION" | "ACCOUNT_ALREADY_VERIFIED" | "VERIFICATION_ALREADY_IN_PROGRESS")
|
|
128
141
|
SENSITIVE: []
|
|
129
142
|
end
|
|
130
143
|
|
|
@@ -377,6 +390,21 @@ module Aws::PartnerCentralAccount
|
|
|
377
390
|
SENSITIVE: []
|
|
378
391
|
end
|
|
379
392
|
|
|
393
|
+
class GetVerificationRequest
|
|
394
|
+
attr_accessor verification_type: ("BUSINESS_VERIFICATION" | "REGISTRANT_VERIFICATION")
|
|
395
|
+
SENSITIVE: []
|
|
396
|
+
end
|
|
397
|
+
|
|
398
|
+
class GetVerificationResponse
|
|
399
|
+
attr_accessor verification_type: ("BUSINESS_VERIFICATION" | "REGISTRANT_VERIFICATION")
|
|
400
|
+
attr_accessor verification_status: ("PENDING_CUSTOMER_ACTION" | "IN_PROGRESS" | "FAILED" | "SUCCEEDED" | "REJECTED")
|
|
401
|
+
attr_accessor verification_status_reason: ::String
|
|
402
|
+
attr_accessor verification_response_details: Types::VerificationResponseDetails
|
|
403
|
+
attr_accessor started_at: ::Time
|
|
404
|
+
attr_accessor completed_at: ::Time
|
|
405
|
+
SENSITIVE: []
|
|
406
|
+
end
|
|
407
|
+
|
|
380
408
|
class InternalServerException
|
|
381
409
|
attr_accessor message: ::String
|
|
382
410
|
SENSITIVE: []
|
|
@@ -529,6 +557,15 @@ module Aws::PartnerCentralAccount
|
|
|
529
557
|
SENSITIVE: []
|
|
530
558
|
end
|
|
531
559
|
|
|
560
|
+
class RegistrantVerificationDetails < Aws::EmptyStructure
|
|
561
|
+
end
|
|
562
|
+
|
|
563
|
+
class RegistrantVerificationResponse
|
|
564
|
+
attr_accessor completion_url: ::String
|
|
565
|
+
attr_accessor completion_url_expires_at: ::Time
|
|
566
|
+
SENSITIVE: []
|
|
567
|
+
end
|
|
568
|
+
|
|
532
569
|
class RejectConnectionInvitationRequest
|
|
533
570
|
attr_accessor catalog: ::String
|
|
534
571
|
attr_accessor identifier: ::String
|
|
@@ -557,7 +594,7 @@ module Aws::PartnerCentralAccount
|
|
|
557
594
|
|
|
558
595
|
class ResourceNotFoundException
|
|
559
596
|
attr_accessor message: ::String
|
|
560
|
-
attr_accessor reason: ("PARTNER_NOT_FOUND" | "PARTNER_PROFILE_NOT_FOUND" | "PARTNER_PROFILE_TASK_NOT_FOUND" | "PARTNER_DOMAIN_NOT_FOUND" | "SENDER_PROFILE_NOT_FOUND" | "RECEIVER_PROFILE_NOT_FOUND" | "CONNECTION_INVITATION_NOT_FOUND" | "CONNECTION_NOT_FOUND")
|
|
597
|
+
attr_accessor reason: ("PARTNER_NOT_FOUND" | "PARTNER_PROFILE_NOT_FOUND" | "PARTNER_PROFILE_TASK_NOT_FOUND" | "PARTNER_DOMAIN_NOT_FOUND" | "SENDER_PROFILE_NOT_FOUND" | "RECEIVER_PROFILE_NOT_FOUND" | "CONNECTION_INVITATION_NOT_FOUND" | "CONNECTION_NOT_FOUND" | "VERIFICATION_NOT_FOUND")
|
|
561
598
|
SENSITIVE: []
|
|
562
599
|
end
|
|
563
600
|
|
|
@@ -603,6 +640,22 @@ module Aws::PartnerCentralAccount
|
|
|
603
640
|
SENSITIVE: []
|
|
604
641
|
end
|
|
605
642
|
|
|
643
|
+
class StartVerificationRequest
|
|
644
|
+
attr_accessor client_token: ::String
|
|
645
|
+
attr_accessor verification_details: Types::VerificationDetails
|
|
646
|
+
SENSITIVE: []
|
|
647
|
+
end
|
|
648
|
+
|
|
649
|
+
class StartVerificationResponse
|
|
650
|
+
attr_accessor verification_type: ("BUSINESS_VERIFICATION" | "REGISTRANT_VERIFICATION")
|
|
651
|
+
attr_accessor verification_status: ("PENDING_CUSTOMER_ACTION" | "IN_PROGRESS" | "FAILED" | "SUCCEEDED" | "REJECTED")
|
|
652
|
+
attr_accessor verification_status_reason: ::String
|
|
653
|
+
attr_accessor verification_response_details: Types::VerificationResponseDetails
|
|
654
|
+
attr_accessor started_at: ::Time
|
|
655
|
+
attr_accessor completed_at: ::Time
|
|
656
|
+
SENSITIVE: []
|
|
657
|
+
end
|
|
658
|
+
|
|
606
659
|
class Tag
|
|
607
660
|
attr_accessor key: ::String
|
|
608
661
|
attr_accessor value: ::String
|
|
@@ -684,5 +737,33 @@ module Aws::PartnerCentralAccount
|
|
|
684
737
|
attr_accessor error_details: ::Array[Types::ValidationError]
|
|
685
738
|
SENSITIVE: []
|
|
686
739
|
end
|
|
740
|
+
|
|
741
|
+
class VerificationDetails
|
|
742
|
+
attr_accessor business_verification_details: Types::BusinessVerificationDetails
|
|
743
|
+
attr_accessor registrant_verification_details: Types::RegistrantVerificationDetails
|
|
744
|
+
attr_accessor unknown: untyped
|
|
745
|
+
SENSITIVE: []
|
|
746
|
+
|
|
747
|
+
class BusinessVerificationDetails < VerificationDetails
|
|
748
|
+
end
|
|
749
|
+
class RegistrantVerificationDetails < VerificationDetails
|
|
750
|
+
end
|
|
751
|
+
class Unknown < VerificationDetails
|
|
752
|
+
end
|
|
753
|
+
end
|
|
754
|
+
|
|
755
|
+
class VerificationResponseDetails
|
|
756
|
+
attr_accessor business_verification_response: Types::BusinessVerificationResponse
|
|
757
|
+
attr_accessor registrant_verification_response: Types::RegistrantVerificationResponse
|
|
758
|
+
attr_accessor unknown: untyped
|
|
759
|
+
SENSITIVE: []
|
|
760
|
+
|
|
761
|
+
class BusinessVerificationResponse < VerificationResponseDetails
|
|
762
|
+
end
|
|
763
|
+
class RegistrantVerificationResponse < VerificationResponseDetails
|
|
764
|
+
end
|
|
765
|
+
class Unknown < VerificationResponseDetails
|
|
766
|
+
end
|
|
767
|
+
end
|
|
687
768
|
end
|
|
688
769
|
end
|