@aws-sdk/client-partnercentral-selling 3.692.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.
Files changed (155) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +357 -0
  3. package/dist-cjs/PartnerCentralSelling.js +39 -0
  4. package/dist-cjs/PartnerCentralSellingClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/AssignOpportunityCommand.js +27 -0
  8. package/dist-cjs/commands/AssociateOpportunityCommand.js +26 -0
  9. package/dist-cjs/commands/CreateOpportunityCommand.js +27 -0
  10. package/dist-cjs/commands/DisassociateOpportunityCommand.js +26 -0
  11. package/dist-cjs/commands/GetAwsOpportunitySummaryCommand.js +27 -0
  12. package/dist-cjs/commands/GetEngagementInvitationCommand.js +27 -0
  13. package/dist-cjs/commands/GetOpportunityCommand.js +27 -0
  14. package/dist-cjs/commands/ListEngagementInvitationsCommand.js +27 -0
  15. package/dist-cjs/commands/ListOpportunitiesCommand.js +27 -0
  16. package/dist-cjs/commands/ListSolutionsCommand.js +26 -0
  17. package/dist-cjs/commands/RejectEngagementInvitationCommand.js +26 -0
  18. package/dist-cjs/commands/StartEngagementByAcceptingInvitationTaskCommand.js +26 -0
  19. package/dist-cjs/commands/StartEngagementFromOpportunityTaskCommand.js +26 -0
  20. package/dist-cjs/commands/UpdateOpportunityCommand.js +27 -0
  21. package/dist-cjs/commands/index.js +17 -0
  22. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  24. package/dist-cjs/endpoint/ruleset.js +7 -0
  25. package/dist-cjs/extensionConfiguration.js +2 -0
  26. package/dist-cjs/index.js +11 -0
  27. package/dist-cjs/models/PartnerCentralSellingServiceException.js +12 -0
  28. package/dist-cjs/models/index.js +4 -0
  29. package/dist-cjs/models/models_0.js +1097 -0
  30. package/dist-cjs/pagination/Interfaces.js +2 -0
  31. package/dist-cjs/pagination/ListEngagementInvitationsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListOpportunitiesPaginator.js +7 -0
  33. package/dist-cjs/pagination/ListSolutionsPaginator.js +7 -0
  34. package/dist-cjs/pagination/index.js +7 -0
  35. package/dist-cjs/protocols/Aws_json1_0.js +732 -0
  36. package/dist-cjs/runtimeConfig.browser.js +39 -0
  37. package/dist-cjs/runtimeConfig.js +50 -0
  38. package/dist-cjs/runtimeConfig.native.js +15 -0
  39. package/dist-cjs/runtimeConfig.shared.js +34 -0
  40. package/dist-cjs/runtimeExtensions.js +25 -0
  41. package/dist-es/PartnerCentralSelling.js +35 -0
  42. package/dist-es/PartnerCentralSellingClient.js +46 -0
  43. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  44. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  45. package/dist-es/commands/AssignOpportunityCommand.js +23 -0
  46. package/dist-es/commands/AssociateOpportunityCommand.js +22 -0
  47. package/dist-es/commands/CreateOpportunityCommand.js +23 -0
  48. package/dist-es/commands/DisassociateOpportunityCommand.js +22 -0
  49. package/dist-es/commands/GetAwsOpportunitySummaryCommand.js +23 -0
  50. package/dist-es/commands/GetEngagementInvitationCommand.js +23 -0
  51. package/dist-es/commands/GetOpportunityCommand.js +23 -0
  52. package/dist-es/commands/ListEngagementInvitationsCommand.js +23 -0
  53. package/dist-es/commands/ListOpportunitiesCommand.js +23 -0
  54. package/dist-es/commands/ListSolutionsCommand.js +22 -0
  55. package/dist-es/commands/RejectEngagementInvitationCommand.js +22 -0
  56. package/dist-es/commands/StartEngagementByAcceptingInvitationTaskCommand.js +22 -0
  57. package/dist-es/commands/StartEngagementFromOpportunityTaskCommand.js +22 -0
  58. package/dist-es/commands/UpdateOpportunityCommand.js +23 -0
  59. package/dist-es/commands/index.js +14 -0
  60. package/dist-es/endpoint/EndpointParameters.js +14 -0
  61. package/dist-es/endpoint/endpointResolver.js +14 -0
  62. package/dist-es/endpoint/ruleset.js +4 -0
  63. package/dist-es/extensionConfiguration.js +1 -0
  64. package/dist-es/index.js +6 -0
  65. package/dist-es/models/PartnerCentralSellingServiceException.js +8 -0
  66. package/dist-es/models/index.js +1 -0
  67. package/dist-es/models/models_0.js +1055 -0
  68. package/dist-es/pagination/Interfaces.js +1 -0
  69. package/dist-es/pagination/ListEngagementInvitationsPaginator.js +4 -0
  70. package/dist-es/pagination/ListOpportunitiesPaginator.js +4 -0
  71. package/dist-es/pagination/ListSolutionsPaginator.js +4 -0
  72. package/dist-es/pagination/index.js +4 -0
  73. package/dist-es/protocols/Aws_json1_0.js +701 -0
  74. package/dist-es/runtimeConfig.browser.js +34 -0
  75. package/dist-es/runtimeConfig.js +45 -0
  76. package/dist-es/runtimeConfig.native.js +11 -0
  77. package/dist-es/runtimeConfig.shared.js +30 -0
  78. package/dist-es/runtimeExtensions.js +21 -0
  79. package/dist-types/PartnerCentralSelling.d.ts +147 -0
  80. package/dist-types/PartnerCentralSellingClient.d.ts +222 -0
  81. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  82. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  83. package/dist-types/commands/AssignOpportunityCommand.d.ts +117 -0
  84. package/dist-types/commands/AssociateOpportunityCommand.d.ts +145 -0
  85. package/dist-types/commands/CreateOpportunityCommand.d.ts +244 -0
  86. package/dist-types/commands/DisassociateOpportunityCommand.d.ts +115 -0
  87. package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +167 -0
  88. package/dist-types/commands/GetEngagementInvitationCommand.d.ts +156 -0
  89. package/dist-types/commands/GetOpportunityCommand.d.ts +227 -0
  90. package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +134 -0
  91. package/dist-types/commands/ListOpportunitiesCommand.d.ts +197 -0
  92. package/dist-types/commands/ListSolutionsCommand.d.ts +123 -0
  93. package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +104 -0
  94. package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +127 -0
  95. package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +130 -0
  96. package/dist-types/commands/UpdateOpportunityCommand.d.ts +214 -0
  97. package/dist-types/commands/index.d.ts +14 -0
  98. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  99. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  100. package/dist-types/endpoint/ruleset.d.ts +2 -0
  101. package/dist-types/extensionConfiguration.d.ts +9 -0
  102. package/dist-types/index.d.ts +53 -0
  103. package/dist-types/models/PartnerCentralSellingServiceException.d.ts +14 -0
  104. package/dist-types/models/index.d.ts +1 -0
  105. package/dist-types/models/models_0.d.ts +4383 -0
  106. package/dist-types/pagination/Interfaces.d.ts +8 -0
  107. package/dist-types/pagination/ListEngagementInvitationsPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListOpportunitiesPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListSolutionsPaginator.d.ts +7 -0
  110. package/dist-types/pagination/index.d.ts +4 -0
  111. package/dist-types/protocols/Aws_json1_0.d.ts +128 -0
  112. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  113. package/dist-types/runtimeConfig.d.ts +48 -0
  114. package/dist-types/runtimeConfig.native.d.ts +47 -0
  115. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  116. package/dist-types/runtimeExtensions.d.ts +17 -0
  117. package/dist-types/ts3.4/PartnerCentralSelling.d.ts +257 -0
  118. package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +205 -0
  119. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  120. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  121. package/dist-types/ts3.4/commands/AssignOpportunityCommand.d.ts +46 -0
  122. package/dist-types/ts3.4/commands/AssociateOpportunityCommand.d.ts +46 -0
  123. package/dist-types/ts3.4/commands/CreateOpportunityCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/DisassociateOpportunityCommand.d.ts +47 -0
  125. package/dist-types/ts3.4/commands/GetAwsOpportunitySummaryCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/GetEngagementInvitationCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/GetOpportunityCommand.d.ts +50 -0
  128. package/dist-types/ts3.4/commands/ListEngagementInvitationsCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/ListOpportunitiesCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/ListSolutionsCommand.d.ts +50 -0
  131. package/dist-types/ts3.4/commands/RejectEngagementInvitationCommand.d.ts +47 -0
  132. package/dist-types/ts3.4/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/StartEngagementFromOpportunityTaskCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/UpdateOpportunityCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  136. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  137. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  138. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  139. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  140. package/dist-types/ts3.4/index.d.ts +9 -0
  141. package/dist-types/ts3.4/models/PartnerCentralSellingServiceException.d.ts +9 -0
  142. package/dist-types/ts3.4/models/index.d.ts +1 -0
  143. package/dist-types/ts3.4/models/models_0.d.ts +1419 -0
  144. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  145. package/dist-types/ts3.4/pagination/ListEngagementInvitationsPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListOpportunitiesPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListSolutionsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  149. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +173 -0
  150. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  151. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  152. package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
  153. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  154. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  155. package/package.json +103 -0
