aws-sdk-partnercentralaccount 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-partnercentralaccount/client.rb +2048 -0
- data/lib/aws-sdk-partnercentralaccount/client_api.rb +1109 -0
- data/lib/aws-sdk-partnercentralaccount/customizations.rb +0 -0
- data/lib/aws-sdk-partnercentralaccount/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-partnercentralaccount/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-partnercentralaccount/endpoints.rb +20 -0
- data/lib/aws-sdk-partnercentralaccount/errors.rb +198 -0
- data/lib/aws-sdk-partnercentralaccount/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-partnercentralaccount/resource.rb +26 -0
- data/lib/aws-sdk-partnercentralaccount/types.rb +2469 -0
- data/lib/aws-sdk-partnercentralaccount/waiters.rb +15 -0
- data/lib/aws-sdk-partnercentralaccount.rb +62 -0
- data/sig/client.rbs +577 -0
- data/sig/errors.rbs +45 -0
- data/sig/resource.rbs +86 -0
- data/sig/types.rbs +688 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
|
@@ -0,0 +1,2469 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
|
4
|
+
#
|
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
|
+
#
|
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
|
9
|
+
|
|
10
|
+
module Aws::PartnerCentralAccount
|
|
11
|
+
module Types
|
|
12
|
+
|
|
13
|
+
# @!attribute [rw] catalog
|
|
14
|
+
# The catalog identifier where the connection invitation exists.
|
|
15
|
+
# @return [String]
|
|
16
|
+
#
|
|
17
|
+
# @!attribute [rw] identifier
|
|
18
|
+
# The unique identifier of the connection invitation to accept.
|
|
19
|
+
# @return [String]
|
|
20
|
+
#
|
|
21
|
+
# @!attribute [rw] client_token
|
|
22
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
23
|
+
# idempotency of the request.
|
|
24
|
+
#
|
|
25
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
26
|
+
# not need to pass this option.
|
|
27
|
+
# @return [String]
|
|
28
|
+
#
|
|
29
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/AcceptConnectionInvitationRequest AWS API Documentation
|
|
30
|
+
#
|
|
31
|
+
class AcceptConnectionInvitationRequest < Struct.new(
|
|
32
|
+
:catalog,
|
|
33
|
+
:identifier,
|
|
34
|
+
:client_token)
|
|
35
|
+
SENSITIVE = []
|
|
36
|
+
include Aws::Structure
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
# @!attribute [rw] connection
|
|
40
|
+
# The details of the accepted connection between the two partners.
|
|
41
|
+
# @return [Types::Connection]
|
|
42
|
+
#
|
|
43
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/AcceptConnectionInvitationResponse AWS API Documentation
|
|
44
|
+
#
|
|
45
|
+
class AcceptConnectionInvitationResponse < Struct.new(
|
|
46
|
+
:connection)
|
|
47
|
+
SENSITIVE = []
|
|
48
|
+
include Aws::Structure
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# The request was denied due to insufficient permissions. The caller
|
|
52
|
+
# does not have the required permissions to perform this operation.
|
|
53
|
+
#
|
|
54
|
+
# @!attribute [rw] message
|
|
55
|
+
# @return [String]
|
|
56
|
+
#
|
|
57
|
+
# @!attribute [rw] reason
|
|
58
|
+
# The specific reason for the access denial.
|
|
59
|
+
# @return [String]
|
|
60
|
+
#
|
|
61
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/AccessDeniedException AWS API Documentation
|
|
62
|
+
#
|
|
63
|
+
class AccessDeniedException < Struct.new(
|
|
64
|
+
:message,
|
|
65
|
+
:reason)
|
|
66
|
+
SENSITIVE = []
|
|
67
|
+
include Aws::Structure
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# Summary information about an AWS account.
|
|
71
|
+
#
|
|
72
|
+
# @!attribute [rw] name
|
|
73
|
+
# The name associated with the AWS account.
|
|
74
|
+
# @return [String]
|
|
75
|
+
#
|
|
76
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/AccountSummary AWS API Documentation
|
|
77
|
+
#
|
|
78
|
+
class AccountSummary < Struct.new(
|
|
79
|
+
:name)
|
|
80
|
+
SENSITIVE = []
|
|
81
|
+
include Aws::Structure
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
# Contains contact information for the primary alliance lead responsible
|
|
85
|
+
# for partnership activities.
|
|
86
|
+
#
|
|
87
|
+
# @!attribute [rw] first_name
|
|
88
|
+
# The first name of the alliance lead contact person.
|
|
89
|
+
# @return [String]
|
|
90
|
+
#
|
|
91
|
+
# @!attribute [rw] last_name
|
|
92
|
+
# The last name of the alliance lead contact person.
|
|
93
|
+
# @return [String]
|
|
94
|
+
#
|
|
95
|
+
# @!attribute [rw] email
|
|
96
|
+
# The email address of the alliance lead contact person.
|
|
97
|
+
# @return [String]
|
|
98
|
+
#
|
|
99
|
+
# @!attribute [rw] business_title
|
|
100
|
+
# The business title or role of the alliance lead contact person.
|
|
101
|
+
# @return [String]
|
|
102
|
+
#
|
|
103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/AllianceLeadContact AWS API Documentation
|
|
104
|
+
#
|
|
105
|
+
class AllianceLeadContact < Struct.new(
|
|
106
|
+
:first_name,
|
|
107
|
+
:last_name,
|
|
108
|
+
:email,
|
|
109
|
+
:business_title)
|
|
110
|
+
SENSITIVE = [:first_name, :last_name, :business_title]
|
|
111
|
+
include Aws::Structure
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
# @!attribute [rw] catalog
|
|
115
|
+
# The catalog identifier for the partner account.
|
|
116
|
+
# @return [String]
|
|
117
|
+
#
|
|
118
|
+
# @!attribute [rw] identifier
|
|
119
|
+
# The unique identifier of the partner account.
|
|
120
|
+
# @return [String]
|
|
121
|
+
#
|
|
122
|
+
# @!attribute [rw] client_token
|
|
123
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
124
|
+
# idempotency of the request.
|
|
125
|
+
#
|
|
126
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
127
|
+
# not need to pass this option.
|
|
128
|
+
# @return [String]
|
|
129
|
+
#
|
|
130
|
+
# @!attribute [rw] email
|
|
131
|
+
# The email address used to verify domain ownership for AWS training
|
|
132
|
+
# and certification association.
|
|
133
|
+
# @return [String]
|
|
134
|
+
#
|
|
135
|
+
# @!attribute [rw] email_verification_code
|
|
136
|
+
# The verification code sent to the email address to confirm domain
|
|
137
|
+
# ownership.
|
|
138
|
+
# @return [String]
|
|
139
|
+
#
|
|
140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/AssociateAwsTrainingCertificationEmailDomainRequest AWS API Documentation
|
|
141
|
+
#
|
|
142
|
+
class AssociateAwsTrainingCertificationEmailDomainRequest < Struct.new(
|
|
143
|
+
:catalog,
|
|
144
|
+
:identifier,
|
|
145
|
+
:client_token,
|
|
146
|
+
:email,
|
|
147
|
+
:email_verification_code)
|
|
148
|
+
SENSITIVE = [:email_verification_code]
|
|
149
|
+
include Aws::Structure
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/AssociateAwsTrainingCertificationEmailDomainResponse AWS API Documentation
|
|
153
|
+
#
|
|
154
|
+
class AssociateAwsTrainingCertificationEmailDomainResponse < Aws::EmptyStructure; end
|
|
155
|
+
|
|
156
|
+
# Contains information about a business rule validation error that
|
|
157
|
+
# occurred during an operation.
|
|
158
|
+
#
|
|
159
|
+
# @!attribute [rw] message
|
|
160
|
+
# A description of the business validation error.
|
|
161
|
+
# @return [String]
|
|
162
|
+
#
|
|
163
|
+
# @!attribute [rw] code
|
|
164
|
+
# A code identifying the specific business validation error.
|
|
165
|
+
# @return [String]
|
|
166
|
+
#
|
|
167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/BusinessValidationError AWS API Documentation
|
|
168
|
+
#
|
|
169
|
+
class BusinessValidationError < Struct.new(
|
|
170
|
+
:message,
|
|
171
|
+
:code)
|
|
172
|
+
SENSITIVE = []
|
|
173
|
+
include Aws::Structure
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
# @!attribute [rw] catalog
|
|
177
|
+
# The catalog identifier where the connection invitation exists.
|
|
178
|
+
# @return [String]
|
|
179
|
+
#
|
|
180
|
+
# @!attribute [rw] identifier
|
|
181
|
+
# The unique identifier of the connection invitation to cancel.
|
|
182
|
+
# @return [String]
|
|
183
|
+
#
|
|
184
|
+
# @!attribute [rw] client_token
|
|
185
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
186
|
+
# idempotency of the request.
|
|
187
|
+
#
|
|
188
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
189
|
+
# not need to pass this option.
|
|
190
|
+
# @return [String]
|
|
191
|
+
#
|
|
192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CancelConnectionInvitationRequest AWS API Documentation
|
|
193
|
+
#
|
|
194
|
+
class CancelConnectionInvitationRequest < Struct.new(
|
|
195
|
+
:catalog,
|
|
196
|
+
:identifier,
|
|
197
|
+
:client_token)
|
|
198
|
+
SENSITIVE = []
|
|
199
|
+
include Aws::Structure
|
|
200
|
+
end
|
|
201
|
+
|
|
202
|
+
# @!attribute [rw] catalog
|
|
203
|
+
# The catalog identifier where the connection invitation was canceled.
|
|
204
|
+
# @return [String]
|
|
205
|
+
#
|
|
206
|
+
# @!attribute [rw] id
|
|
207
|
+
# The unique identifier of the canceled connection invitation.
|
|
208
|
+
# @return [String]
|
|
209
|
+
#
|
|
210
|
+
# @!attribute [rw] arn
|
|
211
|
+
# The Amazon Resource Name (ARN) of the canceled connection
|
|
212
|
+
# invitation.
|
|
213
|
+
# @return [String]
|
|
214
|
+
#
|
|
215
|
+
# @!attribute [rw] connection_id
|
|
216
|
+
# The identifier of the connection associated with the canceled
|
|
217
|
+
# invitation.
|
|
218
|
+
# @return [String]
|
|
219
|
+
#
|
|
220
|
+
# @!attribute [rw] connection_type
|
|
221
|
+
# The type of connection that was being invited for.
|
|
222
|
+
# @return [String]
|
|
223
|
+
#
|
|
224
|
+
# @!attribute [rw] created_at
|
|
225
|
+
# The timestamp when the connection invitation was originally created.
|
|
226
|
+
# @return [Time]
|
|
227
|
+
#
|
|
228
|
+
# @!attribute [rw] updated_at
|
|
229
|
+
# The timestamp when the connection invitation was last updated
|
|
230
|
+
# (canceled).
|
|
231
|
+
# @return [Time]
|
|
232
|
+
#
|
|
233
|
+
# @!attribute [rw] expires_at
|
|
234
|
+
# The timestamp when the connection invitation would have expired if
|
|
235
|
+
# not canceled.
|
|
236
|
+
# @return [Time]
|
|
237
|
+
#
|
|
238
|
+
# @!attribute [rw] other_participant_identifier
|
|
239
|
+
# The identifier of the other participant who was invited to connect.
|
|
240
|
+
# @return [String]
|
|
241
|
+
#
|
|
242
|
+
# @!attribute [rw] participant_type
|
|
243
|
+
# The type of participant (inviter or invitee) in the connection
|
|
244
|
+
# invitation.
|
|
245
|
+
# @return [String]
|
|
246
|
+
#
|
|
247
|
+
# @!attribute [rw] status
|
|
248
|
+
# The current status of the connection invitation (canceled).
|
|
249
|
+
# @return [String]
|
|
250
|
+
#
|
|
251
|
+
# @!attribute [rw] invitation_message
|
|
252
|
+
# The message that was included with the original connection
|
|
253
|
+
# invitation.
|
|
254
|
+
# @return [String]
|
|
255
|
+
#
|
|
256
|
+
# @!attribute [rw] inviter_email
|
|
257
|
+
# The email address of the person who sent the connection invitation.
|
|
258
|
+
# @return [String]
|
|
259
|
+
#
|
|
260
|
+
# @!attribute [rw] inviter_name
|
|
261
|
+
# The name of the person who sent the connection invitation.
|
|
262
|
+
# @return [String]
|
|
263
|
+
#
|
|
264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CancelConnectionInvitationResponse AWS API Documentation
|
|
265
|
+
#
|
|
266
|
+
class CancelConnectionInvitationResponse < Struct.new(
|
|
267
|
+
:catalog,
|
|
268
|
+
:id,
|
|
269
|
+
:arn,
|
|
270
|
+
:connection_id,
|
|
271
|
+
:connection_type,
|
|
272
|
+
:created_at,
|
|
273
|
+
:updated_at,
|
|
274
|
+
:expires_at,
|
|
275
|
+
:other_participant_identifier,
|
|
276
|
+
:participant_type,
|
|
277
|
+
:status,
|
|
278
|
+
:invitation_message,
|
|
279
|
+
:inviter_email,
|
|
280
|
+
:inviter_name)
|
|
281
|
+
SENSITIVE = [:inviter_name]
|
|
282
|
+
include Aws::Structure
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
# @!attribute [rw] catalog
|
|
286
|
+
# The catalog identifier where the connection exists.
|
|
287
|
+
# @return [String]
|
|
288
|
+
#
|
|
289
|
+
# @!attribute [rw] identifier
|
|
290
|
+
# The unique identifier of the connection to cancel.
|
|
291
|
+
# @return [String]
|
|
292
|
+
#
|
|
293
|
+
# @!attribute [rw] connection_type
|
|
294
|
+
# The type of connection to cancel (e.g., reseller, distributor,
|
|
295
|
+
# technology partner).
|
|
296
|
+
# @return [String]
|
|
297
|
+
#
|
|
298
|
+
# @!attribute [rw] reason
|
|
299
|
+
# The reason for canceling the connection, providing context for the
|
|
300
|
+
# termination.
|
|
301
|
+
# @return [String]
|
|
302
|
+
#
|
|
303
|
+
# @!attribute [rw] client_token
|
|
304
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
305
|
+
# idempotency of the request.
|
|
306
|
+
#
|
|
307
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
308
|
+
# not need to pass this option.
|
|
309
|
+
# @return [String]
|
|
310
|
+
#
|
|
311
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CancelConnectionRequest AWS API Documentation
|
|
312
|
+
#
|
|
313
|
+
class CancelConnectionRequest < Struct.new(
|
|
314
|
+
:catalog,
|
|
315
|
+
:identifier,
|
|
316
|
+
:connection_type,
|
|
317
|
+
:reason,
|
|
318
|
+
:client_token)
|
|
319
|
+
SENSITIVE = []
|
|
320
|
+
include Aws::Structure
|
|
321
|
+
end
|
|
322
|
+
|
|
323
|
+
# @!attribute [rw] catalog
|
|
324
|
+
# The catalog identifier where the connection was canceled.
|
|
325
|
+
# @return [String]
|
|
326
|
+
#
|
|
327
|
+
# @!attribute [rw] id
|
|
328
|
+
# The unique identifier of the canceled connection.
|
|
329
|
+
# @return [String]
|
|
330
|
+
#
|
|
331
|
+
# @!attribute [rw] arn
|
|
332
|
+
# The Amazon Resource Name (ARN) of the canceled connection.
|
|
333
|
+
# @return [String]
|
|
334
|
+
#
|
|
335
|
+
# @!attribute [rw] other_participant_account_id
|
|
336
|
+
# The AWS account ID of the other participant in the canceled
|
|
337
|
+
# connection.
|
|
338
|
+
# @return [String]
|
|
339
|
+
#
|
|
340
|
+
# @!attribute [rw] updated_at
|
|
341
|
+
# The timestamp when the connection was last updated (canceled).
|
|
342
|
+
# @return [Time]
|
|
343
|
+
#
|
|
344
|
+
# @!attribute [rw] connection_types
|
|
345
|
+
# The list of connection types that were active before cancellation.
|
|
346
|
+
# @return [Hash<String,Types::ConnectionTypeDetail>]
|
|
347
|
+
#
|
|
348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CancelConnectionResponse AWS API Documentation
|
|
349
|
+
#
|
|
350
|
+
class CancelConnectionResponse < Struct.new(
|
|
351
|
+
:catalog,
|
|
352
|
+
:id,
|
|
353
|
+
:arn,
|
|
354
|
+
:other_participant_account_id,
|
|
355
|
+
:updated_at,
|
|
356
|
+
:connection_types)
|
|
357
|
+
SENSITIVE = []
|
|
358
|
+
include Aws::Structure
|
|
359
|
+
end
|
|
360
|
+
|
|
361
|
+
# @!attribute [rw] catalog
|
|
362
|
+
# The catalog identifier for the partner account.
|
|
363
|
+
# @return [String]
|
|
364
|
+
#
|
|
365
|
+
# @!attribute [rw] identifier
|
|
366
|
+
# The unique identifier of the partner account.
|
|
367
|
+
# @return [String]
|
|
368
|
+
#
|
|
369
|
+
# @!attribute [rw] client_token
|
|
370
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
371
|
+
# idempotency of the request.
|
|
372
|
+
#
|
|
373
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
374
|
+
# not need to pass this option.
|
|
375
|
+
# @return [String]
|
|
376
|
+
#
|
|
377
|
+
# @!attribute [rw] task_id
|
|
378
|
+
# The unique identifier of the profile update task to cancel.
|
|
379
|
+
# @return [String]
|
|
380
|
+
#
|
|
381
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CancelProfileUpdateTaskRequest AWS API Documentation
|
|
382
|
+
#
|
|
383
|
+
class CancelProfileUpdateTaskRequest < Struct.new(
|
|
384
|
+
:catalog,
|
|
385
|
+
:identifier,
|
|
386
|
+
:client_token,
|
|
387
|
+
:task_id)
|
|
388
|
+
SENSITIVE = []
|
|
389
|
+
include Aws::Structure
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
# @!attribute [rw] catalog
|
|
393
|
+
# The catalog identifier for the partner account.
|
|
394
|
+
# @return [String]
|
|
395
|
+
#
|
|
396
|
+
# @!attribute [rw] arn
|
|
397
|
+
# The Amazon Resource Name (ARN) of the canceled profile update task.
|
|
398
|
+
# @return [String]
|
|
399
|
+
#
|
|
400
|
+
# @!attribute [rw] id
|
|
401
|
+
# The unique identifier of the partner account.
|
|
402
|
+
# @return [String]
|
|
403
|
+
#
|
|
404
|
+
# @!attribute [rw] task_id
|
|
405
|
+
# The unique identifier of the canceled profile update task.
|
|
406
|
+
# @return [String]
|
|
407
|
+
#
|
|
408
|
+
# @!attribute [rw] task_details
|
|
409
|
+
# The details of the profile update task that was canceled.
|
|
410
|
+
# @return [Types::TaskDetails]
|
|
411
|
+
#
|
|
412
|
+
# @!attribute [rw] started_at
|
|
413
|
+
# The timestamp when the profile update task was started.
|
|
414
|
+
# @return [Time]
|
|
415
|
+
#
|
|
416
|
+
# @!attribute [rw] status
|
|
417
|
+
# The current status of the profile update task (canceled).
|
|
418
|
+
# @return [String]
|
|
419
|
+
#
|
|
420
|
+
# @!attribute [rw] ended_at
|
|
421
|
+
# The timestamp when the profile update task was ended (canceled).
|
|
422
|
+
# @return [Time]
|
|
423
|
+
#
|
|
424
|
+
# @!attribute [rw] error_detail_list
|
|
425
|
+
# A list of error details if any errors occurred during the profile
|
|
426
|
+
# update task.
|
|
427
|
+
# @return [Array<Types::ErrorDetail>]
|
|
428
|
+
#
|
|
429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CancelProfileUpdateTaskResponse AWS API Documentation
|
|
430
|
+
#
|
|
431
|
+
class CancelProfileUpdateTaskResponse < Struct.new(
|
|
432
|
+
:catalog,
|
|
433
|
+
:arn,
|
|
434
|
+
:id,
|
|
435
|
+
:task_id,
|
|
436
|
+
:task_details,
|
|
437
|
+
:started_at,
|
|
438
|
+
:status,
|
|
439
|
+
:ended_at,
|
|
440
|
+
:error_detail_list)
|
|
441
|
+
SENSITIVE = []
|
|
442
|
+
include Aws::Structure
|
|
443
|
+
end
|
|
444
|
+
|
|
445
|
+
# The request could not be completed due to a conflict with the current
|
|
446
|
+
# state of the resource. This typically occurs when trying to create a
|
|
447
|
+
# resource that already exists or modify a resource that has been
|
|
448
|
+
# changed by another process.
|
|
449
|
+
#
|
|
450
|
+
# @!attribute [rw] message
|
|
451
|
+
# @return [String]
|
|
452
|
+
#
|
|
453
|
+
# @!attribute [rw] reason
|
|
454
|
+
# The specific reason for the conflict.
|
|
455
|
+
# @return [String]
|
|
456
|
+
#
|
|
457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ConflictException AWS API Documentation
|
|
458
|
+
#
|
|
459
|
+
class ConflictException < Struct.new(
|
|
460
|
+
:message,
|
|
461
|
+
:reason)
|
|
462
|
+
SENSITIVE = []
|
|
463
|
+
include Aws::Structure
|
|
464
|
+
end
|
|
465
|
+
|
|
466
|
+
# Base structure containing common connection properties.
|
|
467
|
+
#
|
|
468
|
+
# @!attribute [rw] catalog
|
|
469
|
+
# The catalog identifier that the connection belongs to.
|
|
470
|
+
# @return [String]
|
|
471
|
+
#
|
|
472
|
+
# @!attribute [rw] id
|
|
473
|
+
# The unique identifier of the connection.
|
|
474
|
+
# @return [String]
|
|
475
|
+
#
|
|
476
|
+
# @!attribute [rw] arn
|
|
477
|
+
# The AWS Resource Name (ARN) of the connection.
|
|
478
|
+
# @return [String]
|
|
479
|
+
#
|
|
480
|
+
# @!attribute [rw] other_participant_account_id
|
|
481
|
+
# The AWS account ID of the other participant in the connection.
|
|
482
|
+
# @return [String]
|
|
483
|
+
#
|
|
484
|
+
# @!attribute [rw] updated_at
|
|
485
|
+
# The timestamp when the connection was last updated.
|
|
486
|
+
# @return [Time]
|
|
487
|
+
#
|
|
488
|
+
# @!attribute [rw] connection_types
|
|
489
|
+
# The type of connection.
|
|
490
|
+
# @return [Hash<String,Types::ConnectionTypeDetail>]
|
|
491
|
+
#
|
|
492
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/Connection AWS API Documentation
|
|
493
|
+
#
|
|
494
|
+
class Connection < Struct.new(
|
|
495
|
+
:catalog,
|
|
496
|
+
:id,
|
|
497
|
+
:arn,
|
|
498
|
+
:other_participant_account_id,
|
|
499
|
+
:updated_at,
|
|
500
|
+
:connection_types)
|
|
501
|
+
SENSITIVE = []
|
|
502
|
+
include Aws::Structure
|
|
503
|
+
end
|
|
504
|
+
|
|
505
|
+
# A summary view of a connection invitation containing key information
|
|
506
|
+
# without full details.
|
|
507
|
+
#
|
|
508
|
+
# @!attribute [rw] catalog
|
|
509
|
+
# The catalog identifier where the connection invitation exists.
|
|
510
|
+
# @return [String]
|
|
511
|
+
#
|
|
512
|
+
# @!attribute [rw] id
|
|
513
|
+
# The unique identifier of the connection invitation.
|
|
514
|
+
# @return [String]
|
|
515
|
+
#
|
|
516
|
+
# @!attribute [rw] arn
|
|
517
|
+
# The Amazon Resource Name (ARN) of the connection invitation.
|
|
518
|
+
# @return [String]
|
|
519
|
+
#
|
|
520
|
+
# @!attribute [rw] connection_id
|
|
521
|
+
# The identifier of the connection associated with this invitation.
|
|
522
|
+
# @return [String]
|
|
523
|
+
#
|
|
524
|
+
# @!attribute [rw] connection_type
|
|
525
|
+
# The type of connection being requested in the invitation.
|
|
526
|
+
# @return [String]
|
|
527
|
+
#
|
|
528
|
+
# @!attribute [rw] created_at
|
|
529
|
+
# The timestamp when the connection invitation was created.
|
|
530
|
+
# @return [Time]
|
|
531
|
+
#
|
|
532
|
+
# @!attribute [rw] updated_at
|
|
533
|
+
# The timestamp when the connection invitation was last updated.
|
|
534
|
+
# @return [Time]
|
|
535
|
+
#
|
|
536
|
+
# @!attribute [rw] expires_at
|
|
537
|
+
# The timestamp when the connection invitation will expire.
|
|
538
|
+
# @return [Time]
|
|
539
|
+
#
|
|
540
|
+
# @!attribute [rw] other_participant_identifier
|
|
541
|
+
# The identifier of the other participant in the connection
|
|
542
|
+
# invitation.
|
|
543
|
+
# @return [String]
|
|
544
|
+
#
|
|
545
|
+
# @!attribute [rw] participant_type
|
|
546
|
+
# The type of participant (inviter or invitee) in the connection
|
|
547
|
+
# invitation.
|
|
548
|
+
# @return [String]
|
|
549
|
+
#
|
|
550
|
+
# @!attribute [rw] status
|
|
551
|
+
# The current status of the connection invitation.
|
|
552
|
+
# @return [String]
|
|
553
|
+
#
|
|
554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ConnectionInvitationSummary AWS API Documentation
|
|
555
|
+
#
|
|
556
|
+
class ConnectionInvitationSummary < Struct.new(
|
|
557
|
+
:catalog,
|
|
558
|
+
:id,
|
|
559
|
+
:arn,
|
|
560
|
+
:connection_id,
|
|
561
|
+
:connection_type,
|
|
562
|
+
:created_at,
|
|
563
|
+
:updated_at,
|
|
564
|
+
:expires_at,
|
|
565
|
+
:other_participant_identifier,
|
|
566
|
+
:participant_type,
|
|
567
|
+
:status)
|
|
568
|
+
SENSITIVE = []
|
|
569
|
+
include Aws::Structure
|
|
570
|
+
end
|
|
571
|
+
|
|
572
|
+
# A summary view of an active connection between partners containing key
|
|
573
|
+
# information.
|
|
574
|
+
#
|
|
575
|
+
# @!attribute [rw] catalog
|
|
576
|
+
# The catalog identifier where the connection exists.
|
|
577
|
+
# @return [String]
|
|
578
|
+
#
|
|
579
|
+
# @!attribute [rw] id
|
|
580
|
+
# The unique identifier of the connection.
|
|
581
|
+
# @return [String]
|
|
582
|
+
#
|
|
583
|
+
# @!attribute [rw] arn
|
|
584
|
+
# The Amazon Resource Name (ARN) of the connection.
|
|
585
|
+
# @return [String]
|
|
586
|
+
#
|
|
587
|
+
# @!attribute [rw] other_participant_account_id
|
|
588
|
+
# The AWS account ID of the other participant in the connection.
|
|
589
|
+
# @return [String]
|
|
590
|
+
#
|
|
591
|
+
# @!attribute [rw] updated_at
|
|
592
|
+
# The timestamp when the connection was last updated.
|
|
593
|
+
# @return [Time]
|
|
594
|
+
#
|
|
595
|
+
# @!attribute [rw] connection_types
|
|
596
|
+
# A map of connection types and their summary information for this
|
|
597
|
+
# connection.
|
|
598
|
+
# @return [Hash<String,Types::ConnectionTypeSummary>]
|
|
599
|
+
#
|
|
600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ConnectionSummary AWS API Documentation
|
|
601
|
+
#
|
|
602
|
+
class ConnectionSummary < Struct.new(
|
|
603
|
+
:catalog,
|
|
604
|
+
:id,
|
|
605
|
+
:arn,
|
|
606
|
+
:other_participant_account_id,
|
|
607
|
+
:updated_at,
|
|
608
|
+
:connection_types)
|
|
609
|
+
SENSITIVE = []
|
|
610
|
+
include Aws::Structure
|
|
611
|
+
end
|
|
612
|
+
|
|
613
|
+
# Detailed information about a specific connection type within a
|
|
614
|
+
# connection.
|
|
615
|
+
#
|
|
616
|
+
# @!attribute [rw] created_at
|
|
617
|
+
# The timestamp when this connection type was created.
|
|
618
|
+
# @return [Time]
|
|
619
|
+
#
|
|
620
|
+
# @!attribute [rw] inviter_email
|
|
621
|
+
# The email address of the person who initiated this connection type.
|
|
622
|
+
# @return [String]
|
|
623
|
+
#
|
|
624
|
+
# @!attribute [rw] inviter_name
|
|
625
|
+
# The name of the person who initiated this connection type.
|
|
626
|
+
# @return [String]
|
|
627
|
+
#
|
|
628
|
+
# @!attribute [rw] status
|
|
629
|
+
# The current status of this connection type.
|
|
630
|
+
# @return [String]
|
|
631
|
+
#
|
|
632
|
+
# @!attribute [rw] canceled_at
|
|
633
|
+
# The timestamp when this connection type was cancelled, if
|
|
634
|
+
# applicable.
|
|
635
|
+
# @return [Time]
|
|
636
|
+
#
|
|
637
|
+
# @!attribute [rw] canceled_by
|
|
638
|
+
# The AWS account ID of the participant who cancelled this connection
|
|
639
|
+
# type.
|
|
640
|
+
# @return [String]
|
|
641
|
+
#
|
|
642
|
+
# @!attribute [rw] other_participant
|
|
643
|
+
# Information about the other participant in this connection type.
|
|
644
|
+
# @return [Types::Participant]
|
|
645
|
+
#
|
|
646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ConnectionTypeDetail AWS API Documentation
|
|
647
|
+
#
|
|
648
|
+
class ConnectionTypeDetail < Struct.new(
|
|
649
|
+
:created_at,
|
|
650
|
+
:inviter_email,
|
|
651
|
+
:inviter_name,
|
|
652
|
+
:status,
|
|
653
|
+
:canceled_at,
|
|
654
|
+
:canceled_by,
|
|
655
|
+
:other_participant)
|
|
656
|
+
SENSITIVE = [:inviter_name]
|
|
657
|
+
include Aws::Structure
|
|
658
|
+
end
|
|
659
|
+
|
|
660
|
+
# Summary information about a specific connection type between partners.
|
|
661
|
+
#
|
|
662
|
+
# @!attribute [rw] status
|
|
663
|
+
# The current status of this connection type (active, canceled, etc.).
|
|
664
|
+
# @return [String]
|
|
665
|
+
#
|
|
666
|
+
# @!attribute [rw] other_participant
|
|
667
|
+
# Information about the other participant in this connection type.
|
|
668
|
+
# @return [Types::Participant]
|
|
669
|
+
#
|
|
670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ConnectionTypeSummary AWS API Documentation
|
|
671
|
+
#
|
|
672
|
+
class ConnectionTypeSummary < Struct.new(
|
|
673
|
+
:status,
|
|
674
|
+
:other_participant)
|
|
675
|
+
SENSITIVE = []
|
|
676
|
+
include Aws::Structure
|
|
677
|
+
end
|
|
678
|
+
|
|
679
|
+
# @!attribute [rw] catalog
|
|
680
|
+
# The catalog identifier where the connection invitation will be
|
|
681
|
+
# created.
|
|
682
|
+
# @return [String]
|
|
683
|
+
#
|
|
684
|
+
# @!attribute [rw] client_token
|
|
685
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
686
|
+
# idempotency of the request.
|
|
687
|
+
#
|
|
688
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
689
|
+
# not need to pass this option.
|
|
690
|
+
# @return [String]
|
|
691
|
+
#
|
|
692
|
+
# @!attribute [rw] connection_type
|
|
693
|
+
# The type of connection being requested (e.g., reseller, distributor,
|
|
694
|
+
# technology partner).
|
|
695
|
+
# @return [String]
|
|
696
|
+
#
|
|
697
|
+
# @!attribute [rw] email
|
|
698
|
+
# The email address of the person to send the connection invitation
|
|
699
|
+
# to.
|
|
700
|
+
# @return [String]
|
|
701
|
+
#
|
|
702
|
+
# @!attribute [rw] message
|
|
703
|
+
# A custom message to include with the connection invitation.
|
|
704
|
+
# @return [String]
|
|
705
|
+
#
|
|
706
|
+
# @!attribute [rw] name
|
|
707
|
+
# The name of the person sending the connection invitation.
|
|
708
|
+
# @return [String]
|
|
709
|
+
#
|
|
710
|
+
# @!attribute [rw] receiver_identifier
|
|
711
|
+
# The identifier of the organization or partner to invite for
|
|
712
|
+
# connection.
|
|
713
|
+
# @return [String]
|
|
714
|
+
#
|
|
715
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CreateConnectionInvitationRequest AWS API Documentation
|
|
716
|
+
#
|
|
717
|
+
class CreateConnectionInvitationRequest < Struct.new(
|
|
718
|
+
:catalog,
|
|
719
|
+
:client_token,
|
|
720
|
+
:connection_type,
|
|
721
|
+
:email,
|
|
722
|
+
:message,
|
|
723
|
+
:name,
|
|
724
|
+
:receiver_identifier)
|
|
725
|
+
SENSITIVE = [:name]
|
|
726
|
+
include Aws::Structure
|
|
727
|
+
end
|
|
728
|
+
|
|
729
|
+
# @!attribute [rw] catalog
|
|
730
|
+
# The catalog identifier where the connection invitation was created.
|
|
731
|
+
# @return [String]
|
|
732
|
+
#
|
|
733
|
+
# @!attribute [rw] id
|
|
734
|
+
# The unique identifier of the created connection invitation.
|
|
735
|
+
# @return [String]
|
|
736
|
+
#
|
|
737
|
+
# @!attribute [rw] arn
|
|
738
|
+
# The Amazon Resource Name (ARN) of the created connection invitation.
|
|
739
|
+
# @return [String]
|
|
740
|
+
#
|
|
741
|
+
# @!attribute [rw] connection_id
|
|
742
|
+
# The identifier of the connection associated with this invitation.
|
|
743
|
+
# @return [String]
|
|
744
|
+
#
|
|
745
|
+
# @!attribute [rw] connection_type
|
|
746
|
+
# The type of connection being requested in the invitation.
|
|
747
|
+
# @return [String]
|
|
748
|
+
#
|
|
749
|
+
# @!attribute [rw] created_at
|
|
750
|
+
# The timestamp when the connection invitation was created.
|
|
751
|
+
# @return [Time]
|
|
752
|
+
#
|
|
753
|
+
# @!attribute [rw] updated_at
|
|
754
|
+
# The timestamp when the connection invitation was last updated.
|
|
755
|
+
# @return [Time]
|
|
756
|
+
#
|
|
757
|
+
# @!attribute [rw] expires_at
|
|
758
|
+
# The timestamp when the connection invitation will expire if not
|
|
759
|
+
# responded to.
|
|
760
|
+
# @return [Time]
|
|
761
|
+
#
|
|
762
|
+
# @!attribute [rw] other_participant_identifier
|
|
763
|
+
# The identifier of the organization or partner being invited.
|
|
764
|
+
# @return [String]
|
|
765
|
+
#
|
|
766
|
+
# @!attribute [rw] participant_type
|
|
767
|
+
# The type of participant (inviter or invitee) in the connection
|
|
768
|
+
# invitation.
|
|
769
|
+
# @return [String]
|
|
770
|
+
#
|
|
771
|
+
# @!attribute [rw] status
|
|
772
|
+
# The current status of the connection invitation (pending, accepted,
|
|
773
|
+
# rejected, etc.).
|
|
774
|
+
# @return [String]
|
|
775
|
+
#
|
|
776
|
+
# @!attribute [rw] invitation_message
|
|
777
|
+
# The custom message included with the connection invitation.
|
|
778
|
+
# @return [String]
|
|
779
|
+
#
|
|
780
|
+
# @!attribute [rw] inviter_email
|
|
781
|
+
# The email address of the person who sent the connection invitation.
|
|
782
|
+
# @return [String]
|
|
783
|
+
#
|
|
784
|
+
# @!attribute [rw] inviter_name
|
|
785
|
+
# The name of the person who sent the connection invitation.
|
|
786
|
+
# @return [String]
|
|
787
|
+
#
|
|
788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CreateConnectionInvitationResponse AWS API Documentation
|
|
789
|
+
#
|
|
790
|
+
class CreateConnectionInvitationResponse < Struct.new(
|
|
791
|
+
:catalog,
|
|
792
|
+
:id,
|
|
793
|
+
:arn,
|
|
794
|
+
:connection_id,
|
|
795
|
+
:connection_type,
|
|
796
|
+
:created_at,
|
|
797
|
+
:updated_at,
|
|
798
|
+
:expires_at,
|
|
799
|
+
:other_participant_identifier,
|
|
800
|
+
:participant_type,
|
|
801
|
+
:status,
|
|
802
|
+
:invitation_message,
|
|
803
|
+
:inviter_email,
|
|
804
|
+
:inviter_name)
|
|
805
|
+
SENSITIVE = [:inviter_name]
|
|
806
|
+
include Aws::Structure
|
|
807
|
+
end
|
|
808
|
+
|
|
809
|
+
# @!attribute [rw] catalog
|
|
810
|
+
# The catalog identifier where the partner account will be created.
|
|
811
|
+
# @return [String]
|
|
812
|
+
#
|
|
813
|
+
# @!attribute [rw] client_token
|
|
814
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
815
|
+
# idempotency of the request.
|
|
816
|
+
#
|
|
817
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
818
|
+
# not need to pass this option.
|
|
819
|
+
# @return [String]
|
|
820
|
+
#
|
|
821
|
+
# @!attribute [rw] legal_name
|
|
822
|
+
# The legal name of the organization becoming a partner.
|
|
823
|
+
# @return [String]
|
|
824
|
+
#
|
|
825
|
+
# @!attribute [rw] primary_solution_type
|
|
826
|
+
# The primary type of solution or service the partner provides (e.g.,
|
|
827
|
+
# consulting, software, managed services).
|
|
828
|
+
# @return [String]
|
|
829
|
+
#
|
|
830
|
+
# @!attribute [rw] alliance_lead_contact
|
|
831
|
+
# The primary contact person for alliance and partnership matters.
|
|
832
|
+
# @return [Types::AllianceLeadContact]
|
|
833
|
+
#
|
|
834
|
+
# @!attribute [rw] email_verification_code
|
|
835
|
+
# The verification code sent to the alliance lead contact's email to
|
|
836
|
+
# confirm account creation.
|
|
837
|
+
# @return [String]
|
|
838
|
+
#
|
|
839
|
+
# @!attribute [rw] tags
|
|
840
|
+
# A list of tags to associate with the partner account for
|
|
841
|
+
# organization and billing purposes.
|
|
842
|
+
# @return [Array<Types::Tag>]
|
|
843
|
+
#
|
|
844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CreatePartnerRequest AWS API Documentation
|
|
845
|
+
#
|
|
846
|
+
class CreatePartnerRequest < Struct.new(
|
|
847
|
+
:catalog,
|
|
848
|
+
:client_token,
|
|
849
|
+
:legal_name,
|
|
850
|
+
:primary_solution_type,
|
|
851
|
+
:alliance_lead_contact,
|
|
852
|
+
:email_verification_code,
|
|
853
|
+
:tags)
|
|
854
|
+
SENSITIVE = [:legal_name, :email_verification_code]
|
|
855
|
+
include Aws::Structure
|
|
856
|
+
end
|
|
857
|
+
|
|
858
|
+
# @!attribute [rw] catalog
|
|
859
|
+
# The catalog identifier where the partner account was created.
|
|
860
|
+
# @return [String]
|
|
861
|
+
#
|
|
862
|
+
# @!attribute [rw] arn
|
|
863
|
+
# The Amazon Resource Name (ARN) of the created partner account.
|
|
864
|
+
# @return [String]
|
|
865
|
+
#
|
|
866
|
+
# @!attribute [rw] id
|
|
867
|
+
# The unique identifier of the created partner account.
|
|
868
|
+
# @return [String]
|
|
869
|
+
#
|
|
870
|
+
# @!attribute [rw] legal_name
|
|
871
|
+
# The legal name of the partner organization.
|
|
872
|
+
# @return [String]
|
|
873
|
+
#
|
|
874
|
+
# @!attribute [rw] created_at
|
|
875
|
+
# The timestamp when the partner account was created.
|
|
876
|
+
# @return [Time]
|
|
877
|
+
#
|
|
878
|
+
# @!attribute [rw] profile
|
|
879
|
+
# The partner profile information including display name, description,
|
|
880
|
+
# and other public details.
|
|
881
|
+
# @return [Types::PartnerProfile]
|
|
882
|
+
#
|
|
883
|
+
# @!attribute [rw] aws_training_certification_email_domains
|
|
884
|
+
# The list of verified email domains associated with AWS training and
|
|
885
|
+
# certification credentials for the partner organization.
|
|
886
|
+
# @return [Array<Types::PartnerDomain>]
|
|
887
|
+
#
|
|
888
|
+
# @!attribute [rw] alliance_lead_contact
|
|
889
|
+
# The alliance lead contact information for the partner account.
|
|
890
|
+
# @return [Types::AllianceLeadContact]
|
|
891
|
+
#
|
|
892
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/CreatePartnerResponse AWS API Documentation
|
|
893
|
+
#
|
|
894
|
+
class CreatePartnerResponse < Struct.new(
|
|
895
|
+
:catalog,
|
|
896
|
+
:arn,
|
|
897
|
+
:id,
|
|
898
|
+
:legal_name,
|
|
899
|
+
:created_at,
|
|
900
|
+
:profile,
|
|
901
|
+
:aws_training_certification_email_domains,
|
|
902
|
+
:alliance_lead_contact)
|
|
903
|
+
SENSITIVE = [:legal_name]
|
|
904
|
+
include Aws::Structure
|
|
905
|
+
end
|
|
906
|
+
|
|
907
|
+
# @!attribute [rw] catalog
|
|
908
|
+
# The catalog identifier for the partner account.
|
|
909
|
+
# @return [String]
|
|
910
|
+
#
|
|
911
|
+
# @!attribute [rw] identifier
|
|
912
|
+
# The unique identifier of the partner account.
|
|
913
|
+
# @return [String]
|
|
914
|
+
#
|
|
915
|
+
# @!attribute [rw] client_token
|
|
916
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
917
|
+
# idempotency of the request.
|
|
918
|
+
#
|
|
919
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
920
|
+
# not need to pass this option.
|
|
921
|
+
# @return [String]
|
|
922
|
+
#
|
|
923
|
+
# @!attribute [rw] domain_name
|
|
924
|
+
# The domain name to disassociate from AWS training and certification.
|
|
925
|
+
# @return [String]
|
|
926
|
+
#
|
|
927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/DisassociateAwsTrainingCertificationEmailDomainRequest AWS API Documentation
|
|
928
|
+
#
|
|
929
|
+
class DisassociateAwsTrainingCertificationEmailDomainRequest < Struct.new(
|
|
930
|
+
:catalog,
|
|
931
|
+
:identifier,
|
|
932
|
+
:client_token,
|
|
933
|
+
:domain_name)
|
|
934
|
+
SENSITIVE = []
|
|
935
|
+
include Aws::Structure
|
|
936
|
+
end
|
|
937
|
+
|
|
938
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/DisassociateAwsTrainingCertificationEmailDomainResponse AWS API Documentation
|
|
939
|
+
#
|
|
940
|
+
class DisassociateAwsTrainingCertificationEmailDomainResponse < Aws::EmptyStructure; end
|
|
941
|
+
|
|
942
|
+
# Contains detailed information about an error that occurred during an
|
|
943
|
+
# operation.
|
|
944
|
+
#
|
|
945
|
+
# @!attribute [rw] locale
|
|
946
|
+
# The locale or language code for the error message.
|
|
947
|
+
# @return [String]
|
|
948
|
+
#
|
|
949
|
+
# @!attribute [rw] message
|
|
950
|
+
# A human-readable description of the error.
|
|
951
|
+
# @return [String]
|
|
952
|
+
#
|
|
953
|
+
# @!attribute [rw] reason
|
|
954
|
+
# A machine-readable code or reason for the error.
|
|
955
|
+
# @return [String]
|
|
956
|
+
#
|
|
957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ErrorDetail AWS API Documentation
|
|
958
|
+
#
|
|
959
|
+
class ErrorDetail < Struct.new(
|
|
960
|
+
:locale,
|
|
961
|
+
:message,
|
|
962
|
+
:reason)
|
|
963
|
+
SENSITIVE = []
|
|
964
|
+
include Aws::Structure
|
|
965
|
+
end
|
|
966
|
+
|
|
967
|
+
# Contains information about a field-level validation error that
|
|
968
|
+
# occurred during an operation.
|
|
969
|
+
#
|
|
970
|
+
# @!attribute [rw] name
|
|
971
|
+
# The name of the field that failed validation.
|
|
972
|
+
# @return [String]
|
|
973
|
+
#
|
|
974
|
+
# @!attribute [rw] message
|
|
975
|
+
# A description of the field validation error.
|
|
976
|
+
# @return [String]
|
|
977
|
+
#
|
|
978
|
+
# @!attribute [rw] code
|
|
979
|
+
# A code identifying the specific field validation error.
|
|
980
|
+
# @return [String]
|
|
981
|
+
#
|
|
982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/FieldValidationError AWS API Documentation
|
|
983
|
+
#
|
|
984
|
+
class FieldValidationError < Struct.new(
|
|
985
|
+
:name,
|
|
986
|
+
:message,
|
|
987
|
+
:code)
|
|
988
|
+
SENSITIVE = []
|
|
989
|
+
include Aws::Structure
|
|
990
|
+
end
|
|
991
|
+
|
|
992
|
+
# @!attribute [rw] catalog
|
|
993
|
+
# The catalog identifier for the partner account.
|
|
994
|
+
# @return [String]
|
|
995
|
+
#
|
|
996
|
+
# @!attribute [rw] identifier
|
|
997
|
+
# The unique identifier of the partner account.
|
|
998
|
+
# @return [String]
|
|
999
|
+
#
|
|
1000
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetAllianceLeadContactRequest AWS API Documentation
|
|
1001
|
+
#
|
|
1002
|
+
class GetAllianceLeadContactRequest < Struct.new(
|
|
1003
|
+
:catalog,
|
|
1004
|
+
:identifier)
|
|
1005
|
+
SENSITIVE = []
|
|
1006
|
+
include Aws::Structure
|
|
1007
|
+
end
|
|
1008
|
+
|
|
1009
|
+
# @!attribute [rw] catalog
|
|
1010
|
+
# The catalog identifier for the partner account.
|
|
1011
|
+
# @return [String]
|
|
1012
|
+
#
|
|
1013
|
+
# @!attribute [rw] arn
|
|
1014
|
+
# The Amazon Resource Name (ARN) of the partner account.
|
|
1015
|
+
# @return [String]
|
|
1016
|
+
#
|
|
1017
|
+
# @!attribute [rw] id
|
|
1018
|
+
# The unique identifier of the partner account.
|
|
1019
|
+
# @return [String]
|
|
1020
|
+
#
|
|
1021
|
+
# @!attribute [rw] alliance_lead_contact
|
|
1022
|
+
# The alliance lead contact information including name, email, and
|
|
1023
|
+
# business title.
|
|
1024
|
+
# @return [Types::AllianceLeadContact]
|
|
1025
|
+
#
|
|
1026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetAllianceLeadContactResponse AWS API Documentation
|
|
1027
|
+
#
|
|
1028
|
+
class GetAllianceLeadContactResponse < Struct.new(
|
|
1029
|
+
:catalog,
|
|
1030
|
+
:arn,
|
|
1031
|
+
:id,
|
|
1032
|
+
:alliance_lead_contact)
|
|
1033
|
+
SENSITIVE = []
|
|
1034
|
+
include Aws::Structure
|
|
1035
|
+
end
|
|
1036
|
+
|
|
1037
|
+
# @!attribute [rw] catalog
|
|
1038
|
+
# The catalog identifier where the connection invitation exists.
|
|
1039
|
+
# @return [String]
|
|
1040
|
+
#
|
|
1041
|
+
# @!attribute [rw] identifier
|
|
1042
|
+
# The unique identifier of the connection invitation to retrieve.
|
|
1043
|
+
# @return [String]
|
|
1044
|
+
#
|
|
1045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetConnectionInvitationRequest AWS API Documentation
|
|
1046
|
+
#
|
|
1047
|
+
class GetConnectionInvitationRequest < Struct.new(
|
|
1048
|
+
:catalog,
|
|
1049
|
+
:identifier)
|
|
1050
|
+
SENSITIVE = []
|
|
1051
|
+
include Aws::Structure
|
|
1052
|
+
end
|
|
1053
|
+
|
|
1054
|
+
# @!attribute [rw] catalog
|
|
1055
|
+
# The catalog identifier where the connection invitation exists.
|
|
1056
|
+
# @return [String]
|
|
1057
|
+
#
|
|
1058
|
+
# @!attribute [rw] id
|
|
1059
|
+
# The unique identifier of the connection invitation.
|
|
1060
|
+
# @return [String]
|
|
1061
|
+
#
|
|
1062
|
+
# @!attribute [rw] arn
|
|
1063
|
+
# The Amazon Resource Name (ARN) of the connection invitation.
|
|
1064
|
+
# @return [String]
|
|
1065
|
+
#
|
|
1066
|
+
# @!attribute [rw] connection_id
|
|
1067
|
+
# The identifier of the connection associated with this invitation.
|
|
1068
|
+
# @return [String]
|
|
1069
|
+
#
|
|
1070
|
+
# @!attribute [rw] connection_type
|
|
1071
|
+
# The type of connection being requested in the invitation.
|
|
1072
|
+
# @return [String]
|
|
1073
|
+
#
|
|
1074
|
+
# @!attribute [rw] created_at
|
|
1075
|
+
# The timestamp when the connection invitation was created.
|
|
1076
|
+
# @return [Time]
|
|
1077
|
+
#
|
|
1078
|
+
# @!attribute [rw] updated_at
|
|
1079
|
+
# The timestamp when the connection invitation was last updated.
|
|
1080
|
+
# @return [Time]
|
|
1081
|
+
#
|
|
1082
|
+
# @!attribute [rw] expires_at
|
|
1083
|
+
# The timestamp when the connection invitation will expire.
|
|
1084
|
+
# @return [Time]
|
|
1085
|
+
#
|
|
1086
|
+
# @!attribute [rw] other_participant_identifier
|
|
1087
|
+
# The identifier of the other participant in the connection
|
|
1088
|
+
# invitation.
|
|
1089
|
+
# @return [String]
|
|
1090
|
+
#
|
|
1091
|
+
# @!attribute [rw] participant_type
|
|
1092
|
+
# The type of participant (inviter or invitee) in the connection
|
|
1093
|
+
# invitation.
|
|
1094
|
+
# @return [String]
|
|
1095
|
+
#
|
|
1096
|
+
# @!attribute [rw] status
|
|
1097
|
+
# The current status of the connection invitation.
|
|
1098
|
+
# @return [String]
|
|
1099
|
+
#
|
|
1100
|
+
# @!attribute [rw] invitation_message
|
|
1101
|
+
# The custom message included with the connection invitation.
|
|
1102
|
+
# @return [String]
|
|
1103
|
+
#
|
|
1104
|
+
# @!attribute [rw] inviter_email
|
|
1105
|
+
# The email address of the person who sent the connection invitation.
|
|
1106
|
+
# @return [String]
|
|
1107
|
+
#
|
|
1108
|
+
# @!attribute [rw] inviter_name
|
|
1109
|
+
# The name of the person who sent the connection invitation.
|
|
1110
|
+
# @return [String]
|
|
1111
|
+
#
|
|
1112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetConnectionInvitationResponse AWS API Documentation
|
|
1113
|
+
#
|
|
1114
|
+
class GetConnectionInvitationResponse < Struct.new(
|
|
1115
|
+
:catalog,
|
|
1116
|
+
:id,
|
|
1117
|
+
:arn,
|
|
1118
|
+
:connection_id,
|
|
1119
|
+
:connection_type,
|
|
1120
|
+
:created_at,
|
|
1121
|
+
:updated_at,
|
|
1122
|
+
:expires_at,
|
|
1123
|
+
:other_participant_identifier,
|
|
1124
|
+
:participant_type,
|
|
1125
|
+
:status,
|
|
1126
|
+
:invitation_message,
|
|
1127
|
+
:inviter_email,
|
|
1128
|
+
:inviter_name)
|
|
1129
|
+
SENSITIVE = [:inviter_name]
|
|
1130
|
+
include Aws::Structure
|
|
1131
|
+
end
|
|
1132
|
+
|
|
1133
|
+
# @!attribute [rw] catalog
|
|
1134
|
+
# The catalog identifier for the partner account.
|
|
1135
|
+
# @return [String]
|
|
1136
|
+
#
|
|
1137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetConnectionPreferencesRequest AWS API Documentation
|
|
1138
|
+
#
|
|
1139
|
+
class GetConnectionPreferencesRequest < Struct.new(
|
|
1140
|
+
:catalog)
|
|
1141
|
+
SENSITIVE = []
|
|
1142
|
+
include Aws::Structure
|
|
1143
|
+
end
|
|
1144
|
+
|
|
1145
|
+
# @!attribute [rw] catalog
|
|
1146
|
+
# The catalog identifier for the partner account.
|
|
1147
|
+
# @return [String]
|
|
1148
|
+
#
|
|
1149
|
+
# @!attribute [rw] arn
|
|
1150
|
+
# The Amazon Resource Name (ARN) of the connection preferences.
|
|
1151
|
+
# @return [String]
|
|
1152
|
+
#
|
|
1153
|
+
# @!attribute [rw] access_type
|
|
1154
|
+
# The access type setting for connections (e.g., open, restricted,
|
|
1155
|
+
# invitation-only).
|
|
1156
|
+
# @return [String]
|
|
1157
|
+
#
|
|
1158
|
+
# @!attribute [rw] excluded_participant_ids
|
|
1159
|
+
# A list of participant IDs that are excluded from connection requests
|
|
1160
|
+
# or interactions.
|
|
1161
|
+
# @return [Array<String>]
|
|
1162
|
+
#
|
|
1163
|
+
# @!attribute [rw] updated_at
|
|
1164
|
+
# The timestamp when the connection preferences were last updated.
|
|
1165
|
+
# @return [Time]
|
|
1166
|
+
#
|
|
1167
|
+
# @!attribute [rw] revision
|
|
1168
|
+
# The revision number of the connection preferences for optimistic
|
|
1169
|
+
# locking.
|
|
1170
|
+
# @return [Integer]
|
|
1171
|
+
#
|
|
1172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetConnectionPreferencesResponse AWS API Documentation
|
|
1173
|
+
#
|
|
1174
|
+
class GetConnectionPreferencesResponse < Struct.new(
|
|
1175
|
+
:catalog,
|
|
1176
|
+
:arn,
|
|
1177
|
+
:access_type,
|
|
1178
|
+
:excluded_participant_ids,
|
|
1179
|
+
:updated_at,
|
|
1180
|
+
:revision)
|
|
1181
|
+
SENSITIVE = []
|
|
1182
|
+
include Aws::Structure
|
|
1183
|
+
end
|
|
1184
|
+
|
|
1185
|
+
# @!attribute [rw] catalog
|
|
1186
|
+
# The catalog identifier where the connection exists.
|
|
1187
|
+
# @return [String]
|
|
1188
|
+
#
|
|
1189
|
+
# @!attribute [rw] identifier
|
|
1190
|
+
# The unique identifier of the connection to retrieve.
|
|
1191
|
+
# @return [String]
|
|
1192
|
+
#
|
|
1193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetConnectionRequest AWS API Documentation
|
|
1194
|
+
#
|
|
1195
|
+
class GetConnectionRequest < Struct.new(
|
|
1196
|
+
:catalog,
|
|
1197
|
+
:identifier)
|
|
1198
|
+
SENSITIVE = []
|
|
1199
|
+
include Aws::Structure
|
|
1200
|
+
end
|
|
1201
|
+
|
|
1202
|
+
# @!attribute [rw] catalog
|
|
1203
|
+
# The catalog identifier where the connection exists.
|
|
1204
|
+
# @return [String]
|
|
1205
|
+
#
|
|
1206
|
+
# @!attribute [rw] id
|
|
1207
|
+
# The unique identifier of the connection.
|
|
1208
|
+
# @return [String]
|
|
1209
|
+
#
|
|
1210
|
+
# @!attribute [rw] arn
|
|
1211
|
+
# The Amazon Resource Name (ARN) of the connection.
|
|
1212
|
+
# @return [String]
|
|
1213
|
+
#
|
|
1214
|
+
# @!attribute [rw] other_participant_account_id
|
|
1215
|
+
# The AWS account ID of the other participant in the connection.
|
|
1216
|
+
# @return [String]
|
|
1217
|
+
#
|
|
1218
|
+
# @!attribute [rw] updated_at
|
|
1219
|
+
# The timestamp when the connection was last updated.
|
|
1220
|
+
# @return [Time]
|
|
1221
|
+
#
|
|
1222
|
+
# @!attribute [rw] connection_types
|
|
1223
|
+
# The list of connection types active between the partners.
|
|
1224
|
+
# @return [Hash<String,Types::ConnectionTypeDetail>]
|
|
1225
|
+
#
|
|
1226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetConnectionResponse AWS API Documentation
|
|
1227
|
+
#
|
|
1228
|
+
class GetConnectionResponse < Struct.new(
|
|
1229
|
+
:catalog,
|
|
1230
|
+
:id,
|
|
1231
|
+
:arn,
|
|
1232
|
+
:other_participant_account_id,
|
|
1233
|
+
:updated_at,
|
|
1234
|
+
:connection_types)
|
|
1235
|
+
SENSITIVE = []
|
|
1236
|
+
include Aws::Structure
|
|
1237
|
+
end
|
|
1238
|
+
|
|
1239
|
+
# @!attribute [rw] catalog
|
|
1240
|
+
# The catalog identifier for the partner account.
|
|
1241
|
+
# @return [String]
|
|
1242
|
+
#
|
|
1243
|
+
# @!attribute [rw] identifier
|
|
1244
|
+
# The unique identifier of the partner account to retrieve.
|
|
1245
|
+
# @return [String]
|
|
1246
|
+
#
|
|
1247
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetPartnerRequest AWS API Documentation
|
|
1248
|
+
#
|
|
1249
|
+
class GetPartnerRequest < Struct.new(
|
|
1250
|
+
:catalog,
|
|
1251
|
+
:identifier)
|
|
1252
|
+
SENSITIVE = []
|
|
1253
|
+
include Aws::Structure
|
|
1254
|
+
end
|
|
1255
|
+
|
|
1256
|
+
# @!attribute [rw] catalog
|
|
1257
|
+
# The catalog identifier for the partner account.
|
|
1258
|
+
# @return [String]
|
|
1259
|
+
#
|
|
1260
|
+
# @!attribute [rw] arn
|
|
1261
|
+
# The Amazon Resource Name (ARN) of the partner account.
|
|
1262
|
+
# @return [String]
|
|
1263
|
+
#
|
|
1264
|
+
# @!attribute [rw] id
|
|
1265
|
+
# The unique identifier of the partner account.
|
|
1266
|
+
# @return [String]
|
|
1267
|
+
#
|
|
1268
|
+
# @!attribute [rw] legal_name
|
|
1269
|
+
# The legal name of the partner organization.
|
|
1270
|
+
# @return [String]
|
|
1271
|
+
#
|
|
1272
|
+
# @!attribute [rw] created_at
|
|
1273
|
+
# The timestamp when the partner account was created.
|
|
1274
|
+
# @return [Time]
|
|
1275
|
+
#
|
|
1276
|
+
# @!attribute [rw] profile
|
|
1277
|
+
# The partner profile information including display name, description,
|
|
1278
|
+
# and other public details.
|
|
1279
|
+
# @return [Types::PartnerProfile]
|
|
1280
|
+
#
|
|
1281
|
+
# @!attribute [rw] aws_training_certification_email_domains
|
|
1282
|
+
# The list of verified email domains associated with AWS training and
|
|
1283
|
+
# certification credentials for the partner organization.
|
|
1284
|
+
# @return [Array<Types::PartnerDomain>]
|
|
1285
|
+
#
|
|
1286
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetPartnerResponse AWS API Documentation
|
|
1287
|
+
#
|
|
1288
|
+
class GetPartnerResponse < Struct.new(
|
|
1289
|
+
:catalog,
|
|
1290
|
+
:arn,
|
|
1291
|
+
:id,
|
|
1292
|
+
:legal_name,
|
|
1293
|
+
:created_at,
|
|
1294
|
+
:profile,
|
|
1295
|
+
:aws_training_certification_email_domains)
|
|
1296
|
+
SENSITIVE = [:legal_name]
|
|
1297
|
+
include Aws::Structure
|
|
1298
|
+
end
|
|
1299
|
+
|
|
1300
|
+
# @!attribute [rw] catalog
|
|
1301
|
+
# The catalog identifier for the partner account.
|
|
1302
|
+
# @return [String]
|
|
1303
|
+
#
|
|
1304
|
+
# @!attribute [rw] identifier
|
|
1305
|
+
# The unique identifier of the partner account.
|
|
1306
|
+
# @return [String]
|
|
1307
|
+
#
|
|
1308
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetProfileUpdateTaskRequest AWS API Documentation
|
|
1309
|
+
#
|
|
1310
|
+
class GetProfileUpdateTaskRequest < Struct.new(
|
|
1311
|
+
:catalog,
|
|
1312
|
+
:identifier)
|
|
1313
|
+
SENSITIVE = []
|
|
1314
|
+
include Aws::Structure
|
|
1315
|
+
end
|
|
1316
|
+
|
|
1317
|
+
# @!attribute [rw] catalog
|
|
1318
|
+
# The catalog identifier for the partner account.
|
|
1319
|
+
# @return [String]
|
|
1320
|
+
#
|
|
1321
|
+
# @!attribute [rw] arn
|
|
1322
|
+
# The Amazon Resource Name (ARN) of the profile update task.
|
|
1323
|
+
# @return [String]
|
|
1324
|
+
#
|
|
1325
|
+
# @!attribute [rw] id
|
|
1326
|
+
# The unique identifier of the partner account.
|
|
1327
|
+
# @return [String]
|
|
1328
|
+
#
|
|
1329
|
+
# @!attribute [rw] task_id
|
|
1330
|
+
# The unique identifier of the profile update task.
|
|
1331
|
+
# @return [String]
|
|
1332
|
+
#
|
|
1333
|
+
# @!attribute [rw] task_details
|
|
1334
|
+
# The details of the profile update task including what changes are
|
|
1335
|
+
# being made.
|
|
1336
|
+
# @return [Types::TaskDetails]
|
|
1337
|
+
#
|
|
1338
|
+
# @!attribute [rw] started_at
|
|
1339
|
+
# The timestamp when the profile update task was started.
|
|
1340
|
+
# @return [Time]
|
|
1341
|
+
#
|
|
1342
|
+
# @!attribute [rw] status
|
|
1343
|
+
# The current status of the profile update task (in progress,
|
|
1344
|
+
# completed, failed, etc.).
|
|
1345
|
+
# @return [String]
|
|
1346
|
+
#
|
|
1347
|
+
# @!attribute [rw] ended_at
|
|
1348
|
+
# The timestamp when the profile update task was completed or failed.
|
|
1349
|
+
# @return [Time]
|
|
1350
|
+
#
|
|
1351
|
+
# @!attribute [rw] error_detail_list
|
|
1352
|
+
# A list of error details if any errors occurred during the profile
|
|
1353
|
+
# update task.
|
|
1354
|
+
# @return [Array<Types::ErrorDetail>]
|
|
1355
|
+
#
|
|
1356
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetProfileUpdateTaskResponse AWS API Documentation
|
|
1357
|
+
#
|
|
1358
|
+
class GetProfileUpdateTaskResponse < Struct.new(
|
|
1359
|
+
:catalog,
|
|
1360
|
+
:arn,
|
|
1361
|
+
:id,
|
|
1362
|
+
:task_id,
|
|
1363
|
+
:task_details,
|
|
1364
|
+
:started_at,
|
|
1365
|
+
:status,
|
|
1366
|
+
:ended_at,
|
|
1367
|
+
:error_detail_list)
|
|
1368
|
+
SENSITIVE = []
|
|
1369
|
+
include Aws::Structure
|
|
1370
|
+
end
|
|
1371
|
+
|
|
1372
|
+
# @!attribute [rw] catalog
|
|
1373
|
+
# The catalog identifier for the partner account.
|
|
1374
|
+
# @return [String]
|
|
1375
|
+
#
|
|
1376
|
+
# @!attribute [rw] identifier
|
|
1377
|
+
# The unique identifier of the partner account.
|
|
1378
|
+
# @return [String]
|
|
1379
|
+
#
|
|
1380
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetProfileVisibilityRequest AWS API Documentation
|
|
1381
|
+
#
|
|
1382
|
+
class GetProfileVisibilityRequest < Struct.new(
|
|
1383
|
+
:catalog,
|
|
1384
|
+
:identifier)
|
|
1385
|
+
SENSITIVE = []
|
|
1386
|
+
include Aws::Structure
|
|
1387
|
+
end
|
|
1388
|
+
|
|
1389
|
+
# @!attribute [rw] catalog
|
|
1390
|
+
# The catalog identifier for the partner account.
|
|
1391
|
+
# @return [String]
|
|
1392
|
+
#
|
|
1393
|
+
# @!attribute [rw] arn
|
|
1394
|
+
# The Amazon Resource Name (ARN) of the partner account.
|
|
1395
|
+
# @return [String]
|
|
1396
|
+
#
|
|
1397
|
+
# @!attribute [rw] id
|
|
1398
|
+
# The unique identifier of the partner account.
|
|
1399
|
+
# @return [String]
|
|
1400
|
+
#
|
|
1401
|
+
# @!attribute [rw] visibility
|
|
1402
|
+
# The visibility setting for the partner profile (public, private,
|
|
1403
|
+
# restricted, etc.).
|
|
1404
|
+
# @return [String]
|
|
1405
|
+
#
|
|
1406
|
+
# @!attribute [rw] profile_id
|
|
1407
|
+
# The unique identifier of the partner profile.
|
|
1408
|
+
# @return [String]
|
|
1409
|
+
#
|
|
1410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetProfileVisibilityResponse AWS API Documentation
|
|
1411
|
+
#
|
|
1412
|
+
class GetProfileVisibilityResponse < Struct.new(
|
|
1413
|
+
:catalog,
|
|
1414
|
+
:arn,
|
|
1415
|
+
:id,
|
|
1416
|
+
:visibility,
|
|
1417
|
+
:profile_id)
|
|
1418
|
+
SENSITIVE = []
|
|
1419
|
+
include Aws::Structure
|
|
1420
|
+
end
|
|
1421
|
+
|
|
1422
|
+
# An internal server error occurred while processing the request. This
|
|
1423
|
+
# is typically a temporary condition and the request may be retried.
|
|
1424
|
+
#
|
|
1425
|
+
# @!attribute [rw] message
|
|
1426
|
+
# @return [String]
|
|
1427
|
+
#
|
|
1428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/InternalServerException AWS API Documentation
|
|
1429
|
+
#
|
|
1430
|
+
class InternalServerException < Struct.new(
|
|
1431
|
+
:message)
|
|
1432
|
+
SENSITIVE = []
|
|
1433
|
+
include Aws::Structure
|
|
1434
|
+
end
|
|
1435
|
+
|
|
1436
|
+
# @!attribute [rw] catalog
|
|
1437
|
+
# The catalog identifier for the partner account.
|
|
1438
|
+
# @return [String]
|
|
1439
|
+
#
|
|
1440
|
+
# @!attribute [rw] next_token
|
|
1441
|
+
# The token for retrieving the next page of results in paginated
|
|
1442
|
+
# responses.
|
|
1443
|
+
# @return [String]
|
|
1444
|
+
#
|
|
1445
|
+
# @!attribute [rw] connection_type
|
|
1446
|
+
# Filter results by connection type (e.g., reseller, distributor,
|
|
1447
|
+
# technology partner).
|
|
1448
|
+
# @return [String]
|
|
1449
|
+
#
|
|
1450
|
+
# @!attribute [rw] max_results
|
|
1451
|
+
# The maximum number of connection invitations to return in a single
|
|
1452
|
+
# response.
|
|
1453
|
+
# @return [Integer]
|
|
1454
|
+
#
|
|
1455
|
+
# @!attribute [rw] other_participant_identifiers
|
|
1456
|
+
# Filter results by specific participant identifiers.
|
|
1457
|
+
# @return [Array<String>]
|
|
1458
|
+
#
|
|
1459
|
+
# @!attribute [rw] participant_type
|
|
1460
|
+
# Filter results by participant type (inviter or invitee).
|
|
1461
|
+
# @return [String]
|
|
1462
|
+
#
|
|
1463
|
+
# @!attribute [rw] status
|
|
1464
|
+
# Filter results by invitation status (pending, accepted, rejected,
|
|
1465
|
+
# canceled, expired).
|
|
1466
|
+
# @return [String]
|
|
1467
|
+
#
|
|
1468
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ListConnectionInvitationsRequest AWS API Documentation
|
|
1469
|
+
#
|
|
1470
|
+
class ListConnectionInvitationsRequest < Struct.new(
|
|
1471
|
+
:catalog,
|
|
1472
|
+
:next_token,
|
|
1473
|
+
:connection_type,
|
|
1474
|
+
:max_results,
|
|
1475
|
+
:other_participant_identifiers,
|
|
1476
|
+
:participant_type,
|
|
1477
|
+
:status)
|
|
1478
|
+
SENSITIVE = []
|
|
1479
|
+
include Aws::Structure
|
|
1480
|
+
end
|
|
1481
|
+
|
|
1482
|
+
# @!attribute [rw] connection_invitation_summaries
|
|
1483
|
+
# A list of connection invitation summaries matching the specified
|
|
1484
|
+
# criteria.
|
|
1485
|
+
# @return [Array<Types::ConnectionInvitationSummary>]
|
|
1486
|
+
#
|
|
1487
|
+
# @!attribute [rw] next_token
|
|
1488
|
+
# The token for retrieving the next page of results if more results
|
|
1489
|
+
# are available.
|
|
1490
|
+
# @return [String]
|
|
1491
|
+
#
|
|
1492
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ListConnectionInvitationsResponse AWS API Documentation
|
|
1493
|
+
#
|
|
1494
|
+
class ListConnectionInvitationsResponse < Struct.new(
|
|
1495
|
+
:connection_invitation_summaries,
|
|
1496
|
+
:next_token)
|
|
1497
|
+
SENSITIVE = []
|
|
1498
|
+
include Aws::Structure
|
|
1499
|
+
end
|
|
1500
|
+
|
|
1501
|
+
# @!attribute [rw] catalog
|
|
1502
|
+
# The catalog identifier for the partner account.
|
|
1503
|
+
# @return [String]
|
|
1504
|
+
#
|
|
1505
|
+
# @!attribute [rw] next_token
|
|
1506
|
+
# The token for retrieving the next page of results in paginated
|
|
1507
|
+
# responses.
|
|
1508
|
+
# @return [String]
|
|
1509
|
+
#
|
|
1510
|
+
# @!attribute [rw] connection_type
|
|
1511
|
+
# Filter results by connection type (e.g., reseller, distributor,
|
|
1512
|
+
# technology partner).
|
|
1513
|
+
# @return [String]
|
|
1514
|
+
#
|
|
1515
|
+
# @!attribute [rw] max_results
|
|
1516
|
+
# The maximum number of connections to return in a single response.
|
|
1517
|
+
# @return [Integer]
|
|
1518
|
+
#
|
|
1519
|
+
# @!attribute [rw] other_participant_identifiers
|
|
1520
|
+
# Filter results by specific participant identifiers.
|
|
1521
|
+
# @return [Array<String>]
|
|
1522
|
+
#
|
|
1523
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ListConnectionsRequest AWS API Documentation
|
|
1524
|
+
#
|
|
1525
|
+
class ListConnectionsRequest < Struct.new(
|
|
1526
|
+
:catalog,
|
|
1527
|
+
:next_token,
|
|
1528
|
+
:connection_type,
|
|
1529
|
+
:max_results,
|
|
1530
|
+
:other_participant_identifiers)
|
|
1531
|
+
SENSITIVE = []
|
|
1532
|
+
include Aws::Structure
|
|
1533
|
+
end
|
|
1534
|
+
|
|
1535
|
+
# @!attribute [rw] connection_summaries
|
|
1536
|
+
# A list of connection summaries matching the specified criteria.
|
|
1537
|
+
# @return [Array<Types::ConnectionSummary>]
|
|
1538
|
+
#
|
|
1539
|
+
# @!attribute [rw] next_token
|
|
1540
|
+
# The token for retrieving the next page of results if more results
|
|
1541
|
+
# are available.
|
|
1542
|
+
# @return [String]
|
|
1543
|
+
#
|
|
1544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ListConnectionsResponse AWS API Documentation
|
|
1545
|
+
#
|
|
1546
|
+
class ListConnectionsResponse < Struct.new(
|
|
1547
|
+
:connection_summaries,
|
|
1548
|
+
:next_token)
|
|
1549
|
+
SENSITIVE = []
|
|
1550
|
+
include Aws::Structure
|
|
1551
|
+
end
|
|
1552
|
+
|
|
1553
|
+
# @!attribute [rw] catalog
|
|
1554
|
+
# The catalog identifier to list partners from.
|
|
1555
|
+
# @return [String]
|
|
1556
|
+
#
|
|
1557
|
+
# @!attribute [rw] next_token
|
|
1558
|
+
# The token for retrieving the next page of results in paginated
|
|
1559
|
+
# responses.
|
|
1560
|
+
# @return [String]
|
|
1561
|
+
#
|
|
1562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ListPartnersRequest AWS API Documentation
|
|
1563
|
+
#
|
|
1564
|
+
class ListPartnersRequest < Struct.new(
|
|
1565
|
+
:catalog,
|
|
1566
|
+
:next_token)
|
|
1567
|
+
SENSITIVE = []
|
|
1568
|
+
include Aws::Structure
|
|
1569
|
+
end
|
|
1570
|
+
|
|
1571
|
+
# @!attribute [rw] partner_summary_list
|
|
1572
|
+
# A list of partner summaries including basic information about each
|
|
1573
|
+
# partner account.
|
|
1574
|
+
# @return [Array<Types::PartnerSummary>]
|
|
1575
|
+
#
|
|
1576
|
+
# @!attribute [rw] next_token
|
|
1577
|
+
# The token for retrieving the next page of results if more results
|
|
1578
|
+
# are available.
|
|
1579
|
+
# @return [String]
|
|
1580
|
+
#
|
|
1581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ListPartnersResponse AWS API Documentation
|
|
1582
|
+
#
|
|
1583
|
+
class ListPartnersResponse < Struct.new(
|
|
1584
|
+
:partner_summary_list,
|
|
1585
|
+
:next_token)
|
|
1586
|
+
SENSITIVE = []
|
|
1587
|
+
include Aws::Structure
|
|
1588
|
+
end
|
|
1589
|
+
|
|
1590
|
+
# @!attribute [rw] resource_arn
|
|
1591
|
+
# The Amazon Resource Name (ARN) of the resource to list tags for.
|
|
1592
|
+
# @return [String]
|
|
1593
|
+
#
|
|
1594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ListTagsForResourceRequest AWS API Documentation
|
|
1595
|
+
#
|
|
1596
|
+
class ListTagsForResourceRequest < Struct.new(
|
|
1597
|
+
:resource_arn)
|
|
1598
|
+
SENSITIVE = []
|
|
1599
|
+
include Aws::Structure
|
|
1600
|
+
end
|
|
1601
|
+
|
|
1602
|
+
# @!attribute [rw] resource_arn
|
|
1603
|
+
# The Amazon Resource Name (ARN) of the resource that the tags are
|
|
1604
|
+
# associated with.
|
|
1605
|
+
# @return [String]
|
|
1606
|
+
#
|
|
1607
|
+
# @!attribute [rw] tags
|
|
1608
|
+
# A list of tags associated with the specified resource.
|
|
1609
|
+
# @return [Array<Types::Tag>]
|
|
1610
|
+
#
|
|
1611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ListTagsForResourceResponse AWS API Documentation
|
|
1612
|
+
#
|
|
1613
|
+
class ListTagsForResourceResponse < Struct.new(
|
|
1614
|
+
:resource_arn,
|
|
1615
|
+
:tags)
|
|
1616
|
+
SENSITIVE = []
|
|
1617
|
+
include Aws::Structure
|
|
1618
|
+
end
|
|
1619
|
+
|
|
1620
|
+
# Contains localized content for a partner profile in a specific
|
|
1621
|
+
# language or locale.
|
|
1622
|
+
#
|
|
1623
|
+
# @!attribute [rw] display_name
|
|
1624
|
+
# The localized display name for the partner.
|
|
1625
|
+
# @return [String]
|
|
1626
|
+
#
|
|
1627
|
+
# @!attribute [rw] description
|
|
1628
|
+
# The localized description of the partner's business and services.
|
|
1629
|
+
# @return [String]
|
|
1630
|
+
#
|
|
1631
|
+
# @!attribute [rw] website_url
|
|
1632
|
+
# The localized website URL for the partner.
|
|
1633
|
+
# @return [String]
|
|
1634
|
+
#
|
|
1635
|
+
# @!attribute [rw] logo_url
|
|
1636
|
+
# The URL to the partner's logo image for this locale.
|
|
1637
|
+
# @return [String]
|
|
1638
|
+
#
|
|
1639
|
+
# @!attribute [rw] locale
|
|
1640
|
+
# The locale or language code for the localized content.
|
|
1641
|
+
# @return [String]
|
|
1642
|
+
#
|
|
1643
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/LocalizedContent AWS API Documentation
|
|
1644
|
+
#
|
|
1645
|
+
class LocalizedContent < Struct.new(
|
|
1646
|
+
:display_name,
|
|
1647
|
+
:description,
|
|
1648
|
+
:website_url,
|
|
1649
|
+
:logo_url,
|
|
1650
|
+
:locale)
|
|
1651
|
+
SENSITIVE = []
|
|
1652
|
+
include Aws::Structure
|
|
1653
|
+
end
|
|
1654
|
+
|
|
1655
|
+
# Represents a participant in a partner connection, containing their
|
|
1656
|
+
# profile and account information.
|
|
1657
|
+
#
|
|
1658
|
+
# @note Participant is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Participant corresponding to the set member.
|
|
1659
|
+
#
|
|
1660
|
+
# @!attribute [rw] partner_profile
|
|
1661
|
+
# The partner profile information for the participant.
|
|
1662
|
+
# @return [Types::PartnerProfileSummary]
|
|
1663
|
+
#
|
|
1664
|
+
# @!attribute [rw] seller_profile
|
|
1665
|
+
# The seller profile information for the participant.
|
|
1666
|
+
# @return [Types::SellerProfileSummary]
|
|
1667
|
+
#
|
|
1668
|
+
# @!attribute [rw] account
|
|
1669
|
+
# The AWS account information for the participant.
|
|
1670
|
+
# @return [Types::AccountSummary]
|
|
1671
|
+
#
|
|
1672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/Participant AWS API Documentation
|
|
1673
|
+
#
|
|
1674
|
+
class Participant < Struct.new(
|
|
1675
|
+
:partner_profile,
|
|
1676
|
+
:seller_profile,
|
|
1677
|
+
:account,
|
|
1678
|
+
:unknown)
|
|
1679
|
+
SENSITIVE = []
|
|
1680
|
+
include Aws::Structure
|
|
1681
|
+
include Aws::Structure::Union
|
|
1682
|
+
|
|
1683
|
+
class PartnerProfile < Participant; end
|
|
1684
|
+
class SellerProfile < Participant; end
|
|
1685
|
+
class Account < Participant; end
|
|
1686
|
+
class Unknown < Participant; end
|
|
1687
|
+
end
|
|
1688
|
+
|
|
1689
|
+
# Represents a verified domain associated with a partner account.
|
|
1690
|
+
#
|
|
1691
|
+
# @!attribute [rw] domain_name
|
|
1692
|
+
# The domain name that has been verified for the partner account.
|
|
1693
|
+
# @return [String]
|
|
1694
|
+
#
|
|
1695
|
+
# @!attribute [rw] registered_at
|
|
1696
|
+
# The timestamp when the domain was registered and verified for the
|
|
1697
|
+
# partner account.
|
|
1698
|
+
# @return [Time]
|
|
1699
|
+
#
|
|
1700
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/PartnerDomain AWS API Documentation
|
|
1701
|
+
#
|
|
1702
|
+
class PartnerDomain < Struct.new(
|
|
1703
|
+
:domain_name,
|
|
1704
|
+
:registered_at)
|
|
1705
|
+
SENSITIVE = []
|
|
1706
|
+
include Aws::Structure
|
|
1707
|
+
end
|
|
1708
|
+
|
|
1709
|
+
# Contains comprehensive profile information for a partner including
|
|
1710
|
+
# public-facing details.
|
|
1711
|
+
#
|
|
1712
|
+
# @!attribute [rw] display_name
|
|
1713
|
+
# The public display name for the partner organization.
|
|
1714
|
+
# @return [String]
|
|
1715
|
+
#
|
|
1716
|
+
# @!attribute [rw] description
|
|
1717
|
+
# A description of the partner's business, services, and
|
|
1718
|
+
# capabilities.
|
|
1719
|
+
# @return [String]
|
|
1720
|
+
#
|
|
1721
|
+
# @!attribute [rw] website_url
|
|
1722
|
+
# The partner's primary website URL.
|
|
1723
|
+
# @return [String]
|
|
1724
|
+
#
|
|
1725
|
+
# @!attribute [rw] logo_url
|
|
1726
|
+
# The URL to the partner's logo image.
|
|
1727
|
+
# @return [String]
|
|
1728
|
+
#
|
|
1729
|
+
# @!attribute [rw] primary_solution_type
|
|
1730
|
+
# The primary type of solution or service the partner provides.
|
|
1731
|
+
# @return [String]
|
|
1732
|
+
#
|
|
1733
|
+
# @!attribute [rw] industry_segments
|
|
1734
|
+
# The industry segments or verticals that the partner serves.
|
|
1735
|
+
# @return [Array<String>]
|
|
1736
|
+
#
|
|
1737
|
+
# @!attribute [rw] translation_source_locale
|
|
1738
|
+
# The source locale used for automatic translation of profile content.
|
|
1739
|
+
# @return [String]
|
|
1740
|
+
#
|
|
1741
|
+
# @!attribute [rw] localized_contents
|
|
1742
|
+
# A list of localized content versions for different languages and
|
|
1743
|
+
# regions.
|
|
1744
|
+
# @return [Array<Types::LocalizedContent>]
|
|
1745
|
+
#
|
|
1746
|
+
# @!attribute [rw] profile_id
|
|
1747
|
+
# The unique identifier of the partner profile.
|
|
1748
|
+
# @return [String]
|
|
1749
|
+
#
|
|
1750
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/PartnerProfile AWS API Documentation
|
|
1751
|
+
#
|
|
1752
|
+
class PartnerProfile < Struct.new(
|
|
1753
|
+
:display_name,
|
|
1754
|
+
:description,
|
|
1755
|
+
:website_url,
|
|
1756
|
+
:logo_url,
|
|
1757
|
+
:primary_solution_type,
|
|
1758
|
+
:industry_segments,
|
|
1759
|
+
:translation_source_locale,
|
|
1760
|
+
:localized_contents,
|
|
1761
|
+
:profile_id)
|
|
1762
|
+
SENSITIVE = []
|
|
1763
|
+
include Aws::Structure
|
|
1764
|
+
end
|
|
1765
|
+
|
|
1766
|
+
# A summary view of a partner profile containing basic identifying
|
|
1767
|
+
# information.
|
|
1768
|
+
#
|
|
1769
|
+
# @!attribute [rw] id
|
|
1770
|
+
# The unique identifier of the partner profile.
|
|
1771
|
+
# @return [String]
|
|
1772
|
+
#
|
|
1773
|
+
# @!attribute [rw] name
|
|
1774
|
+
# The display name of the partner.
|
|
1775
|
+
# @return [String]
|
|
1776
|
+
#
|
|
1777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/PartnerProfileSummary AWS API Documentation
|
|
1778
|
+
#
|
|
1779
|
+
class PartnerProfileSummary < Struct.new(
|
|
1780
|
+
:id,
|
|
1781
|
+
:name)
|
|
1782
|
+
SENSITIVE = []
|
|
1783
|
+
include Aws::Structure
|
|
1784
|
+
end
|
|
1785
|
+
|
|
1786
|
+
# A summary view of a partner account containing basic information for
|
|
1787
|
+
# listing purposes.
|
|
1788
|
+
#
|
|
1789
|
+
# @!attribute [rw] catalog
|
|
1790
|
+
# The catalog identifier for the partner account.
|
|
1791
|
+
# @return [String]
|
|
1792
|
+
#
|
|
1793
|
+
# @!attribute [rw] arn
|
|
1794
|
+
# The Amazon Resource Name (ARN) of the partner account.
|
|
1795
|
+
# @return [String]
|
|
1796
|
+
#
|
|
1797
|
+
# @!attribute [rw] id
|
|
1798
|
+
# The unique identifier of the partner account.
|
|
1799
|
+
# @return [String]
|
|
1800
|
+
#
|
|
1801
|
+
# @!attribute [rw] legal_name
|
|
1802
|
+
# The legal name of the partner organization.
|
|
1803
|
+
# @return [String]
|
|
1804
|
+
#
|
|
1805
|
+
# @!attribute [rw] created_at
|
|
1806
|
+
# The timestamp when the partner account was created.
|
|
1807
|
+
# @return [Time]
|
|
1808
|
+
#
|
|
1809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/PartnerSummary AWS API Documentation
|
|
1810
|
+
#
|
|
1811
|
+
class PartnerSummary < Struct.new(
|
|
1812
|
+
:catalog,
|
|
1813
|
+
:arn,
|
|
1814
|
+
:id,
|
|
1815
|
+
:legal_name,
|
|
1816
|
+
:created_at)
|
|
1817
|
+
SENSITIVE = [:legal_name]
|
|
1818
|
+
include Aws::Structure
|
|
1819
|
+
end
|
|
1820
|
+
|
|
1821
|
+
# @!attribute [rw] catalog
|
|
1822
|
+
# The catalog identifier for the partner account.
|
|
1823
|
+
# @return [String]
|
|
1824
|
+
#
|
|
1825
|
+
# @!attribute [rw] identifier
|
|
1826
|
+
# The unique identifier of the partner account.
|
|
1827
|
+
# @return [String]
|
|
1828
|
+
#
|
|
1829
|
+
# @!attribute [rw] alliance_lead_contact
|
|
1830
|
+
# The alliance lead contact information to set for the partner
|
|
1831
|
+
# account.
|
|
1832
|
+
# @return [Types::AllianceLeadContact]
|
|
1833
|
+
#
|
|
1834
|
+
# @!attribute [rw] email_verification_code
|
|
1835
|
+
# The verification code sent to the alliance lead contact's email to
|
|
1836
|
+
# confirm the update.
|
|
1837
|
+
# @return [String]
|
|
1838
|
+
#
|
|
1839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/PutAllianceLeadContactRequest AWS API Documentation
|
|
1840
|
+
#
|
|
1841
|
+
class PutAllianceLeadContactRequest < Struct.new(
|
|
1842
|
+
:catalog,
|
|
1843
|
+
:identifier,
|
|
1844
|
+
:alliance_lead_contact,
|
|
1845
|
+
:email_verification_code)
|
|
1846
|
+
SENSITIVE = [:email_verification_code]
|
|
1847
|
+
include Aws::Structure
|
|
1848
|
+
end
|
|
1849
|
+
|
|
1850
|
+
# @!attribute [rw] catalog
|
|
1851
|
+
# The catalog identifier for the partner account.
|
|
1852
|
+
# @return [String]
|
|
1853
|
+
#
|
|
1854
|
+
# @!attribute [rw] arn
|
|
1855
|
+
# The Amazon Resource Name (ARN) of the partner account.
|
|
1856
|
+
# @return [String]
|
|
1857
|
+
#
|
|
1858
|
+
# @!attribute [rw] id
|
|
1859
|
+
# The unique identifier of the partner account.
|
|
1860
|
+
# @return [String]
|
|
1861
|
+
#
|
|
1862
|
+
# @!attribute [rw] alliance_lead_contact
|
|
1863
|
+
# The updated alliance lead contact information.
|
|
1864
|
+
# @return [Types::AllianceLeadContact]
|
|
1865
|
+
#
|
|
1866
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/PutAllianceLeadContactResponse AWS API Documentation
|
|
1867
|
+
#
|
|
1868
|
+
class PutAllianceLeadContactResponse < Struct.new(
|
|
1869
|
+
:catalog,
|
|
1870
|
+
:arn,
|
|
1871
|
+
:id,
|
|
1872
|
+
:alliance_lead_contact)
|
|
1873
|
+
SENSITIVE = []
|
|
1874
|
+
include Aws::Structure
|
|
1875
|
+
end
|
|
1876
|
+
|
|
1877
|
+
# @!attribute [rw] catalog
|
|
1878
|
+
# The catalog identifier for the partner account.
|
|
1879
|
+
# @return [String]
|
|
1880
|
+
#
|
|
1881
|
+
# @!attribute [rw] identifier
|
|
1882
|
+
# The unique identifier of the partner account.
|
|
1883
|
+
# @return [String]
|
|
1884
|
+
#
|
|
1885
|
+
# @!attribute [rw] visibility
|
|
1886
|
+
# The visibility setting to apply to the partner profile.
|
|
1887
|
+
# @return [String]
|
|
1888
|
+
#
|
|
1889
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/PutProfileVisibilityRequest AWS API Documentation
|
|
1890
|
+
#
|
|
1891
|
+
class PutProfileVisibilityRequest < Struct.new(
|
|
1892
|
+
:catalog,
|
|
1893
|
+
:identifier,
|
|
1894
|
+
:visibility)
|
|
1895
|
+
SENSITIVE = []
|
|
1896
|
+
include Aws::Structure
|
|
1897
|
+
end
|
|
1898
|
+
|
|
1899
|
+
# @!attribute [rw] catalog
|
|
1900
|
+
# The catalog identifier for the partner account.
|
|
1901
|
+
# @return [String]
|
|
1902
|
+
#
|
|
1903
|
+
# @!attribute [rw] arn
|
|
1904
|
+
# The Amazon Resource Name (ARN) of the partner account.
|
|
1905
|
+
# @return [String]
|
|
1906
|
+
#
|
|
1907
|
+
# @!attribute [rw] id
|
|
1908
|
+
# The unique identifier of the partner account.
|
|
1909
|
+
# @return [String]
|
|
1910
|
+
#
|
|
1911
|
+
# @!attribute [rw] visibility
|
|
1912
|
+
# The updated visibility setting for the partner profile.
|
|
1913
|
+
# @return [String]
|
|
1914
|
+
#
|
|
1915
|
+
# @!attribute [rw] profile_id
|
|
1916
|
+
# The unique identifier of the partner profile.
|
|
1917
|
+
# @return [String]
|
|
1918
|
+
#
|
|
1919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/PutProfileVisibilityResponse AWS API Documentation
|
|
1920
|
+
#
|
|
1921
|
+
class PutProfileVisibilityResponse < Struct.new(
|
|
1922
|
+
:catalog,
|
|
1923
|
+
:arn,
|
|
1924
|
+
:id,
|
|
1925
|
+
:visibility,
|
|
1926
|
+
:profile_id)
|
|
1927
|
+
SENSITIVE = []
|
|
1928
|
+
include Aws::Structure
|
|
1929
|
+
end
|
|
1930
|
+
|
|
1931
|
+
# @!attribute [rw] catalog
|
|
1932
|
+
# The catalog identifier where the connection invitation exists.
|
|
1933
|
+
# @return [String]
|
|
1934
|
+
#
|
|
1935
|
+
# @!attribute [rw] identifier
|
|
1936
|
+
# The unique identifier of the connection invitation to reject.
|
|
1937
|
+
# @return [String]
|
|
1938
|
+
#
|
|
1939
|
+
# @!attribute [rw] client_token
|
|
1940
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
1941
|
+
# idempotency of the request.
|
|
1942
|
+
#
|
|
1943
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1944
|
+
# not need to pass this option.
|
|
1945
|
+
# @return [String]
|
|
1946
|
+
#
|
|
1947
|
+
# @!attribute [rw] reason
|
|
1948
|
+
# The reason for rejecting the connection invitation.
|
|
1949
|
+
# @return [String]
|
|
1950
|
+
#
|
|
1951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/RejectConnectionInvitationRequest AWS API Documentation
|
|
1952
|
+
#
|
|
1953
|
+
class RejectConnectionInvitationRequest < Struct.new(
|
|
1954
|
+
:catalog,
|
|
1955
|
+
:identifier,
|
|
1956
|
+
:client_token,
|
|
1957
|
+
:reason)
|
|
1958
|
+
SENSITIVE = []
|
|
1959
|
+
include Aws::Structure
|
|
1960
|
+
end
|
|
1961
|
+
|
|
1962
|
+
# @!attribute [rw] catalog
|
|
1963
|
+
# The catalog identifier where the connection invitation was rejected.
|
|
1964
|
+
# @return [String]
|
|
1965
|
+
#
|
|
1966
|
+
# @!attribute [rw] id
|
|
1967
|
+
# The unique identifier of the rejected connection invitation.
|
|
1968
|
+
# @return [String]
|
|
1969
|
+
#
|
|
1970
|
+
# @!attribute [rw] arn
|
|
1971
|
+
# The Amazon Resource Name (ARN) of the rejected connection
|
|
1972
|
+
# invitation.
|
|
1973
|
+
# @return [String]
|
|
1974
|
+
#
|
|
1975
|
+
# @!attribute [rw] connection_id
|
|
1976
|
+
# The identifier of the connection associated with the rejected
|
|
1977
|
+
# invitation.
|
|
1978
|
+
# @return [String]
|
|
1979
|
+
#
|
|
1980
|
+
# @!attribute [rw] connection_type
|
|
1981
|
+
# The type of connection that was being invited for.
|
|
1982
|
+
# @return [String]
|
|
1983
|
+
#
|
|
1984
|
+
# @!attribute [rw] created_at
|
|
1985
|
+
# The timestamp when the connection invitation was originally created.
|
|
1986
|
+
# @return [Time]
|
|
1987
|
+
#
|
|
1988
|
+
# @!attribute [rw] updated_at
|
|
1989
|
+
# The timestamp when the connection invitation was last updated
|
|
1990
|
+
# (rejected).
|
|
1991
|
+
# @return [Time]
|
|
1992
|
+
#
|
|
1993
|
+
# @!attribute [rw] expires_at
|
|
1994
|
+
# The timestamp when the connection invitation would have expired.
|
|
1995
|
+
# @return [Time]
|
|
1996
|
+
#
|
|
1997
|
+
# @!attribute [rw] other_participant_identifier
|
|
1998
|
+
# The identifier of the other participant who sent the invitation.
|
|
1999
|
+
# @return [String]
|
|
2000
|
+
#
|
|
2001
|
+
# @!attribute [rw] participant_type
|
|
2002
|
+
# The type of participant (inviter or invitee) in the connection
|
|
2003
|
+
# invitation.
|
|
2004
|
+
# @return [String]
|
|
2005
|
+
#
|
|
2006
|
+
# @!attribute [rw] status
|
|
2007
|
+
# The current status of the connection invitation (rejected).
|
|
2008
|
+
# @return [String]
|
|
2009
|
+
#
|
|
2010
|
+
# @!attribute [rw] invitation_message
|
|
2011
|
+
# The message that was included with the original connection
|
|
2012
|
+
# invitation.
|
|
2013
|
+
# @return [String]
|
|
2014
|
+
#
|
|
2015
|
+
# @!attribute [rw] inviter_email
|
|
2016
|
+
# The email address of the person who sent the connection invitation.
|
|
2017
|
+
# @return [String]
|
|
2018
|
+
#
|
|
2019
|
+
# @!attribute [rw] inviter_name
|
|
2020
|
+
# The name of the person who sent the connection invitation.
|
|
2021
|
+
# @return [String]
|
|
2022
|
+
#
|
|
2023
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/RejectConnectionInvitationResponse AWS API Documentation
|
|
2024
|
+
#
|
|
2025
|
+
class RejectConnectionInvitationResponse < Struct.new(
|
|
2026
|
+
:catalog,
|
|
2027
|
+
:id,
|
|
2028
|
+
:arn,
|
|
2029
|
+
:connection_id,
|
|
2030
|
+
:connection_type,
|
|
2031
|
+
:created_at,
|
|
2032
|
+
:updated_at,
|
|
2033
|
+
:expires_at,
|
|
2034
|
+
:other_participant_identifier,
|
|
2035
|
+
:participant_type,
|
|
2036
|
+
:status,
|
|
2037
|
+
:invitation_message,
|
|
2038
|
+
:inviter_email,
|
|
2039
|
+
:inviter_name)
|
|
2040
|
+
SENSITIVE = [:inviter_name]
|
|
2041
|
+
include Aws::Structure
|
|
2042
|
+
end
|
|
2043
|
+
|
|
2044
|
+
# The specified resource could not be found. This may occur when
|
|
2045
|
+
# referencing a resource that does not exist or has been deleted.
|
|
2046
|
+
#
|
|
2047
|
+
# @!attribute [rw] message
|
|
2048
|
+
# @return [String]
|
|
2049
|
+
#
|
|
2050
|
+
# @!attribute [rw] reason
|
|
2051
|
+
# The specific reason why the resource was not found.
|
|
2052
|
+
# @return [String]
|
|
2053
|
+
#
|
|
2054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ResourceNotFoundException AWS API Documentation
|
|
2055
|
+
#
|
|
2056
|
+
class ResourceNotFoundException < Struct.new(
|
|
2057
|
+
:message,
|
|
2058
|
+
:reason)
|
|
2059
|
+
SENSITIVE = []
|
|
2060
|
+
include Aws::Structure
|
|
2061
|
+
end
|
|
2062
|
+
|
|
2063
|
+
# A summary view of a seller profile containing basic identifying
|
|
2064
|
+
# information.
|
|
2065
|
+
#
|
|
2066
|
+
# @!attribute [rw] id
|
|
2067
|
+
# The unique identifier of the seller profile.
|
|
2068
|
+
# @return [String]
|
|
2069
|
+
#
|
|
2070
|
+
# @!attribute [rw] name
|
|
2071
|
+
# The display name of the seller.
|
|
2072
|
+
# @return [String]
|
|
2073
|
+
#
|
|
2074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/SellerProfileSummary AWS API Documentation
|
|
2075
|
+
#
|
|
2076
|
+
class SellerProfileSummary < Struct.new(
|
|
2077
|
+
:id,
|
|
2078
|
+
:name)
|
|
2079
|
+
SENSITIVE = []
|
|
2080
|
+
include Aws::Structure
|
|
2081
|
+
end
|
|
2082
|
+
|
|
2083
|
+
# @!attribute [rw] catalog
|
|
2084
|
+
# The catalog identifier for the partner account.
|
|
2085
|
+
# @return [String]
|
|
2086
|
+
#
|
|
2087
|
+
# @!attribute [rw] email
|
|
2088
|
+
# The email address to send the verification code to.
|
|
2089
|
+
# @return [String]
|
|
2090
|
+
#
|
|
2091
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/SendEmailVerificationCodeRequest AWS API Documentation
|
|
2092
|
+
#
|
|
2093
|
+
class SendEmailVerificationCodeRequest < Struct.new(
|
|
2094
|
+
:catalog,
|
|
2095
|
+
:email)
|
|
2096
|
+
SENSITIVE = []
|
|
2097
|
+
include Aws::Structure
|
|
2098
|
+
end
|
|
2099
|
+
|
|
2100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/SendEmailVerificationCodeResponse AWS API Documentation
|
|
2101
|
+
#
|
|
2102
|
+
class SendEmailVerificationCodeResponse < Aws::EmptyStructure; end
|
|
2103
|
+
|
|
2104
|
+
# The request was rejected because it would exceed a service quota or
|
|
2105
|
+
# limit. This may occur when trying to create more resources than
|
|
2106
|
+
# allowed by the service limits.
|
|
2107
|
+
#
|
|
2108
|
+
# @!attribute [rw] message
|
|
2109
|
+
# @return [String]
|
|
2110
|
+
#
|
|
2111
|
+
# @!attribute [rw] reason
|
|
2112
|
+
# The specific reason for the service quota being exceeded.
|
|
2113
|
+
# @return [String]
|
|
2114
|
+
#
|
|
2115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ServiceQuotaExceededException AWS API Documentation
|
|
2116
|
+
#
|
|
2117
|
+
class ServiceQuotaExceededException < Struct.new(
|
|
2118
|
+
:message,
|
|
2119
|
+
:reason)
|
|
2120
|
+
SENSITIVE = []
|
|
2121
|
+
include Aws::Structure
|
|
2122
|
+
end
|
|
2123
|
+
|
|
2124
|
+
# @!attribute [rw] catalog
|
|
2125
|
+
# The catalog identifier for the partner account.
|
|
2126
|
+
# @return [String]
|
|
2127
|
+
#
|
|
2128
|
+
# @!attribute [rw] identifier
|
|
2129
|
+
# The unique identifier of the partner account.
|
|
2130
|
+
# @return [String]
|
|
2131
|
+
#
|
|
2132
|
+
# @!attribute [rw] client_token
|
|
2133
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
2134
|
+
# idempotency of the request.
|
|
2135
|
+
#
|
|
2136
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2137
|
+
# not need to pass this option.
|
|
2138
|
+
# @return [String]
|
|
2139
|
+
#
|
|
2140
|
+
# @!attribute [rw] task_details
|
|
2141
|
+
# The details of the profile updates to be performed.
|
|
2142
|
+
# @return [Types::TaskDetails]
|
|
2143
|
+
#
|
|
2144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/StartProfileUpdateTaskRequest AWS API Documentation
|
|
2145
|
+
#
|
|
2146
|
+
class StartProfileUpdateTaskRequest < Struct.new(
|
|
2147
|
+
:catalog,
|
|
2148
|
+
:identifier,
|
|
2149
|
+
:client_token,
|
|
2150
|
+
:task_details)
|
|
2151
|
+
SENSITIVE = []
|
|
2152
|
+
include Aws::Structure
|
|
2153
|
+
end
|
|
2154
|
+
|
|
2155
|
+
# @!attribute [rw] catalog
|
|
2156
|
+
# The catalog identifier for the partner account.
|
|
2157
|
+
# @return [String]
|
|
2158
|
+
#
|
|
2159
|
+
# @!attribute [rw] arn
|
|
2160
|
+
# The Amazon Resource Name (ARN) of the started profile update task.
|
|
2161
|
+
# @return [String]
|
|
2162
|
+
#
|
|
2163
|
+
# @!attribute [rw] id
|
|
2164
|
+
# The unique identifier of the partner account.
|
|
2165
|
+
# @return [String]
|
|
2166
|
+
#
|
|
2167
|
+
# @!attribute [rw] task_id
|
|
2168
|
+
# The unique identifier of the started profile update task.
|
|
2169
|
+
# @return [String]
|
|
2170
|
+
#
|
|
2171
|
+
# @!attribute [rw] task_details
|
|
2172
|
+
# The details of the profile update task that was started.
|
|
2173
|
+
# @return [Types::TaskDetails]
|
|
2174
|
+
#
|
|
2175
|
+
# @!attribute [rw] started_at
|
|
2176
|
+
# The timestamp when the profile update task was started.
|
|
2177
|
+
# @return [Time]
|
|
2178
|
+
#
|
|
2179
|
+
# @!attribute [rw] status
|
|
2180
|
+
# The current status of the profile update task (in progress).
|
|
2181
|
+
# @return [String]
|
|
2182
|
+
#
|
|
2183
|
+
# @!attribute [rw] ended_at
|
|
2184
|
+
# The timestamp when the profile update task ended (null for
|
|
2185
|
+
# in-progress tasks).
|
|
2186
|
+
# @return [Time]
|
|
2187
|
+
#
|
|
2188
|
+
# @!attribute [rw] error_detail_list
|
|
2189
|
+
# A list of error details if any errors occurred during the profile
|
|
2190
|
+
# update task.
|
|
2191
|
+
# @return [Array<Types::ErrorDetail>]
|
|
2192
|
+
#
|
|
2193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/StartProfileUpdateTaskResponse AWS API Documentation
|
|
2194
|
+
#
|
|
2195
|
+
class StartProfileUpdateTaskResponse < Struct.new(
|
|
2196
|
+
:catalog,
|
|
2197
|
+
:arn,
|
|
2198
|
+
:id,
|
|
2199
|
+
:task_id,
|
|
2200
|
+
:task_details,
|
|
2201
|
+
:started_at,
|
|
2202
|
+
:status,
|
|
2203
|
+
:ended_at,
|
|
2204
|
+
:error_detail_list)
|
|
2205
|
+
SENSITIVE = []
|
|
2206
|
+
include Aws::Structure
|
|
2207
|
+
end
|
|
2208
|
+
|
|
2209
|
+
# A key-value pair used to associate metadata with AWS Partner Central
|
|
2210
|
+
# Account resources.
|
|
2211
|
+
#
|
|
2212
|
+
# @!attribute [rw] key
|
|
2213
|
+
# The key name of the tag. Tag keys are case-sensitive.
|
|
2214
|
+
# @return [String]
|
|
2215
|
+
#
|
|
2216
|
+
# @!attribute [rw] value
|
|
2217
|
+
# The value associated with the tag key. Tag values are
|
|
2218
|
+
# case-sensitive.
|
|
2219
|
+
# @return [String]
|
|
2220
|
+
#
|
|
2221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/Tag AWS API Documentation
|
|
2222
|
+
#
|
|
2223
|
+
class Tag < Struct.new(
|
|
2224
|
+
:key,
|
|
2225
|
+
:value)
|
|
2226
|
+
SENSITIVE = []
|
|
2227
|
+
include Aws::Structure
|
|
2228
|
+
end
|
|
2229
|
+
|
|
2230
|
+
# @!attribute [rw] resource_arn
|
|
2231
|
+
# The Amazon Resource Name (ARN) of the resource to tag.
|
|
2232
|
+
# @return [String]
|
|
2233
|
+
#
|
|
2234
|
+
# @!attribute [rw] tags
|
|
2235
|
+
# A list of tags to add or update for the specified resource.
|
|
2236
|
+
# @return [Array<Types::Tag>]
|
|
2237
|
+
#
|
|
2238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/TagResourceRequest AWS API Documentation
|
|
2239
|
+
#
|
|
2240
|
+
class TagResourceRequest < Struct.new(
|
|
2241
|
+
:resource_arn,
|
|
2242
|
+
:tags)
|
|
2243
|
+
SENSITIVE = []
|
|
2244
|
+
include Aws::Structure
|
|
2245
|
+
end
|
|
2246
|
+
|
|
2247
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/TagResourceResponse AWS API Documentation
|
|
2248
|
+
#
|
|
2249
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
|
2250
|
+
|
|
2251
|
+
# Contains detailed information about a profile update task including
|
|
2252
|
+
# the changes to be made.
|
|
2253
|
+
#
|
|
2254
|
+
# @!attribute [rw] display_name
|
|
2255
|
+
# The updated display name for the partner profile.
|
|
2256
|
+
# @return [String]
|
|
2257
|
+
#
|
|
2258
|
+
# @!attribute [rw] description
|
|
2259
|
+
# The updated description for the partner profile.
|
|
2260
|
+
# @return [String]
|
|
2261
|
+
#
|
|
2262
|
+
# @!attribute [rw] website_url
|
|
2263
|
+
# The updated website URL for the partner profile.
|
|
2264
|
+
# @return [String]
|
|
2265
|
+
#
|
|
2266
|
+
# @!attribute [rw] logo_url
|
|
2267
|
+
# The updated logo URL for the partner profile.
|
|
2268
|
+
# @return [String]
|
|
2269
|
+
#
|
|
2270
|
+
# @!attribute [rw] primary_solution_type
|
|
2271
|
+
# The updated primary solution type for the partner profile.
|
|
2272
|
+
# @return [String]
|
|
2273
|
+
#
|
|
2274
|
+
# @!attribute [rw] industry_segments
|
|
2275
|
+
# The updated industry segments for the partner profile.
|
|
2276
|
+
# @return [Array<String>]
|
|
2277
|
+
#
|
|
2278
|
+
# @!attribute [rw] translation_source_locale
|
|
2279
|
+
# The updated translation source locale for the partner profile.
|
|
2280
|
+
# @return [String]
|
|
2281
|
+
#
|
|
2282
|
+
# @!attribute [rw] localized_contents
|
|
2283
|
+
# The updated localized content for the partner profile.
|
|
2284
|
+
# @return [Array<Types::LocalizedContent>]
|
|
2285
|
+
#
|
|
2286
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/TaskDetails AWS API Documentation
|
|
2287
|
+
#
|
|
2288
|
+
class TaskDetails < Struct.new(
|
|
2289
|
+
:display_name,
|
|
2290
|
+
:description,
|
|
2291
|
+
:website_url,
|
|
2292
|
+
:logo_url,
|
|
2293
|
+
:primary_solution_type,
|
|
2294
|
+
:industry_segments,
|
|
2295
|
+
:translation_source_locale,
|
|
2296
|
+
:localized_contents)
|
|
2297
|
+
SENSITIVE = []
|
|
2298
|
+
include Aws::Structure
|
|
2299
|
+
end
|
|
2300
|
+
|
|
2301
|
+
# The request was throttled due to too many requests being sent in a
|
|
2302
|
+
# short period of time. The client should implement exponential backoff
|
|
2303
|
+
# and retry the request.
|
|
2304
|
+
#
|
|
2305
|
+
# @!attribute [rw] message
|
|
2306
|
+
# @return [String]
|
|
2307
|
+
#
|
|
2308
|
+
# @!attribute [rw] service_code
|
|
2309
|
+
# The service code associated with the throttling error.
|
|
2310
|
+
# @return [String]
|
|
2311
|
+
#
|
|
2312
|
+
# @!attribute [rw] quota_code
|
|
2313
|
+
# The quota code associated with the throttling error.
|
|
2314
|
+
# @return [String]
|
|
2315
|
+
#
|
|
2316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ThrottlingException AWS API Documentation
|
|
2317
|
+
#
|
|
2318
|
+
class ThrottlingException < Struct.new(
|
|
2319
|
+
:message,
|
|
2320
|
+
:service_code,
|
|
2321
|
+
:quota_code)
|
|
2322
|
+
SENSITIVE = []
|
|
2323
|
+
include Aws::Structure
|
|
2324
|
+
end
|
|
2325
|
+
|
|
2326
|
+
# @!attribute [rw] resource_arn
|
|
2327
|
+
# The Amazon Resource Name (ARN) of the resource to remove tags from.
|
|
2328
|
+
# @return [String]
|
|
2329
|
+
#
|
|
2330
|
+
# @!attribute [rw] tag_keys
|
|
2331
|
+
# A list of tag keys to remove from the specified resource.
|
|
2332
|
+
# @return [Array<String>]
|
|
2333
|
+
#
|
|
2334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/UntagResourceRequest AWS API Documentation
|
|
2335
|
+
#
|
|
2336
|
+
class UntagResourceRequest < Struct.new(
|
|
2337
|
+
:resource_arn,
|
|
2338
|
+
:tag_keys)
|
|
2339
|
+
SENSITIVE = []
|
|
2340
|
+
include Aws::Structure
|
|
2341
|
+
end
|
|
2342
|
+
|
|
2343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/UntagResourceResponse AWS API Documentation
|
|
2344
|
+
#
|
|
2345
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
|
2346
|
+
|
|
2347
|
+
# @!attribute [rw] catalog
|
|
2348
|
+
# The catalog identifier for the partner account.
|
|
2349
|
+
# @return [String]
|
|
2350
|
+
#
|
|
2351
|
+
# @!attribute [rw] revision
|
|
2352
|
+
# The revision number of the connection preferences for optimistic
|
|
2353
|
+
# locking.
|
|
2354
|
+
# @return [Integer]
|
|
2355
|
+
#
|
|
2356
|
+
# @!attribute [rw] access_type
|
|
2357
|
+
# The access type setting for connections (e.g., open, restricted,
|
|
2358
|
+
# invitation-only).
|
|
2359
|
+
# @return [String]
|
|
2360
|
+
#
|
|
2361
|
+
# @!attribute [rw] excluded_participant_identifiers
|
|
2362
|
+
# The updated list of participant identifiers to exclude from
|
|
2363
|
+
# connections.
|
|
2364
|
+
# @return [Array<String>]
|
|
2365
|
+
#
|
|
2366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/UpdateConnectionPreferencesRequest AWS API Documentation
|
|
2367
|
+
#
|
|
2368
|
+
class UpdateConnectionPreferencesRequest < Struct.new(
|
|
2369
|
+
:catalog,
|
|
2370
|
+
:revision,
|
|
2371
|
+
:access_type,
|
|
2372
|
+
:excluded_participant_identifiers)
|
|
2373
|
+
SENSITIVE = []
|
|
2374
|
+
include Aws::Structure
|
|
2375
|
+
end
|
|
2376
|
+
|
|
2377
|
+
# @!attribute [rw] catalog
|
|
2378
|
+
# The catalog identifier for the partner account.
|
|
2379
|
+
# @return [String]
|
|
2380
|
+
#
|
|
2381
|
+
# @!attribute [rw] arn
|
|
2382
|
+
# The Amazon Resource Name (ARN) of the updated connection
|
|
2383
|
+
# preferences.
|
|
2384
|
+
# @return [String]
|
|
2385
|
+
#
|
|
2386
|
+
# @!attribute [rw] access_type
|
|
2387
|
+
# The updated access type setting for connections.
|
|
2388
|
+
# @return [String]
|
|
2389
|
+
#
|
|
2390
|
+
# @!attribute [rw] excluded_participant_ids
|
|
2391
|
+
# A list of participant IDs that are excluded from connection requests
|
|
2392
|
+
# or interactions.
|
|
2393
|
+
# @return [Array<String>]
|
|
2394
|
+
#
|
|
2395
|
+
# @!attribute [rw] updated_at
|
|
2396
|
+
# The timestamp when the connection preferences were last updated.
|
|
2397
|
+
# @return [Time]
|
|
2398
|
+
#
|
|
2399
|
+
# @!attribute [rw] revision
|
|
2400
|
+
# The updated revision number of the connection preferences.
|
|
2401
|
+
# @return [Integer]
|
|
2402
|
+
#
|
|
2403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/UpdateConnectionPreferencesResponse AWS API Documentation
|
|
2404
|
+
#
|
|
2405
|
+
class UpdateConnectionPreferencesResponse < Struct.new(
|
|
2406
|
+
:catalog,
|
|
2407
|
+
:arn,
|
|
2408
|
+
:access_type,
|
|
2409
|
+
:excluded_participant_ids,
|
|
2410
|
+
:updated_at,
|
|
2411
|
+
:revision)
|
|
2412
|
+
SENSITIVE = []
|
|
2413
|
+
include Aws::Structure
|
|
2414
|
+
end
|
|
2415
|
+
|
|
2416
|
+
# Contains information about a validation error, which can be either a
|
|
2417
|
+
# field-level or business rule validation error.
|
|
2418
|
+
#
|
|
2419
|
+
# @!attribute [rw] field_validation_error
|
|
2420
|
+
# Details about a field-level validation error, if applicable.
|
|
2421
|
+
# @return [Types::FieldValidationError]
|
|
2422
|
+
#
|
|
2423
|
+
# @!attribute [rw] business_validation_error
|
|
2424
|
+
# Details about a business rule validation error, if applicable.
|
|
2425
|
+
# @return [Types::BusinessValidationError]
|
|
2426
|
+
#
|
|
2427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ValidationError AWS API Documentation
|
|
2428
|
+
#
|
|
2429
|
+
class ValidationError < Struct.new(
|
|
2430
|
+
:field_validation_error,
|
|
2431
|
+
:business_validation_error,
|
|
2432
|
+
:unknown)
|
|
2433
|
+
SENSITIVE = []
|
|
2434
|
+
include Aws::Structure
|
|
2435
|
+
include Aws::Structure::Union
|
|
2436
|
+
|
|
2437
|
+
class FieldValidationError < ValidationError; end
|
|
2438
|
+
class BusinessValidationError < ValidationError; end
|
|
2439
|
+
class Unknown < ValidationError; end
|
|
2440
|
+
end
|
|
2441
|
+
|
|
2442
|
+
# The request failed validation. One or more input parameters are
|
|
2443
|
+
# invalid, missing, or do not meet the required format or constraints.
|
|
2444
|
+
#
|
|
2445
|
+
# @!attribute [rw] message
|
|
2446
|
+
# @return [String]
|
|
2447
|
+
#
|
|
2448
|
+
# @!attribute [rw] reason
|
|
2449
|
+
# The reason for the validation failure.
|
|
2450
|
+
# @return [String]
|
|
2451
|
+
#
|
|
2452
|
+
# @!attribute [rw] error_details
|
|
2453
|
+
# A list of detailed validation errors that occurred during request
|
|
2454
|
+
# processing.
|
|
2455
|
+
# @return [Array<Types::ValidationError>]
|
|
2456
|
+
#
|
|
2457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/ValidationException AWS API Documentation
|
|
2458
|
+
#
|
|
2459
|
+
class ValidationException < Struct.new(
|
|
2460
|
+
:message,
|
|
2461
|
+
:reason,
|
|
2462
|
+
:error_details)
|
|
2463
|
+
SENSITIVE = []
|
|
2464
|
+
include Aws::Structure
|
|
2465
|
+
end
|
|
2466
|
+
|
|
2467
|
+
end
|
|
2468
|
+
end
|
|
2469
|
+
|