aws-sdk-partnercentralselling 1.2.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-partnercentralselling/client.rb +1597 -78
- data/lib/aws-sdk-partnercentralselling/client_api.rb +908 -3
- data/lib/aws-sdk-partnercentralselling/types.rb +2255 -70
- data/lib/aws-sdk-partnercentralselling.rb +2 -2
- data/sig/client.rbs +451 -6
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +527 -4
- metadata +4 -4
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,62 @@ 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
|
+
attr_accessor tags: ::Array[Types::Tag]
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class CreateResourceSnapshotJobResponse
|
212
|
+
attr_accessor arn: ::String
|
213
|
+
attr_accessor id: ::String
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class CreateResourceSnapshotRequest
|
218
|
+
attr_accessor catalog: ::String
|
219
|
+
attr_accessor client_token: ::String
|
220
|
+
attr_accessor engagement_identifier: ::String
|
221
|
+
attr_accessor resource_identifier: ::String
|
222
|
+
attr_accessor resource_snapshot_template_identifier: ::String
|
223
|
+
attr_accessor resource_type: ("Opportunity")
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class CreateResourceSnapshotResponse
|
228
|
+
attr_accessor arn: ::String
|
229
|
+
attr_accessor revision: ::Integer
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
165
233
|
class Customer
|
166
234
|
attr_accessor account: Types::Account
|
167
235
|
attr_accessor contacts: ::Array[Types::Contact]
|
168
236
|
SENSITIVE: []
|
169
237
|
end
|
170
238
|
|
239
|
+
class CustomerProjectsContext
|
240
|
+
attr_accessor customer: Types::EngagementCustomer
|
241
|
+
attr_accessor project: Types::EngagementCustomerProjectDetails
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
171
245
|
class CustomerSummary
|
172
246
|
attr_accessor account: Types::AccountSummary
|
173
247
|
SENSITIVE: []
|
174
248
|
end
|
175
249
|
|
250
|
+
class DeleteResourceSnapshotJobRequest
|
251
|
+
attr_accessor catalog: ::String
|
252
|
+
attr_accessor resource_snapshot_job_identifier: ::String
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
176
256
|
class DisassociateOpportunityRequest
|
177
257
|
attr_accessor catalog: ::String
|
178
258
|
attr_accessor opportunity_identifier: ::String
|
@@ -181,6 +261,23 @@ module Aws::PartnerCentralSelling
|
|
181
261
|
SENSITIVE: []
|
182
262
|
end
|
183
263
|
|
264
|
+
class EngagementContextDetails
|
265
|
+
attr_accessor payload: Types::EngagementContextPayload
|
266
|
+
attr_accessor type: ("CustomerProject")
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class EngagementContextPayload
|
271
|
+
attr_accessor customer_project: Types::CustomerProjectsContext
|
272
|
+
attr_accessor unknown: untyped
|
273
|
+
SENSITIVE: []
|
274
|
+
|
275
|
+
class CustomerProject < EngagementContextPayload
|
276
|
+
end
|
277
|
+
class Unknown < EngagementContextPayload
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
184
281
|
class EngagementCustomer
|
185
282
|
attr_accessor company_name: ::String
|
186
283
|
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 +286,22 @@ module Aws::PartnerCentralSelling
|
|
189
286
|
SENSITIVE: [:country_code, :website_url]
|
190
287
|
end
|
191
288
|
|
289
|
+
class EngagementCustomerProjectDetails
|
290
|
+
attr_accessor business_problem: ::String
|
291
|
+
attr_accessor target_completion_date: ::String
|
292
|
+
attr_accessor title: ::String
|
293
|
+
SENSITIVE: [:business_problem]
|
294
|
+
end
|
295
|
+
|
192
296
|
class EngagementInvitationSummary
|
193
297
|
attr_accessor arn: ::String
|
194
298
|
attr_accessor catalog: ::String
|
299
|
+
attr_accessor engagement_id: ::String
|
195
300
|
attr_accessor engagement_title: ::String
|
196
301
|
attr_accessor expiration_date: ::Time
|
197
302
|
attr_accessor id: ::String
|
198
303
|
attr_accessor invitation_date: ::Time
|
304
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
199
305
|
attr_accessor payload_type: ("OpportunityInvitation")
|
200
306
|
attr_accessor receiver: Types::Receiver
|
201
307
|
attr_accessor sender_aws_account_id: ::String
|
@@ -204,12 +310,51 @@ module Aws::PartnerCentralSelling
|
|
204
310
|
SENSITIVE: [:sender_aws_account_id]
|
205
311
|
end
|
206
312
|
|
313
|
+
class EngagementMember
|
314
|
+
attr_accessor account_id: ::String
|
315
|
+
attr_accessor company_name: ::String
|
316
|
+
attr_accessor website_url: ::String
|
317
|
+
SENSITIVE: [:account_id]
|
318
|
+
end
|
319
|
+
|
320
|
+
class EngagementMemberSummary
|
321
|
+
attr_accessor company_name: ::String
|
322
|
+
attr_accessor website_url: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class EngagementResourceAssociationSummary
|
327
|
+
attr_accessor catalog: ::String
|
328
|
+
attr_accessor created_by: ::String
|
329
|
+
attr_accessor engagement_id: ::String
|
330
|
+
attr_accessor resource_id: ::String
|
331
|
+
attr_accessor resource_type: ("Opportunity")
|
332
|
+
SENSITIVE: [:created_by]
|
333
|
+
end
|
334
|
+
|
335
|
+
class EngagementSort
|
336
|
+
attr_accessor sort_by: ("CreatedDate")
|
337
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class EngagementSummary
|
342
|
+
attr_accessor arn: ::String
|
343
|
+
attr_accessor created_at: ::Time
|
344
|
+
attr_accessor created_by: ::String
|
345
|
+
attr_accessor id: ::String
|
346
|
+
attr_accessor member_count: ::Integer
|
347
|
+
attr_accessor title: ::String
|
348
|
+
SENSITIVE: [:created_by]
|
349
|
+
end
|
350
|
+
|
207
351
|
class ExpectedCustomerSpend
|
208
352
|
attr_accessor amount: ::String
|
209
353
|
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")
|
354
|
+
attr_accessor estimation_url: ::String
|
210
355
|
attr_accessor frequency: ("Monthly")
|
211
356
|
attr_accessor target_company: ::String
|
212
|
-
SENSITIVE: [:currency_code]
|
357
|
+
SENSITIVE: [:currency_code, :estimation_url]
|
213
358
|
end
|
214
359
|
|
215
360
|
class GetAwsOpportunitySummaryRequest
|
@@ -243,10 +388,14 @@ module Aws::PartnerCentralSelling
|
|
243
388
|
class GetEngagementInvitationResponse
|
244
389
|
attr_accessor arn: ::String
|
245
390
|
attr_accessor catalog: ::String
|
391
|
+
attr_accessor engagement_description: ::String
|
392
|
+
attr_accessor engagement_id: ::String
|
246
393
|
attr_accessor engagement_title: ::String
|
394
|
+
attr_accessor existing_members: ::Array[Types::EngagementMemberSummary]
|
247
395
|
attr_accessor expiration_date: ::Time
|
248
396
|
attr_accessor id: ::String
|
249
397
|
attr_accessor invitation_date: ::Time
|
398
|
+
attr_accessor invitation_message: ::String
|
250
399
|
attr_accessor payload: Types::Payload
|
251
400
|
attr_accessor payload_type: ("OpportunityInvitation")
|
252
401
|
attr_accessor receiver: Types::Receiver
|
@@ -257,6 +406,24 @@ module Aws::PartnerCentralSelling
|
|
257
406
|
SENSITIVE: [:sender_aws_account_id]
|
258
407
|
end
|
259
408
|
|
409
|
+
class GetEngagementRequest
|
410
|
+
attr_accessor catalog: ::String
|
411
|
+
attr_accessor identifier: ::String
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class GetEngagementResponse
|
416
|
+
attr_accessor arn: ::String
|
417
|
+
attr_accessor contexts: ::Array[Types::EngagementContextDetails]
|
418
|
+
attr_accessor created_at: ::Time
|
419
|
+
attr_accessor created_by: ::String
|
420
|
+
attr_accessor description: ::String
|
421
|
+
attr_accessor id: ::String
|
422
|
+
attr_accessor member_count: ::Integer
|
423
|
+
attr_accessor title: ::String
|
424
|
+
SENSITIVE: [:created_by]
|
425
|
+
end
|
426
|
+
|
260
427
|
class GetOpportunityRequest
|
261
428
|
attr_accessor catalog: ::String
|
262
429
|
attr_accessor identifier: ::String
|
@@ -264,6 +431,7 @@ module Aws::PartnerCentralSelling
|
|
264
431
|
end
|
265
432
|
|
266
433
|
class GetOpportunityResponse
|
434
|
+
attr_accessor arn: ::String
|
267
435
|
attr_accessor catalog: ::String
|
268
436
|
attr_accessor created_date: ::Time
|
269
437
|
attr_accessor customer: Types::Customer
|
@@ -282,11 +450,75 @@ module Aws::PartnerCentralSelling
|
|
282
450
|
SENSITIVE: []
|
283
451
|
end
|
284
452
|
|
453
|
+
class GetResourceSnapshotJobRequest
|
454
|
+
attr_accessor catalog: ::String
|
455
|
+
attr_accessor resource_snapshot_job_identifier: ::String
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class GetResourceSnapshotJobResponse
|
460
|
+
attr_accessor arn: ::String
|
461
|
+
attr_accessor catalog: ::String
|
462
|
+
attr_accessor created_at: ::Time
|
463
|
+
attr_accessor engagement_id: ::String
|
464
|
+
attr_accessor id: ::String
|
465
|
+
attr_accessor last_failure: ::String
|
466
|
+
attr_accessor last_successful_execution_date: ::Time
|
467
|
+
attr_accessor resource_arn: ::String
|
468
|
+
attr_accessor resource_id: ::String
|
469
|
+
attr_accessor resource_snapshot_template_name: ::String
|
470
|
+
attr_accessor resource_type: ("Opportunity")
|
471
|
+
attr_accessor status: ("Running" | "Stopped")
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class GetResourceSnapshotRequest
|
476
|
+
attr_accessor catalog: ::String
|
477
|
+
attr_accessor engagement_identifier: ::String
|
478
|
+
attr_accessor resource_identifier: ::String
|
479
|
+
attr_accessor resource_snapshot_template_identifier: ::String
|
480
|
+
attr_accessor resource_type: ("Opportunity")
|
481
|
+
attr_accessor revision: ::Integer
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class GetResourceSnapshotResponse
|
486
|
+
attr_accessor arn: ::String
|
487
|
+
attr_accessor catalog: ::String
|
488
|
+
attr_accessor created_at: ::Time
|
489
|
+
attr_accessor created_by: ::String
|
490
|
+
attr_accessor engagement_id: ::String
|
491
|
+
attr_accessor payload: Types::ResourceSnapshotPayload
|
492
|
+
attr_accessor resource_id: ::String
|
493
|
+
attr_accessor resource_snapshot_template_name: ::String
|
494
|
+
attr_accessor resource_type: ("Opportunity")
|
495
|
+
attr_accessor revision: ::Integer
|
496
|
+
SENSITIVE: [:created_by]
|
497
|
+
end
|
498
|
+
|
499
|
+
class GetSellingSystemSettingsRequest
|
500
|
+
attr_accessor catalog: ::String
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class GetSellingSystemSettingsResponse
|
505
|
+
attr_accessor catalog: ::String
|
506
|
+
attr_accessor resource_snapshot_job_role_arn: ::String
|
507
|
+
SENSITIVE: []
|
508
|
+
end
|
509
|
+
|
285
510
|
class InternalServerException
|
286
511
|
attr_accessor message: ::String
|
287
512
|
SENSITIVE: []
|
288
513
|
end
|
289
514
|
|
515
|
+
class Invitation
|
516
|
+
attr_accessor message: ::String
|
517
|
+
attr_accessor payload: Types::Payload
|
518
|
+
attr_accessor receiver: Types::Receiver
|
519
|
+
SENSITIVE: []
|
520
|
+
end
|
521
|
+
|
290
522
|
class LastModifiedDate
|
291
523
|
attr_accessor after_last_modified_date: ::Time
|
292
524
|
attr_accessor before_last_modified_date: ::Time
|
@@ -305,6 +537,14 @@ module Aws::PartnerCentralSelling
|
|
305
537
|
SENSITIVE: [:next_steps]
|
306
538
|
end
|
307
539
|
|
540
|
+
class LifeCycleForView
|
541
|
+
attr_accessor next_steps: ::String
|
542
|
+
attr_accessor review_status: ("Pending Submission" | "Submitted" | "In review" | "Approved" | "Rejected" | "Action Required")
|
543
|
+
attr_accessor stage: ("Prospect" | "Qualified" | "Technical Validation" | "Business Validation" | "Committed" | "Launched" | "Closed Lost")
|
544
|
+
attr_accessor target_close_date: ::String
|
545
|
+
SENSITIVE: [:next_steps]
|
546
|
+
end
|
547
|
+
|
308
548
|
class LifeCycleSummary
|
309
549
|
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
550
|
attr_accessor next_steps: ::String
|
@@ -316,13 +556,79 @@ module Aws::PartnerCentralSelling
|
|
316
556
|
SENSITIVE: [:next_steps]
|
317
557
|
end
|
318
558
|
|
559
|
+
class ListEngagementByAcceptingInvitationTaskSummary
|
560
|
+
attr_accessor engagement_invitation_id: ::String
|
561
|
+
attr_accessor message: ::String
|
562
|
+
attr_accessor opportunity_id: ::String
|
563
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled")
|
564
|
+
attr_accessor resource_snapshot_job_id: ::String
|
565
|
+
attr_accessor start_time: ::Time
|
566
|
+
attr_accessor task_arn: ::String
|
567
|
+
attr_accessor task_id: ::String
|
568
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
569
|
+
SENSITIVE: []
|
570
|
+
end
|
571
|
+
|
572
|
+
class ListEngagementByAcceptingInvitationTasksRequest
|
573
|
+
attr_accessor catalog: ::String
|
574
|
+
attr_accessor engagement_invitation_identifier: ::Array[::String]
|
575
|
+
attr_accessor max_results: ::Integer
|
576
|
+
attr_accessor next_token: ::String
|
577
|
+
attr_accessor opportunity_identifier: ::Array[::String]
|
578
|
+
attr_accessor sort: Types::ListTasksSortBase
|
579
|
+
attr_accessor task_identifier: ::Array[::String]
|
580
|
+
attr_accessor task_status: ::Array[("IN_PROGRESS" | "COMPLETE" | "FAILED")]
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class ListEngagementByAcceptingInvitationTasksResponse
|
585
|
+
attr_accessor next_token: ::String
|
586
|
+
attr_accessor task_summaries: ::Array[Types::ListEngagementByAcceptingInvitationTaskSummary]
|
587
|
+
SENSITIVE: []
|
588
|
+
end
|
589
|
+
|
590
|
+
class ListEngagementFromOpportunityTaskSummary
|
591
|
+
attr_accessor engagement_id: ::String
|
592
|
+
attr_accessor engagement_invitation_id: ::String
|
593
|
+
attr_accessor message: ::String
|
594
|
+
attr_accessor opportunity_id: ::String
|
595
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled")
|
596
|
+
attr_accessor resource_snapshot_job_id: ::String
|
597
|
+
attr_accessor start_time: ::Time
|
598
|
+
attr_accessor task_arn: ::String
|
599
|
+
attr_accessor task_id: ::String
|
600
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class ListEngagementFromOpportunityTasksRequest
|
605
|
+
attr_accessor catalog: ::String
|
606
|
+
attr_accessor engagement_identifier: ::Array[::String]
|
607
|
+
attr_accessor max_results: ::Integer
|
608
|
+
attr_accessor next_token: ::String
|
609
|
+
attr_accessor opportunity_identifier: ::Array[::String]
|
610
|
+
attr_accessor sort: Types::ListTasksSortBase
|
611
|
+
attr_accessor task_identifier: ::Array[::String]
|
612
|
+
attr_accessor task_status: ::Array[("IN_PROGRESS" | "COMPLETE" | "FAILED")]
|
613
|
+
SENSITIVE: []
|
614
|
+
end
|
615
|
+
|
616
|
+
class ListEngagementFromOpportunityTasksResponse
|
617
|
+
attr_accessor next_token: ::String
|
618
|
+
attr_accessor task_summaries: ::Array[Types::ListEngagementFromOpportunityTaskSummary]
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
319
622
|
class ListEngagementInvitationsRequest
|
320
623
|
attr_accessor catalog: ::String
|
624
|
+
attr_accessor engagement_identifier: ::Array[::String]
|
321
625
|
attr_accessor max_results: ::Integer
|
322
626
|
attr_accessor next_token: ::String
|
323
|
-
attr_accessor participant_type: ("RECEIVER")
|
627
|
+
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
324
628
|
attr_accessor payload_type: ::Array[("OpportunityInvitation")]
|
629
|
+
attr_accessor sender_aws_account_id: ::Array[::String]
|
325
630
|
attr_accessor sort: Types::OpportunityEngagementInvitationSort
|
631
|
+
attr_accessor status: ::Array[("ACCEPTED" | "PENDING" | "REJECTED" | "EXPIRED")]
|
326
632
|
SENSITIVE: []
|
327
633
|
end
|
328
634
|
|
@@ -332,6 +638,54 @@ module Aws::PartnerCentralSelling
|
|
332
638
|
SENSITIVE: []
|
333
639
|
end
|
334
640
|
|
641
|
+
class ListEngagementMembersRequest
|
642
|
+
attr_accessor catalog: ::String
|
643
|
+
attr_accessor identifier: ::String
|
644
|
+
attr_accessor max_results: ::Integer
|
645
|
+
attr_accessor next_token: ::String
|
646
|
+
SENSITIVE: []
|
647
|
+
end
|
648
|
+
|
649
|
+
class ListEngagementMembersResponse
|
650
|
+
attr_accessor engagement_member_list: ::Array[Types::EngagementMember]
|
651
|
+
attr_accessor next_token: ::String
|
652
|
+
SENSITIVE: []
|
653
|
+
end
|
654
|
+
|
655
|
+
class ListEngagementResourceAssociationsRequest
|
656
|
+
attr_accessor catalog: ::String
|
657
|
+
attr_accessor created_by: ::String
|
658
|
+
attr_accessor engagement_identifier: ::String
|
659
|
+
attr_accessor max_results: ::Integer
|
660
|
+
attr_accessor next_token: ::String
|
661
|
+
attr_accessor resource_identifier: ::String
|
662
|
+
attr_accessor resource_type: ("Opportunity")
|
663
|
+
SENSITIVE: [:created_by]
|
664
|
+
end
|
665
|
+
|
666
|
+
class ListEngagementResourceAssociationsResponse
|
667
|
+
attr_accessor engagement_resource_association_summaries: ::Array[Types::EngagementResourceAssociationSummary]
|
668
|
+
attr_accessor next_token: ::String
|
669
|
+
SENSITIVE: []
|
670
|
+
end
|
671
|
+
|
672
|
+
class ListEngagementsRequest
|
673
|
+
attr_accessor catalog: ::String
|
674
|
+
attr_accessor created_by: ::Array[::String]
|
675
|
+
attr_accessor engagement_identifier: ::Array[::String]
|
676
|
+
attr_accessor exclude_created_by: ::Array[::String]
|
677
|
+
attr_accessor max_results: ::Integer
|
678
|
+
attr_accessor next_token: ::String
|
679
|
+
attr_accessor sort: Types::EngagementSort
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
683
|
+
class ListEngagementsResponse
|
684
|
+
attr_accessor engagement_summary_list: ::Array[Types::EngagementSummary]
|
685
|
+
attr_accessor next_token: ::String
|
686
|
+
SENSITIVE: []
|
687
|
+
end
|
688
|
+
|
335
689
|
class ListOpportunitiesRequest
|
336
690
|
attr_accessor catalog: ::String
|
337
691
|
attr_accessor customer_company_name: ::Array[::String]
|
@@ -351,6 +705,40 @@ module Aws::PartnerCentralSelling
|
|
351
705
|
SENSITIVE: []
|
352
706
|
end
|
353
707
|
|
708
|
+
class ListResourceSnapshotJobsRequest
|
709
|
+
attr_accessor catalog: ::String
|
710
|
+
attr_accessor engagement_identifier: ::String
|
711
|
+
attr_accessor max_results: ::Integer
|
712
|
+
attr_accessor next_token: ::String
|
713
|
+
attr_accessor sort: Types::SortObject
|
714
|
+
attr_accessor status: ("Running" | "Stopped")
|
715
|
+
SENSITIVE: []
|
716
|
+
end
|
717
|
+
|
718
|
+
class ListResourceSnapshotJobsResponse
|
719
|
+
attr_accessor next_token: ::String
|
720
|
+
attr_accessor resource_snapshot_job_summaries: ::Array[Types::ResourceSnapshotJobSummary]
|
721
|
+
SENSITIVE: []
|
722
|
+
end
|
723
|
+
|
724
|
+
class ListResourceSnapshotsRequest
|
725
|
+
attr_accessor catalog: ::String
|
726
|
+
attr_accessor created_by: ::String
|
727
|
+
attr_accessor engagement_identifier: ::String
|
728
|
+
attr_accessor max_results: ::Integer
|
729
|
+
attr_accessor next_token: ::String
|
730
|
+
attr_accessor resource_identifier: ::String
|
731
|
+
attr_accessor resource_snapshot_template_identifier: ::String
|
732
|
+
attr_accessor resource_type: ("Opportunity")
|
733
|
+
SENSITIVE: [:created_by]
|
734
|
+
end
|
735
|
+
|
736
|
+
class ListResourceSnapshotsResponse
|
737
|
+
attr_accessor next_token: ::String
|
738
|
+
attr_accessor resource_snapshot_summaries: ::Array[Types::ResourceSnapshotSummary]
|
739
|
+
SENSITIVE: []
|
740
|
+
end
|
741
|
+
|
354
742
|
class ListSolutionsRequest
|
355
743
|
attr_accessor catalog: ::String
|
356
744
|
attr_accessor category: ::Array[::String]
|
@@ -368,6 +756,22 @@ module Aws::PartnerCentralSelling
|
|
368
756
|
SENSITIVE: []
|
369
757
|
end
|
370
758
|
|
759
|
+
class ListTagsForResourceRequest
|
760
|
+
attr_accessor resource_arn: ::String
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
764
|
+
class ListTagsForResourceResponse
|
765
|
+
attr_accessor tags: ::Array[Types::Tag]
|
766
|
+
SENSITIVE: []
|
767
|
+
end
|
768
|
+
|
769
|
+
class ListTasksSortBase
|
770
|
+
attr_accessor sort_by: ("StartTime")
|
771
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
772
|
+
SENSITIVE: []
|
773
|
+
end
|
774
|
+
|
371
775
|
class Marketing
|
372
776
|
attr_accessor aws_funding_used: ("Yes" | "No")
|
373
777
|
attr_accessor campaign_name: ::String
|
@@ -410,6 +814,7 @@ module Aws::PartnerCentralSelling
|
|
410
814
|
end
|
411
815
|
|
412
816
|
class OpportunitySummary
|
817
|
+
attr_accessor arn: ::String
|
413
818
|
attr_accessor catalog: ::String
|
414
819
|
attr_accessor created_date: ::Time
|
415
820
|
attr_accessor customer: Types::CustomerSummary
|
@@ -422,6 +827,17 @@ module Aws::PartnerCentralSelling
|
|
422
827
|
SENSITIVE: []
|
423
828
|
end
|
424
829
|
|
830
|
+
class OpportunitySummaryView
|
831
|
+
attr_accessor customer: Types::Customer
|
832
|
+
attr_accessor lifecycle: Types::LifeCycleForView
|
833
|
+
attr_accessor opportunity_team: ::Array[Types::Contact]
|
834
|
+
attr_accessor opportunity_type: ("Net New Business" | "Flat Renewal" | "Expansion")
|
835
|
+
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")]
|
836
|
+
attr_accessor project: Types::ProjectView
|
837
|
+
attr_accessor related_entity_identifiers: Types::RelatedEntityIdentifiers
|
838
|
+
SENSITIVE: []
|
839
|
+
end
|
840
|
+
|
425
841
|
class Payload
|
426
842
|
attr_accessor opportunity_invitation: Types::OpportunityInvitationPayload
|
427
843
|
attr_accessor unknown: untyped
|
@@ -469,6 +885,27 @@ module Aws::PartnerCentralSelling
|
|
469
885
|
SENSITIVE: []
|
470
886
|
end
|
471
887
|
|
888
|
+
class ProjectView
|
889
|
+
attr_accessor customer_use_case: ::String
|
890
|
+
attr_accessor delivery_models: ::Array[("SaaS or PaaS" | "BYOL or AMI" | "Managed Services" | "Professional Services" | "Resell" | "Other")]
|
891
|
+
attr_accessor expected_customer_spend: ::Array[Types::ExpectedCustomerSpend]
|
892
|
+
attr_accessor other_solution_description: ::String
|
893
|
+
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")]
|
894
|
+
SENSITIVE: [:other_solution_description]
|
895
|
+
end
|
896
|
+
|
897
|
+
class PutSellingSystemSettingsRequest
|
898
|
+
attr_accessor catalog: ::String
|
899
|
+
attr_accessor resource_snapshot_job_role_identifier: ::String
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class PutSellingSystemSettingsResponse
|
904
|
+
attr_accessor catalog: ::String
|
905
|
+
attr_accessor resource_snapshot_job_role_arn: ::String
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
472
909
|
class Receiver
|
473
910
|
attr_accessor account: Types::AccountReceiver
|
474
911
|
attr_accessor unknown: untyped
|
@@ -499,6 +936,35 @@ module Aws::PartnerCentralSelling
|
|
499
936
|
SENSITIVE: []
|
500
937
|
end
|
501
938
|
|
939
|
+
class ResourceSnapshotJobSummary
|
940
|
+
attr_accessor arn: ::String
|
941
|
+
attr_accessor engagement_id: ::String
|
942
|
+
attr_accessor id: ::String
|
943
|
+
attr_accessor status: ("Running" | "Stopped")
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class ResourceSnapshotPayload
|
948
|
+
attr_accessor opportunity_summary: Types::OpportunitySummaryView
|
949
|
+
attr_accessor unknown: untyped
|
950
|
+
SENSITIVE: []
|
951
|
+
|
952
|
+
class OpportunitySummary < ResourceSnapshotPayload
|
953
|
+
end
|
954
|
+
class Unknown < ResourceSnapshotPayload
|
955
|
+
end
|
956
|
+
end
|
957
|
+
|
958
|
+
class ResourceSnapshotSummary
|
959
|
+
attr_accessor arn: ::String
|
960
|
+
attr_accessor created_by: ::String
|
961
|
+
attr_accessor resource_id: ::String
|
962
|
+
attr_accessor resource_snapshot_template_name: ::String
|
963
|
+
attr_accessor resource_type: ("Opportunity")
|
964
|
+
attr_accessor revision: ::Integer
|
965
|
+
SENSITIVE: [:created_by]
|
966
|
+
end
|
967
|
+
|
502
968
|
class SenderContact
|
503
969
|
attr_accessor business_title: ::String
|
504
970
|
attr_accessor email: ::String
|
@@ -522,6 +988,7 @@ module Aws::PartnerCentralSelling
|
|
522
988
|
end
|
523
989
|
|
524
990
|
class SolutionBase
|
991
|
+
attr_accessor arn: ::String
|
525
992
|
attr_accessor catalog: ::String
|
526
993
|
attr_accessor category: ::String
|
527
994
|
attr_accessor created_date: ::Time
|
@@ -537,10 +1004,17 @@ module Aws::PartnerCentralSelling
|
|
537
1004
|
SENSITIVE: []
|
538
1005
|
end
|
539
1006
|
|
1007
|
+
class SortObject
|
1008
|
+
attr_accessor sort_by: ("CreatedDate")
|
1009
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
1010
|
+
SENSITIVE: []
|
1011
|
+
end
|
1012
|
+
|
540
1013
|
class StartEngagementByAcceptingInvitationTaskRequest
|
541
1014
|
attr_accessor catalog: ::String
|
542
1015
|
attr_accessor client_token: ::String
|
543
1016
|
attr_accessor identifier: ::String
|
1017
|
+
attr_accessor tags: ::Array[Types::Tag]
|
544
1018
|
SENSITIVE: []
|
545
1019
|
end
|
546
1020
|
|
@@ -548,7 +1022,8 @@ module Aws::PartnerCentralSelling
|
|
548
1022
|
attr_accessor engagement_invitation_id: ::String
|
549
1023
|
attr_accessor message: ::String
|
550
1024
|
attr_accessor opportunity_id: ::String
|
551
|
-
attr_accessor reason_code: ("InvitationAccessDenied" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "EngagementValidationFailed" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied")
|
1025
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled")
|
1026
|
+
attr_accessor resource_snapshot_job_id: ::String
|
552
1027
|
attr_accessor start_time: ::Time
|
553
1028
|
attr_accessor task_arn: ::String
|
554
1029
|
attr_accessor task_id: ::String
|
@@ -561,13 +1036,17 @@ module Aws::PartnerCentralSelling
|
|
561
1036
|
attr_accessor catalog: ::String
|
562
1037
|
attr_accessor client_token: ::String
|
563
1038
|
attr_accessor identifier: ::String
|
1039
|
+
attr_accessor tags: ::Array[Types::Tag]
|
564
1040
|
SENSITIVE: []
|
565
1041
|
end
|
566
1042
|
|
567
1043
|
class StartEngagementFromOpportunityTaskResponse
|
1044
|
+
attr_accessor engagement_id: ::String
|
1045
|
+
attr_accessor engagement_invitation_id: ::String
|
568
1046
|
attr_accessor message: ::String
|
569
1047
|
attr_accessor opportunity_id: ::String
|
570
|
-
attr_accessor reason_code: ("InvitationAccessDenied" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "EngagementValidationFailed" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied")
|
1048
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled")
|
1049
|
+
attr_accessor resource_snapshot_job_id: ::String
|
571
1050
|
attr_accessor start_time: ::Time
|
572
1051
|
attr_accessor task_arn: ::String
|
573
1052
|
attr_accessor task_id: ::String
|
@@ -575,11 +1054,55 @@ module Aws::PartnerCentralSelling
|
|
575
1054
|
SENSITIVE: []
|
576
1055
|
end
|
577
1056
|
|
1057
|
+
class StartResourceSnapshotJobRequest
|
1058
|
+
attr_accessor catalog: ::String
|
1059
|
+
attr_accessor resource_snapshot_job_identifier: ::String
|
1060
|
+
SENSITIVE: []
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
class StopResourceSnapshotJobRequest
|
1064
|
+
attr_accessor catalog: ::String
|
1065
|
+
attr_accessor resource_snapshot_job_identifier: ::String
|
1066
|
+
SENSITIVE: []
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
class SubmitOpportunityRequest
|
1070
|
+
attr_accessor catalog: ::String
|
1071
|
+
attr_accessor identifier: ::String
|
1072
|
+
attr_accessor involvement_type: ("For Visibility Only" | "Co-Sell")
|
1073
|
+
attr_accessor visibility: ("Full" | "Limited")
|
1074
|
+
SENSITIVE: []
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
class Tag
|
1078
|
+
attr_accessor key: ::String
|
1079
|
+
attr_accessor value: ::String
|
1080
|
+
SENSITIVE: []
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
class TagResourceRequest
|
1084
|
+
attr_accessor resource_arn: ::String
|
1085
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1086
|
+
SENSITIVE: []
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1090
|
+
end
|
1091
|
+
|
578
1092
|
class ThrottlingException
|
579
1093
|
attr_accessor message: ::String
|
580
1094
|
SENSITIVE: []
|
581
1095
|
end
|
582
1096
|
|
1097
|
+
class UntagResourceRequest
|
1098
|
+
attr_accessor resource_arn: ::String
|
1099
|
+
attr_accessor tag_keys: ::Array[::String]
|
1100
|
+
SENSITIVE: []
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1104
|
+
end
|
1105
|
+
|
583
1106
|
class UpdateOpportunityRequest
|
584
1107
|
attr_accessor catalog: ::String
|
585
1108
|
attr_accessor customer: Types::Customer
|