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
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,688 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws::PartnerCentralAccount
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AcceptConnectionInvitationRequest
|
|
12
|
+
attr_accessor catalog: ::String
|
|
13
|
+
attr_accessor identifier: ::String
|
|
14
|
+
attr_accessor client_token: ::String
|
|
15
|
+
SENSITIVE: []
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
class AcceptConnectionInvitationResponse
|
|
19
|
+
attr_accessor connection: Types::Connection
|
|
20
|
+
SENSITIVE: []
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
class AccessDeniedException
|
|
24
|
+
attr_accessor message: ::String
|
|
25
|
+
attr_accessor reason: ("ACCESS_DENIED" | "INCOMPATIBLE_BENEFIT_AWS_PARTNER_STATE")
|
|
26
|
+
SENSITIVE: []
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
class AccountSummary
|
|
30
|
+
attr_accessor name: ::String
|
|
31
|
+
SENSITIVE: []
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
class AllianceLeadContact
|
|
35
|
+
attr_accessor first_name: ::String
|
|
36
|
+
attr_accessor last_name: ::String
|
|
37
|
+
attr_accessor email: ::String
|
|
38
|
+
attr_accessor business_title: ::String
|
|
39
|
+
SENSITIVE: [:first_name, :last_name, :business_title]
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
class AssociateAwsTrainingCertificationEmailDomainRequest
|
|
43
|
+
attr_accessor catalog: ::String
|
|
44
|
+
attr_accessor identifier: ::String
|
|
45
|
+
attr_accessor client_token: ::String
|
|
46
|
+
attr_accessor email: ::String
|
|
47
|
+
attr_accessor email_verification_code: ::String
|
|
48
|
+
SENSITIVE: [:email_verification_code]
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
class AssociateAwsTrainingCertificationEmailDomainResponse < Aws::EmptyStructure
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
class BusinessValidationError
|
|
55
|
+
attr_accessor message: ::String
|
|
56
|
+
attr_accessor code: ("INCOMPATIBLE_CONNECTION_INVITATION_REQUEST" | "INCOMPATIBLE_LEGAL_NAME" | "INCOMPATIBLE_KNOW_YOUR_BUSINESS_STATUS" | "INCOMPATIBLE_IDENTITY_VERIFICATION_STATUS" | "INVALID_ACCOUNT_LINKING_STATUS" | "INVALID_ACCOUNT_STATE" | "INCOMPATIBLE_DOMAIN")
|
|
57
|
+
SENSITIVE: []
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
class CancelConnectionInvitationRequest
|
|
61
|
+
attr_accessor catalog: ::String
|
|
62
|
+
attr_accessor identifier: ::String
|
|
63
|
+
attr_accessor client_token: ::String
|
|
64
|
+
SENSITIVE: []
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
class CancelConnectionInvitationResponse
|
|
68
|
+
attr_accessor catalog: ::String
|
|
69
|
+
attr_accessor id: ::String
|
|
70
|
+
attr_accessor arn: ::String
|
|
71
|
+
attr_accessor connection_id: ::String
|
|
72
|
+
attr_accessor connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
73
|
+
attr_accessor created_at: ::Time
|
|
74
|
+
attr_accessor updated_at: ::Time
|
|
75
|
+
attr_accessor expires_at: ::Time
|
|
76
|
+
attr_accessor other_participant_identifier: ::String
|
|
77
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
|
78
|
+
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
79
|
+
attr_accessor invitation_message: ::String
|
|
80
|
+
attr_accessor inviter_email: ::String
|
|
81
|
+
attr_accessor inviter_name: ::String
|
|
82
|
+
SENSITIVE: [:inviter_name]
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
class CancelConnectionRequest
|
|
86
|
+
attr_accessor catalog: ::String
|
|
87
|
+
attr_accessor identifier: ::String
|
|
88
|
+
attr_accessor connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
89
|
+
attr_accessor reason: ::String
|
|
90
|
+
attr_accessor client_token: ::String
|
|
91
|
+
SENSITIVE: []
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
class CancelConnectionResponse
|
|
95
|
+
attr_accessor catalog: ::String
|
|
96
|
+
attr_accessor id: ::String
|
|
97
|
+
attr_accessor arn: ::String
|
|
98
|
+
attr_accessor other_participant_account_id: ::String
|
|
99
|
+
attr_accessor updated_at: ::Time
|
|
100
|
+
attr_accessor connection_types: ::Hash[("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY"), Types::ConnectionTypeDetail]
|
|
101
|
+
SENSITIVE: []
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
class CancelProfileUpdateTaskRequest
|
|
105
|
+
attr_accessor catalog: ::String
|
|
106
|
+
attr_accessor identifier: ::String
|
|
107
|
+
attr_accessor client_token: ::String
|
|
108
|
+
attr_accessor task_id: ::String
|
|
109
|
+
SENSITIVE: []
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
class CancelProfileUpdateTaskResponse
|
|
113
|
+
attr_accessor catalog: ::String
|
|
114
|
+
attr_accessor arn: ::String
|
|
115
|
+
attr_accessor id: ::String
|
|
116
|
+
attr_accessor task_id: ::String
|
|
117
|
+
attr_accessor task_details: Types::TaskDetails
|
|
118
|
+
attr_accessor started_at: ::Time
|
|
119
|
+
attr_accessor status: ("IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
120
|
+
attr_accessor ended_at: ::Time
|
|
121
|
+
attr_accessor error_detail_list: ::Array[Types::ErrorDetail]
|
|
122
|
+
SENSITIVE: []
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
class ConflictException
|
|
126
|
+
attr_accessor message: ::String
|
|
127
|
+
attr_accessor reason: ("CONFLICT_CLIENT_TOKEN" | "DUPLICATE_PARTNER" | "INCOMPATIBLE_PROFILE_STATE" | "INCOMPATIBLE_PARTNER_PROFILE_TASK_STATE" | "DUPLICATE_CONNECTION_INVITATION" | "INCOMPATIBLE_CONNECTION_INVITATION_STATE" | "INCOMPATIBLE_CONNECTION_INVITATION_RECEIVER" | "DUPLICATE_CONNECTION" | "INCOMPATIBLE_CONNECTION_STATE" | "INCOMPATIBLE_CONNECTION_PREFERENCES_REVISION")
|
|
128
|
+
SENSITIVE: []
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
class Connection
|
|
132
|
+
attr_accessor catalog: ::String
|
|
133
|
+
attr_accessor id: ::String
|
|
134
|
+
attr_accessor arn: ::String
|
|
135
|
+
attr_accessor other_participant_account_id: ::String
|
|
136
|
+
attr_accessor updated_at: ::Time
|
|
137
|
+
attr_accessor connection_types: ::Hash[("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY"), Types::ConnectionTypeDetail]
|
|
138
|
+
SENSITIVE: []
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
class ConnectionInvitationSummary
|
|
142
|
+
attr_accessor catalog: ::String
|
|
143
|
+
attr_accessor id: ::String
|
|
144
|
+
attr_accessor arn: ::String
|
|
145
|
+
attr_accessor connection_id: ::String
|
|
146
|
+
attr_accessor connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
147
|
+
attr_accessor created_at: ::Time
|
|
148
|
+
attr_accessor updated_at: ::Time
|
|
149
|
+
attr_accessor expires_at: ::Time
|
|
150
|
+
attr_accessor other_participant_identifier: ::String
|
|
151
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
|
152
|
+
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
153
|
+
SENSITIVE: []
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
class ConnectionSummary
|
|
157
|
+
attr_accessor catalog: ::String
|
|
158
|
+
attr_accessor id: ::String
|
|
159
|
+
attr_accessor arn: ::String
|
|
160
|
+
attr_accessor other_participant_account_id: ::String
|
|
161
|
+
attr_accessor updated_at: ::Time
|
|
162
|
+
attr_accessor connection_types: ::Hash[("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY"), Types::ConnectionTypeSummary]
|
|
163
|
+
SENSITIVE: []
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
class ConnectionTypeDetail
|
|
167
|
+
attr_accessor created_at: ::Time
|
|
168
|
+
attr_accessor inviter_email: ::String
|
|
169
|
+
attr_accessor inviter_name: ::String
|
|
170
|
+
attr_accessor status: ("ACTIVE" | "CANCELED")
|
|
171
|
+
attr_accessor canceled_at: ::Time
|
|
172
|
+
attr_accessor canceled_by: ::String
|
|
173
|
+
attr_accessor other_participant: Types::Participant
|
|
174
|
+
SENSITIVE: [:inviter_name]
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
class ConnectionTypeSummary
|
|
178
|
+
attr_accessor status: ("ACTIVE" | "CANCELED")
|
|
179
|
+
attr_accessor other_participant: Types::Participant
|
|
180
|
+
SENSITIVE: []
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
class CreateConnectionInvitationRequest
|
|
184
|
+
attr_accessor catalog: ::String
|
|
185
|
+
attr_accessor client_token: ::String
|
|
186
|
+
attr_accessor connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
187
|
+
attr_accessor email: ::String
|
|
188
|
+
attr_accessor message: ::String
|
|
189
|
+
attr_accessor name: ::String
|
|
190
|
+
attr_accessor receiver_identifier: ::String
|
|
191
|
+
SENSITIVE: [:name]
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
class CreateConnectionInvitationResponse
|
|
195
|
+
attr_accessor catalog: ::String
|
|
196
|
+
attr_accessor id: ::String
|
|
197
|
+
attr_accessor arn: ::String
|
|
198
|
+
attr_accessor connection_id: ::String
|
|
199
|
+
attr_accessor connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
200
|
+
attr_accessor created_at: ::Time
|
|
201
|
+
attr_accessor updated_at: ::Time
|
|
202
|
+
attr_accessor expires_at: ::Time
|
|
203
|
+
attr_accessor other_participant_identifier: ::String
|
|
204
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
|
205
|
+
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
206
|
+
attr_accessor invitation_message: ::String
|
|
207
|
+
attr_accessor inviter_email: ::String
|
|
208
|
+
attr_accessor inviter_name: ::String
|
|
209
|
+
SENSITIVE: [:inviter_name]
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
class CreatePartnerRequest
|
|
213
|
+
attr_accessor catalog: ::String
|
|
214
|
+
attr_accessor client_token: ::String
|
|
215
|
+
attr_accessor legal_name: ::String
|
|
216
|
+
attr_accessor primary_solution_type: ("SOFTWARE_PRODUCTS" | "CONSULTING_SERVICES" | "PROFESSIONAL_SERVICES" | "MANAGED_SERVICES" | "HARDWARE_PRODUCTS" | "COMMUNICATION_SERVICES" | "VALUE_ADDED_RESALE_AWS_SERVICES" | "TRAINING_SERVICES")
|
|
217
|
+
attr_accessor alliance_lead_contact: Types::AllianceLeadContact
|
|
218
|
+
attr_accessor email_verification_code: ::String
|
|
219
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
220
|
+
SENSITIVE: [:legal_name, :email_verification_code]
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
class CreatePartnerResponse
|
|
224
|
+
attr_accessor catalog: ::String
|
|
225
|
+
attr_accessor arn: ::String
|
|
226
|
+
attr_accessor id: ::String
|
|
227
|
+
attr_accessor legal_name: ::String
|
|
228
|
+
attr_accessor created_at: ::Time
|
|
229
|
+
attr_accessor profile: Types::PartnerProfile
|
|
230
|
+
attr_accessor aws_training_certification_email_domains: ::Array[Types::PartnerDomain]
|
|
231
|
+
attr_accessor alliance_lead_contact: Types::AllianceLeadContact
|
|
232
|
+
SENSITIVE: [:legal_name]
|
|
233
|
+
end
|
|
234
|
+
|
|
235
|
+
class DisassociateAwsTrainingCertificationEmailDomainRequest
|
|
236
|
+
attr_accessor catalog: ::String
|
|
237
|
+
attr_accessor identifier: ::String
|
|
238
|
+
attr_accessor client_token: ::String
|
|
239
|
+
attr_accessor domain_name: ::String
|
|
240
|
+
SENSITIVE: []
|
|
241
|
+
end
|
|
242
|
+
|
|
243
|
+
class DisassociateAwsTrainingCertificationEmailDomainResponse < Aws::EmptyStructure
|
|
244
|
+
end
|
|
245
|
+
|
|
246
|
+
class ErrorDetail
|
|
247
|
+
attr_accessor locale: ::String
|
|
248
|
+
attr_accessor message: ::String
|
|
249
|
+
attr_accessor reason: ("INVALID_CONTENT" | "DUPLICATE_PROFILE" | "INVALID_LOGO" | "INVALID_LOGO_URL" | "INVALID_LOGO_FILE" | "INVALID_LOGO_SIZE" | "INVALID_WEBSITE_URL")
|
|
250
|
+
SENSITIVE: []
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
class FieldValidationError
|
|
254
|
+
attr_accessor name: ::String
|
|
255
|
+
attr_accessor message: ::String
|
|
256
|
+
attr_accessor code: ("REQUIRED_FIELD_MISSING" | "DUPLICATE_VALUE" | "INVALID_VALUE" | "INVALID_STRING_FORMAT" | "TOO_MANY_VALUES" | "ACTION_NOT_PERMITTED" | "INVALID_ENUM_VALUE")
|
|
257
|
+
SENSITIVE: []
|
|
258
|
+
end
|
|
259
|
+
|
|
260
|
+
class GetAllianceLeadContactRequest
|
|
261
|
+
attr_accessor catalog: ::String
|
|
262
|
+
attr_accessor identifier: ::String
|
|
263
|
+
SENSITIVE: []
|
|
264
|
+
end
|
|
265
|
+
|
|
266
|
+
class GetAllianceLeadContactResponse
|
|
267
|
+
attr_accessor catalog: ::String
|
|
268
|
+
attr_accessor arn: ::String
|
|
269
|
+
attr_accessor id: ::String
|
|
270
|
+
attr_accessor alliance_lead_contact: Types::AllianceLeadContact
|
|
271
|
+
SENSITIVE: []
|
|
272
|
+
end
|
|
273
|
+
|
|
274
|
+
class GetConnectionInvitationRequest
|
|
275
|
+
attr_accessor catalog: ::String
|
|
276
|
+
attr_accessor identifier: ::String
|
|
277
|
+
SENSITIVE: []
|
|
278
|
+
end
|
|
279
|
+
|
|
280
|
+
class GetConnectionInvitationResponse
|
|
281
|
+
attr_accessor catalog: ::String
|
|
282
|
+
attr_accessor id: ::String
|
|
283
|
+
attr_accessor arn: ::String
|
|
284
|
+
attr_accessor connection_id: ::String
|
|
285
|
+
attr_accessor connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
286
|
+
attr_accessor created_at: ::Time
|
|
287
|
+
attr_accessor updated_at: ::Time
|
|
288
|
+
attr_accessor expires_at: ::Time
|
|
289
|
+
attr_accessor other_participant_identifier: ::String
|
|
290
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
|
291
|
+
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
292
|
+
attr_accessor invitation_message: ::String
|
|
293
|
+
attr_accessor inviter_email: ::String
|
|
294
|
+
attr_accessor inviter_name: ::String
|
|
295
|
+
SENSITIVE: [:inviter_name]
|
|
296
|
+
end
|
|
297
|
+
|
|
298
|
+
class GetConnectionPreferencesRequest
|
|
299
|
+
attr_accessor catalog: ::String
|
|
300
|
+
SENSITIVE: []
|
|
301
|
+
end
|
|
302
|
+
|
|
303
|
+
class GetConnectionPreferencesResponse
|
|
304
|
+
attr_accessor catalog: ::String
|
|
305
|
+
attr_accessor arn: ::String
|
|
306
|
+
attr_accessor access_type: ("ALLOW_ALL" | "DENY_ALL" | "ALLOW_BY_DEFAULT_DENY_SOME")
|
|
307
|
+
attr_accessor excluded_participant_ids: ::Array[::String]
|
|
308
|
+
attr_accessor updated_at: ::Time
|
|
309
|
+
attr_accessor revision: ::Integer
|
|
310
|
+
SENSITIVE: []
|
|
311
|
+
end
|
|
312
|
+
|
|
313
|
+
class GetConnectionRequest
|
|
314
|
+
attr_accessor catalog: ::String
|
|
315
|
+
attr_accessor identifier: ::String
|
|
316
|
+
SENSITIVE: []
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
class GetConnectionResponse
|
|
320
|
+
attr_accessor catalog: ::String
|
|
321
|
+
attr_accessor id: ::String
|
|
322
|
+
attr_accessor arn: ::String
|
|
323
|
+
attr_accessor other_participant_account_id: ::String
|
|
324
|
+
attr_accessor updated_at: ::Time
|
|
325
|
+
attr_accessor connection_types: ::Hash[("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY"), Types::ConnectionTypeDetail]
|
|
326
|
+
SENSITIVE: []
|
|
327
|
+
end
|
|
328
|
+
|
|
329
|
+
class GetPartnerRequest
|
|
330
|
+
attr_accessor catalog: ::String
|
|
331
|
+
attr_accessor identifier: ::String
|
|
332
|
+
SENSITIVE: []
|
|
333
|
+
end
|
|
334
|
+
|
|
335
|
+
class GetPartnerResponse
|
|
336
|
+
attr_accessor catalog: ::String
|
|
337
|
+
attr_accessor arn: ::String
|
|
338
|
+
attr_accessor id: ::String
|
|
339
|
+
attr_accessor legal_name: ::String
|
|
340
|
+
attr_accessor created_at: ::Time
|
|
341
|
+
attr_accessor profile: Types::PartnerProfile
|
|
342
|
+
attr_accessor aws_training_certification_email_domains: ::Array[Types::PartnerDomain]
|
|
343
|
+
SENSITIVE: [:legal_name]
|
|
344
|
+
end
|
|
345
|
+
|
|
346
|
+
class GetProfileUpdateTaskRequest
|
|
347
|
+
attr_accessor catalog: ::String
|
|
348
|
+
attr_accessor identifier: ::String
|
|
349
|
+
SENSITIVE: []
|
|
350
|
+
end
|
|
351
|
+
|
|
352
|
+
class GetProfileUpdateTaskResponse
|
|
353
|
+
attr_accessor catalog: ::String
|
|
354
|
+
attr_accessor arn: ::String
|
|
355
|
+
attr_accessor id: ::String
|
|
356
|
+
attr_accessor task_id: ::String
|
|
357
|
+
attr_accessor task_details: Types::TaskDetails
|
|
358
|
+
attr_accessor started_at: ::Time
|
|
359
|
+
attr_accessor status: ("IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
360
|
+
attr_accessor ended_at: ::Time
|
|
361
|
+
attr_accessor error_detail_list: ::Array[Types::ErrorDetail]
|
|
362
|
+
SENSITIVE: []
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
class GetProfileVisibilityRequest
|
|
366
|
+
attr_accessor catalog: ::String
|
|
367
|
+
attr_accessor identifier: ::String
|
|
368
|
+
SENSITIVE: []
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
class GetProfileVisibilityResponse
|
|
372
|
+
attr_accessor catalog: ::String
|
|
373
|
+
attr_accessor arn: ::String
|
|
374
|
+
attr_accessor id: ::String
|
|
375
|
+
attr_accessor visibility: ("PRIVATE" | "PUBLIC")
|
|
376
|
+
attr_accessor profile_id: ::String
|
|
377
|
+
SENSITIVE: []
|
|
378
|
+
end
|
|
379
|
+
|
|
380
|
+
class InternalServerException
|
|
381
|
+
attr_accessor message: ::String
|
|
382
|
+
SENSITIVE: []
|
|
383
|
+
end
|
|
384
|
+
|
|
385
|
+
class ListConnectionInvitationsRequest
|
|
386
|
+
attr_accessor catalog: ::String
|
|
387
|
+
attr_accessor next_token: ::String
|
|
388
|
+
attr_accessor connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
389
|
+
attr_accessor max_results: ::Integer
|
|
390
|
+
attr_accessor other_participant_identifiers: ::Array[::String]
|
|
391
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
|
392
|
+
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
393
|
+
SENSITIVE: []
|
|
394
|
+
end
|
|
395
|
+
|
|
396
|
+
class ListConnectionInvitationsResponse
|
|
397
|
+
attr_accessor connection_invitation_summaries: ::Array[Types::ConnectionInvitationSummary]
|
|
398
|
+
attr_accessor next_token: ::String
|
|
399
|
+
SENSITIVE: []
|
|
400
|
+
end
|
|
401
|
+
|
|
402
|
+
class ListConnectionsRequest
|
|
403
|
+
attr_accessor catalog: ::String
|
|
404
|
+
attr_accessor next_token: ::String
|
|
405
|
+
attr_accessor connection_type: ::String
|
|
406
|
+
attr_accessor max_results: ::Integer
|
|
407
|
+
attr_accessor other_participant_identifiers: ::Array[::String]
|
|
408
|
+
SENSITIVE: []
|
|
409
|
+
end
|
|
410
|
+
|
|
411
|
+
class ListConnectionsResponse
|
|
412
|
+
attr_accessor connection_summaries: ::Array[Types::ConnectionSummary]
|
|
413
|
+
attr_accessor next_token: ::String
|
|
414
|
+
SENSITIVE: []
|
|
415
|
+
end
|
|
416
|
+
|
|
417
|
+
class ListPartnersRequest
|
|
418
|
+
attr_accessor catalog: ::String
|
|
419
|
+
attr_accessor next_token: ::String
|
|
420
|
+
SENSITIVE: []
|
|
421
|
+
end
|
|
422
|
+
|
|
423
|
+
class ListPartnersResponse
|
|
424
|
+
attr_accessor partner_summary_list: ::Array[Types::PartnerSummary]
|
|
425
|
+
attr_accessor next_token: ::String
|
|
426
|
+
SENSITIVE: []
|
|
427
|
+
end
|
|
428
|
+
|
|
429
|
+
class ListTagsForResourceRequest
|
|
430
|
+
attr_accessor resource_arn: ::String
|
|
431
|
+
SENSITIVE: []
|
|
432
|
+
end
|
|
433
|
+
|
|
434
|
+
class ListTagsForResourceResponse
|
|
435
|
+
attr_accessor resource_arn: ::String
|
|
436
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
437
|
+
SENSITIVE: []
|
|
438
|
+
end
|
|
439
|
+
|
|
440
|
+
class LocalizedContent
|
|
441
|
+
attr_accessor display_name: ::String
|
|
442
|
+
attr_accessor description: ::String
|
|
443
|
+
attr_accessor website_url: ::String
|
|
444
|
+
attr_accessor logo_url: ::String
|
|
445
|
+
attr_accessor locale: ::String
|
|
446
|
+
SENSITIVE: []
|
|
447
|
+
end
|
|
448
|
+
|
|
449
|
+
class Participant
|
|
450
|
+
attr_accessor partner_profile: Types::PartnerProfileSummary
|
|
451
|
+
attr_accessor seller_profile: Types::SellerProfileSummary
|
|
452
|
+
attr_accessor account: Types::AccountSummary
|
|
453
|
+
attr_accessor unknown: untyped
|
|
454
|
+
SENSITIVE: []
|
|
455
|
+
|
|
456
|
+
class PartnerProfile < Participant
|
|
457
|
+
end
|
|
458
|
+
class SellerProfile < Participant
|
|
459
|
+
end
|
|
460
|
+
class Account < Participant
|
|
461
|
+
end
|
|
462
|
+
class Unknown < Participant
|
|
463
|
+
end
|
|
464
|
+
end
|
|
465
|
+
|
|
466
|
+
class PartnerDomain
|
|
467
|
+
attr_accessor domain_name: ::String
|
|
468
|
+
attr_accessor registered_at: ::Time
|
|
469
|
+
SENSITIVE: []
|
|
470
|
+
end
|
|
471
|
+
|
|
472
|
+
class PartnerProfile
|
|
473
|
+
attr_accessor display_name: ::String
|
|
474
|
+
attr_accessor description: ::String
|
|
475
|
+
attr_accessor website_url: ::String
|
|
476
|
+
attr_accessor logo_url: ::String
|
|
477
|
+
attr_accessor primary_solution_type: ("SOFTWARE_PRODUCTS" | "CONSULTING_SERVICES" | "PROFESSIONAL_SERVICES" | "MANAGED_SERVICES" | "HARDWARE_PRODUCTS" | "COMMUNICATION_SERVICES" | "VALUE_ADDED_RESALE_AWS_SERVICES" | "TRAINING_SERVICES")
|
|
478
|
+
attr_accessor industry_segments: ::Array[("AGRICULTURE_MINING" | "BIOTECHNOLOGY" | "BUSINESS_CONSUMER_SERVICES" | "BUSINESS_SERV" | "COMMUNICATIONS" | "COMPUTER_HARDWARE" | "COMPUTERS_ELECTRONICS" | "COMPUTER_SOFTWARE" | "CONSUMER_GOODS" | "CONSUMER_RELATED" | "EDUCATION" | "ENERGY_UTILITIES" | "FINANCIAL_SERVICES" | "GAMING" | "GOVERNMENT" | "GOVERNMENT_EDUCATION_PUBLIC_SERVICES" | "HEALTHCARE" | "HEALTHCARE_PHARMACEUTICALS_BIOTECH" | "INDUSTRIAL_ENERGY" | "INTERNET_SPECIFIC" | "LIFE_SCIENCES" | "MANUFACTURING" | "MEDIA_ENTERTAINMENT_LEISURE" | "MEDIA_ENTERTAINMENT" | "MEDICAL_HEALTH" | "NON_PROFIT_ORGANIZATION" | "OTHER" | "PROFESSIONAL_SERVICES" | "REAL_ESTATE_CONSTRUCTION" | "RETAIL" | "RETAIL_WHOLESALE_DISTRIBUTION" | "SEMICONDUCTOR_ELECTR" | "SOFTWARE_INTERNET" | "TELECOMMUNICATIONS" | "TRANSPORTATION_LOGISTICS" | "TRAVEL_HOSPITALITY" | "WHOLESALE_DISTRIBUTION")]
|
|
479
|
+
attr_accessor translation_source_locale: ::String
|
|
480
|
+
attr_accessor localized_contents: ::Array[Types::LocalizedContent]
|
|
481
|
+
attr_accessor profile_id: ::String
|
|
482
|
+
SENSITIVE: []
|
|
483
|
+
end
|
|
484
|
+
|
|
485
|
+
class PartnerProfileSummary
|
|
486
|
+
attr_accessor id: ::String
|
|
487
|
+
attr_accessor name: ::String
|
|
488
|
+
SENSITIVE: []
|
|
489
|
+
end
|
|
490
|
+
|
|
491
|
+
class PartnerSummary
|
|
492
|
+
attr_accessor catalog: ::String
|
|
493
|
+
attr_accessor arn: ::String
|
|
494
|
+
attr_accessor id: ::String
|
|
495
|
+
attr_accessor legal_name: ::String
|
|
496
|
+
attr_accessor created_at: ::Time
|
|
497
|
+
SENSITIVE: [:legal_name]
|
|
498
|
+
end
|
|
499
|
+
|
|
500
|
+
class PutAllianceLeadContactRequest
|
|
501
|
+
attr_accessor catalog: ::String
|
|
502
|
+
attr_accessor identifier: ::String
|
|
503
|
+
attr_accessor alliance_lead_contact: Types::AllianceLeadContact
|
|
504
|
+
attr_accessor email_verification_code: ::String
|
|
505
|
+
SENSITIVE: [:email_verification_code]
|
|
506
|
+
end
|
|
507
|
+
|
|
508
|
+
class PutAllianceLeadContactResponse
|
|
509
|
+
attr_accessor catalog: ::String
|
|
510
|
+
attr_accessor arn: ::String
|
|
511
|
+
attr_accessor id: ::String
|
|
512
|
+
attr_accessor alliance_lead_contact: Types::AllianceLeadContact
|
|
513
|
+
SENSITIVE: []
|
|
514
|
+
end
|
|
515
|
+
|
|
516
|
+
class PutProfileVisibilityRequest
|
|
517
|
+
attr_accessor catalog: ::String
|
|
518
|
+
attr_accessor identifier: ::String
|
|
519
|
+
attr_accessor visibility: ("PRIVATE" | "PUBLIC")
|
|
520
|
+
SENSITIVE: []
|
|
521
|
+
end
|
|
522
|
+
|
|
523
|
+
class PutProfileVisibilityResponse
|
|
524
|
+
attr_accessor catalog: ::String
|
|
525
|
+
attr_accessor arn: ::String
|
|
526
|
+
attr_accessor id: ::String
|
|
527
|
+
attr_accessor visibility: ("PRIVATE" | "PUBLIC")
|
|
528
|
+
attr_accessor profile_id: ::String
|
|
529
|
+
SENSITIVE: []
|
|
530
|
+
end
|
|
531
|
+
|
|
532
|
+
class RejectConnectionInvitationRequest
|
|
533
|
+
attr_accessor catalog: ::String
|
|
534
|
+
attr_accessor identifier: ::String
|
|
535
|
+
attr_accessor client_token: ::String
|
|
536
|
+
attr_accessor reason: ::String
|
|
537
|
+
SENSITIVE: []
|
|
538
|
+
end
|
|
539
|
+
|
|
540
|
+
class RejectConnectionInvitationResponse
|
|
541
|
+
attr_accessor catalog: ::String
|
|
542
|
+
attr_accessor id: ::String
|
|
543
|
+
attr_accessor arn: ::String
|
|
544
|
+
attr_accessor connection_id: ::String
|
|
545
|
+
attr_accessor connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
546
|
+
attr_accessor created_at: ::Time
|
|
547
|
+
attr_accessor updated_at: ::Time
|
|
548
|
+
attr_accessor expires_at: ::Time
|
|
549
|
+
attr_accessor other_participant_identifier: ::String
|
|
550
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
|
551
|
+
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
552
|
+
attr_accessor invitation_message: ::String
|
|
553
|
+
attr_accessor inviter_email: ::String
|
|
554
|
+
attr_accessor inviter_name: ::String
|
|
555
|
+
SENSITIVE: [:inviter_name]
|
|
556
|
+
end
|
|
557
|
+
|
|
558
|
+
class ResourceNotFoundException
|
|
559
|
+
attr_accessor message: ::String
|
|
560
|
+
attr_accessor reason: ("PARTNER_NOT_FOUND" | "PARTNER_PROFILE_NOT_FOUND" | "PARTNER_PROFILE_TASK_NOT_FOUND" | "PARTNER_DOMAIN_NOT_FOUND" | "SENDER_PROFILE_NOT_FOUND" | "RECEIVER_PROFILE_NOT_FOUND" | "CONNECTION_INVITATION_NOT_FOUND" | "CONNECTION_NOT_FOUND")
|
|
561
|
+
SENSITIVE: []
|
|
562
|
+
end
|
|
563
|
+
|
|
564
|
+
class SellerProfileSummary
|
|
565
|
+
attr_accessor id: ::String
|
|
566
|
+
attr_accessor name: ::String
|
|
567
|
+
SENSITIVE: []
|
|
568
|
+
end
|
|
569
|
+
|
|
570
|
+
class SendEmailVerificationCodeRequest
|
|
571
|
+
attr_accessor catalog: ::String
|
|
572
|
+
attr_accessor email: ::String
|
|
573
|
+
SENSITIVE: []
|
|
574
|
+
end
|
|
575
|
+
|
|
576
|
+
class SendEmailVerificationCodeResponse < Aws::EmptyStructure
|
|
577
|
+
end
|
|
578
|
+
|
|
579
|
+
class ServiceQuotaExceededException
|
|
580
|
+
attr_accessor message: ::String
|
|
581
|
+
attr_accessor reason: ("LIMIT_EXCEEDED_NUMBER_OF_EMAIL" | "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN")
|
|
582
|
+
SENSITIVE: []
|
|
583
|
+
end
|
|
584
|
+
|
|
585
|
+
class StartProfileUpdateTaskRequest
|
|
586
|
+
attr_accessor catalog: ::String
|
|
587
|
+
attr_accessor identifier: ::String
|
|
588
|
+
attr_accessor client_token: ::String
|
|
589
|
+
attr_accessor task_details: Types::TaskDetails
|
|
590
|
+
SENSITIVE: []
|
|
591
|
+
end
|
|
592
|
+
|
|
593
|
+
class StartProfileUpdateTaskResponse
|
|
594
|
+
attr_accessor catalog: ::String
|
|
595
|
+
attr_accessor arn: ::String
|
|
596
|
+
attr_accessor id: ::String
|
|
597
|
+
attr_accessor task_id: ::String
|
|
598
|
+
attr_accessor task_details: Types::TaskDetails
|
|
599
|
+
attr_accessor started_at: ::Time
|
|
600
|
+
attr_accessor status: ("IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
601
|
+
attr_accessor ended_at: ::Time
|
|
602
|
+
attr_accessor error_detail_list: ::Array[Types::ErrorDetail]
|
|
603
|
+
SENSITIVE: []
|
|
604
|
+
end
|
|
605
|
+
|
|
606
|
+
class Tag
|
|
607
|
+
attr_accessor key: ::String
|
|
608
|
+
attr_accessor value: ::String
|
|
609
|
+
SENSITIVE: []
|
|
610
|
+
end
|
|
611
|
+
|
|
612
|
+
class TagResourceRequest
|
|
613
|
+
attr_accessor resource_arn: ::String
|
|
614
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
615
|
+
SENSITIVE: []
|
|
616
|
+
end
|
|
617
|
+
|
|
618
|
+
class TagResourceResponse < Aws::EmptyStructure
|
|
619
|
+
end
|
|
620
|
+
|
|
621
|
+
class TaskDetails
|
|
622
|
+
attr_accessor display_name: ::String
|
|
623
|
+
attr_accessor description: ::String
|
|
624
|
+
attr_accessor website_url: ::String
|
|
625
|
+
attr_accessor logo_url: ::String
|
|
626
|
+
attr_accessor primary_solution_type: ("SOFTWARE_PRODUCTS" | "CONSULTING_SERVICES" | "PROFESSIONAL_SERVICES" | "MANAGED_SERVICES" | "HARDWARE_PRODUCTS" | "COMMUNICATION_SERVICES" | "VALUE_ADDED_RESALE_AWS_SERVICES" | "TRAINING_SERVICES")
|
|
627
|
+
attr_accessor industry_segments: ::Array[("AGRICULTURE_MINING" | "BIOTECHNOLOGY" | "BUSINESS_CONSUMER_SERVICES" | "BUSINESS_SERV" | "COMMUNICATIONS" | "COMPUTER_HARDWARE" | "COMPUTERS_ELECTRONICS" | "COMPUTER_SOFTWARE" | "CONSUMER_GOODS" | "CONSUMER_RELATED" | "EDUCATION" | "ENERGY_UTILITIES" | "FINANCIAL_SERVICES" | "GAMING" | "GOVERNMENT" | "GOVERNMENT_EDUCATION_PUBLIC_SERVICES" | "HEALTHCARE" | "HEALTHCARE_PHARMACEUTICALS_BIOTECH" | "INDUSTRIAL_ENERGY" | "INTERNET_SPECIFIC" | "LIFE_SCIENCES" | "MANUFACTURING" | "MEDIA_ENTERTAINMENT_LEISURE" | "MEDIA_ENTERTAINMENT" | "MEDICAL_HEALTH" | "NON_PROFIT_ORGANIZATION" | "OTHER" | "PROFESSIONAL_SERVICES" | "REAL_ESTATE_CONSTRUCTION" | "RETAIL" | "RETAIL_WHOLESALE_DISTRIBUTION" | "SEMICONDUCTOR_ELECTR" | "SOFTWARE_INTERNET" | "TELECOMMUNICATIONS" | "TRANSPORTATION_LOGISTICS" | "TRAVEL_HOSPITALITY" | "WHOLESALE_DISTRIBUTION")]
|
|
628
|
+
attr_accessor translation_source_locale: ::String
|
|
629
|
+
attr_accessor localized_contents: ::Array[Types::LocalizedContent]
|
|
630
|
+
SENSITIVE: []
|
|
631
|
+
end
|
|
632
|
+
|
|
633
|
+
class ThrottlingException
|
|
634
|
+
attr_accessor message: ::String
|
|
635
|
+
attr_accessor service_code: ::String
|
|
636
|
+
attr_accessor quota_code: ::String
|
|
637
|
+
SENSITIVE: []
|
|
638
|
+
end
|
|
639
|
+
|
|
640
|
+
class UntagResourceRequest
|
|
641
|
+
attr_accessor resource_arn: ::String
|
|
642
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
643
|
+
SENSITIVE: []
|
|
644
|
+
end
|
|
645
|
+
|
|
646
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
|
647
|
+
end
|
|
648
|
+
|
|
649
|
+
class UpdateConnectionPreferencesRequest
|
|
650
|
+
attr_accessor catalog: ::String
|
|
651
|
+
attr_accessor revision: ::Integer
|
|
652
|
+
attr_accessor access_type: ("ALLOW_ALL" | "DENY_ALL" | "ALLOW_BY_DEFAULT_DENY_SOME")
|
|
653
|
+
attr_accessor excluded_participant_identifiers: ::Array[::String]
|
|
654
|
+
SENSITIVE: []
|
|
655
|
+
end
|
|
656
|
+
|
|
657
|
+
class UpdateConnectionPreferencesResponse
|
|
658
|
+
attr_accessor catalog: ::String
|
|
659
|
+
attr_accessor arn: ::String
|
|
660
|
+
attr_accessor access_type: ("ALLOW_ALL" | "DENY_ALL" | "ALLOW_BY_DEFAULT_DENY_SOME")
|
|
661
|
+
attr_accessor excluded_participant_ids: ::Array[::String]
|
|
662
|
+
attr_accessor updated_at: ::Time
|
|
663
|
+
attr_accessor revision: ::Integer
|
|
664
|
+
SENSITIVE: []
|
|
665
|
+
end
|
|
666
|
+
|
|
667
|
+
class ValidationError
|
|
668
|
+
attr_accessor field_validation_error: Types::FieldValidationError
|
|
669
|
+
attr_accessor business_validation_error: Types::BusinessValidationError
|
|
670
|
+
attr_accessor unknown: untyped
|
|
671
|
+
SENSITIVE: []
|
|
672
|
+
|
|
673
|
+
class FieldValidationError < ValidationError
|
|
674
|
+
end
|
|
675
|
+
class BusinessValidationError < ValidationError
|
|
676
|
+
end
|
|
677
|
+
class Unknown < ValidationError
|
|
678
|
+
end
|
|
679
|
+
end
|
|
680
|
+
|
|
681
|
+
class ValidationException
|
|
682
|
+
attr_accessor message: ::String
|
|
683
|
+
attr_accessor reason: ("REQUEST_VALIDATION_FAILED" | "BUSINESS_VALIDATION_FAILED")
|
|
684
|
+
attr_accessor error_details: ::Array[Types::ValidationError]
|
|
685
|
+
SENSITIVE: []
|
|
686
|
+
end
|
|
687
|
+
end
|
|
688
|
+
end
|
data/sig/waiters.rbs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module PartnerCentralAccount
|
|
10
|
+
module Waiters
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|