@@ -0,0 +1,167 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetAwsOpportunitySummaryRequest, GetAwsOpportunitySummaryResponse } from "../models/models_0";
4
+ import { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralSellingClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetAwsOpportunitySummaryCommand}.
14
+ */
15
+ export interface GetAwsOpportunitySummaryCommandInput extends GetAwsOpportunitySummaryRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetAwsOpportunitySummaryCommand}.
21
+ */
22
+ export interface GetAwsOpportunitySummaryCommandOutput extends GetAwsOpportunitySummaryResponse, __MetadataBearer {
23
+ }
24
+ declare const GetAwsOpportunitySummaryCommand_base: {
25
+ new (input: GetAwsOpportunitySummaryCommandInput): import("@smithy/smithy-client").CommandImpl<GetAwsOpportunitySummaryCommandInput, GetAwsOpportunitySummaryCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetAwsOpportunitySummaryCommandInput): import("@smithy/smithy-client").CommandImpl<GetAwsOpportunitySummaryCommandInput, GetAwsOpportunitySummaryCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>
31
+ * Retrieves a summary of an AWS Opportunity. This summary includes high-level details about the opportunity
32
+ * sourced from AWS, such as lifecycle information, customer details, and involvement type.
33
+ * It is useful for tracking updates on the AWS opportunity corresponding to an opportunity in the partner's account.
34
+ * </p>
35
+ * @example
36
+ * Use a bare-bones client and the command you need to make an API call.
37
+ * ```javascript
38
+ * import { PartnerCentralSellingClient, GetAwsOpportunitySummaryCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
39
+ * // const { PartnerCentralSellingClient, GetAwsOpportunitySummaryCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
40
+ * const client = new PartnerCentralSellingClient(config);
41
+ * const input = { // GetAwsOpportunitySummaryRequest
42
+ * Catalog: "STRING_VALUE", // required
43
+ * RelatedOpportunityIdentifier: "STRING_VALUE", // required
44
+ * };
45
+ * const command = new GetAwsOpportunitySummaryCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // GetAwsOpportunitySummaryResponse
48
+ * // Catalog: "STRING_VALUE", // required
49
+ * // RelatedOpportunityId: "STRING_VALUE",
50
+ * // Origin: "AWS Referral" || "Partner Referral",
51
+ * // InvolvementType: "For Visibility Only" || "Co-Sell",
52
+ * // Visibility: "Full" || "Limited",
53
+ * // LifeCycle: { // AwsOpportunityLifeCycle
54
+ * // TargetCloseDate: "STRING_VALUE",
55
+ * // ClosedLostReason: "Administrative" || "Business Associate Agreement" || "Company Acquired/Dissolved" || "Competitive Offering" || "Customer Data Requirement" || "Customer Deficiency" || "Customer Experience" || "Delay / Cancellation of Project" || "Duplicate" || "Duplicate Opportunity" || "Executive Blocker" || "Failed Vetting" || "Feature Limitation" || "Financial/Commercial" || "Insufficient Amazon Value" || "Insufficient AWS Value" || "International Constraints" || "Legal / Tax / Regulatory" || "Legal Terms and Conditions" || "Lost to Competitor" || "Lost to Competitor - Google" || "Lost to Competitor - Microsoft" || "Lost to Competitor - Other" || "Lost to Competitor - Rackspace" || "Lost to Competitor - SoftLayer" || "Lost to Competitor - VMWare" || "No Customer Reference" || "No Integration Resources" || "No Opportunity" || "No Perceived Value of MP" || "No Response" || "Not Committed to AWS" || "No Update" || "On Premises Deployment" || "Other" || "Other (Details in Description)" || "Partner Gap" || "Past Due" || "People/Relationship/Governance" || "Platform Technology Limitation" || "Preference for Competitor" || "Price" || "Product/Technology" || "Product Not on AWS" || "Security / Compliance" || "Self-Service" || "Technical Limitations" || "Term Sheet Impasse",
56
+ * // Stage: "Not Started" || "In Progress" || "Prospect" || "Engaged" || "Identified" || "Qualify" || "Research" || "Seller Engaged" || "Evaluating" || "Seller Registered" || "Term Sheet Negotiation" || "Contract Negotiation" || "Onboarding" || "Building Integration" || "Qualified" || "On-hold" || "Technical Validation" || "Business Validation" || "Committed" || "Launched" || "Deferred to Partner" || "Closed Lost" || "Completed" || "Closed Incomplete",
57
+ * // NextSteps: "STRING_VALUE",
58
+ * // NextStepsHistory: [ // ProfileNextStepsHistories
59
+ * // { // ProfileNextStepsHistory
60
+ * // Value: "STRING_VALUE", // required
61
+ * // Time: new Date("TIMESTAMP"), // required
62
+ * // },
63
+ * // ],
64
+ * // },
65
+ * // OpportunityTeam: [ // AwsOpportunityTeamMembersList
66
+ * // { // AwsTeamMember
67
+ * // Email: "STRING_VALUE",
68
+ * // FirstName: "STRING_VALUE",
69
+ * // LastName: "STRING_VALUE",
70
+ * // BusinessTitle: "AWSSalesRep" || "AWSAccountOwner" || "WWPSPDM" || "PDM" || "PSM" || "ISVSM",
71
+ * // },
72
+ * // ],
73
+ * // Insights: { // AwsOpportunityInsights
74
+ * // NextBestActions: "STRING_VALUE",
75
+ * // EngagementScore: "High" || "Medium" || "Low",
76
+ * // },
77
+ * // InvolvementTypeChangeReason: "Expansion Opportunity" || "Change in Deal Information" || "Customer Requested" || "Technical Complexity" || "Risk Mitigation",
78
+ * // RelatedEntityIds: { // AwsOpportunityRelatedEntities
79
+ * // AwsProducts: [ // AwsProductIdentifiers
80
+ * // "STRING_VALUE",
81
+ * // ],
82
+ * // Solutions: [ // SolutionIdentifiers
83
+ * // "STRING_VALUE",
84
+ * // ],
85
+ * // },
86
+ * // Customer: { // AwsOpportunityCustomer
87
+ * // Contacts: [ // CustomerContactsList
88
+ * // { // Contact
89
+ * // Email: "STRING_VALUE",
90
+ * // FirstName: "STRING_VALUE",
91
+ * // LastName: "STRING_VALUE",
92
+ * // BusinessTitle: "STRING_VALUE",
93
+ * // Phone: "STRING_VALUE",
94
+ * // },
95
+ * // ],
96
+ * // },
97
+ * // Project: { // AwsOpportunityProject
98
+ * // ExpectedCustomerSpend: [ // ExpectedCustomerSpendList
99
+ * // { // ExpectedCustomerSpend
100
+ * // Amount: "STRING_VALUE", // required
101
+ * // CurrencyCode: "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", // required
102
+ * // Frequency: "Monthly", // required
103
+ * // TargetCompany: "STRING_VALUE", // required
104
+ * // },
105
+ * // ],
106
+ * // },
107
+ * // };
108
+ *
109
+ * ```
110
+ *
111
+ * @param GetAwsOpportunitySummaryCommandInput - {@link GetAwsOpportunitySummaryCommandInput}
112
+ * @returns {@link GetAwsOpportunitySummaryCommandOutput}
113
+ * @see {@link GetAwsOpportunitySummaryCommandInput} for command's `input` shape.
114
+ * @see {@link GetAwsOpportunitySummaryCommandOutput} for command's `response` shape.
115
+ * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
116
+ *
117
+ * @throws {@link AccessDeniedException} (client fault)
118
+ * <p>This error occurs when you don't have permission to perform the
119
+ * requested action.
120
+ * </p>
121
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.
122
+ * </p>
123
+ *
124
+ * @throws {@link InternalServerException} (server fault)
125
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.
126
+ * </p>
127
+ * <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.
128
+ * </p>
129
+ *
130
+ * @throws {@link ResourceNotFoundException} (client fault)
131
+ * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.
132
+ * </p>
133
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.
134
+ * </p>
135
+ *
136
+ * @throws {@link ThrottlingException} (client fault)
137
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your
138
+ * usage to avoid throttling.
139
+ * </p>
140
+ * <p>This error occurs when there are too many requests sent. Review the provided
141
+ * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">quotas</a> and retry after the provided delay.
142
+ * </p>
143
+ *
144
+ * @throws {@link ValidationException} (client fault)
145
+ * <p>The input fails to satisfy the constraints specified by the service or business validation rules.
146
+ * </p>
147
+ * <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
148
+ * </p>
149
+ *
150
+ * @throws {@link PartnerCentralSellingServiceException}
151
+ * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
152
+ *
153
+ * @public
154
+ */
155
+ export declare class GetAwsOpportunitySummaryCommand extends GetAwsOpportunitySummaryCommand_base {
156
+ /** @internal type navigation helper, not in runtime. */
157
+ protected static __types: {
158
+ api: {
159
+ input: GetAwsOpportunitySummaryRequest;
160
+ output: GetAwsOpportunitySummaryResponse;
161
+ };
162
+ sdk: {
163
+ input: GetAwsOpportunitySummaryCommandInput;
164
+ output: GetAwsOpportunitySummaryCommandOutput;
165
+ };
166
+ };
167
+ }
@@ -0,0 +1,156 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetEngagementInvitationRequest, GetEngagementInvitationResponse } from "../models/models_0";
4
+ import { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralSellingClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetEngagementInvitationCommand}.
14
+ */
15
+ export interface GetEngagementInvitationCommandInput extends GetEngagementInvitationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetEngagementInvitationCommand}.
21
+ */
22
+ export interface GetEngagementInvitationCommandOutput extends GetEngagementInvitationResponse, __MetadataBearer {
23
+ }
24
+ declare const GetEngagementInvitationCommand_base: {
25
+ new (input: GetEngagementInvitationCommandInput): import("@smithy/smithy-client").CommandImpl<GetEngagementInvitationCommandInput, GetEngagementInvitationCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetEngagementInvitationCommandInput): import("@smithy/smithy-client").CommandImpl<GetEngagementInvitationCommandInput, GetEngagementInvitationCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves the details of an engagement invitation shared by AWS with a partner. The information includes key aspects such as the customer, project details, and lifecycle information related to the engagement.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { PartnerCentralSellingClient, GetEngagementInvitationCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
35
+ * // const { PartnerCentralSellingClient, GetEngagementInvitationCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
36
+ * const client = new PartnerCentralSellingClient(config);
37
+ * const input = { // GetEngagementInvitationRequest
38
+ * Catalog: "STRING_VALUE", // required
39
+ * Identifier: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new GetEngagementInvitationCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // GetEngagementInvitationResponse
44
+ * // Arn: "STRING_VALUE",
45
+ * // PayloadType: "OpportunityInvitation",
46
+ * // Id: "STRING_VALUE", // required
47
+ * // EngagementTitle: "STRING_VALUE",
48
+ * // Status: "ACCEPTED" || "PENDING" || "REJECTED" || "EXPIRED",
49
+ * // InvitationDate: new Date("TIMESTAMP"),
50
+ * // ExpirationDate: new Date("TIMESTAMP"),
51
+ * // SenderAwsAccountId: "STRING_VALUE",
52
+ * // SenderCompanyName: "STRING_VALUE",
53
+ * // Receiver: { // Receiver Union: only one key present
54
+ * // Account: { // AccountReceiver
55
+ * // Alias: "STRING_VALUE",
56
+ * // AwsAccountId: "STRING_VALUE", // required
57
+ * // },
58
+ * // },
59
+ * // Catalog: "STRING_VALUE", // required
60
+ * // RejectionReason: "STRING_VALUE",
61
+ * // Payload: { // Payload Union: only one key present
62
+ * // OpportunityInvitation: { // OpportunityInvitationPayload
63
+ * // SenderContacts: [ // SenderContactList
64
+ * // { // SenderContact
65
+ * // Email: "STRING_VALUE", // required
66
+ * // FirstName: "STRING_VALUE",
67
+ * // LastName: "STRING_VALUE",
68
+ * // BusinessTitle: "STRING_VALUE",
69
+ * // Phone: "STRING_VALUE",
70
+ * // },
71
+ * // ],
72
+ * // ReceiverResponsibilities: [ // ReceiverResponsibilityList // required
73
+ * // "Distributor" || "Reseller" || "Hardware Partner" || "Managed Service Provider" || "Software Partner" || "Services Partner" || "Training Partner" || "Co-Sell Facilitator" || "Facilitator",
74
+ * // ],
75
+ * // Customer: { // EngagementCustomer
76
+ * // 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", // required
77
+ * // CompanyName: "STRING_VALUE", // required
78
+ * // WebsiteUrl: "STRING_VALUE", // required
79
+ * // CountryCode: "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", // required
80
+ * // },
81
+ * // Project: { // ProjectDetails
82
+ * // BusinessProblem: "STRING_VALUE", // required
83
+ * // Title: "STRING_VALUE", // required
84
+ * // TargetCompletionDate: "STRING_VALUE", // required
85
+ * // ExpectedCustomerSpend: [ // ExpectedCustomerSpendList // required
86
+ * // { // ExpectedCustomerSpend
87
+ * // Amount: "STRING_VALUE", // required
88
+ * // CurrencyCode: "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", // required
89
+ * // Frequency: "Monthly", // required
90
+ * // TargetCompany: "STRING_VALUE", // required
91
+ * // },
92
+ * // ],
93
+ * // },
94
+ * // },
95
+ * // },
96
+ * // };
97
+ *
98
+ * ```
99
+ *
100
+ * @param GetEngagementInvitationCommandInput - {@link GetEngagementInvitationCommandInput}
101
+ * @returns {@link GetEngagementInvitationCommandOutput}
102
+ * @see {@link GetEngagementInvitationCommandInput} for command's `input` shape.
103
+ * @see {@link GetEngagementInvitationCommandOutput} for command's `response` shape.
104
+ * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
105
+ *
106
+ * @throws {@link AccessDeniedException} (client fault)
107
+ * <p>This error occurs when you don't have permission to perform the
108
+ * requested action.
109
+ * </p>
110
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.
111
+ * </p>
112
+ *
113
+ * @throws {@link InternalServerException} (server fault)
114
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.
115
+ * </p>
116
+ * <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.
117
+ * </p>
118
+ *
119
+ * @throws {@link ResourceNotFoundException} (client fault)
120
+ * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.
121
+ * </p>
122
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.
123
+ * </p>
124
+ *
125
+ * @throws {@link ThrottlingException} (client fault)
126
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your
127
+ * usage to avoid throttling.
128
+ * </p>
129
+ * <p>This error occurs when there are too many requests sent. Review the provided
130
+ * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">quotas</a> and retry after the provided delay.
131
+ * </p>
132
+ *
133
+ * @throws {@link ValidationException} (client fault)
134
+ * <p>The input fails to satisfy the constraints specified by the service or business validation rules.
135
+ * </p>
136
+ * <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
137
+ * </p>
138
+ *
139
+ * @throws {@link PartnerCentralSellingServiceException}
140
+ * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
141
+ *
142
+ * @public
143
+ */
144
+ export declare class GetEngagementInvitationCommand extends GetEngagementInvitationCommand_base {
145
+ /** @internal type navigation helper, not in runtime. */
146
+ protected static __types: {
147
+ api: {
148
+ input: GetEngagementInvitationRequest;
149
+ output: GetEngagementInvitationResponse;
150
+ };
151
+ sdk: {
152
+ input: GetEngagementInvitationCommandInput;
153
+ output: GetEngagementInvitationCommandOutput;
154
+ };
155
+ };
156
+ }
@@ -0,0 +1,227 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetOpportunityRequest, GetOpportunityResponse } from "../models/models_0";
4
+ import { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralSellingClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetOpportunityCommand}.
14
+ */
15
+ export interface GetOpportunityCommandInput extends GetOpportunityRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetOpportunityCommand}.
21
+ */
22
+ export interface GetOpportunityCommandOutput extends GetOpportunityResponse, __MetadataBearer {
23
+ }
24
+ declare const GetOpportunityCommand_base: {
25
+ new (input: GetOpportunityCommandInput): import("@smithy/smithy-client").CommandImpl<GetOpportunityCommandInput, GetOpportunityCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetOpportunityCommandInput): import("@smithy/smithy-client").CommandImpl<GetOpportunityCommandInput, GetOpportunityCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>
31
+ * Fetches the <code>Opportunity</code> record from Partner Central by a given <code>Identifier</code>.
32
+ * </p>
33
+ * <p>
34
+ * Use the <code>ListOpportunities</code> action or the event notification (from Amazon EventBridge) to obtain this identifier.
35
+ * </p>
36
+ * @example
37
+ * Use a bare-bones client and the command you need to make an API call.
38
+ * ```javascript
39
+ * import { PartnerCentralSellingClient, GetOpportunityCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
40
+ * // const { PartnerCentralSellingClient, GetOpportunityCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
41
+ * const client = new PartnerCentralSellingClient(config);
42
+ * const input = { // GetOpportunityRequest
43
+ * Catalog: "STRING_VALUE", // required
44
+ * Identifier: "STRING_VALUE", // required
45
+ * };
46
+ * const command = new GetOpportunityCommand(input);
47
+ * const response = await client.send(command);
48
+ * // { // GetOpportunityResponse
49
+ * // Catalog: "STRING_VALUE", // required
50
+ * // PrimaryNeedsFromAws: [ // PrimaryNeedsFromAws
51
+ * // "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",
52
+ * // ],
53
+ * // NationalSecurity: "Yes" || "No",
54
+ * // PartnerOpportunityIdentifier: "STRING_VALUE",
55
+ * // Customer: { // Customer
56
+ * // Account: { // Account
57
+ * // 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",
58
+ * // OtherIndustry: "STRING_VALUE",
59
+ * // CompanyName: "STRING_VALUE", // required
60
+ * // WebsiteUrl: "STRING_VALUE",
61
+ * // AwsAccountId: "STRING_VALUE",
62
+ * // Address: { // Address
63
+ * // City: "STRING_VALUE",
64
+ * // PostalCode: "STRING_VALUE",
65
+ * // StateOrRegion: "STRING_VALUE",
66
+ * // CountryCode: "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",
67
+ * // StreetAddress: "STRING_VALUE",
68
+ * // },
69
+ * // Duns: "STRING_VALUE",
70
+ * // },
71
+ * // Contacts: [ // CustomerContactsList
72
+ * // { // Contact
73
+ * // Email: "STRING_VALUE",
74
+ * // FirstName: "STRING_VALUE",
75
+ * // LastName: "STRING_VALUE",
76
+ * // BusinessTitle: "STRING_VALUE",
77
+ * // Phone: "STRING_VALUE",
78
+ * // },
79
+ * // ],
80
+ * // },
81
+ * // Project: { // Project
82
+ * // DeliveryModels: [ // DeliveryModels
83
+ * // "SaaS or PaaS" || "BYOL or AMI" || "Managed Services" || "Professional Services" || "Resell" || "Other",
84
+ * // ],
85
+ * // ExpectedCustomerSpend: [ // ExpectedCustomerSpendList
86
+ * // { // ExpectedCustomerSpend
87
+ * // Amount: "STRING_VALUE", // required
88
+ * // CurrencyCode: "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", // required
89
+ * // Frequency: "Monthly", // required
90
+ * // TargetCompany: "STRING_VALUE", // required
91
+ * // },
92
+ * // ],
93
+ * // Title: "STRING_VALUE",
94
+ * // ApnPrograms: [ // ApnPrograms
95
+ * // "STRING_VALUE",
96
+ * // ],
97
+ * // CustomerBusinessProblem: "STRING_VALUE",
98
+ * // CustomerUseCase: "STRING_VALUE",
99
+ * // RelatedOpportunityIdentifier: "STRING_VALUE",
100
+ * // SalesActivities: [ // SalesActivities
101
+ * // "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",
102
+ * // ],
103
+ * // CompetitorName: "Oracle Cloud" || "On-Prem" || "Co-location" || "Akamai" || "AliCloud" || "Google Cloud Platform" || "IBM Softlayer" || "Microsoft Azure" || "Other- Cost Optimization" || "No Competition" || "*Other",
104
+ * // OtherCompetitorNames: "STRING_VALUE",
105
+ * // OtherSolutionDescription: "STRING_VALUE",
106
+ * // AdditionalComments: "STRING_VALUE",
107
+ * // },
108
+ * // OpportunityType: "Net New Business" || "Flat Renewal" || "Expansion",
109
+ * // Marketing: { // Marketing
110
+ * // CampaignName: "STRING_VALUE",
111
+ * // Source: "Marketing Activity" || "None",
112
+ * // UseCases: [ // UseCases
113
+ * // "STRING_VALUE",
114
+ * // ],
115
+ * // Channels: [ // Channels
116
+ * // "AWS Marketing Central" || "Content Syndication" || "Display" || "Email" || "Live Event" || "Out Of Home (OOH)" || "Print" || "Search" || "Social" || "Telemarketing" || "TV" || "Video" || "Virtual Event",
117
+ * // ],
118
+ * // AwsFundingUsed: "Yes" || "No",
119
+ * // },
120
+ * // SoftwareRevenue: { // SoftwareRevenue
121
+ * // DeliveryModel: "Contract" || "Pay-as-you-go" || "Subscription",
122
+ * // Value: { // MonetaryValue
123
+ * // Amount: "STRING_VALUE", // required
124
+ * // CurrencyCode: "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", // required
125
+ * // },
126
+ * // EffectiveDate: "STRING_VALUE",
127
+ * // ExpirationDate: "STRING_VALUE",
128
+ * // },
129
+ * // Id: "STRING_VALUE", // required
130
+ * // LastModifiedDate: new Date("TIMESTAMP"), // required
131
+ * // CreatedDate: new Date("TIMESTAMP"), // required
132
+ * // RelatedEntityIdentifiers: { // RelatedEntityIdentifiers
133
+ * // AwsMarketplaceOffers: [ // AwsMarketplaceOfferIdentifiers
134
+ * // "STRING_VALUE",
135
+ * // ],
136
+ * // Solutions: [ // SolutionIdentifiers
137
+ * // "STRING_VALUE",
138
+ * // ],
139
+ * // AwsProducts: [ // AwsProductIdentifiers
140
+ * // "STRING_VALUE",
141
+ * // ],
142
+ * // },
143
+ * // LifeCycle: { // LifeCycle
144
+ * // Stage: "Prospect" || "Qualified" || "Technical Validation" || "Business Validation" || "Committed" || "Launched" || "Closed Lost",
145
+ * // ClosedLostReason: "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",
146
+ * // NextSteps: "STRING_VALUE",
147
+ * // TargetCloseDate: "STRING_VALUE",
148
+ * // ReviewStatus: "Pending Submission" || "Submitted" || "In review" || "Approved" || "Rejected" || "Action Required",
149
+ * // ReviewComments: "STRING_VALUE",
150
+ * // ReviewStatusReason: "STRING_VALUE",
151
+ * // NextStepsHistory: [ // NextStepsHistories
152
+ * // { // NextStepsHistory
153
+ * // Value: "STRING_VALUE", // required
154
+ * // Time: new Date("TIMESTAMP"), // required
155
+ * // },
156
+ * // ],
157
+ * // },
158
+ * // OpportunityTeam: [ // PartnerOpportunityTeamMembersList
159
+ * // {
160
+ * // Email: "STRING_VALUE",
161
+ * // FirstName: "STRING_VALUE",
162
+ * // LastName: "STRING_VALUE",
163
+ * // BusinessTitle: "STRING_VALUE",
164
+ * // Phone: "STRING_VALUE",
165
+ * // },
166
+ * // ],
167
+ * // };
168
+ *
169
+ * ```
170
+ *
171
+ * @param GetOpportunityCommandInput - {@link GetOpportunityCommandInput}
172
+ * @returns {@link GetOpportunityCommandOutput}
173
+ * @see {@link GetOpportunityCommandInput} for command's `input` shape.
174
+ * @see {@link GetOpportunityCommandOutput} for command's `response` shape.
175
+ * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
176
+ *
177
+ * @throws {@link AccessDeniedException} (client fault)
178
+ * <p>This error occurs when you don't have permission to perform the
179
+ * requested action.
180
+ * </p>
181
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.
182
+ * </p>
183
+ *
184
+ * @throws {@link InternalServerException} (server fault)
185
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.
186
+ * </p>
187
+ * <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.
188
+ * </p>
189
+ *
190
+ * @throws {@link ResourceNotFoundException} (client fault)
191
+ * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.
192
+ * </p>
193
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.
194
+ * </p>
195
+ *
196
+ * @throws {@link ThrottlingException} (client fault)
197
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your
198
+ * usage to avoid throttling.
199
+ * </p>
200
+ * <p>This error occurs when there are too many requests sent. Review the provided
201
+ * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">quotas</a> and retry after the provided delay.
202
+ * </p>
203
+ *
204
+ * @throws {@link ValidationException} (client fault)
205
+ * <p>The input fails to satisfy the constraints specified by the service or business validation rules.
206
+ * </p>
207
+ * <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
208
+ * </p>
209
+ *
210
+ * @throws {@link PartnerCentralSellingServiceException}
211
+ * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
212
+ *
213
+ * @public
214
+ */
215
+ export declare class GetOpportunityCommand extends GetOpportunityCommand_base {
216
+ /** @internal type navigation helper, not in runtime. */
217
+ protected static __types: {
218
+ api: {
219
+ input: GetOpportunityRequest;
220
+ output: GetOpportunityResponse;
221
+ };
222
+ sdk: {
223
+ input: GetOpportunityCommandInput;
224
+ output: GetOpportunityCommandOutput;
225
+ };
226
+ };
227
+ }