aws-sdk-partnercentralselling 1.19.0 → 1.20.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 +9 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-partnercentralselling/client.rb +554 -20
- data/lib/aws-sdk-partnercentralselling/client_api.rb +289 -13
- data/lib/aws-sdk-partnercentralselling/errors.rb +5 -0
- data/lib/aws-sdk-partnercentralselling/types.rb +963 -14
- data/lib/aws-sdk-partnercentralselling.rb +1 -1
- data/sig/client.rbs +245 -8
- data/sig/errors.rbs +1 -0
- data/sig/types.rbs +208 -15
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -16,6 +16,7 @@ module Aws::PartnerCentralSelling
|
|
|
16
16
|
|
|
17
17
|
class AccessDeniedException
|
|
18
18
|
attr_accessor message: ::String
|
|
19
|
+
attr_accessor reason: ("INCOMPATIBLE_BENEFIT_AWS_PARTNER_STATE")
|
|
19
20
|
SENSITIVE: []
|
|
20
21
|
end
|
|
21
22
|
|
|
@@ -73,14 +74,15 @@ module Aws::PartnerCentralSelling
|
|
|
73
74
|
attr_accessor email: ::String
|
|
74
75
|
attr_accessor first_name: ::String
|
|
75
76
|
attr_accessor last_name: ::String
|
|
77
|
+
attr_accessor phone: ::String
|
|
76
78
|
attr_accessor business_title: ::String
|
|
77
|
-
SENSITIVE: [:email, :first_name, :last_name, :business_title]
|
|
79
|
+
SENSITIVE: [:email, :first_name, :last_name, :phone, :business_title]
|
|
78
80
|
end
|
|
79
81
|
|
|
80
82
|
class AssociateOpportunityRequest
|
|
81
83
|
attr_accessor catalog: ::String
|
|
82
84
|
attr_accessor opportunity_identifier: ::String
|
|
83
|
-
attr_accessor related_entity_type: ("Solutions" | "AwsProducts" | "AwsMarketplaceOffers")
|
|
85
|
+
attr_accessor related_entity_type: ("Solutions" | "AwsProducts" | "AwsMarketplaceOffers" | "AwsMarketplaceOfferSets")
|
|
84
86
|
attr_accessor related_entity_identifier: ::String
|
|
85
87
|
SENSITIVE: []
|
|
86
88
|
end
|
|
@@ -144,6 +146,23 @@ module Aws::PartnerCentralSelling
|
|
|
144
146
|
SENSITIVE: [:email, :first_name, :last_name, :business_title, :phone]
|
|
145
147
|
end
|
|
146
148
|
|
|
149
|
+
class CreateEngagementContextRequest
|
|
150
|
+
attr_accessor catalog: ::String
|
|
151
|
+
attr_accessor engagement_identifier: ::String
|
|
152
|
+
attr_accessor client_token: ::String
|
|
153
|
+
attr_accessor type: ("CustomerProject" | "Lead")
|
|
154
|
+
attr_accessor payload: Types::EngagementContextPayload
|
|
155
|
+
SENSITIVE: []
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
class CreateEngagementContextResponse
|
|
159
|
+
attr_accessor engagement_id: ::String
|
|
160
|
+
attr_accessor engagement_arn: ::String
|
|
161
|
+
attr_accessor engagement_last_modified_at: ::Time
|
|
162
|
+
attr_accessor context_id: ::String
|
|
163
|
+
SENSITIVE: []
|
|
164
|
+
end
|
|
165
|
+
|
|
147
166
|
class CreateEngagementInvitationRequest
|
|
148
167
|
attr_accessor catalog: ::String
|
|
149
168
|
attr_accessor client_token: ::String
|
|
@@ -170,6 +189,7 @@ module Aws::PartnerCentralSelling
|
|
|
170
189
|
class CreateEngagementResponse
|
|
171
190
|
attr_accessor id: ::String
|
|
172
191
|
attr_accessor arn: ::String
|
|
192
|
+
attr_accessor modified_at: ::Time
|
|
173
193
|
SENSITIVE: []
|
|
174
194
|
end
|
|
175
195
|
|
|
@@ -257,24 +277,28 @@ module Aws::PartnerCentralSelling
|
|
|
257
277
|
class DisassociateOpportunityRequest
|
|
258
278
|
attr_accessor catalog: ::String
|
|
259
279
|
attr_accessor opportunity_identifier: ::String
|
|
260
|
-
attr_accessor related_entity_type: ("Solutions" | "AwsProducts" | "AwsMarketplaceOffers")
|
|
280
|
+
attr_accessor related_entity_type: ("Solutions" | "AwsProducts" | "AwsMarketplaceOffers" | "AwsMarketplaceOfferSets")
|
|
261
281
|
attr_accessor related_entity_identifier: ::String
|
|
262
282
|
SENSITIVE: []
|
|
263
283
|
end
|
|
264
284
|
|
|
265
285
|
class EngagementContextDetails
|
|
266
|
-
attr_accessor
|
|
286
|
+
attr_accessor id: ::String
|
|
287
|
+
attr_accessor type: ("CustomerProject" | "Lead")
|
|
267
288
|
attr_accessor payload: Types::EngagementContextPayload
|
|
268
289
|
SENSITIVE: []
|
|
269
290
|
end
|
|
270
291
|
|
|
271
292
|
class EngagementContextPayload
|
|
272
293
|
attr_accessor customer_project: Types::CustomerProjectsContext
|
|
294
|
+
attr_accessor lead: Types::LeadContext
|
|
273
295
|
attr_accessor unknown: untyped
|
|
274
296
|
SENSITIVE: []
|
|
275
297
|
|
|
276
298
|
class CustomerProject < EngagementContextPayload
|
|
277
299
|
end
|
|
300
|
+
class Lead < EngagementContextPayload
|
|
301
|
+
end
|
|
278
302
|
class Unknown < EngagementContextPayload
|
|
279
303
|
end
|
|
280
304
|
end
|
|
@@ -296,7 +320,7 @@ module Aws::PartnerCentralSelling
|
|
|
296
320
|
|
|
297
321
|
class EngagementInvitationSummary
|
|
298
322
|
attr_accessor arn: ::String
|
|
299
|
-
attr_accessor payload_type: ("OpportunityInvitation")
|
|
323
|
+
attr_accessor payload_type: ("OpportunityInvitation" | "LeadInvitation")
|
|
300
324
|
attr_accessor id: ::String
|
|
301
325
|
attr_accessor engagement_id: ::String
|
|
302
326
|
attr_accessor engagement_title: ::String
|
|
@@ -346,7 +370,10 @@ module Aws::PartnerCentralSelling
|
|
|
346
370
|
attr_accessor created_at: ::Time
|
|
347
371
|
attr_accessor created_by: ::String
|
|
348
372
|
attr_accessor member_count: ::Integer
|
|
349
|
-
|
|
373
|
+
attr_accessor modified_at: ::Time
|
|
374
|
+
attr_accessor modified_by: ::String
|
|
375
|
+
attr_accessor context_types: ::Array[("CustomerProject" | "Lead")]
|
|
376
|
+
SENSITIVE: [:created_by, :modified_by]
|
|
350
377
|
end
|
|
351
378
|
|
|
352
379
|
class ExpectedCustomerSpend
|
|
@@ -365,7 +392,6 @@ module Aws::PartnerCentralSelling
|
|
|
365
392
|
end
|
|
366
393
|
|
|
367
394
|
class GetAwsOpportunitySummaryResponse
|
|
368
|
-
attr_accessor catalog: ::String
|
|
369
395
|
attr_accessor related_opportunity_id: ::String
|
|
370
396
|
attr_accessor origin: ("AWS Referral" | "Partner Referral")
|
|
371
397
|
attr_accessor involvement_type: ("For Visibility Only" | "Co-Sell")
|
|
@@ -377,6 +403,7 @@ module Aws::PartnerCentralSelling
|
|
|
377
403
|
attr_accessor related_entity_ids: Types::AwsOpportunityRelatedEntities
|
|
378
404
|
attr_accessor customer: Types::AwsOpportunityCustomer
|
|
379
405
|
attr_accessor project: Types::AwsOpportunityProject
|
|
406
|
+
attr_accessor catalog: ::String
|
|
380
407
|
SENSITIVE: []
|
|
381
408
|
end
|
|
382
409
|
|
|
@@ -388,7 +415,7 @@ module Aws::PartnerCentralSelling
|
|
|
388
415
|
|
|
389
416
|
class GetEngagementInvitationResponse
|
|
390
417
|
attr_accessor arn: ::String
|
|
391
|
-
attr_accessor payload_type: ("OpportunityInvitation")
|
|
418
|
+
attr_accessor payload_type: ("OpportunityInvitation" | "LeadInvitation")
|
|
392
419
|
attr_accessor id: ::String
|
|
393
420
|
attr_accessor engagement_id: ::String
|
|
394
421
|
attr_accessor engagement_title: ::String
|
|
@@ -421,8 +448,10 @@ module Aws::PartnerCentralSelling
|
|
|
421
448
|
attr_accessor created_at: ::Time
|
|
422
449
|
attr_accessor created_by: ::String
|
|
423
450
|
attr_accessor member_count: ::Integer
|
|
451
|
+
attr_accessor modified_at: ::Time
|
|
452
|
+
attr_accessor modified_by: ::String
|
|
424
453
|
attr_accessor contexts: ::Array[Types::EngagementContextDetails]
|
|
425
|
-
SENSITIVE: [:created_by]
|
|
454
|
+
SENSITIVE: [:created_by, :modified_by]
|
|
426
455
|
end
|
|
427
456
|
|
|
428
457
|
class GetOpportunityRequest
|
|
@@ -526,6 +555,69 @@ module Aws::PartnerCentralSelling
|
|
|
526
555
|
SENSITIVE: []
|
|
527
556
|
end
|
|
528
557
|
|
|
558
|
+
class LeadContact
|
|
559
|
+
attr_accessor business_title: ::String
|
|
560
|
+
attr_accessor email: ::String
|
|
561
|
+
attr_accessor first_name: ::String
|
|
562
|
+
attr_accessor last_name: ::String
|
|
563
|
+
attr_accessor phone: ::String
|
|
564
|
+
SENSITIVE: [:business_title, :email, :first_name, :last_name, :phone]
|
|
565
|
+
end
|
|
566
|
+
|
|
567
|
+
class LeadContext
|
|
568
|
+
attr_accessor qualification_status: ::String
|
|
569
|
+
attr_accessor customer: Types::LeadCustomer
|
|
570
|
+
attr_accessor interactions: ::Array[Types::LeadInteraction]
|
|
571
|
+
SENSITIVE: []
|
|
572
|
+
end
|
|
573
|
+
|
|
574
|
+
class LeadCustomer
|
|
575
|
+
attr_accessor industry: ("Aerospace" | "Agriculture" | "Automotive" | "Computers and Electronics" | "Consumer Goods" | "Education" | "Energy - Oil and Gas" | "Energy - Power and Utilities" | "Financial Services" | "Gaming" | "Government" | "Healthcare" | "Hospitality" | "Life Sciences" | "Manufacturing" | "Marketing and Advertising" | "Media and Entertainment" | "Mining" | "Non-Profit Organization" | "Professional Services" | "Real Estate and Construction" | "Retail" | "Software and Internet" | "Telecommunications" | "Transportation and Logistics" | "Travel" | "Wholesale and Distribution" | "Other")
|
|
576
|
+
attr_accessor company_name: ::String
|
|
577
|
+
attr_accessor website_url: ::String
|
|
578
|
+
attr_accessor address: Types::AddressSummary
|
|
579
|
+
attr_accessor aws_maturity: ::String
|
|
580
|
+
attr_accessor market_segment: ("Enterprise" | "Large" | "Medium" | "Small" | "Micro")
|
|
581
|
+
SENSITIVE: [:company_name, :website_url]
|
|
582
|
+
end
|
|
583
|
+
|
|
584
|
+
class LeadInteraction
|
|
585
|
+
attr_accessor source_type: ::String
|
|
586
|
+
attr_accessor source_id: ::String
|
|
587
|
+
attr_accessor source_name: ::String
|
|
588
|
+
attr_accessor usecase: ::String
|
|
589
|
+
attr_accessor interaction_date: ::Time
|
|
590
|
+
attr_accessor customer_action: ::String
|
|
591
|
+
attr_accessor business_problem: ::String
|
|
592
|
+
attr_accessor contact: Types::LeadContact
|
|
593
|
+
SENSITIVE: [:business_problem]
|
|
594
|
+
end
|
|
595
|
+
|
|
596
|
+
class LeadInvitationCustomer
|
|
597
|
+
attr_accessor industry: ("Aerospace" | "Agriculture" | "Automotive" | "Computers and Electronics" | "Consumer Goods" | "Education" | "Energy - Oil and Gas" | "Energy - Power and Utilities" | "Financial Services" | "Gaming" | "Government" | "Healthcare" | "Hospitality" | "Life Sciences" | "Manufacturing" | "Marketing and Advertising" | "Media and Entertainment" | "Mining" | "Non-Profit Organization" | "Professional Services" | "Real Estate and Construction" | "Retail" | "Software and Internet" | "Telecommunications" | "Transportation and Logistics" | "Travel" | "Wholesale and Distribution" | "Other")
|
|
598
|
+
attr_accessor company_name: ::String
|
|
599
|
+
attr_accessor website_url: ::String
|
|
600
|
+
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")
|
|
601
|
+
attr_accessor aws_maturity: ::String
|
|
602
|
+
attr_accessor market_segment: ("Enterprise" | "Large" | "Medium" | "Small" | "Micro")
|
|
603
|
+
SENSITIVE: [:company_name, :website_url, :country_code]
|
|
604
|
+
end
|
|
605
|
+
|
|
606
|
+
class LeadInvitationInteraction
|
|
607
|
+
attr_accessor source_type: ::String
|
|
608
|
+
attr_accessor source_id: ::String
|
|
609
|
+
attr_accessor source_name: ::String
|
|
610
|
+
attr_accessor usecase: ::String
|
|
611
|
+
attr_accessor contact_business_title: ::String
|
|
612
|
+
SENSITIVE: [:contact_business_title]
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
class LeadInvitationPayload
|
|
616
|
+
attr_accessor customer: Types::LeadInvitationCustomer
|
|
617
|
+
attr_accessor interaction: Types::LeadInvitationInteraction
|
|
618
|
+
SENSITIVE: []
|
|
619
|
+
end
|
|
620
|
+
|
|
529
621
|
class LifeCycle
|
|
530
622
|
attr_accessor stage: ("Prospect" | "Qualified" | "Technical Validation" | "Business Validation" | "Committed" | "Launched" | "Closed Lost")
|
|
531
623
|
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")
|
|
@@ -563,7 +655,7 @@ module Aws::PartnerCentralSelling
|
|
|
563
655
|
attr_accessor start_time: ::Time
|
|
564
656
|
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
|
565
657
|
attr_accessor message: ::String
|
|
566
|
-
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled")
|
|
658
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled" | "ContextNotFound" | "CustomerProjectContextNotPermitted" | "DisqualifiedLeadNotPermitted")
|
|
567
659
|
attr_accessor opportunity_id: ::String
|
|
568
660
|
attr_accessor resource_snapshot_job_id: ::String
|
|
569
661
|
attr_accessor engagement_invitation_id: ::String
|
|
@@ -594,7 +686,7 @@ module Aws::PartnerCentralSelling
|
|
|
594
686
|
attr_accessor start_time: ::Time
|
|
595
687
|
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
|
596
688
|
attr_accessor message: ::String
|
|
597
|
-
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled")
|
|
689
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled" | "ContextNotFound" | "CustomerProjectContextNotPermitted" | "DisqualifiedLeadNotPermitted")
|
|
598
690
|
attr_accessor opportunity_id: ::String
|
|
599
691
|
attr_accessor resource_snapshot_job_id: ::String
|
|
600
692
|
attr_accessor engagement_id: ::String
|
|
@@ -625,7 +717,7 @@ module Aws::PartnerCentralSelling
|
|
|
625
717
|
attr_accessor max_results: ::Integer
|
|
626
718
|
attr_accessor next_token: ::String
|
|
627
719
|
attr_accessor sort: Types::OpportunityEngagementInvitationSort
|
|
628
|
-
attr_accessor payload_type: ::Array[("OpportunityInvitation")]
|
|
720
|
+
attr_accessor payload_type: ::Array[("OpportunityInvitation" | "LeadInvitation")]
|
|
629
721
|
attr_accessor participant_type: ("SENDER" | "RECEIVER")
|
|
630
722
|
attr_accessor status: ::Array[("ACCEPTED" | "PENDING" | "REJECTED" | "EXPIRED")]
|
|
631
723
|
attr_accessor engagement_identifier: ::Array[::String]
|
|
@@ -674,6 +766,8 @@ module Aws::PartnerCentralSelling
|
|
|
674
766
|
attr_accessor catalog: ::String
|
|
675
767
|
attr_accessor created_by: ::Array[::String]
|
|
676
768
|
attr_accessor exclude_created_by: ::Array[::String]
|
|
769
|
+
attr_accessor context_types: ::Array[("CustomerProject" | "Lead")]
|
|
770
|
+
attr_accessor exclude_context_types: ::Array[("CustomerProject" | "Lead")]
|
|
677
771
|
attr_accessor sort: Types::EngagementSort
|
|
678
772
|
attr_accessor max_results: ::Integer
|
|
679
773
|
attr_accessor next_token: ::String
|
|
@@ -706,6 +800,39 @@ module Aws::PartnerCentralSelling
|
|
|
706
800
|
SENSITIVE: []
|
|
707
801
|
end
|
|
708
802
|
|
|
803
|
+
class ListOpportunityFromEngagementTaskSummary
|
|
804
|
+
attr_accessor task_id: ::String
|
|
805
|
+
attr_accessor task_arn: ::String
|
|
806
|
+
attr_accessor start_time: ::Time
|
|
807
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
|
808
|
+
attr_accessor message: ::String
|
|
809
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled" | "ContextNotFound" | "CustomerProjectContextNotPermitted" | "DisqualifiedLeadNotPermitted")
|
|
810
|
+
attr_accessor opportunity_id: ::String
|
|
811
|
+
attr_accessor resource_snapshot_job_id: ::String
|
|
812
|
+
attr_accessor engagement_id: ::String
|
|
813
|
+
attr_accessor context_id: ::String
|
|
814
|
+
SENSITIVE: []
|
|
815
|
+
end
|
|
816
|
+
|
|
817
|
+
class ListOpportunityFromEngagementTasksRequest
|
|
818
|
+
attr_accessor max_results: ::Integer
|
|
819
|
+
attr_accessor next_token: ::String
|
|
820
|
+
attr_accessor sort: Types::ListTasksSortBase
|
|
821
|
+
attr_accessor catalog: ::String
|
|
822
|
+
attr_accessor task_status: ::Array[("IN_PROGRESS" | "COMPLETE" | "FAILED")]
|
|
823
|
+
attr_accessor task_identifier: ::Array[::String]
|
|
824
|
+
attr_accessor opportunity_identifier: ::Array[::String]
|
|
825
|
+
attr_accessor engagement_identifier: ::Array[::String]
|
|
826
|
+
attr_accessor context_identifier: ::Array[::String]
|
|
827
|
+
SENSITIVE: []
|
|
828
|
+
end
|
|
829
|
+
|
|
830
|
+
class ListOpportunityFromEngagementTasksResponse
|
|
831
|
+
attr_accessor task_summaries: ::Array[Types::ListOpportunityFromEngagementTaskSummary]
|
|
832
|
+
attr_accessor next_token: ::String
|
|
833
|
+
SENSITIVE: []
|
|
834
|
+
end
|
|
835
|
+
|
|
709
836
|
class ListResourceSnapshotJobsRequest
|
|
710
837
|
attr_accessor catalog: ::String
|
|
711
838
|
attr_accessor max_results: ::Integer
|
|
@@ -841,11 +968,14 @@ module Aws::PartnerCentralSelling
|
|
|
841
968
|
|
|
842
969
|
class Payload
|
|
843
970
|
attr_accessor opportunity_invitation: Types::OpportunityInvitationPayload
|
|
971
|
+
attr_accessor lead_invitation: Types::LeadInvitationPayload
|
|
844
972
|
attr_accessor unknown: untyped
|
|
845
973
|
SENSITIVE: []
|
|
846
974
|
|
|
847
975
|
class OpportunityInvitation < Payload
|
|
848
976
|
end
|
|
977
|
+
class LeadInvitation < Payload
|
|
978
|
+
end
|
|
849
979
|
class Unknown < Payload
|
|
850
980
|
end
|
|
851
981
|
end
|
|
@@ -927,6 +1057,7 @@ module Aws::PartnerCentralSelling
|
|
|
927
1057
|
|
|
928
1058
|
class RelatedEntityIdentifiers
|
|
929
1059
|
attr_accessor aws_marketplace_offers: ::Array[::String]
|
|
1060
|
+
attr_accessor aws_marketplace_offer_sets: ::Array[::String]
|
|
930
1061
|
attr_accessor solutions: ::Array[::String]
|
|
931
1062
|
attr_accessor aws_products: ::Array[::String]
|
|
932
1063
|
SENSITIVE: []
|
|
@@ -1025,7 +1156,7 @@ module Aws::PartnerCentralSelling
|
|
|
1025
1156
|
attr_accessor start_time: ::Time
|
|
1026
1157
|
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
|
1027
1158
|
attr_accessor message: ::String
|
|
1028
|
-
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled")
|
|
1159
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled" | "ContextNotFound" | "CustomerProjectContextNotPermitted" | "DisqualifiedLeadNotPermitted")
|
|
1029
1160
|
attr_accessor opportunity_id: ::String
|
|
1030
1161
|
attr_accessor resource_snapshot_job_id: ::String
|
|
1031
1162
|
attr_accessor engagement_invitation_id: ::String
|
|
@@ -1047,7 +1178,7 @@ module Aws::PartnerCentralSelling
|
|
|
1047
1178
|
attr_accessor start_time: ::Time
|
|
1048
1179
|
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
|
1049
1180
|
attr_accessor message: ::String
|
|
1050
|
-
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled")
|
|
1181
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled" | "ContextNotFound" | "CustomerProjectContextNotPermitted" | "DisqualifiedLeadNotPermitted")
|
|
1051
1182
|
attr_accessor opportunity_id: ::String
|
|
1052
1183
|
attr_accessor resource_snapshot_job_id: ::String
|
|
1053
1184
|
attr_accessor engagement_id: ::String
|
|
@@ -1055,6 +1186,29 @@ module Aws::PartnerCentralSelling
|
|
|
1055
1186
|
SENSITIVE: []
|
|
1056
1187
|
end
|
|
1057
1188
|
|
|
1189
|
+
class StartOpportunityFromEngagementTaskRequest
|
|
1190
|
+
attr_accessor catalog: ::String
|
|
1191
|
+
attr_accessor client_token: ::String
|
|
1192
|
+
attr_accessor identifier: ::String
|
|
1193
|
+
attr_accessor context_identifier: ::String
|
|
1194
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
1195
|
+
SENSITIVE: []
|
|
1196
|
+
end
|
|
1197
|
+
|
|
1198
|
+
class StartOpportunityFromEngagementTaskResponse
|
|
1199
|
+
attr_accessor task_id: ::String
|
|
1200
|
+
attr_accessor task_arn: ::String
|
|
1201
|
+
attr_accessor start_time: ::Time
|
|
1202
|
+
attr_accessor task_status: ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
|
1203
|
+
attr_accessor message: ::String
|
|
1204
|
+
attr_accessor reason_code: ("InvitationAccessDenied" | "InvitationValidationFailed" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "ResourceSnapshotJobValidationFailed" | "ResourceSnapshotJobConflict" | "EngagementValidationFailed" | "EngagementConflict" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict" | "ResourceSnapshotAccessDenied" | "ResourceSnapshotValidationFailed" | "ResourceSnapshotConflict" | "ServiceQuotaExceeded" | "RequestThrottled" | "ContextNotFound" | "CustomerProjectContextNotPermitted" | "DisqualifiedLeadNotPermitted")
|
|
1205
|
+
attr_accessor opportunity_id: ::String
|
|
1206
|
+
attr_accessor resource_snapshot_job_id: ::String
|
|
1207
|
+
attr_accessor engagement_id: ::String
|
|
1208
|
+
attr_accessor context_id: ::String
|
|
1209
|
+
SENSITIVE: []
|
|
1210
|
+
end
|
|
1211
|
+
|
|
1058
1212
|
class StartResourceSnapshotJobRequest
|
|
1059
1213
|
attr_accessor catalog: ::String
|
|
1060
1214
|
attr_accessor resource_snapshot_job_identifier: ::String
|
|
@@ -1104,6 +1258,45 @@ module Aws::PartnerCentralSelling
|
|
|
1104
1258
|
class UntagResourceResponse < Aws::EmptyStructure
|
|
1105
1259
|
end
|
|
1106
1260
|
|
|
1261
|
+
class UpdateEngagementContextPayload
|
|
1262
|
+
attr_accessor lead: Types::UpdateLeadContext
|
|
1263
|
+
attr_accessor customer_project: Types::CustomerProjectsContext
|
|
1264
|
+
attr_accessor unknown: untyped
|
|
1265
|
+
SENSITIVE: []
|
|
1266
|
+
|
|
1267
|
+
class Lead < UpdateEngagementContextPayload
|
|
1268
|
+
end
|
|
1269
|
+
class CustomerProject < UpdateEngagementContextPayload
|
|
1270
|
+
end
|
|
1271
|
+
class Unknown < UpdateEngagementContextPayload
|
|
1272
|
+
end
|
|
1273
|
+
end
|
|
1274
|
+
|
|
1275
|
+
class UpdateEngagementContextRequest
|
|
1276
|
+
attr_accessor catalog: ::String
|
|
1277
|
+
attr_accessor engagement_identifier: ::String
|
|
1278
|
+
attr_accessor context_identifier: ::String
|
|
1279
|
+
attr_accessor engagement_last_modified_at: ::Time
|
|
1280
|
+
attr_accessor type: ("CustomerProject" | "Lead")
|
|
1281
|
+
attr_accessor payload: Types::UpdateEngagementContextPayload
|
|
1282
|
+
SENSITIVE: []
|
|
1283
|
+
end
|
|
1284
|
+
|
|
1285
|
+
class UpdateEngagementContextResponse
|
|
1286
|
+
attr_accessor engagement_id: ::String
|
|
1287
|
+
attr_accessor engagement_arn: ::String
|
|
1288
|
+
attr_accessor engagement_last_modified_at: ::Time
|
|
1289
|
+
attr_accessor context_id: ::String
|
|
1290
|
+
SENSITIVE: []
|
|
1291
|
+
end
|
|
1292
|
+
|
|
1293
|
+
class UpdateLeadContext
|
|
1294
|
+
attr_accessor qualification_status: ::String
|
|
1295
|
+
attr_accessor customer: Types::LeadCustomer
|
|
1296
|
+
attr_accessor interaction: Types::LeadInteraction
|
|
1297
|
+
SENSITIVE: []
|
|
1298
|
+
end
|
|
1299
|
+
|
|
1107
1300
|
class UpdateOpportunityRequest
|
|
1108
1301
|
attr_accessor catalog: ::String
|
|
1109
1302
|
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")]
|
|
@@ -1136,7 +1329,7 @@ module Aws::PartnerCentralSelling
|
|
|
1136
1329
|
class ValidationExceptionError
|
|
1137
1330
|
attr_accessor field_name: ::String
|
|
1138
1331
|
attr_accessor message: ::String
|
|
1139
|
-
attr_accessor code: ("REQUIRED_FIELD_MISSING" | "INVALID_ENUM_VALUE" | "INVALID_STRING_FORMAT" | "INVALID_VALUE" | "TOO_MANY_VALUES" | "INVALID_RESOURCE_STATE" | "DUPLICATE_KEY_VALUE" | "VALUE_OUT_OF_RANGE" | "ACTION_NOT_PERMITTED")
|
|
1332
|
+
attr_accessor code: ("REQUIRED_FIELD_MISSING" | "INVALID_ENUM_VALUE" | "INVALID_STRING_FORMAT" | "INVALID_VALUE" | "NOT_ENOUGH_VALUES" | "TOO_MANY_VALUES" | "INVALID_RESOURCE_STATE" | "DUPLICATE_KEY_VALUE" | "VALUE_OUT_OF_RANGE" | "ACTION_NOT_PERMITTED")
|
|
1140
1333
|
SENSITIVE: []
|
|
1141
1334
|
end
|
|
1142
1335
|
end
|