aws-sdk-partnercentralselling 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-partnercentralselling/client.rb +1417 -67
- data/lib/aws-sdk-partnercentralselling/client_api.rb +822 -3
- data/lib/aws-sdk-partnercentralselling/types.rb +2234 -167
- data/lib/aws-sdk-partnercentralselling.rb +2 -2
- data/sig/client.rbs +394 -4
- data/sig/types.rbs +490 -4
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -8,6 +8,12 @@
|
|
8
8
|
module Aws::PartnerCentralSelling
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AcceptEngagementInvitationRequest
|
12
|
+
attr_accessor catalog: ::String
|
13
|
+
attr_accessor identifier: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
11
17
|
class AccessDeniedException
|
12
18
|
attr_accessor message: ::String
|
13
19
|
SENSITIVE: []
|
@@ -138,6 +144,35 @@ module Aws::PartnerCentralSelling
|
|
138
144
|
SENSITIVE: [:business_title, :email, :first_name, :last_name, :phone]
|
139
145
|
end
|
140
146
|
|
147
|
+
class CreateEngagementInvitationRequest
|
148
|
+
attr_accessor catalog: ::String
|
149
|
+
attr_accessor client_token: ::String
|
150
|
+
attr_accessor engagement_identifier: ::String
|
151
|
+
attr_accessor invitation: Types::Invitation
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class CreateEngagementInvitationResponse
|
156
|
+
attr_accessor arn: ::String
|
157
|
+
attr_accessor id: ::String
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class CreateEngagementRequest
|
162
|
+
attr_accessor catalog: ::String
|
163
|
+
attr_accessor client_token: ::String
|
164
|
+
attr_accessor contexts: ::Array[Types::EngagementContextDetails]
|
165
|
+
attr_accessor description: ::String
|
166
|
+
attr_accessor title: ::String
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class CreateEngagementResponse
|
171
|
+
attr_accessor arn: ::String
|
172
|
+
attr_accessor id: ::String
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
141
176
|
class CreateOpportunityRequest
|
142
177
|
attr_accessor catalog: ::String
|
143
178
|
attr_accessor client_token: ::String
|
@@ -162,17 +197,61 @@ module Aws::PartnerCentralSelling
|
|
162
197
|
SENSITIVE: []
|
163
198
|
end
|
164
199
|
|
200
|
+
class CreateResourceSnapshotJobRequest
|
201
|
+
attr_accessor catalog: ::String
|
202
|
+
attr_accessor client_token: ::String
|
203
|
+
attr_accessor engagement_identifier: ::String
|
204
|
+
attr_accessor resource_identifier: ::String
|
205
|
+
attr_accessor resource_snapshot_template_identifier: ::String
|
206
|
+
attr_accessor resource_type: ("Opportunity")
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class CreateResourceSnapshotJobResponse
|
211
|
+
attr_accessor arn: ::String
|
212
|
+
attr_accessor id: ::String
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class CreateResourceSnapshotRequest
|
217
|
+
attr_accessor catalog: ::String
|
218
|
+
attr_accessor client_token: ::String
|
219
|
+
attr_accessor engagement_identifier: ::String
|
220
|
+
attr_accessor resource_identifier: ::String
|
221
|
+
attr_accessor resource_snapshot_template_identifier: ::String
|
222
|
+
attr_accessor resource_type: ("Opportunity")
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class CreateResourceSnapshotResponse
|
227
|
+
attr_accessor arn: ::String
|
228
|
+
attr_accessor revision: ::Integer
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
165
232
|
class Customer
|
166
233
|
attr_accessor account: Types::Account
|
167
234
|
attr_accessor contacts: ::Array[Types::Contact]
|
168
235
|
SENSITIVE: []
|
169
236
|
end
|
170
237
|
|
238
|
+
class CustomerProjectsContext
|
239
|
+
attr_accessor customer: Types::EngagementCustomer
|
240
|
+
attr_accessor project: Types::EngagementCustomerProjectDetails
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
171
244
|
class CustomerSummary
|
172
245
|
attr_accessor account: Types::AccountSummary
|
173
246
|
SENSITIVE: []
|
174
247
|
end
|
175
248
|
|
249
|
+
class DeleteResourceSnapshotJobRequest
|
250
|
+
attr_accessor catalog: ::String
|
251
|
+
attr_accessor resource_snapshot_job_identifier: ::String
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
176
255
|
class DisassociateOpportunityRequest
|
177
256
|
attr_accessor catalog: ::String
|
178
257
|
attr_accessor opportunity_identifier: ::String
|
@@ -181,6 +260,23 @@ module Aws::PartnerCentralSelling
|
|
181
260
|
SENSITIVE: []
|
182
261
|
end
|
183
262
|
|
263
|
+
class EngagementContextDetails
|
264
|
+
attr_accessor payload: Types::EngagementContextPayload
|
265
|
+
attr_accessor type: ("CustomerProject")
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class EngagementContextPayload
|
270
|
+
attr_accessor customer_project: Types::CustomerProjectsContext
|
271
|
+
attr_accessor unknown: untyped
|
272
|
+
SENSITIVE: []
|
273
|
+
|
274
|
+
class CustomerProject < EngagementContextPayload
|
275
|
+
end
|
276
|
+
class Unknown < EngagementContextPayload
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
184
280
|
class EngagementCustomer
|
185
281
|
attr_accessor company_name: ::String
|
186
282
|
attr_accessor country_code: ("US" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "CD" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW")
|
@@ -189,13 +285,22 @@ module Aws::PartnerCentralSelling
|
|
189
285
|
SENSITIVE: [:country_code, :website_url]
|
190
286
|
end
|
191
287
|
|
288
|
+
class EngagementCustomerProjectDetails
|
289
|
+
attr_accessor business_problem: ::String
|
290
|
+
attr_accessor target_completion_date: ::String
|
291
|
+
attr_accessor title: ::String
|
292
|
+
SENSITIVE: [:business_problem]
|
293
|
+
end
|
294
|
+
|
192
295
|
class EngagementInvitationSummary
|
193
296
|
attr_accessor arn: ::String
|
194
297
|
attr_accessor catalog: ::String
|
298
|
+
attr_accessor engagement_id: ::String
|
195
299
|
attr_accessor engagement_title: ::String
|
196
300
|
attr_accessor expiration_date: ::Time
|
197
301
|
attr_accessor id: ::String
|
198
302
|
attr_accessor invitation_date: ::Time
|
303
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
199
304
|
attr_accessor payload_type: ("OpportunityInvitation")
|
200
305
|
attr_accessor receiver: Types::Receiver
|
201
306
|
attr_accessor sender_aws_account_id: ::String
|
@@ -204,12 +309,51 @@ module Aws::PartnerCentralSelling
|
|
204
309
|
SENSITIVE: [:sender_aws_account_id]
|
205
310
|
end
|
206
311
|
|
312
|
+
class EngagementMember
|
313
|
+
attr_accessor account_id: ::String
|
314
|
+
attr_accessor company_name: ::String
|
315
|
+
attr_accessor website_url: ::String
|
316
|
+
SENSITIVE: [:account_id]
|
317
|
+
end
|
318
|
+
|
319
|
+
class EngagementMemberSummary
|
320
|
+
attr_accessor company_name: ::String
|
321
|
+
attr_accessor website_url: ::String
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class EngagementResourceAssociationSummary
|
326
|
+
attr_accessor catalog: ::String
|
327
|
+
attr_accessor created_by: ::String
|
328
|
+
attr_accessor engagement_id: ::String
|
329
|
+
attr_accessor resource_id: ::String
|
330
|
+
attr_accessor resource_type: ("Opportunity")
|
331
|
+
SENSITIVE: [:created_by]
|
332
|
+
end
|
333
|
+
|
334
|
+
class EngagementSort
|
335
|
+
attr_accessor sort_by: ("CreatedDate")
|
336
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class EngagementSummary
|
341
|
+
attr_accessor arn: ::String
|
342
|
+
attr_accessor created_at: ::Time
|
343
|
+
attr_accessor created_by: ::String
|
344
|
+
attr_accessor id: ::String
|
345
|
+
attr_accessor member_count: ::Integer
|
346
|
+
attr_accessor title: ::String
|
347
|
+
SENSITIVE: [:created_by]
|
348
|
+
end
|
349
|
+
|
207
350
|
class ExpectedCustomerSpend
|
208
351
|
attr_accessor amount: ::String
|
209
352
|
attr_accessor currency_code: ("USD" | "EUR" | "GBP" | "AUD" | "CAD" | "CNY" | "NZD" | "INR" | "JPY" | "CHF" | "SEK" | "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CDF" | "CHE" | "CHW" | "CLF" | "CLP" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "FJD" | "FKP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USN" | "UYI" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "XSU" | "XUA" | "YER" | "ZAR" | "ZMW" | "ZWL")
|
353
|
+
attr_accessor estimation_url: ::String
|
210
354
|
attr_accessor frequency: ("Monthly")
|
211
355
|
attr_accessor target_company: ::String
|
212
|
-
SENSITIVE: [:currency_code]
|
356
|
+
SENSITIVE: [:currency_code, :estimation_url]
|
213
357
|
end
|
214
358
|
|
215
359
|
class GetAwsOpportunitySummaryRequest
|
@@ -243,10 +387,14 @@ module Aws::PartnerCentralSelling
|
|
243
387
|
class GetEngagementInvitationResponse
|
244
388
|
attr_accessor arn: ::String
|
245
389
|
attr_accessor catalog: ::String
|
390
|
+
attr_accessor engagement_description: ::String
|
391
|
+
attr_accessor engagement_id: ::String
|
246
392
|
attr_accessor engagement_title: ::String
|
393
|
+
attr_accessor existing_members: ::Array[Types::EngagementMemberSummary]
|
247
394
|
attr_accessor expiration_date: ::Time
|
248
395
|
attr_accessor id: ::String
|
249
396
|
attr_accessor invitation_date: ::Time
|
397
|
+
attr_accessor invitation_message: ::String
|
250
398
|
attr_accessor payload: Types::Payload
|
251
399
|
attr_accessor payload_type: ("OpportunityInvitation")
|
252
400
|
attr_accessor receiver: Types::Receiver
|
@@ -257,6 +405,24 @@ module Aws::PartnerCentralSelling
|
|
257
405
|
SENSITIVE: [:sender_aws_account_id]
|
258
406
|
end
|
259
407
|
|
408
|
+
class GetEngagementRequest
|
409
|
+
attr_accessor catalog: ::String
|
410
|
+
attr_accessor identifier: ::String
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class GetEngagementResponse
|
415
|
+
attr_accessor arn: ::String
|
416
|
+
attr_accessor contexts: ::Array[Types::EngagementContextDetails]
|
417
|
+
attr_accessor created_at: ::Time
|
418
|
+
attr_accessor created_by: ::String
|
419
|
+
attr_accessor description: ::String
|
420
|
+
attr_accessor id: ::String
|
421
|
+
attr_accessor member_count: ::Integer
|
422
|
+
attr_accessor title: ::String
|
423
|
+
SENSITIVE: [:created_by]
|
424
|
+
end
|
425
|
+
|
260
426
|
class GetOpportunityRequest
|
261
427
|
attr_accessor catalog: ::String
|
262
428
|
attr_accessor identifier: ::String
|
@@ -264,6 +430,7 @@ module Aws::PartnerCentralSelling
|
|
264
430
|
end
|
265
431
|
|
266
432
|
class GetOpportunityResponse
|
433
|
+
attr_accessor arn: ::String
|
267
434
|
attr_accessor catalog: ::String
|
268
435
|
attr_accessor created_date: ::Time
|
269
436
|
attr_accessor customer: Types::Customer
|
@@ -282,11 +449,75 @@ module Aws::PartnerCentralSelling
|
|
282
449
|
SENSITIVE: []
|
283
450
|
end
|
284
451
|
|
452
|
+
class GetResourceSnapshotJobRequest
|
453
|
+
attr_accessor catalog: ::String
|
454
|
+
attr_accessor resource_snapshot_job_identifier: ::String
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class GetResourceSnapshotJobResponse
|
459
|
+
attr_accessor arn: ::String
|
460
|
+
attr_accessor catalog: ::String
|
461
|
+
attr_accessor created_at: ::Time
|
462
|
+
attr_accessor engagement_id: ::String
|
463
|
+
attr_accessor id: ::String
|
464
|
+
attr_accessor last_failure: ::String
|
465
|
+
attr_accessor last_successful_execution_date: ::Time
|
466
|
+
attr_accessor resource_arn: ::String
|
467
|
+
attr_accessor resource_id: ::String
|
468
|
+
attr_accessor resource_snapshot_template_name: ::String
|
469
|
+
attr_accessor resource_type: ("Opportunity")
|
470
|
+
attr_accessor status: ("Running" | "Stopped")
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class GetResourceSnapshotRequest
|
475
|
+
attr_accessor catalog: ::String
|
476
|
+
attr_accessor engagement_identifier: ::String
|
477
|
+
attr_accessor resource_identifier: ::String
|
478
|
+
attr_accessor resource_snapshot_template_identifier: ::String
|
479
|
+
attr_accessor resource_type: ("Opportunity")
|
480
|
+
attr_accessor revision: ::Integer
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class GetResourceSnapshotResponse
|
485
|
+
attr_accessor arn: ::String
|
486
|
+
attr_accessor catalog: ::String
|
487
|
+
attr_accessor created_at: ::Time
|
488
|
+
attr_accessor created_by: ::String
|
489
|
+
attr_accessor engagement_id: ::String
|
490
|
+
attr_accessor payload: Types::ResourceSnapshotPayload
|
491
|
+
attr_accessor resource_id: ::String
|
492
|
+
attr_accessor resource_snapshot_template_name: ::String
|
493
|
+
attr_accessor resource_type: ("Opportunity")
|
494
|
+
attr_accessor revision: ::Integer
|
495
|
+
SENSITIVE: [:created_by]
|
496
|
+
end
|
497
|
+
|
498
|
+
class GetSellingSystemSettingsRequest
|
499
|
+
attr_accessor catalog: ::String
|
500
|
+
SENSITIVE: []
|
501
|
+
end
|
502
|
+
|
503
|
+
class GetSellingSystemSettingsResponse
|
504
|
+
attr_accessor catalog: ::String
|
505
|
+
attr_accessor resource_snapshot_job_role_arn: ::String
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
285
509
|
class InternalServerException
|
286
510
|
attr_accessor message: ::String
|
287
511
|
SENSITIVE: []
|
288
512
|
end
|
289
513
|
|
514
|
+
class Invitation
|
515
|
+
attr_accessor message: ::String
|
516
|
+
attr_accessor payload: Types::Payload
|
517
|
+
attr_accessor receiver: Types::Receiver
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
290
521
|
class LastModifiedDate
|
291
522
|
attr_accessor after_last_modified_date: ::Time
|
292
523
|
attr_accessor before_last_modified_date: ::Time
|
@@ -305,6 +536,14 @@ module Aws::PartnerCentralSelling
|
|
305
536
|
SENSITIVE: [:next_steps]
|
306
537
|
end
|
307
538
|
|
539
|
+
class LifeCycleForView
|
540
|
+
attr_accessor next_steps: ::String
|
541
|
+
attr_accessor review_status: ("Pending Submission" | "Submitted" | "In review" | "Approved" | "Rejected" | "Action Required")
|
542
|
+
attr_accessor stage: ("Prospect" | "Qualified" | "Technical Validation" | "Business Validation" | "Committed" | "Launched" | "Closed Lost")
|
543
|
+
attr_accessor target_close_date: ::String
|
544
|
+
SENSITIVE: [:next_steps]
|
545
|
+
end
|
546
|
+
|
308
547
|
class LifeCycleSummary
|
309
548
|
attr_accessor closed_lost_reason: ("Customer Deficiency" | "Delay / Cancellation of Project" | "Legal / Tax / Regulatory" | "Lost to Competitor - Google" | "Lost to Competitor - Microsoft" | "Lost to Competitor - SoftLayer" | "Lost to Competitor - VMWare" | "Lost to Competitor - Other" | "No Opportunity" | "On Premises Deployment" | "Partner Gap" | "Price" | "Security / Compliance" | "Technical Limitations" | "Customer Experience" | "Other" | "People/Relationship/Governance" | "Product/Technology" | "Financial/Commercial")
|
310
549
|
attr_accessor next_steps: ::String
|
@@ -316,13 +555,79 @@ module Aws::PartnerCentralSelling
|
|
316
555
|
SENSITIVE: [:next_steps]
|
317
556
|
end
|
318
557
|
|
558
|
+
class ListEngagementByAcceptingInvitationTaskSummary
|
559
|
+
attr_accessor engagement_invitation_id: ::String
|
560
|
+
attr_accessor message: ::String
|
561
|
+
attr_accessor opportunity_id: ::String
|
562
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "InternalError" | "ServiceQuotaExceeded" | "RequestThrottled")
|
563
|
+
attr_accessor resource_snapshot_job_id: ::String
|
564
|
+
attr_accessor start_time: ::Time
|
565
|
+
attr_accessor task_arn: ::String
|
566
|
+
attr_accessor task_id: ::String
|
567
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class ListEngagementByAcceptingInvitationTasksRequest
|
572
|
+
attr_accessor catalog: ::String
|
573
|
+
attr_accessor engagement_invitation_identifier: ::Array[::String]
|
574
|
+
attr_accessor max_results: ::Integer
|
575
|
+
attr_accessor next_token: ::String
|
576
|
+
attr_accessor opportunity_identifier: ::Array[::String]
|
577
|
+
attr_accessor sort: Types::ListTasksSortBase
|
578
|
+
attr_accessor task_identifier: ::Array[::String]
|
579
|
+
attr_accessor task_status: ::Array[("IN_PROGRESS" | "COMPLETE" | "FAILED")]
|
580
|
+
SENSITIVE: []
|
581
|
+
end
|
582
|
+
|
583
|
+
class ListEngagementByAcceptingInvitationTasksResponse
|
584
|
+
attr_accessor next_token: ::String
|
585
|
+
attr_accessor task_summaries: ::Array[Types::ListEngagementByAcceptingInvitationTaskSummary]
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class ListEngagementFromOpportunityTaskSummary
|
590
|
+
attr_accessor engagement_id: ::String
|
591
|
+
attr_accessor engagement_invitation_id: ::String
|
592
|
+
attr_accessor message: ::String
|
593
|
+
attr_accessor opportunity_id: ::String
|
594
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "InternalError" | "ServiceQuotaExceeded" | "RequestThrottled")
|
595
|
+
attr_accessor resource_snapshot_job_id: ::String
|
596
|
+
attr_accessor start_time: ::Time
|
597
|
+
attr_accessor task_arn: ::String
|
598
|
+
attr_accessor task_id: ::String
|
599
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
603
|
+
class ListEngagementFromOpportunityTasksRequest
|
604
|
+
attr_accessor catalog: ::String
|
605
|
+
attr_accessor engagement_identifier: ::Array[::String]
|
606
|
+
attr_accessor max_results: ::Integer
|
607
|
+
attr_accessor next_token: ::String
|
608
|
+
attr_accessor opportunity_identifier: ::Array[::String]
|
609
|
+
attr_accessor sort: Types::ListTasksSortBase
|
610
|
+
attr_accessor task_identifier: ::Array[::String]
|
611
|
+
attr_accessor task_status: ::Array[("IN_PROGRESS" | "COMPLETE" | "FAILED")]
|
612
|
+
SENSITIVE: []
|
613
|
+
end
|
614
|
+
|
615
|
+
class ListEngagementFromOpportunityTasksResponse
|
616
|
+
attr_accessor next_token: ::String
|
617
|
+
attr_accessor task_summaries: ::Array[Types::ListEngagementFromOpportunityTaskSummary]
|
618
|
+
SENSITIVE: []
|
619
|
+
end
|
620
|
+
|
319
621
|
class ListEngagementInvitationsRequest
|
320
622
|
attr_accessor catalog: ::String
|
623
|
+
attr_accessor engagement_identifier: ::Array[::String]
|
321
624
|
attr_accessor max_results: ::Integer
|
322
625
|
attr_accessor next_token: ::String
|
323
|
-
attr_accessor participant_type: ("RECEIVER")
|
626
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
324
627
|
attr_accessor payload_type: ::Array[("OpportunityInvitation")]
|
628
|
+
attr_accessor sender_aws_account_id: ::Array[::String]
|
325
629
|
attr_accessor sort: Types::OpportunityEngagementInvitationSort
|
630
|
+
attr_accessor status: ::Array[("ACCEPTED" | "PENDING" | "REJECTED" | "EXPIRED")]
|
326
631
|
SENSITIVE: []
|
327
632
|
end
|
328
633
|
|
@@ -332,6 +637,54 @@ module Aws::PartnerCentralSelling
|
|
332
637
|
SENSITIVE: []
|
333
638
|
end
|
334
639
|
|
640
|
+
class ListEngagementMembersRequest
|
641
|
+
attr_accessor catalog: ::String
|
642
|
+
attr_accessor identifier: ::String
|
643
|
+
attr_accessor max_results: ::Integer
|
644
|
+
attr_accessor next_token: ::String
|
645
|
+
SENSITIVE: []
|
646
|
+
end
|
647
|
+
|
648
|
+
class ListEngagementMembersResponse
|
649
|
+
attr_accessor engagement_member_list: ::Array[Types::EngagementMember]
|
650
|
+
attr_accessor next_token: ::String
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class ListEngagementResourceAssociationsRequest
|
655
|
+
attr_accessor catalog: ::String
|
656
|
+
attr_accessor created_by: ::String
|
657
|
+
attr_accessor engagement_identifier: ::String
|
658
|
+
attr_accessor max_results: ::Integer
|
659
|
+
attr_accessor next_token: ::String
|
660
|
+
attr_accessor resource_identifier: ::String
|
661
|
+
attr_accessor resource_type: ("Opportunity")
|
662
|
+
SENSITIVE: [:created_by]
|
663
|
+
end
|
664
|
+
|
665
|
+
class ListEngagementResourceAssociationsResponse
|
666
|
+
attr_accessor engagement_resource_association_summaries: ::Array[Types::EngagementResourceAssociationSummary]
|
667
|
+
attr_accessor next_token: ::String
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class ListEngagementsRequest
|
672
|
+
attr_accessor catalog: ::String
|
673
|
+
attr_accessor created_by: ::Array[::String]
|
674
|
+
attr_accessor engagement_identifier: ::Array[::String]
|
675
|
+
attr_accessor exclude_created_by: ::Array[::String]
|
676
|
+
attr_accessor max_results: ::Integer
|
677
|
+
attr_accessor next_token: ::String
|
678
|
+
attr_accessor sort: Types::EngagementSort
|
679
|
+
SENSITIVE: []
|
680
|
+
end
|
681
|
+
|
682
|
+
class ListEngagementsResponse
|
683
|
+
attr_accessor engagement_summary_list: ::Array[Types::EngagementSummary]
|
684
|
+
attr_accessor next_token: ::String
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
335
688
|
class ListOpportunitiesRequest
|
336
689
|
attr_accessor catalog: ::String
|
337
690
|
attr_accessor customer_company_name: ::Array[::String]
|
@@ -351,6 +704,40 @@ module Aws::PartnerCentralSelling
|
|
351
704
|
SENSITIVE: []
|
352
705
|
end
|
353
706
|
|
707
|
+
class ListResourceSnapshotJobsRequest
|
708
|
+
attr_accessor catalog: ::String
|
709
|
+
attr_accessor engagement_identifier: ::String
|
710
|
+
attr_accessor max_results: ::Integer
|
711
|
+
attr_accessor next_token: ::String
|
712
|
+
attr_accessor sort: Types::SortObject
|
713
|
+
attr_accessor status: ("Running" | "Stopped")
|
714
|
+
SENSITIVE: []
|
715
|
+
end
|
716
|
+
|
717
|
+
class ListResourceSnapshotJobsResponse
|
718
|
+
attr_accessor next_token: ::String
|
719
|
+
attr_accessor resource_snapshot_job_summaries: ::Array[Types::ResourceSnapshotJobSummary]
|
720
|
+
SENSITIVE: []
|
721
|
+
end
|
722
|
+
|
723
|
+
class ListResourceSnapshotsRequest
|
724
|
+
attr_accessor catalog: ::String
|
725
|
+
attr_accessor created_by: ::String
|
726
|
+
attr_accessor engagement_identifier: ::String
|
727
|
+
attr_accessor max_results: ::Integer
|
728
|
+
attr_accessor next_token: ::String
|
729
|
+
attr_accessor resource_identifier: ::String
|
730
|
+
attr_accessor resource_snapshot_template_identifier: ::String
|
731
|
+
attr_accessor resource_type: ("Opportunity")
|
732
|
+
SENSITIVE: [:created_by]
|
733
|
+
end
|
734
|
+
|
735
|
+
class ListResourceSnapshotsResponse
|
736
|
+
attr_accessor next_token: ::String
|
737
|
+
attr_accessor resource_snapshot_summaries: ::Array[Types::ResourceSnapshotSummary]
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
354
741
|
class ListSolutionsRequest
|
355
742
|
attr_accessor catalog: ::String
|
356
743
|
attr_accessor category: ::Array[::String]
|
@@ -368,6 +755,12 @@ module Aws::PartnerCentralSelling
|
|
368
755
|
SENSITIVE: []
|
369
756
|
end
|
370
757
|
|
758
|
+
class ListTasksSortBase
|
759
|
+
attr_accessor sort_by: ("StartTime")
|
760
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
371
764
|
class Marketing
|
372
765
|
attr_accessor aws_funding_used: ("Yes" | "No")
|
373
766
|
attr_accessor campaign_name: ::String
|
@@ -410,6 +803,7 @@ module Aws::PartnerCentralSelling
|
|
410
803
|
end
|
411
804
|
|
412
805
|
class OpportunitySummary
|
806
|
+
attr_accessor arn: ::String
|
413
807
|
attr_accessor catalog: ::String
|
414
808
|
attr_accessor created_date: ::Time
|
415
809
|
attr_accessor customer: Types::CustomerSummary
|
@@ -422,6 +816,17 @@ module Aws::PartnerCentralSelling
|
|
422
816
|
SENSITIVE: []
|
423
817
|
end
|
424
818
|
|
819
|
+
class OpportunitySummaryView
|
820
|
+
attr_accessor customer: Types::Customer
|
821
|
+
attr_accessor lifecycle: Types::LifeCycleForView
|
822
|
+
attr_accessor opportunity_team: ::Array[Types::Contact]
|
823
|
+
attr_accessor opportunity_type: ("Net New Business" | "Flat Renewal" | "Expansion")
|
824
|
+
attr_accessor primary_needs_from_aws: ::Array[("Co-Sell - Architectural Validation" | "Co-Sell - Business Presentation" | "Co-Sell - Competitive Information" | "Co-Sell - Pricing Assistance" | "Co-Sell - Technical Consultation" | "Co-Sell - Total Cost of Ownership Evaluation" | "Co-Sell - Deal Support" | "Co-Sell - Support for Public Tender / RFx")]
|
825
|
+
attr_accessor project: Types::ProjectView
|
826
|
+
attr_accessor related_entity_identifiers: Types::RelatedEntityIdentifiers
|
827
|
+
SENSITIVE: []
|
828
|
+
end
|
829
|
+
|
425
830
|
class Payload
|
426
831
|
attr_accessor opportunity_invitation: Types::OpportunityInvitationPayload
|
427
832
|
attr_accessor unknown: untyped
|
@@ -469,6 +874,27 @@ module Aws::PartnerCentralSelling
|
|
469
874
|
SENSITIVE: []
|
470
875
|
end
|
471
876
|
|
877
|
+
class ProjectView
|
878
|
+
attr_accessor customer_use_case: ::String
|
879
|
+
attr_accessor delivery_models: ::Array[("SaaS or PaaS" | "BYOL or AMI" | "Managed Services" | "Professional Services" | "Resell" | "Other")]
|
880
|
+
attr_accessor expected_customer_spend: ::Array[Types::ExpectedCustomerSpend]
|
881
|
+
attr_accessor other_solution_description: ::String
|
882
|
+
attr_accessor sales_activities: ::Array[("Initialized discussions with customer" | "Customer has shown interest in solution" | "Conducted POC / Demo" | "In evaluation / planning stage" | "Agreed on solution to Business Problem" | "Completed Action Plan" | "Finalized Deployment Need" | "SOW Signed")]
|
883
|
+
SENSITIVE: [:other_solution_description]
|
884
|
+
end
|
885
|
+
|
886
|
+
class PutSellingSystemSettingsRequest
|
887
|
+
attr_accessor catalog: ::String
|
888
|
+
attr_accessor resource_snapshot_job_role_identifier: ::String
|
889
|
+
SENSITIVE: []
|
890
|
+
end
|
891
|
+
|
892
|
+
class PutSellingSystemSettingsResponse
|
893
|
+
attr_accessor catalog: ::String
|
894
|
+
attr_accessor resource_snapshot_job_role_arn: ::String
|
895
|
+
SENSITIVE: []
|
896
|
+
end
|
897
|
+
|
472
898
|
class Receiver
|
473
899
|
attr_accessor account: Types::AccountReceiver
|
474
900
|
attr_accessor unknown: untyped
|
@@ -499,6 +925,35 @@ module Aws::PartnerCentralSelling
|
|
499
925
|
SENSITIVE: []
|
500
926
|
end
|
501
927
|
|
928
|
+
class ResourceSnapshotJobSummary
|
929
|
+
attr_accessor arn: ::String
|
930
|
+
attr_accessor engagement_id: ::String
|
931
|
+
attr_accessor id: ::String
|
932
|
+
attr_accessor status: ("Running" | "Stopped")
|
933
|
+
SENSITIVE: []
|
934
|
+
end
|
935
|
+
|
936
|
+
class ResourceSnapshotPayload
|
937
|
+
attr_accessor opportunity_summary: Types::OpportunitySummaryView
|
938
|
+
attr_accessor unknown: untyped
|
939
|
+
SENSITIVE: []
|
940
|
+
|
941
|
+
class OpportunitySummary < ResourceSnapshotPayload
|
942
|
+
end
|
943
|
+
class Unknown < ResourceSnapshotPayload
|
944
|
+
end
|
945
|
+
end
|
946
|
+
|
947
|
+
class ResourceSnapshotSummary
|
948
|
+
attr_accessor arn: ::String
|
949
|
+
attr_accessor created_by: ::String
|
950
|
+
attr_accessor resource_id: ::String
|
951
|
+
attr_accessor resource_snapshot_template_name: ::String
|
952
|
+
attr_accessor resource_type: ("Opportunity")
|
953
|
+
attr_accessor revision: ::Integer
|
954
|
+
SENSITIVE: [:created_by]
|
955
|
+
end
|
956
|
+
|
502
957
|
class SenderContact
|
503
958
|
attr_accessor business_title: ::String
|
504
959
|
attr_accessor email: ::String
|
@@ -522,6 +977,7 @@ module Aws::PartnerCentralSelling
|
|
522
977
|
end
|
523
978
|
|
524
979
|
class SolutionBase
|
980
|
+
attr_accessor arn: ::String
|
525
981
|
attr_accessor catalog: ::String
|
526
982
|
attr_accessor category: ::String
|
527
983
|
attr_accessor created_date: ::Time
|
@@ -537,6 +993,12 @@ module Aws::PartnerCentralSelling
|
|
537
993
|
SENSITIVE: []
|
538
994
|
end
|
539
995
|
|
996
|
+
class SortObject
|
997
|
+
attr_accessor sort_by: ("CreatedDate")
|
998
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
999
|
+
SENSITIVE: []
|
1000
|
+
end
|
1001
|
+
|
540
1002
|
class StartEngagementByAcceptingInvitationTaskRequest
|
541
1003
|
attr_accessor catalog: ::String
|
542
1004
|
attr_accessor client_token: ::String
|
@@ -548,7 +1010,8 @@ module Aws::PartnerCentralSelling
|
|
548
1010
|
attr_accessor engagement_invitation_id: ::String
|
549
1011
|
attr_accessor message: ::String
|
550
1012
|
attr_accessor opportunity_id: ::String
|
551
|
-
attr_accessor reason_code: ("InvitationAccessDenied" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "EngagementValidationFailed" | "
|
1013
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "InternalError" | "ServiceQuotaExceeded" | "RequestThrottled")
|
1014
|
+
attr_accessor resource_snapshot_job_id: ::String
|
552
1015
|
attr_accessor start_time: ::Time
|
553
1016
|
attr_accessor task_arn: ::String
|
554
1017
|
attr_accessor task_id: ::String
|
@@ -565,9 +1028,12 @@ module Aws::PartnerCentralSelling
|
|
565
1028
|
end
|
566
1029
|
|
567
1030
|
class StartEngagementFromOpportunityTaskResponse
|
1031
|
+
attr_accessor engagement_id: ::String
|
1032
|
+
attr_accessor engagement_invitation_id: ::String
|
568
1033
|
attr_accessor message: ::String
|
569
1034
|
attr_accessor opportunity_id: ::String
|
570
|
-
attr_accessor reason_code: ("InvitationAccessDenied" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "EngagementValidationFailed" | "
|
1035
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "InternalError" | "ServiceQuotaExceeded" | "RequestThrottled")
|
1036
|
+
attr_accessor resource_snapshot_job_id: ::String
|
571
1037
|
attr_accessor start_time: ::Time
|
572
1038
|
attr_accessor task_arn: ::String
|
573
1039
|
attr_accessor task_id: ::String
|
@@ -575,6 +1041,26 @@ module Aws::PartnerCentralSelling
|
|
575
1041
|
SENSITIVE: []
|
576
1042
|
end
|
577
1043
|
|
1044
|
+
class StartResourceSnapshotJobRequest
|
1045
|
+
attr_accessor catalog: ::String
|
1046
|
+
attr_accessor resource_snapshot_job_identifier: ::String
|
1047
|
+
SENSITIVE: []
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
class StopResourceSnapshotJobRequest
|
1051
|
+
attr_accessor catalog: ::String
|
1052
|
+
attr_accessor resource_snapshot_job_identifier: ::String
|
1053
|
+
SENSITIVE: []
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
class SubmitOpportunityRequest
|
1057
|
+
attr_accessor catalog: ::String
|
1058
|
+
attr_accessor identifier: ::String
|
1059
|
+
attr_accessor involvement_type: ("For Visibility Only" | "Co-Sell")
|
1060
|
+
attr_accessor visibility: ("Full" | "Limited")
|
1061
|
+
SENSITIVE: []
|
1062
|
+
end
|
1063
|
+
|
578
1064
|
class ThrottlingException
|
579
1065
|
attr_accessor message: ::String
|
580
1066
|
SENSITIVE: []
|