@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,1097 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AccountFilterSensitiveLog = exports.AddressFilterSensitiveLog = exports.SolutionStatus = exports.SolutionSortName = exports.OpportunitySortName = exports.InvolvementTypeChangeReason = exports.RevenueModel = exports.SalesActivity = exports.DeliveryModel = exports.CompetitorName = exports.PrimaryNeedFromAws = exports.OpportunityOrigin = exports.OpportunityType = exports.NationalSecurity = exports.MarketingSource = exports.Channel = exports.Stage = exports.ReviewStatus = exports.ClosedLostReason = exports.SortOrder = exports.OpportunityEngagementInvitationSortName = exports.ParticipantType = exports.InvitationStatus = exports.Receiver = exports.EngagementInvitationPayloadType = exports.Payload = exports.ReceiverResponsibility = exports.Visibility = exports.SalesInvolvementType = exports.TaskStatus = exports.ReasonCode = exports.ServiceQuotaExceededException = exports.ConflictException = exports.PaymentFrequency = exports.CurrencyCode = exports.AwsOpportunityStage = exports.EngagementScore = exports.AwsMemberBusinessTitle = exports.AwsFundingUsed = exports.AwsClosedLostReason = exports.RelatedEntityType = exports.ValidationException = exports.ValidationExceptionReason = exports.ValidationExceptionErrorCode = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.Industry = exports.CountryCode = exports.AccessDeniedException = void 0;
4
+ exports.UpdateOpportunityRequestFilterSensitiveLog = exports.ListOpportunitiesResponseFilterSensitiveLog = exports.OpportunitySummaryFilterSensitiveLog = exports.LifeCycleSummaryFilterSensitiveLog = exports.CustomerSummaryFilterSensitiveLog = exports.GetOpportunityResponseFilterSensitiveLog = exports.GetAwsOpportunitySummaryResponseFilterSensitiveLog = exports.CreateOpportunityRequestFilterSensitiveLog = exports.ProjectFilterSensitiveLog = exports.LifeCycleFilterSensitiveLog = exports.CustomerFilterSensitiveLog = exports.ListEngagementInvitationsResponseFilterSensitiveLog = exports.EngagementInvitationSummaryFilterSensitiveLog = exports.GetEngagementInvitationResponseFilterSensitiveLog = exports.ReceiverFilterSensitiveLog = exports.PayloadFilterSensitiveLog = exports.OpportunityInvitationPayloadFilterSensitiveLog = exports.SenderContactFilterSensitiveLog = exports.ProjectDetailsFilterSensitiveLog = exports.EngagementCustomerFilterSensitiveLog = exports.AwsTeamMemberFilterSensitiveLog = exports.AwsOpportunityLifeCycleFilterSensitiveLog = exports.AwsOpportunityCustomerFilterSensitiveLog = exports.ContactFilterSensitiveLog = exports.AssignOpportunityRequestFilterSensitiveLog = exports.AssigneeContactFilterSensitiveLog = exports.AccountSummaryFilterSensitiveLog = exports.AddressSummaryFilterSensitiveLog = exports.AccountReceiverFilterSensitiveLog = void 0;
5
+ const smithy_client_1 = require("@smithy/smithy-client");
6
+ const PartnerCentralSellingServiceException_1 = require("./PartnerCentralSellingServiceException");
7
+ class AccessDeniedException extends PartnerCentralSellingServiceException_1.PartnerCentralSellingServiceException {
8
+ constructor(opts) {
9
+ super({
10
+ name: "AccessDeniedException",
11
+ $fault: "client",
12
+ ...opts,
13
+ });
14
+ this.name = "AccessDeniedException";
15
+ this.$fault = "client";
16
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
17
+ this.Message = opts.Message;
18
+ }
19
+ }
20
+ exports.AccessDeniedException = AccessDeniedException;
21
+ exports.CountryCode = {
22
+ AD: "AD",
23
+ AE: "AE",
24
+ AF: "AF",
25
+ AG: "AG",
26
+ AI: "AI",
27
+ AL: "AL",
28
+ AM: "AM",
29
+ AN: "AN",
30
+ AO: "AO",
31
+ AQ: "AQ",
32
+ AR: "AR",
33
+ AS: "AS",
34
+ AT: "AT",
35
+ AU: "AU",
36
+ AW: "AW",
37
+ AX: "AX",
38
+ AZ: "AZ",
39
+ BA: "BA",
40
+ BB: "BB",
41
+ BD: "BD",
42
+ BE: "BE",
43
+ BF: "BF",
44
+ BG: "BG",
45
+ BH: "BH",
46
+ BI: "BI",
47
+ BJ: "BJ",
48
+ BL: "BL",
49
+ BM: "BM",
50
+ BN: "BN",
51
+ BO: "BO",
52
+ BQ: "BQ",
53
+ BR: "BR",
54
+ BS: "BS",
55
+ BT: "BT",
56
+ BV: "BV",
57
+ BW: "BW",
58
+ BY: "BY",
59
+ BZ: "BZ",
60
+ CA: "CA",
61
+ CC: "CC",
62
+ CD: "CD",
63
+ CF: "CF",
64
+ CG: "CG",
65
+ CH: "CH",
66
+ CI: "CI",
67
+ CK: "CK",
68
+ CL: "CL",
69
+ CM: "CM",
70
+ CN: "CN",
71
+ CO: "CO",
72
+ CR: "CR",
73
+ CU: "CU",
74
+ CV: "CV",
75
+ CW: "CW",
76
+ CX: "CX",
77
+ CY: "CY",
78
+ CZ: "CZ",
79
+ DE: "DE",
80
+ DJ: "DJ",
81
+ DK: "DK",
82
+ DM: "DM",
83
+ DO: "DO",
84
+ DZ: "DZ",
85
+ EC: "EC",
86
+ EE: "EE",
87
+ EG: "EG",
88
+ EH: "EH",
89
+ ER: "ER",
90
+ ES: "ES",
91
+ ET: "ET",
92
+ FI: "FI",
93
+ FJ: "FJ",
94
+ FK: "FK",
95
+ FM: "FM",
96
+ FO: "FO",
97
+ FR: "FR",
98
+ GA: "GA",
99
+ GB: "GB",
100
+ GD: "GD",
101
+ GE: "GE",
102
+ GF: "GF",
103
+ GG: "GG",
104
+ GH: "GH",
105
+ GI: "GI",
106
+ GL: "GL",
107
+ GM: "GM",
108
+ GN: "GN",
109
+ GP: "GP",
110
+ GQ: "GQ",
111
+ GR: "GR",
112
+ GS: "GS",
113
+ GT: "GT",
114
+ GU: "GU",
115
+ GW: "GW",
116
+ GY: "GY",
117
+ HK: "HK",
118
+ HM: "HM",
119
+ HN: "HN",
120
+ HR: "HR",
121
+ HT: "HT",
122
+ HU: "HU",
123
+ ID: "ID",
124
+ IE: "IE",
125
+ IL: "IL",
126
+ IM: "IM",
127
+ IN: "IN",
128
+ IO: "IO",
129
+ IQ: "IQ",
130
+ IR: "IR",
131
+ IS: "IS",
132
+ IT: "IT",
133
+ JE: "JE",
134
+ JM: "JM",
135
+ JO: "JO",
136
+ JP: "JP",
137
+ KE: "KE",
138
+ KG: "KG",
139
+ KH: "KH",
140
+ KI: "KI",
141
+ KM: "KM",
142
+ KN: "KN",
143
+ KR: "KR",
144
+ KW: "KW",
145
+ KY: "KY",
146
+ KZ: "KZ",
147
+ LA: "LA",
148
+ LB: "LB",
149
+ LC: "LC",
150
+ LI: "LI",
151
+ LK: "LK",
152
+ LR: "LR",
153
+ LS: "LS",
154
+ LT: "LT",
155
+ LU: "LU",
156
+ LV: "LV",
157
+ LY: "LY",
158
+ MA: "MA",
159
+ MC: "MC",
160
+ MD: "MD",
161
+ ME: "ME",
162
+ MF: "MF",
163
+ MG: "MG",
164
+ MH: "MH",
165
+ MK: "MK",
166
+ ML: "ML",
167
+ MM: "MM",
168
+ MN: "MN",
169
+ MO: "MO",
170
+ MP: "MP",
171
+ MQ: "MQ",
172
+ MR: "MR",
173
+ MS: "MS",
174
+ MT: "MT",
175
+ MU: "MU",
176
+ MV: "MV",
177
+ MW: "MW",
178
+ MX: "MX",
179
+ MY: "MY",
180
+ MZ: "MZ",
181
+ NA: "NA",
182
+ NC: "NC",
183
+ NE: "NE",
184
+ NF: "NF",
185
+ NG: "NG",
186
+ NI: "NI",
187
+ NL: "NL",
188
+ NO: "NO",
189
+ NP: "NP",
190
+ NR: "NR",
191
+ NU: "NU",
192
+ NZ: "NZ",
193
+ OM: "OM",
194
+ PA: "PA",
195
+ PE: "PE",
196
+ PF: "PF",
197
+ PG: "PG",
198
+ PH: "PH",
199
+ PK: "PK",
200
+ PL: "PL",
201
+ PM: "PM",
202
+ PN: "PN",
203
+ PR: "PR",
204
+ PS: "PS",
205
+ PT: "PT",
206
+ PW: "PW",
207
+ PY: "PY",
208
+ QA: "QA",
209
+ RE: "RE",
210
+ RO: "RO",
211
+ RS: "RS",
212
+ RU: "RU",
213
+ RW: "RW",
214
+ SA: "SA",
215
+ SB: "SB",
216
+ SC: "SC",
217
+ SD: "SD",
218
+ SE: "SE",
219
+ SG: "SG",
220
+ SH: "SH",
221
+ SI: "SI",
222
+ SJ: "SJ",
223
+ SK: "SK",
224
+ SL: "SL",
225
+ SM: "SM",
226
+ SN: "SN",
227
+ SO: "SO",
228
+ SR: "SR",
229
+ SS: "SS",
230
+ ST: "ST",
231
+ SV: "SV",
232
+ SX: "SX",
233
+ SY: "SY",
234
+ SZ: "SZ",
235
+ TC: "TC",
236
+ TD: "TD",
237
+ TF: "TF",
238
+ TG: "TG",
239
+ TH: "TH",
240
+ TJ: "TJ",
241
+ TK: "TK",
242
+ TL: "TL",
243
+ TM: "TM",
244
+ TN: "TN",
245
+ TO: "TO",
246
+ TR: "TR",
247
+ TT: "TT",
248
+ TV: "TV",
249
+ TW: "TW",
250
+ TZ: "TZ",
251
+ UA: "UA",
252
+ UG: "UG",
253
+ UM: "UM",
254
+ US: "US",
255
+ UY: "UY",
256
+ UZ: "UZ",
257
+ VA: "VA",
258
+ VC: "VC",
259
+ VE: "VE",
260
+ VG: "VG",
261
+ VI: "VI",
262
+ VN: "VN",
263
+ VU: "VU",
264
+ WF: "WF",
265
+ WS: "WS",
266
+ YE: "YE",
267
+ YT: "YT",
268
+ ZA: "ZA",
269
+ ZM: "ZM",
270
+ ZW: "ZW",
271
+ };
272
+ exports.Industry = {
273
+ AEROSPACE_SATELLITE: "Aerospace",
274
+ AGRICULTURE: "Agriculture",
275
+ AUTOMOTIVE: "Automotive",
276
+ COMPUTERS_ELECTRONICS: "Computers and Electronics",
277
+ CONSUMER_GOODS: "Consumer Goods",
278
+ EDUCATION: "Education",
279
+ ENERGY_OIL_GAS: "Energy - Oil and Gas",
280
+ ENERGY_POWER_UTILITIES: "Energy - Power and Utilities",
281
+ FINANCIAL_SERVICES: "Financial Services",
282
+ GAMING: "Gaming",
283
+ GOVERNMENT: "Government",
284
+ HEALTHCARE: "Healthcare",
285
+ HOSPITALITY: "Hospitality",
286
+ LIFE_SCIENCES: "Life Sciences",
287
+ MANUFACTURING: "Manufacturing",
288
+ MARKETING_ADVERTISING: "Marketing and Advertising",
289
+ MEDIA_ENTERTAINMENT: "Media and Entertainment",
290
+ MINING: "Mining",
291
+ NON_PROFIT_ORGANIZATION: "Non-Profit Organization",
292
+ OTHER: "Other",
293
+ PROFESSIONAL_SERVICES: "Professional Services",
294
+ REALESTATE_CONSTRUCTION: "Real Estate and Construction",
295
+ RETAIL: "Retail",
296
+ SOFTWARE_INTERNET: "Software and Internet",
297
+ TELECOMMUNICATIONS: "Telecommunications",
298
+ TRANSPORTATION_LOGISTICS: "Transportation and Logistics",
299
+ TRAVEL: "Travel",
300
+ WHOLESALE_DISTRIBUTION: "Wholesale and Distribution",
301
+ };
302
+ class InternalServerException extends PartnerCentralSellingServiceException_1.PartnerCentralSellingServiceException {
303
+ constructor(opts) {
304
+ super({
305
+ name: "InternalServerException",
306
+ $fault: "server",
307
+ ...opts,
308
+ });
309
+ this.name = "InternalServerException";
310
+ this.$fault = "server";
311
+ Object.setPrototypeOf(this, InternalServerException.prototype);
312
+ this.Message = opts.Message;
313
+ }
314
+ }
315
+ exports.InternalServerException = InternalServerException;
316
+ class ResourceNotFoundException extends PartnerCentralSellingServiceException_1.PartnerCentralSellingServiceException {
317
+ constructor(opts) {
318
+ super({
319
+ name: "ResourceNotFoundException",
320
+ $fault: "client",
321
+ ...opts,
322
+ });
323
+ this.name = "ResourceNotFoundException";
324
+ this.$fault = "client";
325
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
326
+ this.Message = opts.Message;
327
+ }
328
+ }
329
+ exports.ResourceNotFoundException = ResourceNotFoundException;
330
+ class ThrottlingException extends PartnerCentralSellingServiceException_1.PartnerCentralSellingServiceException {
331
+ constructor(opts) {
332
+ super({
333
+ name: "ThrottlingException",
334
+ $fault: "client",
335
+ ...opts,
336
+ });
337
+ this.name = "ThrottlingException";
338
+ this.$fault = "client";
339
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
340
+ this.Message = opts.Message;
341
+ }
342
+ }
343
+ exports.ThrottlingException = ThrottlingException;
344
+ exports.ValidationExceptionErrorCode = {
345
+ ACTION_NOT_PERMITTED: "ACTION_NOT_PERMITTED",
346
+ DUPLICATE_KEY_VALUE: "DUPLICATE_KEY_VALUE",
347
+ INVALID_ENUM_VALUE: "INVALID_ENUM_VALUE",
348
+ INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE",
349
+ INVALID_STRING_FORMAT: "INVALID_STRING_FORMAT",
350
+ INVALID_VALUE: "INVALID_VALUE",
351
+ REQUIRED_FIELD_MISSING: "REQUIRED_FIELD_MISSING",
352
+ TOO_MANY_VALUES: "TOO_MANY_VALUES",
353
+ VALUE_OUT_OF_RANGE: "VALUE_OUT_OF_RANGE",
354
+ };
355
+ exports.ValidationExceptionReason = {
356
+ BUSINESS_VALIDATION_FAILED: "BUSINESS_VALIDATION_FAILED",
357
+ REQUEST_VALIDATION_FAILED: "REQUEST_VALIDATION_FAILED",
358
+ };
359
+ class ValidationException extends PartnerCentralSellingServiceException_1.PartnerCentralSellingServiceException {
360
+ constructor(opts) {
361
+ super({
362
+ name: "ValidationException",
363
+ $fault: "client",
364
+ ...opts,
365
+ });
366
+ this.name = "ValidationException";
367
+ this.$fault = "client";
368
+ Object.setPrototypeOf(this, ValidationException.prototype);
369
+ this.Message = opts.Message;
370
+ this.Reason = opts.Reason;
371
+ this.ErrorList = opts.ErrorList;
372
+ }
373
+ }
374
+ exports.ValidationException = ValidationException;
375
+ exports.RelatedEntityType = {
376
+ AWS_MARKETPLACE_OFFERS: "AwsMarketplaceOffers",
377
+ AWS_PRODUCTS: "AwsProducts",
378
+ SOLUTIONS: "Solutions",
379
+ };
380
+ exports.AwsClosedLostReason = {
381
+ ADMINISTRATIVE: "Administrative",
382
+ BUSINESS_ASSOCIATE_AGREEMENT: "Business Associate Agreement",
383
+ COMPANY_ACQUIRED_DISSOLVED: "Company Acquired/Dissolved",
384
+ COMPETITIVE_OFFERING: "Competitive Offering",
385
+ CUSTOMER_DATA_REQUIREMENT: "Customer Data Requirement",
386
+ CUSTOMER_DEFICIENCY: "Customer Deficiency",
387
+ CUSTOMER_EXPERIENCE: "Customer Experience",
388
+ DELAY_CANCELLATION_OF_PROJECT: "Delay / Cancellation of Project",
389
+ DUPLICATE: "Duplicate",
390
+ DUPLICATE_OPPORTUNITY: "Duplicate Opportunity",
391
+ EXECUTIVE_BLOCKER: "Executive Blocker",
392
+ FAILED_VETTING: "Failed Vetting",
393
+ FEATURE_LIMITATION: "Feature Limitation",
394
+ FINANCIAL_COMMERCIAL: "Financial/Commercial",
395
+ INSUFFICIENT_AMAZON_VALUE: "Insufficient Amazon Value",
396
+ INSUFFICIENT_AWS_VALUE: "Insufficient AWS Value",
397
+ INTERNATIONAL_CONSTRAINTS: "International Constraints",
398
+ LEGAL_TAX_REGULATORY: "Legal / Tax / Regulatory",
399
+ LEGAL_TERMS_AND_CONDITIONS: "Legal Terms and Conditions",
400
+ LOST_TO_COMPETITOR: "Lost to Competitor",
401
+ LOST_TO_COMPETITOR_GOOGLE: "Lost to Competitor - Google",
402
+ LOST_TO_COMPETITOR_MICROSOFT: "Lost to Competitor - Microsoft",
403
+ LOST_TO_COMPETITOR_OTHER: "Lost to Competitor - Other",
404
+ LOST_TO_COMPETITOR_RACKSPACE: "Lost to Competitor - Rackspace",
405
+ LOST_TO_COMPETITOR_SOFTLAYER: "Lost to Competitor - SoftLayer",
406
+ LOST_TO_COMPETITOR_VMWARE: "Lost to Competitor - VMWare",
407
+ NOT_COMMITTED_TO_AWS: "Not Committed to AWS",
408
+ NO_CUSTOMER_REFERENCE: "No Customer Reference",
409
+ NO_INTEGRATION_RESOURCES: "No Integration Resources",
410
+ NO_OPPORTUNITY: "No Opportunity",
411
+ NO_PERCEIVED_VALUE_OF_MP: "No Perceived Value of MP",
412
+ NO_RESPONSE: "No Response",
413
+ NO_UPDATE: "No Update",
414
+ ON_PREMISES_DEPLOYMENT: "On Premises Deployment",
415
+ OTHER: "Other",
416
+ OTHER_DETAILS_IN_DESCRIPTION: "Other (Details in Description)",
417
+ PARTNER_GAP: "Partner Gap",
418
+ PAST_DUE: "Past Due",
419
+ PEOPLE_RELATIONSHIP_GOVERNANCE: "People/Relationship/Governance",
420
+ PLATFORM_TECHNOLOGY_LIMITATION: "Platform Technology Limitation",
421
+ PREFERENCE_FOR_COMPETITOR: "Preference for Competitor",
422
+ PRICE: "Price",
423
+ PRODUCT_NOT_ON_AWS: "Product Not on AWS",
424
+ PRODUCT_TECHNOLOGY: "Product/Technology",
425
+ SECURITY_COMPLIANCE: "Security / Compliance",
426
+ SELF_SERVICE: "Self-Service",
427
+ TECHNICAL_LIMITATIONS: "Technical Limitations",
428
+ TERM_SHEET_IMPASSE: "Term Sheet Impasse",
429
+ };
430
+ exports.AwsFundingUsed = {
431
+ NO: "No",
432
+ YES: "Yes",
433
+ };
434
+ exports.AwsMemberBusinessTitle = {
435
+ AWS_ACCOUNT_OWNER: "AWSAccountOwner",
436
+ AWS_SALES_REP: "AWSSalesRep",
437
+ ISVSM: "ISVSM",
438
+ PDM: "PDM",
439
+ PSM: "PSM",
440
+ WWPSPDM: "WWPSPDM",
441
+ };
442
+ exports.EngagementScore = {
443
+ HIGH: "High",
444
+ LOW: "Low",
445
+ MEDIUM: "Medium",
446
+ };
447
+ exports.AwsOpportunityStage = {
448
+ BUILDING_INTEGRATION: "Building Integration",
449
+ BUSINESS_VALIDATION: "Business Validation",
450
+ CLOSED_INCOMPLETE: "Closed Incomplete",
451
+ CLOSED_LOST: "Closed Lost",
452
+ COMMITTED: "Committed",
453
+ COMPLETED: "Completed",
454
+ CONTRACT_NEGOTIATION: "Contract Negotiation",
455
+ DEFERRED_TO_PARTNER: "Deferred to Partner",
456
+ ENGAGED: "Engaged",
457
+ EVALUATING: "Evaluating",
458
+ IDENTIFIED: "Identified",
459
+ IN_PROGRESS: "In Progress",
460
+ LAUNCHED: "Launched",
461
+ NOT_STARTED: "Not Started",
462
+ ONBOARDING: "Onboarding",
463
+ ON_HOLD: "On-hold",
464
+ PROSPECT: "Prospect",
465
+ QUALIFIED: "Qualified",
466
+ QUALIFY: "Qualify",
467
+ RESEARCH: "Research",
468
+ SELLER_ENGAGED: "Seller Engaged",
469
+ SELLER_REGISTERED: "Seller Registered",
470
+ TECHNICAL_VALIDATION: "Technical Validation",
471
+ TERM_SHEET_NEGOTIATION: "Term Sheet Negotiation",
472
+ };
473
+ exports.CurrencyCode = {
474
+ AED: "AED",
475
+ AFN: "AFN",
476
+ ALL: "ALL",
477
+ AMD: "AMD",
478
+ ANG: "ANG",
479
+ AOA: "AOA",
480
+ ARS: "ARS",
481
+ AUD: "AUD",
482
+ AWG: "AWG",
483
+ AZN: "AZN",
484
+ BAM: "BAM",
485
+ BBD: "BBD",
486
+ BDT: "BDT",
487
+ BGN: "BGN",
488
+ BHD: "BHD",
489
+ BIF: "BIF",
490
+ BMD: "BMD",
491
+ BND: "BND",
492
+ BOB: "BOB",
493
+ BOV: "BOV",
494
+ BRL: "BRL",
495
+ BSD: "BSD",
496
+ BTN: "BTN",
497
+ BWP: "BWP",
498
+ BYN: "BYN",
499
+ BZD: "BZD",
500
+ CAD: "CAD",
501
+ CDF: "CDF",
502
+ CHE: "CHE",
503
+ CHF: "CHF",
504
+ CHW: "CHW",
505
+ CLF: "CLF",
506
+ CLP: "CLP",
507
+ CNY: "CNY",
508
+ COP: "COP",
509
+ COU: "COU",
510
+ CRC: "CRC",
511
+ CUC: "CUC",
512
+ CUP: "CUP",
513
+ CVE: "CVE",
514
+ CZK: "CZK",
515
+ DJF: "DJF",
516
+ DKK: "DKK",
517
+ DOP: "DOP",
518
+ DZD: "DZD",
519
+ EGP: "EGP",
520
+ ERN: "ERN",
521
+ ETB: "ETB",
522
+ EUR: "EUR",
523
+ FJD: "FJD",
524
+ FKP: "FKP",
525
+ GBP: "GBP",
526
+ GEL: "GEL",
527
+ GHS: "GHS",
528
+ GIP: "GIP",
529
+ GMD: "GMD",
530
+ GNF: "GNF",
531
+ GTQ: "GTQ",
532
+ GYD: "GYD",
533
+ HKD: "HKD",
534
+ HNL: "HNL",
535
+ HRK: "HRK",
536
+ HTG: "HTG",
537
+ HUF: "HUF",
538
+ IDR: "IDR",
539
+ ILS: "ILS",
540
+ INR: "INR",
541
+ IQD: "IQD",
542
+ IRR: "IRR",
543
+ ISK: "ISK",
544
+ JMD: "JMD",
545
+ JOD: "JOD",
546
+ JPY: "JPY",
547
+ KES: "KES",
548
+ KGS: "KGS",
549
+ KHR: "KHR",
550
+ KMF: "KMF",
551
+ KPW: "KPW",
552
+ KRW: "KRW",
553
+ KWD: "KWD",
554
+ KYD: "KYD",
555
+ KZT: "KZT",
556
+ LAK: "LAK",
557
+ LBP: "LBP",
558
+ LKR: "LKR",
559
+ LRD: "LRD",
560
+ LSL: "LSL",
561
+ LYD: "LYD",
562
+ MAD: "MAD",
563
+ MDL: "MDL",
564
+ MGA: "MGA",
565
+ MKD: "MKD",
566
+ MMK: "MMK",
567
+ MNT: "MNT",
568
+ MOP: "MOP",
569
+ MRU: "MRU",
570
+ MUR: "MUR",
571
+ MVR: "MVR",
572
+ MWK: "MWK",
573
+ MXN: "MXN",
574
+ MXV: "MXV",
575
+ MYR: "MYR",
576
+ MZN: "MZN",
577
+ NAD: "NAD",
578
+ NGN: "NGN",
579
+ NIO: "NIO",
580
+ NOK: "NOK",
581
+ NPR: "NPR",
582
+ NZD: "NZD",
583
+ OMR: "OMR",
584
+ PAB: "PAB",
585
+ PEN: "PEN",
586
+ PGK: "PGK",
587
+ PHP: "PHP",
588
+ PKR: "PKR",
589
+ PLN: "PLN",
590
+ PYG: "PYG",
591
+ QAR: "QAR",
592
+ RON: "RON",
593
+ RSD: "RSD",
594
+ RUB: "RUB",
595
+ RWF: "RWF",
596
+ SAR: "SAR",
597
+ SBD: "SBD",
598
+ SCR: "SCR",
599
+ SDG: "SDG",
600
+ SEK: "SEK",
601
+ SGD: "SGD",
602
+ SHP: "SHP",
603
+ SLL: "SLL",
604
+ SOS: "SOS",
605
+ SRD: "SRD",
606
+ SSP: "SSP",
607
+ STN: "STN",
608
+ SVC: "SVC",
609
+ SYP: "SYP",
610
+ SZL: "SZL",
611
+ THB: "THB",
612
+ TJS: "TJS",
613
+ TMT: "TMT",
614
+ TND: "TND",
615
+ TOP: "TOP",
616
+ TRY: "TRY",
617
+ TTD: "TTD",
618
+ TWD: "TWD",
619
+ TZS: "TZS",
620
+ UAH: "UAH",
621
+ UGX: "UGX",
622
+ USD: "USD",
623
+ USN: "USN",
624
+ UYI: "UYI",
625
+ UYU: "UYU",
626
+ UZS: "UZS",
627
+ VEF: "VEF",
628
+ VND: "VND",
629
+ VUV: "VUV",
630
+ WST: "WST",
631
+ XAF: "XAF",
632
+ XCD: "XCD",
633
+ XDR: "XDR",
634
+ XOF: "XOF",
635
+ XPF: "XPF",
636
+ XSU: "XSU",
637
+ XUA: "XUA",
638
+ YER: "YER",
639
+ ZAR: "ZAR",
640
+ ZMW: "ZMW",
641
+ ZWL: "ZWL",
642
+ };
643
+ exports.PaymentFrequency = {
644
+ MONTHLY: "Monthly",
645
+ };
646
+ class ConflictException extends PartnerCentralSellingServiceException_1.PartnerCentralSellingServiceException {
647
+ constructor(opts) {
648
+ super({
649
+ name: "ConflictException",
650
+ $fault: "client",
651
+ ...opts,
652
+ });
653
+ this.name = "ConflictException";
654
+ this.$fault = "client";
655
+ Object.setPrototypeOf(this, ConflictException.prototype);
656
+ this.Message = opts.Message;
657
+ }
658
+ }
659
+ exports.ConflictException = ConflictException;
660
+ class ServiceQuotaExceededException extends PartnerCentralSellingServiceException_1.PartnerCentralSellingServiceException {
661
+ constructor(opts) {
662
+ super({
663
+ name: "ServiceQuotaExceededException",
664
+ $fault: "client",
665
+ ...opts,
666
+ });
667
+ this.name = "ServiceQuotaExceededException";
668
+ this.$fault = "client";
669
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
670
+ this.Message = opts.Message;
671
+ }
672
+ }
673
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
674
+ exports.ReasonCode = {
675
+ ENGAGEMENT_ACCESS_DENIED: "EngagementAccessDenied",
676
+ ENGAGEMENT_INVITATION_CONFLICT: "EngagementInvitationConflict",
677
+ ENGAGEMENT_VALIDATION_FAILED: "EngagementValidationFailed",
678
+ INTERNAL_ERROR: "InternalError",
679
+ INVITATION_ACCESS_DENIED: "InvitationAccessDenied",
680
+ OPPORTUNITY_ACCESS_DENIED: "OpportunityAccessDenied",
681
+ OPPORTUNITY_CONFLICT: "OpportunityConflict",
682
+ OPPORTUNITY_SUBMISSION_FAILED: "OpportunitySubmissionFailed",
683
+ OPPORTUNITY_VALIDATION_FAILED: "OpportunityValidationFailed",
684
+ RESOURCE_SNAPSHOT_JOB_ACCESS_DENIED: "ResourceSnapshotJobAccessDenied",
685
+ };
686
+ exports.TaskStatus = {
687
+ COMPLETE: "COMPLETE",
688
+ FAILED: "FAILED",
689
+ IN_PROGRESS: "IN_PROGRESS",
690
+ };
691
+ exports.SalesInvolvementType = {
692
+ CO_SELL: "Co-Sell",
693
+ FOR_VISIBILITY_ONLY: "For Visibility Only",
694
+ };
695
+ exports.Visibility = {
696
+ FULL: "Full",
697
+ LIMITED: "Limited",
698
+ };
699
+ exports.ReceiverResponsibility = {
700
+ CO_SELL_FACILITATOR: "Co-Sell Facilitator",
701
+ DISTRIBUTOR: "Distributor",
702
+ FACILITATOR: "Facilitator",
703
+ HARDWARE_PARTNER: "Hardware Partner",
704
+ MANAGED_SERVICE_PROVIDER: "Managed Service Provider",
705
+ RESELLER: "Reseller",
706
+ SERVICES_PARTNER: "Services Partner",
707
+ SOFTWARE_PARTNER: "Software Partner",
708
+ TRAINING_PARTNER: "Training Partner",
709
+ };
710
+ var Payload;
711
+ (function (Payload) {
712
+ Payload.visit = (value, visitor) => {
713
+ if (value.OpportunityInvitation !== undefined)
714
+ return visitor.OpportunityInvitation(value.OpportunityInvitation);
715
+ return visitor._(value.$unknown[0], value.$unknown[1]);
716
+ };
717
+ })(Payload = exports.Payload || (exports.Payload = {}));
718
+ exports.EngagementInvitationPayloadType = {
719
+ OPPORTUNITY_INVITATION: "OpportunityInvitation",
720
+ };
721
+ var Receiver;
722
+ (function (Receiver) {
723
+ Receiver.visit = (value, visitor) => {
724
+ if (value.Account !== undefined)
725
+ return visitor.Account(value.Account);
726
+ return visitor._(value.$unknown[0], value.$unknown[1]);
727
+ };
728
+ })(Receiver = exports.Receiver || (exports.Receiver = {}));
729
+ exports.InvitationStatus = {
730
+ ACCEPTED: "ACCEPTED",
731
+ EXPIRED: "EXPIRED",
732
+ PENDING: "PENDING",
733
+ REJECTED: "REJECTED",
734
+ };
735
+ exports.ParticipantType = {
736
+ RECEIVER: "RECEIVER",
737
+ };
738
+ exports.OpportunityEngagementInvitationSortName = {
739
+ INVITATION_DATE: "InvitationDate",
740
+ };
741
+ exports.SortOrder = {
742
+ ASCENDING: "ASCENDING",
743
+ DESCENDING: "DESCENDING",
744
+ };
745
+ exports.ClosedLostReason = {
746
+ CUSTOMER_DEFICIENCY: "Customer Deficiency",
747
+ CUSTOMER_EXPERIENCE: "Customer Experience",
748
+ DELAY_CANCELLATION_OF_PROJECT: "Delay / Cancellation of Project",
749
+ FINANCIALCOMMERCIAL: "Financial/Commercial",
750
+ LEGAL_TAX_REGULATORY: "Legal / Tax / Regulatory",
751
+ LOST_TO_COMPETITOR_GOOGLE: "Lost to Competitor - Google",
752
+ LOST_TO_COMPETITOR_MICROSOFT: "Lost to Competitor - Microsoft",
753
+ LOST_TO_COMPETITOR_OTHER: "Lost to Competitor - Other",
754
+ LOST_TO_COMPETITOR_SOFTLAYER: "Lost to Competitor - SoftLayer",
755
+ LOST_TO_COMPETITOR_VMWARE: "Lost to Competitor - VMWare",
756
+ NO_OPPORTUNITY: "No Opportunity",
757
+ ON_PREMISES_DEPLOYMENT: "On Premises Deployment",
758
+ OTHER: "Other",
759
+ PARTNER_GAP: "Partner Gap",
760
+ PEOPLERELATIONSHIPGOVERNANCE: "People/Relationship/Governance",
761
+ PRICE: "Price",
762
+ PRODUCTTECHNOLOGY: "Product/Technology",
763
+ SECURITY_COMPLIANCE: "Security / Compliance",
764
+ TECHNICAL_LIMITATIONS: "Technical Limitations",
765
+ };
766
+ exports.ReviewStatus = {
767
+ ACTION_REQUIRED: "Action Required",
768
+ APPROVED: "Approved",
769
+ IN_REVIEW: "In review",
770
+ PENDING_SUBMISSION: "Pending Submission",
771
+ REJECTED: "Rejected",
772
+ SUBMITTED: "Submitted",
773
+ };
774
+ exports.Stage = {
775
+ BUSINESS_VALIDATION: "Business Validation",
776
+ CLOSED_LOST: "Closed Lost",
777
+ COMMITTED: "Committed",
778
+ LAUNCHED: "Launched",
779
+ PROSPECT: "Prospect",
780
+ QUALIFIED: "Qualified",
781
+ TECHNICAL_VALIDATION: "Technical Validation",
782
+ };
783
+ exports.Channel = {
784
+ AWS_MARKETING_CENTRAL: "AWS Marketing Central",
785
+ CONTENT_SYNDICATION: "Content Syndication",
786
+ DISPLAY: "Display",
787
+ EMAIL: "Email",
788
+ LIVE_EVENT: "Live Event",
789
+ OUT_OF_HOME: "Out Of Home (OOH)",
790
+ PRINT: "Print",
791
+ SEARCH: "Search",
792
+ SOCIAL: "Social",
793
+ TELEMARKETING: "Telemarketing",
794
+ TV: "TV",
795
+ VIDEO: "Video",
796
+ VIRTUAL_EVENT: "Virtual Event",
797
+ };
798
+ exports.MarketingSource = {
799
+ MARKETING_ACTIVITY: "Marketing Activity",
800
+ NONE: "None",
801
+ };
802
+ exports.NationalSecurity = {
803
+ NO: "No",
804
+ YES: "Yes",
805
+ };
806
+ exports.OpportunityType = {
807
+ EXPANSION: "Expansion",
808
+ FLAT_RENEWAL: "Flat Renewal",
809
+ NET_NEW_BUSINESS: "Net New Business",
810
+ };
811
+ exports.OpportunityOrigin = {
812
+ AWS_REFERRAL: "AWS Referral",
813
+ PARTNER_REFERRAL: "Partner Referral",
814
+ };
815
+ exports.PrimaryNeedFromAws = {
816
+ CO_SELL_ARCHITECTURAL_VALIDATION: "Co-Sell - Architectural Validation",
817
+ CO_SELL_BUSINESS_PRESENTATION: "Co-Sell - Business Presentation",
818
+ CO_SELL_COMPETITIVE_INFORMATION: "Co-Sell - Competitive Information",
819
+ CO_SELL_DEAL_SUPPORT: "Co-Sell - Deal Support",
820
+ CO_SELL_PRICING_ASSISTANCE: "Co-Sell - Pricing Assistance",
821
+ CO_SELL_SUPPORT_FOR_PUBLIC_TENDER_RFX: "Co-Sell - Support for Public Tender / RFx",
822
+ CO_SELL_TECHNICAL_CONSULTATION: "Co-Sell - Technical Consultation",
823
+ CO_SELL_TOTAL_COST_OF_OWNERSHIP_EVALUATION: "Co-Sell - Total Cost of Ownership Evaluation",
824
+ };
825
+ exports.CompetitorName = {
826
+ AKAMAI: "Akamai",
827
+ ALICLOUD: "AliCloud",
828
+ CO_LOCATION: "Co-location",
829
+ GOOGLE_CLOUD_PLATFORM: "Google Cloud Platform",
830
+ IBM_SOFTLAYER: "IBM Softlayer",
831
+ MICROSOFT_AZURE: "Microsoft Azure",
832
+ NO_COMPETITION: "No Competition",
833
+ ON_PREM: "On-Prem",
834
+ ORACLE_CLOUD: "Oracle Cloud",
835
+ OTHER: "*Other",
836
+ OTHER_COST_OPTIMIZATION: "Other- Cost Optimization",
837
+ };
838
+ exports.DeliveryModel = {
839
+ BYOL_OR_AMI: "BYOL or AMI",
840
+ MANAGED_SERVICES: "Managed Services",
841
+ OTHER: "Other",
842
+ PROFESSIONAL_SERVICES: "Professional Services",
843
+ RESELL: "Resell",
844
+ SAAS_OR_PAAS: "SaaS or PaaS",
845
+ };
846
+ exports.SalesActivity = {
847
+ AGREED_ON_SOLUTION_TO_BUSINESS_PROBLEM: "Agreed on solution to Business Problem",
848
+ COMPLETED_ACTION_PLAN: "Completed Action Plan",
849
+ CONDUCTED_POC_DEMO: "Conducted POC / Demo",
850
+ CUSTOMER_HAS_SHOWN_INTEREST: "Customer has shown interest in solution",
851
+ FINALIZED_DEPLOYMENT_NEEDS: "Finalized Deployment Need",
852
+ INITIALIZED_DISCUSSIONS_WITH_CUSTOMER: "Initialized discussions with customer",
853
+ IN_EVALUATION_PLANNING_STAGE: "In evaluation / planning stage",
854
+ SOW_SIGNED: "SOW Signed",
855
+ };
856
+ exports.RevenueModel = {
857
+ CONTRACT: "Contract",
858
+ PAY_AS_YOU_GO: "Pay-as-you-go",
859
+ SUBSCRIPTION: "Subscription",
860
+ };
861
+ exports.InvolvementTypeChangeReason = {
862
+ CHANGE_IN_DEAL_INFORMATION: "Change in Deal Information",
863
+ CUSTOMER_REQUESTED: "Customer Requested",
864
+ EXPANSION_OPPORTUNITY: "Expansion Opportunity",
865
+ RISK_MITIGATION: "Risk Mitigation",
866
+ TECHNICAL_COMPLEXITY: "Technical Complexity",
867
+ };
868
+ exports.OpportunitySortName = {
869
+ CUSTOMER_COMPANY_NAME: "CustomerCompanyName",
870
+ IDENTIFIER: "Identifier",
871
+ LAST_MODIFIEDDATE: "LastModifiedDate",
872
+ };
873
+ exports.SolutionSortName = {
874
+ CATEGORY: "Category",
875
+ CREATEDDATE: "CreatedDate",
876
+ IDENTIFIER: "Identifier",
877
+ NAME: "Name",
878
+ STATUS: "Status",
879
+ };
880
+ exports.SolutionStatus = {
881
+ ACTIVE: "Active",
882
+ DRAFT: "Draft",
883
+ INACTIVE: "Inactive",
884
+ };
885
+ const AddressFilterSensitiveLog = (obj) => ({
886
+ ...obj,
887
+ ...(obj.City && { City: smithy_client_1.SENSITIVE_STRING }),
888
+ ...(obj.PostalCode && { PostalCode: smithy_client_1.SENSITIVE_STRING }),
889
+ ...(obj.StateOrRegion && { StateOrRegion: smithy_client_1.SENSITIVE_STRING }),
890
+ ...(obj.CountryCode && { CountryCode: smithy_client_1.SENSITIVE_STRING }),
891
+ ...(obj.StreetAddress && { StreetAddress: smithy_client_1.SENSITIVE_STRING }),
892
+ });
893
+ exports.AddressFilterSensitiveLog = AddressFilterSensitiveLog;
894
+ const AccountFilterSensitiveLog = (obj) => ({
895
+ ...obj,
896
+ ...(obj.CompanyName && { CompanyName: smithy_client_1.SENSITIVE_STRING }),
897
+ ...(obj.WebsiteUrl && { WebsiteUrl: smithy_client_1.SENSITIVE_STRING }),
898
+ ...(obj.AwsAccountId && { AwsAccountId: smithy_client_1.SENSITIVE_STRING }),
899
+ ...(obj.Address && { Address: (0, exports.AddressFilterSensitiveLog)(obj.Address) }),
900
+ ...(obj.Duns && { Duns: smithy_client_1.SENSITIVE_STRING }),
901
+ });
902
+ exports.AccountFilterSensitiveLog = AccountFilterSensitiveLog;
903
+ const AccountReceiverFilterSensitiveLog = (obj) => ({
904
+ ...obj,
905
+ ...(obj.AwsAccountId && { AwsAccountId: smithy_client_1.SENSITIVE_STRING }),
906
+ });
907
+ exports.AccountReceiverFilterSensitiveLog = AccountReceiverFilterSensitiveLog;
908
+ const AddressSummaryFilterSensitiveLog = (obj) => ({
909
+ ...obj,
910
+ ...(obj.City && { City: smithy_client_1.SENSITIVE_STRING }),
911
+ ...(obj.PostalCode && { PostalCode: smithy_client_1.SENSITIVE_STRING }),
912
+ ...(obj.StateOrRegion && { StateOrRegion: smithy_client_1.SENSITIVE_STRING }),
913
+ ...(obj.CountryCode && { CountryCode: smithy_client_1.SENSITIVE_STRING }),
914
+ });
915
+ exports.AddressSummaryFilterSensitiveLog = AddressSummaryFilterSensitiveLog;
916
+ const AccountSummaryFilterSensitiveLog = (obj) => ({
917
+ ...obj,
918
+ ...(obj.CompanyName && { CompanyName: smithy_client_1.SENSITIVE_STRING }),
919
+ ...(obj.WebsiteUrl && { WebsiteUrl: smithy_client_1.SENSITIVE_STRING }),
920
+ ...(obj.Address && { Address: (0, exports.AddressSummaryFilterSensitiveLog)(obj.Address) }),
921
+ });
922
+ exports.AccountSummaryFilterSensitiveLog = AccountSummaryFilterSensitiveLog;
923
+ const AssigneeContactFilterSensitiveLog = (obj) => ({
924
+ ...obj,
925
+ ...(obj.Email && { Email: smithy_client_1.SENSITIVE_STRING }),
926
+ ...(obj.FirstName && { FirstName: smithy_client_1.SENSITIVE_STRING }),
927
+ ...(obj.LastName && { LastName: smithy_client_1.SENSITIVE_STRING }),
928
+ ...(obj.BusinessTitle && { BusinessTitle: smithy_client_1.SENSITIVE_STRING }),
929
+ });
930
+ exports.AssigneeContactFilterSensitiveLog = AssigneeContactFilterSensitiveLog;
931
+ const AssignOpportunityRequestFilterSensitiveLog = (obj) => ({
932
+ ...obj,
933
+ ...(obj.Assignee && { Assignee: (0, exports.AssigneeContactFilterSensitiveLog)(obj.Assignee) }),
934
+ });
935
+ exports.AssignOpportunityRequestFilterSensitiveLog = AssignOpportunityRequestFilterSensitiveLog;
936
+ const ContactFilterSensitiveLog = (obj) => ({
937
+ ...obj,
938
+ ...(obj.Email && { Email: smithy_client_1.SENSITIVE_STRING }),
939
+ ...(obj.FirstName && { FirstName: smithy_client_1.SENSITIVE_STRING }),
940
+ ...(obj.LastName && { LastName: smithy_client_1.SENSITIVE_STRING }),
941
+ ...(obj.BusinessTitle && { BusinessTitle: smithy_client_1.SENSITIVE_STRING }),
942
+ ...(obj.Phone && { Phone: smithy_client_1.SENSITIVE_STRING }),
943
+ });
944
+ exports.ContactFilterSensitiveLog = ContactFilterSensitiveLog;
945
+ const AwsOpportunityCustomerFilterSensitiveLog = (obj) => ({
946
+ ...obj,
947
+ ...(obj.Contacts && { Contacts: obj.Contacts.map((item) => (0, exports.ContactFilterSensitiveLog)(item)) }),
948
+ });
949
+ exports.AwsOpportunityCustomerFilterSensitiveLog = AwsOpportunityCustomerFilterSensitiveLog;
950
+ const AwsOpportunityLifeCycleFilterSensitiveLog = (obj) => ({
951
+ ...obj,
952
+ ...(obj.NextSteps && { NextSteps: smithy_client_1.SENSITIVE_STRING }),
953
+ });
954
+ exports.AwsOpportunityLifeCycleFilterSensitiveLog = AwsOpportunityLifeCycleFilterSensitiveLog;
955
+ const AwsTeamMemberFilterSensitiveLog = (obj) => ({
956
+ ...obj,
957
+ ...(obj.Email && { Email: smithy_client_1.SENSITIVE_STRING }),
958
+ ...(obj.FirstName && { FirstName: smithy_client_1.SENSITIVE_STRING }),
959
+ ...(obj.LastName && { LastName: smithy_client_1.SENSITIVE_STRING }),
960
+ });
961
+ exports.AwsTeamMemberFilterSensitiveLog = AwsTeamMemberFilterSensitiveLog;
962
+ const EngagementCustomerFilterSensitiveLog = (obj) => ({
963
+ ...obj,
964
+ ...(obj.WebsiteUrl && { WebsiteUrl: smithy_client_1.SENSITIVE_STRING }),
965
+ ...(obj.CountryCode && { CountryCode: smithy_client_1.SENSITIVE_STRING }),
966
+ });
967
+ exports.EngagementCustomerFilterSensitiveLog = EngagementCustomerFilterSensitiveLog;
968
+ const ProjectDetailsFilterSensitiveLog = (obj) => ({
969
+ ...obj,
970
+ ...(obj.BusinessProblem && { BusinessProblem: smithy_client_1.SENSITIVE_STRING }),
971
+ });
972
+ exports.ProjectDetailsFilterSensitiveLog = ProjectDetailsFilterSensitiveLog;
973
+ const SenderContactFilterSensitiveLog = (obj) => ({
974
+ ...obj,
975
+ ...(obj.Email && { Email: smithy_client_1.SENSITIVE_STRING }),
976
+ ...(obj.FirstName && { FirstName: smithy_client_1.SENSITIVE_STRING }),
977
+ ...(obj.LastName && { LastName: smithy_client_1.SENSITIVE_STRING }),
978
+ ...(obj.BusinessTitle && { BusinessTitle: smithy_client_1.SENSITIVE_STRING }),
979
+ ...(obj.Phone && { Phone: smithy_client_1.SENSITIVE_STRING }),
980
+ });
981
+ exports.SenderContactFilterSensitiveLog = SenderContactFilterSensitiveLog;
982
+ const OpportunityInvitationPayloadFilterSensitiveLog = (obj) => ({
983
+ ...obj,
984
+ ...(obj.SenderContacts && {
985
+ SenderContacts: obj.SenderContacts.map((item) => (0, exports.SenderContactFilterSensitiveLog)(item)),
986
+ }),
987
+ ...(obj.Customer && { Customer: (0, exports.EngagementCustomerFilterSensitiveLog)(obj.Customer) }),
988
+ ...(obj.Project && { Project: (0, exports.ProjectDetailsFilterSensitiveLog)(obj.Project) }),
989
+ });
990
+ exports.OpportunityInvitationPayloadFilterSensitiveLog = OpportunityInvitationPayloadFilterSensitiveLog;
991
+ const PayloadFilterSensitiveLog = (obj) => {
992
+ if (obj.OpportunityInvitation !== undefined)
993
+ return { OpportunityInvitation: (0, exports.OpportunityInvitationPayloadFilterSensitiveLog)(obj.OpportunityInvitation) };
994
+ if (obj.$unknown !== undefined)
995
+ return { [obj.$unknown[0]]: "UNKNOWN" };
996
+ };
997
+ exports.PayloadFilterSensitiveLog = PayloadFilterSensitiveLog;
998
+ const ReceiverFilterSensitiveLog = (obj) => {
999
+ if (obj.Account !== undefined)
1000
+ return { Account: (0, exports.AccountReceiverFilterSensitiveLog)(obj.Account) };
1001
+ if (obj.$unknown !== undefined)
1002
+ return { [obj.$unknown[0]]: "UNKNOWN" };
1003
+ };
1004
+ exports.ReceiverFilterSensitiveLog = ReceiverFilterSensitiveLog;
1005
+ const GetEngagementInvitationResponseFilterSensitiveLog = (obj) => ({
1006
+ ...obj,
1007
+ ...(obj.SenderAwsAccountId && { SenderAwsAccountId: smithy_client_1.SENSITIVE_STRING }),
1008
+ ...(obj.Receiver && { Receiver: (0, exports.ReceiverFilterSensitiveLog)(obj.Receiver) }),
1009
+ ...(obj.Payload && { Payload: (0, exports.PayloadFilterSensitiveLog)(obj.Payload) }),
1010
+ });
1011
+ exports.GetEngagementInvitationResponseFilterSensitiveLog = GetEngagementInvitationResponseFilterSensitiveLog;
1012
+ const EngagementInvitationSummaryFilterSensitiveLog = (obj) => ({
1013
+ ...obj,
1014
+ ...(obj.SenderAwsAccountId && { SenderAwsAccountId: smithy_client_1.SENSITIVE_STRING }),
1015
+ ...(obj.Receiver && { Receiver: (0, exports.ReceiverFilterSensitiveLog)(obj.Receiver) }),
1016
+ });
1017
+ exports.EngagementInvitationSummaryFilterSensitiveLog = EngagementInvitationSummaryFilterSensitiveLog;
1018
+ const ListEngagementInvitationsResponseFilterSensitiveLog = (obj) => ({
1019
+ ...obj,
1020
+ ...(obj.EngagementInvitationSummaries && {
1021
+ EngagementInvitationSummaries: obj.EngagementInvitationSummaries.map((item) => (0, exports.EngagementInvitationSummaryFilterSensitiveLog)(item)),
1022
+ }),
1023
+ });
1024
+ exports.ListEngagementInvitationsResponseFilterSensitiveLog = ListEngagementInvitationsResponseFilterSensitiveLog;
1025
+ const CustomerFilterSensitiveLog = (obj) => ({
1026
+ ...obj,
1027
+ ...(obj.Account && { Account: (0, exports.AccountFilterSensitiveLog)(obj.Account) }),
1028
+ ...(obj.Contacts && { Contacts: obj.Contacts.map((item) => (0, exports.ContactFilterSensitiveLog)(item)) }),
1029
+ });
1030
+ exports.CustomerFilterSensitiveLog = CustomerFilterSensitiveLog;
1031
+ const LifeCycleFilterSensitiveLog = (obj) => ({
1032
+ ...obj,
1033
+ ...(obj.NextSteps && { NextSteps: smithy_client_1.SENSITIVE_STRING }),
1034
+ });
1035
+ exports.LifeCycleFilterSensitiveLog = LifeCycleFilterSensitiveLog;
1036
+ const ProjectFilterSensitiveLog = (obj) => ({
1037
+ ...obj,
1038
+ ...(obj.Title && { Title: smithy_client_1.SENSITIVE_STRING }),
1039
+ ...(obj.CustomerBusinessProblem && { CustomerBusinessProblem: smithy_client_1.SENSITIVE_STRING }),
1040
+ ...(obj.OtherSolutionDescription && { OtherSolutionDescription: smithy_client_1.SENSITIVE_STRING }),
1041
+ });
1042
+ exports.ProjectFilterSensitiveLog = ProjectFilterSensitiveLog;
1043
+ const CreateOpportunityRequestFilterSensitiveLog = (obj) => ({
1044
+ ...obj,
1045
+ ...(obj.Customer && { Customer: (0, exports.CustomerFilterSensitiveLog)(obj.Customer) }),
1046
+ ...(obj.Project && { Project: (0, exports.ProjectFilterSensitiveLog)(obj.Project) }),
1047
+ ...(obj.LifeCycle && { LifeCycle: (0, exports.LifeCycleFilterSensitiveLog)(obj.LifeCycle) }),
1048
+ ...(obj.OpportunityTeam && { OpportunityTeam: obj.OpportunityTeam.map((item) => (0, exports.ContactFilterSensitiveLog)(item)) }),
1049
+ });
1050
+ exports.CreateOpportunityRequestFilterSensitiveLog = CreateOpportunityRequestFilterSensitiveLog;
1051
+ const GetAwsOpportunitySummaryResponseFilterSensitiveLog = (obj) => ({
1052
+ ...obj,
1053
+ ...(obj.LifeCycle && { LifeCycle: (0, exports.AwsOpportunityLifeCycleFilterSensitiveLog)(obj.LifeCycle) }),
1054
+ ...(obj.OpportunityTeam && {
1055
+ OpportunityTeam: obj.OpportunityTeam.map((item) => (0, exports.AwsTeamMemberFilterSensitiveLog)(item)),
1056
+ }),
1057
+ ...(obj.Customer && { Customer: (0, exports.AwsOpportunityCustomerFilterSensitiveLog)(obj.Customer) }),
1058
+ });
1059
+ exports.GetAwsOpportunitySummaryResponseFilterSensitiveLog = GetAwsOpportunitySummaryResponseFilterSensitiveLog;
1060
+ const GetOpportunityResponseFilterSensitiveLog = (obj) => ({
1061
+ ...obj,
1062
+ ...(obj.Customer && { Customer: (0, exports.CustomerFilterSensitiveLog)(obj.Customer) }),
1063
+ ...(obj.Project && { Project: (0, exports.ProjectFilterSensitiveLog)(obj.Project) }),
1064
+ ...(obj.LifeCycle && { LifeCycle: (0, exports.LifeCycleFilterSensitiveLog)(obj.LifeCycle) }),
1065
+ ...(obj.OpportunityTeam && { OpportunityTeam: obj.OpportunityTeam.map((item) => (0, exports.ContactFilterSensitiveLog)(item)) }),
1066
+ });
1067
+ exports.GetOpportunityResponseFilterSensitiveLog = GetOpportunityResponseFilterSensitiveLog;
1068
+ const CustomerSummaryFilterSensitiveLog = (obj) => ({
1069
+ ...obj,
1070
+ ...(obj.Account && { Account: (0, exports.AccountSummaryFilterSensitiveLog)(obj.Account) }),
1071
+ });
1072
+ exports.CustomerSummaryFilterSensitiveLog = CustomerSummaryFilterSensitiveLog;
1073
+ const LifeCycleSummaryFilterSensitiveLog = (obj) => ({
1074
+ ...obj,
1075
+ ...(obj.NextSteps && { NextSteps: smithy_client_1.SENSITIVE_STRING }),
1076
+ });
1077
+ exports.LifeCycleSummaryFilterSensitiveLog = LifeCycleSummaryFilterSensitiveLog;
1078
+ const OpportunitySummaryFilterSensitiveLog = (obj) => ({
1079
+ ...obj,
1080
+ ...(obj.LifeCycle && { LifeCycle: (0, exports.LifeCycleSummaryFilterSensitiveLog)(obj.LifeCycle) }),
1081
+ ...(obj.Customer && { Customer: (0, exports.CustomerSummaryFilterSensitiveLog)(obj.Customer) }),
1082
+ });
1083
+ exports.OpportunitySummaryFilterSensitiveLog = OpportunitySummaryFilterSensitiveLog;
1084
+ const ListOpportunitiesResponseFilterSensitiveLog = (obj) => ({
1085
+ ...obj,
1086
+ ...(obj.OpportunitySummaries && {
1087
+ OpportunitySummaries: obj.OpportunitySummaries.map((item) => (0, exports.OpportunitySummaryFilterSensitiveLog)(item)),
1088
+ }),
1089
+ });
1090
+ exports.ListOpportunitiesResponseFilterSensitiveLog = ListOpportunitiesResponseFilterSensitiveLog;
1091
+ const UpdateOpportunityRequestFilterSensitiveLog = (obj) => ({
1092
+ ...obj,
1093
+ ...(obj.Customer && { Customer: (0, exports.CustomerFilterSensitiveLog)(obj.Customer) }),
1094
+ ...(obj.Project && { Project: (0, exports.ProjectFilterSensitiveLog)(obj.Project) }),
1095
+ ...(obj.LifeCycle && { LifeCycle: (0, exports.LifeCycleFilterSensitiveLog)(obj.LifeCycle) }),
1096
+ });
1097
+ exports.UpdateOpportunityRequestFilterSensitiveLog = UpdateOpportunityRequestFilterSensitiveLog;