@aws-sdk/client-partnercentral-selling 3.1068.0 → 3.1070.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.
- package/README.md +21 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +237 -197
- package/dist-cjs/models/PartnerCentralSellingServiceException.js +4 -8
- package/dist-cjs/models/errors.js +15 -25
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +660 -331
- package/dist-es/PartnerCentralSelling.js +8 -0
- package/dist-es/commands/GetProspectingFromEngagementTaskCommand.js +16 -0
- package/dist-es/commands/ListProspectingFromEngagementTasksCommand.js +16 -0
- package/dist-es/commands/StartProspectingFromEngagementTaskCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +12 -0
- package/dist-es/pagination/ListProspectingFromEngagementTasksPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +200 -43
- package/dist-types/PartnerCentralSelling.d.ts +28 -0
- package/dist-types/PartnerCentralSellingClient.d.ts +5 -2
- package/dist-types/commands/CreateEngagementCommand.d.ts +34 -1
- package/dist-types/commands/CreateEngagementContextCommand.d.ts +34 -1
- package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +14 -0
- package/dist-types/commands/GetEngagementCommand.d.ts +34 -1
- package/dist-types/commands/GetProspectingFromEngagementTaskCommand.d.ts +105 -0
- package/dist-types/commands/GetResourceSnapshotCommand.d.ts +14 -0
- package/dist-types/commands/ListEngagementsCommand.d.ts +3 -3
- package/dist-types/commands/ListProspectingFromEngagementTasksCommand.d.ts +114 -0
- package/dist-types/commands/StartProspectingFromEngagementTaskCommand.d.ts +108 -0
- package/dist-types/commands/UpdateEngagementContextCommand.d.ts +34 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/enums.d.ts +28 -0
- package/dist-types/models/models_0.d.ts +529 -5
- package/dist-types/pagination/ListProspectingFromEngagementTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +19 -0
- package/dist-types/ts3.4/PartnerCentralSelling.d.ts +70 -0
- package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetProspectingFromEngagementTaskCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListProspectingFromEngagementTasksCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/StartProspectingFromEngagementTaskCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +136 -0
- package/dist-types/ts3.4/pagination/ListProspectingFromEngagementTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +19 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultPartnerCentralSellingHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { AcceptEngagementInvitation$, AssignOpportunity$, AssociateOpportunity$, CreateEngagement$, CreateEngagementContext$, CreateEngagementInvitation$, CreateOpportunity$, CreateResourceSnapshot$, CreateResourceSnapshotJob$, DeleteResourceSnapshotJob$, DisassociateOpportunity$, GetAwsOpportunitySummary$, GetEngagement$, GetEngagementInvitation$, GetOpportunity$, GetProspectingFromEngagementTask$, GetResourceSnapshot$, GetResourceSnapshotJob$, GetSellingSystemSettings$, ListEngagementByAcceptingInvitationTasks$, ListEngagementFromOpportunityTasks$, ListEngagementInvitations$, ListEngagementMembers$, ListEngagementResourceAssociations$, ListEngagements$, ListOpportunities$, ListOpportunityFromEngagementTasks$, ListProspectingFromEngagementTasks$, ListResourceSnapshotJobs$, ListResourceSnapshots$, ListSolutions$, ListTagsForResource$, PutSellingSystemSettings$, RejectEngagementInvitation$, StartEngagementByAcceptingInvitationTask$, StartEngagementFromOpportunityTask$, StartOpportunityFromEngagementTask$, StartProspectingFromEngagementTask$, StartResourceSnapshotJob$, StopResourceSnapshotJob$, SubmitOpportunity$, TagResource$, UntagResource$, UpdateEngagementContext$, UpdateOpportunity$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { PartnerCentralSellingServiceException } = require("./models/PartnerCentralSellingServiceException");
|
|
18
|
+
exports.PartnerCentralSellingServiceException = PartnerCentralSellingServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -66,571 +69,609 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
66
69
|
};
|
|
67
70
|
|
|
68
71
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
69
|
-
const extensionConfiguration = Object.assign(
|
|
72
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
70
73
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
71
|
-
return Object.assign(runtimeConfig,
|
|
74
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
72
75
|
};
|
|
73
76
|
|
|
74
|
-
class PartnerCentralSellingClient extends
|
|
77
|
+
class PartnerCentralSellingClient extends Client {
|
|
75
78
|
config;
|
|
76
79
|
constructor(...[configuration]) {
|
|
77
|
-
const _config_0 =
|
|
80
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
78
81
|
super(_config_0);
|
|
79
82
|
this.initConfig = _config_0;
|
|
80
83
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
81
|
-
const _config_2 =
|
|
82
|
-
const _config_3 =
|
|
83
|
-
const _config_4 =
|
|
84
|
-
const _config_5 =
|
|
85
|
-
const _config_6 =
|
|
86
|
-
const _config_7 =
|
|
84
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
85
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
86
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
87
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
88
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
89
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
87
90
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
88
91
|
this.config = _config_8;
|
|
89
|
-
this.middlewareStack.use(
|
|
90
|
-
this.middlewareStack.use(
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
httpAuthSchemeParametersProvider:
|
|
98
|
-
identityProviderConfigProvider: async (config) => new
|
|
92
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
93
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
94
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
100
|
+
httpAuthSchemeParametersProvider: defaultPartnerCentralSellingHttpAuthSchemeParametersProvider,
|
|
101
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
99
102
|
"aws.auth#sigv4": config.credentials,
|
|
100
103
|
}),
|
|
101
104
|
}));
|
|
102
|
-
this.middlewareStack.use(
|
|
105
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
103
106
|
}
|
|
104
107
|
destroy() {
|
|
105
108
|
super.destroy();
|
|
106
109
|
}
|
|
107
110
|
}
|
|
108
111
|
|
|
109
|
-
class AcceptEngagementInvitationCommand extends
|
|
112
|
+
class AcceptEngagementInvitationCommand extends Command
|
|
110
113
|
.classBuilder()
|
|
111
114
|
.ep(commonParams)
|
|
112
115
|
.m(function (Command, cs, config, o) {
|
|
113
|
-
return [
|
|
116
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
114
117
|
})
|
|
115
118
|
.s("AWSPartnerCentralSelling", "AcceptEngagementInvitation", {})
|
|
116
119
|
.n("PartnerCentralSellingClient", "AcceptEngagementInvitationCommand")
|
|
117
|
-
.sc(
|
|
120
|
+
.sc(AcceptEngagementInvitation$)
|
|
118
121
|
.build() {
|
|
119
122
|
}
|
|
120
123
|
|
|
121
|
-
class AssignOpportunityCommand extends
|
|
124
|
+
class AssignOpportunityCommand extends Command
|
|
122
125
|
.classBuilder()
|
|
123
126
|
.ep(commonParams)
|
|
124
127
|
.m(function (Command, cs, config, o) {
|
|
125
|
-
return [
|
|
128
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
126
129
|
})
|
|
127
130
|
.s("AWSPartnerCentralSelling", "AssignOpportunity", {})
|
|
128
131
|
.n("PartnerCentralSellingClient", "AssignOpportunityCommand")
|
|
129
|
-
.sc(
|
|
132
|
+
.sc(AssignOpportunity$)
|
|
130
133
|
.build() {
|
|
131
134
|
}
|
|
132
135
|
|
|
133
|
-
class AssociateOpportunityCommand extends
|
|
136
|
+
class AssociateOpportunityCommand extends Command
|
|
134
137
|
.classBuilder()
|
|
135
138
|
.ep(commonParams)
|
|
136
139
|
.m(function (Command, cs, config, o) {
|
|
137
|
-
return [
|
|
140
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
138
141
|
})
|
|
139
142
|
.s("AWSPartnerCentralSelling", "AssociateOpportunity", {})
|
|
140
143
|
.n("PartnerCentralSellingClient", "AssociateOpportunityCommand")
|
|
141
|
-
.sc(
|
|
144
|
+
.sc(AssociateOpportunity$)
|
|
142
145
|
.build() {
|
|
143
146
|
}
|
|
144
147
|
|
|
145
|
-
class CreateEngagementCommand extends
|
|
148
|
+
class CreateEngagementCommand extends Command
|
|
146
149
|
.classBuilder()
|
|
147
150
|
.ep(commonParams)
|
|
148
151
|
.m(function (Command, cs, config, o) {
|
|
149
|
-
return [
|
|
152
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
150
153
|
})
|
|
151
154
|
.s("AWSPartnerCentralSelling", "CreateEngagement", {})
|
|
152
155
|
.n("PartnerCentralSellingClient", "CreateEngagementCommand")
|
|
153
|
-
.sc(
|
|
156
|
+
.sc(CreateEngagement$)
|
|
154
157
|
.build() {
|
|
155
158
|
}
|
|
156
159
|
|
|
157
|
-
class CreateEngagementContextCommand extends
|
|
160
|
+
class CreateEngagementContextCommand extends Command
|
|
158
161
|
.classBuilder()
|
|
159
162
|
.ep(commonParams)
|
|
160
163
|
.m(function (Command, cs, config, o) {
|
|
161
|
-
return [
|
|
164
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
162
165
|
})
|
|
163
166
|
.s("AWSPartnerCentralSelling", "CreateEngagementContext", {})
|
|
164
167
|
.n("PartnerCentralSellingClient", "CreateEngagementContextCommand")
|
|
165
|
-
.sc(
|
|
168
|
+
.sc(CreateEngagementContext$)
|
|
166
169
|
.build() {
|
|
167
170
|
}
|
|
168
171
|
|
|
169
|
-
class CreateEngagementInvitationCommand extends
|
|
172
|
+
class CreateEngagementInvitationCommand extends Command
|
|
170
173
|
.classBuilder()
|
|
171
174
|
.ep(commonParams)
|
|
172
175
|
.m(function (Command, cs, config, o) {
|
|
173
|
-
return [
|
|
176
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
174
177
|
})
|
|
175
178
|
.s("AWSPartnerCentralSelling", "CreateEngagementInvitation", {})
|
|
176
179
|
.n("PartnerCentralSellingClient", "CreateEngagementInvitationCommand")
|
|
177
|
-
.sc(
|
|
180
|
+
.sc(CreateEngagementInvitation$)
|
|
178
181
|
.build() {
|
|
179
182
|
}
|
|
180
183
|
|
|
181
|
-
class CreateOpportunityCommand extends
|
|
184
|
+
class CreateOpportunityCommand extends Command
|
|
182
185
|
.classBuilder()
|
|
183
186
|
.ep(commonParams)
|
|
184
187
|
.m(function (Command, cs, config, o) {
|
|
185
|
-
return [
|
|
188
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
186
189
|
})
|
|
187
190
|
.s("AWSPartnerCentralSelling", "CreateOpportunity", {})
|
|
188
191
|
.n("PartnerCentralSellingClient", "CreateOpportunityCommand")
|
|
189
|
-
.sc(
|
|
192
|
+
.sc(CreateOpportunity$)
|
|
190
193
|
.build() {
|
|
191
194
|
}
|
|
192
195
|
|
|
193
|
-
class CreateResourceSnapshotCommand extends
|
|
196
|
+
class CreateResourceSnapshotCommand extends Command
|
|
194
197
|
.classBuilder()
|
|
195
198
|
.ep(commonParams)
|
|
196
199
|
.m(function (Command, cs, config, o) {
|
|
197
|
-
return [
|
|
200
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
198
201
|
})
|
|
199
202
|
.s("AWSPartnerCentralSelling", "CreateResourceSnapshot", {})
|
|
200
203
|
.n("PartnerCentralSellingClient", "CreateResourceSnapshotCommand")
|
|
201
|
-
.sc(
|
|
204
|
+
.sc(CreateResourceSnapshot$)
|
|
202
205
|
.build() {
|
|
203
206
|
}
|
|
204
207
|
|
|
205
|
-
class CreateResourceSnapshotJobCommand extends
|
|
208
|
+
class CreateResourceSnapshotJobCommand extends Command
|
|
206
209
|
.classBuilder()
|
|
207
210
|
.ep(commonParams)
|
|
208
211
|
.m(function (Command, cs, config, o) {
|
|
209
|
-
return [
|
|
212
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
210
213
|
})
|
|
211
214
|
.s("AWSPartnerCentralSelling", "CreateResourceSnapshotJob", {})
|
|
212
215
|
.n("PartnerCentralSellingClient", "CreateResourceSnapshotJobCommand")
|
|
213
|
-
.sc(
|
|
216
|
+
.sc(CreateResourceSnapshotJob$)
|
|
214
217
|
.build() {
|
|
215
218
|
}
|
|
216
219
|
|
|
217
|
-
class DeleteResourceSnapshotJobCommand extends
|
|
220
|
+
class DeleteResourceSnapshotJobCommand extends Command
|
|
218
221
|
.classBuilder()
|
|
219
222
|
.ep(commonParams)
|
|
220
223
|
.m(function (Command, cs, config, o) {
|
|
221
|
-
return [
|
|
224
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
222
225
|
})
|
|
223
226
|
.s("AWSPartnerCentralSelling", "DeleteResourceSnapshotJob", {})
|
|
224
227
|
.n("PartnerCentralSellingClient", "DeleteResourceSnapshotJobCommand")
|
|
225
|
-
.sc(
|
|
228
|
+
.sc(DeleteResourceSnapshotJob$)
|
|
226
229
|
.build() {
|
|
227
230
|
}
|
|
228
231
|
|
|
229
|
-
class DisassociateOpportunityCommand extends
|
|
232
|
+
class DisassociateOpportunityCommand extends Command
|
|
230
233
|
.classBuilder()
|
|
231
234
|
.ep(commonParams)
|
|
232
235
|
.m(function (Command, cs, config, o) {
|
|
233
|
-
return [
|
|
236
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
234
237
|
})
|
|
235
238
|
.s("AWSPartnerCentralSelling", "DisassociateOpportunity", {})
|
|
236
239
|
.n("PartnerCentralSellingClient", "DisassociateOpportunityCommand")
|
|
237
|
-
.sc(
|
|
240
|
+
.sc(DisassociateOpportunity$)
|
|
238
241
|
.build() {
|
|
239
242
|
}
|
|
240
243
|
|
|
241
|
-
class GetAwsOpportunitySummaryCommand extends
|
|
244
|
+
class GetAwsOpportunitySummaryCommand extends Command
|
|
242
245
|
.classBuilder()
|
|
243
246
|
.ep(commonParams)
|
|
244
247
|
.m(function (Command, cs, config, o) {
|
|
245
|
-
return [
|
|
248
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
246
249
|
})
|
|
247
250
|
.s("AWSPartnerCentralSelling", "GetAwsOpportunitySummary", {})
|
|
248
251
|
.n("PartnerCentralSellingClient", "GetAwsOpportunitySummaryCommand")
|
|
249
|
-
.sc(
|
|
252
|
+
.sc(GetAwsOpportunitySummary$)
|
|
250
253
|
.build() {
|
|
251
254
|
}
|
|
252
255
|
|
|
253
|
-
class GetEngagementCommand extends
|
|
256
|
+
class GetEngagementCommand extends Command
|
|
254
257
|
.classBuilder()
|
|
255
258
|
.ep(commonParams)
|
|
256
259
|
.m(function (Command, cs, config, o) {
|
|
257
|
-
return [
|
|
260
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
258
261
|
})
|
|
259
262
|
.s("AWSPartnerCentralSelling", "GetEngagement", {})
|
|
260
263
|
.n("PartnerCentralSellingClient", "GetEngagementCommand")
|
|
261
|
-
.sc(
|
|
264
|
+
.sc(GetEngagement$)
|
|
262
265
|
.build() {
|
|
263
266
|
}
|
|
264
267
|
|
|
265
|
-
class GetEngagementInvitationCommand extends
|
|
268
|
+
class GetEngagementInvitationCommand extends Command
|
|
266
269
|
.classBuilder()
|
|
267
270
|
.ep(commonParams)
|
|
268
271
|
.m(function (Command, cs, config, o) {
|
|
269
|
-
return [
|
|
272
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
270
273
|
})
|
|
271
274
|
.s("AWSPartnerCentralSelling", "GetEngagementInvitation", {})
|
|
272
275
|
.n("PartnerCentralSellingClient", "GetEngagementInvitationCommand")
|
|
273
|
-
.sc(
|
|
276
|
+
.sc(GetEngagementInvitation$)
|
|
274
277
|
.build() {
|
|
275
278
|
}
|
|
276
279
|
|
|
277
|
-
class GetOpportunityCommand extends
|
|
280
|
+
class GetOpportunityCommand extends Command
|
|
278
281
|
.classBuilder()
|
|
279
282
|
.ep(commonParams)
|
|
280
283
|
.m(function (Command, cs, config, o) {
|
|
281
|
-
return [
|
|
284
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
282
285
|
})
|
|
283
286
|
.s("AWSPartnerCentralSelling", "GetOpportunity", {})
|
|
284
287
|
.n("PartnerCentralSellingClient", "GetOpportunityCommand")
|
|
285
|
-
.sc(
|
|
288
|
+
.sc(GetOpportunity$)
|
|
286
289
|
.build() {
|
|
287
290
|
}
|
|
288
291
|
|
|
289
|
-
class
|
|
292
|
+
class GetProspectingFromEngagementTaskCommand extends Command
|
|
290
293
|
.classBuilder()
|
|
291
294
|
.ep(commonParams)
|
|
292
295
|
.m(function (Command, cs, config, o) {
|
|
293
|
-
return [
|
|
296
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
297
|
+
})
|
|
298
|
+
.s("AWSPartnerCentralSelling", "GetProspectingFromEngagementTask", {})
|
|
299
|
+
.n("PartnerCentralSellingClient", "GetProspectingFromEngagementTaskCommand")
|
|
300
|
+
.sc(GetProspectingFromEngagementTask$)
|
|
301
|
+
.build() {
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
class GetResourceSnapshotCommand extends Command
|
|
305
|
+
.classBuilder()
|
|
306
|
+
.ep(commonParams)
|
|
307
|
+
.m(function (Command, cs, config, o) {
|
|
308
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
294
309
|
})
|
|
295
310
|
.s("AWSPartnerCentralSelling", "GetResourceSnapshot", {})
|
|
296
311
|
.n("PartnerCentralSellingClient", "GetResourceSnapshotCommand")
|
|
297
|
-
.sc(
|
|
312
|
+
.sc(GetResourceSnapshot$)
|
|
298
313
|
.build() {
|
|
299
314
|
}
|
|
300
315
|
|
|
301
|
-
class GetResourceSnapshotJobCommand extends
|
|
316
|
+
class GetResourceSnapshotJobCommand extends Command
|
|
302
317
|
.classBuilder()
|
|
303
318
|
.ep(commonParams)
|
|
304
319
|
.m(function (Command, cs, config, o) {
|
|
305
|
-
return [
|
|
320
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
306
321
|
})
|
|
307
322
|
.s("AWSPartnerCentralSelling", "GetResourceSnapshotJob", {})
|
|
308
323
|
.n("PartnerCentralSellingClient", "GetResourceSnapshotJobCommand")
|
|
309
|
-
.sc(
|
|
324
|
+
.sc(GetResourceSnapshotJob$)
|
|
310
325
|
.build() {
|
|
311
326
|
}
|
|
312
327
|
|
|
313
|
-
class GetSellingSystemSettingsCommand extends
|
|
328
|
+
class GetSellingSystemSettingsCommand extends Command
|
|
314
329
|
.classBuilder()
|
|
315
330
|
.ep(commonParams)
|
|
316
331
|
.m(function (Command, cs, config, o) {
|
|
317
|
-
return [
|
|
332
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
318
333
|
})
|
|
319
334
|
.s("AWSPartnerCentralSelling", "GetSellingSystemSettings", {})
|
|
320
335
|
.n("PartnerCentralSellingClient", "GetSellingSystemSettingsCommand")
|
|
321
|
-
.sc(
|
|
336
|
+
.sc(GetSellingSystemSettings$)
|
|
322
337
|
.build() {
|
|
323
338
|
}
|
|
324
339
|
|
|
325
|
-
class ListEngagementByAcceptingInvitationTasksCommand extends
|
|
340
|
+
class ListEngagementByAcceptingInvitationTasksCommand extends Command
|
|
326
341
|
.classBuilder()
|
|
327
342
|
.ep(commonParams)
|
|
328
343
|
.m(function (Command, cs, config, o) {
|
|
329
|
-
return [
|
|
344
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
330
345
|
})
|
|
331
346
|
.s("AWSPartnerCentralSelling", "ListEngagementByAcceptingInvitationTasks", {})
|
|
332
347
|
.n("PartnerCentralSellingClient", "ListEngagementByAcceptingInvitationTasksCommand")
|
|
333
|
-
.sc(
|
|
348
|
+
.sc(ListEngagementByAcceptingInvitationTasks$)
|
|
334
349
|
.build() {
|
|
335
350
|
}
|
|
336
351
|
|
|
337
|
-
class ListEngagementFromOpportunityTasksCommand extends
|
|
352
|
+
class ListEngagementFromOpportunityTasksCommand extends Command
|
|
338
353
|
.classBuilder()
|
|
339
354
|
.ep(commonParams)
|
|
340
355
|
.m(function (Command, cs, config, o) {
|
|
341
|
-
return [
|
|
356
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
342
357
|
})
|
|
343
358
|
.s("AWSPartnerCentralSelling", "ListEngagementFromOpportunityTasks", {})
|
|
344
359
|
.n("PartnerCentralSellingClient", "ListEngagementFromOpportunityTasksCommand")
|
|
345
|
-
.sc(
|
|
360
|
+
.sc(ListEngagementFromOpportunityTasks$)
|
|
346
361
|
.build() {
|
|
347
362
|
}
|
|
348
363
|
|
|
349
|
-
class ListEngagementInvitationsCommand extends
|
|
364
|
+
class ListEngagementInvitationsCommand extends Command
|
|
350
365
|
.classBuilder()
|
|
351
366
|
.ep(commonParams)
|
|
352
367
|
.m(function (Command, cs, config, o) {
|
|
353
|
-
return [
|
|
368
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
354
369
|
})
|
|
355
370
|
.s("AWSPartnerCentralSelling", "ListEngagementInvitations", {})
|
|
356
371
|
.n("PartnerCentralSellingClient", "ListEngagementInvitationsCommand")
|
|
357
|
-
.sc(
|
|
372
|
+
.sc(ListEngagementInvitations$)
|
|
358
373
|
.build() {
|
|
359
374
|
}
|
|
360
375
|
|
|
361
|
-
class ListEngagementMembersCommand extends
|
|
376
|
+
class ListEngagementMembersCommand extends Command
|
|
362
377
|
.classBuilder()
|
|
363
378
|
.ep(commonParams)
|
|
364
379
|
.m(function (Command, cs, config, o) {
|
|
365
|
-
return [
|
|
380
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
366
381
|
})
|
|
367
382
|
.s("AWSPartnerCentralSelling", "ListEngagementMembers", {})
|
|
368
383
|
.n("PartnerCentralSellingClient", "ListEngagementMembersCommand")
|
|
369
|
-
.sc(
|
|
384
|
+
.sc(ListEngagementMembers$)
|
|
370
385
|
.build() {
|
|
371
386
|
}
|
|
372
387
|
|
|
373
|
-
class ListEngagementResourceAssociationsCommand extends
|
|
388
|
+
class ListEngagementResourceAssociationsCommand extends Command
|
|
374
389
|
.classBuilder()
|
|
375
390
|
.ep(commonParams)
|
|
376
391
|
.m(function (Command, cs, config, o) {
|
|
377
|
-
return [
|
|
392
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
378
393
|
})
|
|
379
394
|
.s("AWSPartnerCentralSelling", "ListEngagementResourceAssociations", {})
|
|
380
395
|
.n("PartnerCentralSellingClient", "ListEngagementResourceAssociationsCommand")
|
|
381
|
-
.sc(
|
|
396
|
+
.sc(ListEngagementResourceAssociations$)
|
|
382
397
|
.build() {
|
|
383
398
|
}
|
|
384
399
|
|
|
385
|
-
class ListEngagementsCommand extends
|
|
400
|
+
class ListEngagementsCommand extends Command
|
|
386
401
|
.classBuilder()
|
|
387
402
|
.ep(commonParams)
|
|
388
403
|
.m(function (Command, cs, config, o) {
|
|
389
|
-
return [
|
|
404
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
390
405
|
})
|
|
391
406
|
.s("AWSPartnerCentralSelling", "ListEngagements", {})
|
|
392
407
|
.n("PartnerCentralSellingClient", "ListEngagementsCommand")
|
|
393
|
-
.sc(
|
|
408
|
+
.sc(ListEngagements$)
|
|
394
409
|
.build() {
|
|
395
410
|
}
|
|
396
411
|
|
|
397
|
-
class ListOpportunitiesCommand extends
|
|
412
|
+
class ListOpportunitiesCommand extends Command
|
|
398
413
|
.classBuilder()
|
|
399
414
|
.ep(commonParams)
|
|
400
415
|
.m(function (Command, cs, config, o) {
|
|
401
|
-
return [
|
|
416
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
402
417
|
})
|
|
403
418
|
.s("AWSPartnerCentralSelling", "ListOpportunities", {})
|
|
404
419
|
.n("PartnerCentralSellingClient", "ListOpportunitiesCommand")
|
|
405
|
-
.sc(
|
|
420
|
+
.sc(ListOpportunities$)
|
|
406
421
|
.build() {
|
|
407
422
|
}
|
|
408
423
|
|
|
409
|
-
class ListOpportunityFromEngagementTasksCommand extends
|
|
424
|
+
class ListOpportunityFromEngagementTasksCommand extends Command
|
|
410
425
|
.classBuilder()
|
|
411
426
|
.ep(commonParams)
|
|
412
427
|
.m(function (Command, cs, config, o) {
|
|
413
|
-
return [
|
|
428
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
414
429
|
})
|
|
415
430
|
.s("AWSPartnerCentralSelling", "ListOpportunityFromEngagementTasks", {})
|
|
416
431
|
.n("PartnerCentralSellingClient", "ListOpportunityFromEngagementTasksCommand")
|
|
417
|
-
.sc(
|
|
432
|
+
.sc(ListOpportunityFromEngagementTasks$)
|
|
433
|
+
.build() {
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
class ListProspectingFromEngagementTasksCommand extends Command
|
|
437
|
+
.classBuilder()
|
|
438
|
+
.ep(commonParams)
|
|
439
|
+
.m(function (Command, cs, config, o) {
|
|
440
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
441
|
+
})
|
|
442
|
+
.s("AWSPartnerCentralSelling", "ListProspectingFromEngagementTasks", {})
|
|
443
|
+
.n("PartnerCentralSellingClient", "ListProspectingFromEngagementTasksCommand")
|
|
444
|
+
.sc(ListProspectingFromEngagementTasks$)
|
|
418
445
|
.build() {
|
|
419
446
|
}
|
|
420
447
|
|
|
421
|
-
class ListResourceSnapshotJobsCommand extends
|
|
448
|
+
class ListResourceSnapshotJobsCommand extends Command
|
|
422
449
|
.classBuilder()
|
|
423
450
|
.ep(commonParams)
|
|
424
451
|
.m(function (Command, cs, config, o) {
|
|
425
|
-
return [
|
|
452
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
426
453
|
})
|
|
427
454
|
.s("AWSPartnerCentralSelling", "ListResourceSnapshotJobs", {})
|
|
428
455
|
.n("PartnerCentralSellingClient", "ListResourceSnapshotJobsCommand")
|
|
429
|
-
.sc(
|
|
456
|
+
.sc(ListResourceSnapshotJobs$)
|
|
430
457
|
.build() {
|
|
431
458
|
}
|
|
432
459
|
|
|
433
|
-
class ListResourceSnapshotsCommand extends
|
|
460
|
+
class ListResourceSnapshotsCommand extends Command
|
|
434
461
|
.classBuilder()
|
|
435
462
|
.ep(commonParams)
|
|
436
463
|
.m(function (Command, cs, config, o) {
|
|
437
|
-
return [
|
|
464
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
438
465
|
})
|
|
439
466
|
.s("AWSPartnerCentralSelling", "ListResourceSnapshots", {})
|
|
440
467
|
.n("PartnerCentralSellingClient", "ListResourceSnapshotsCommand")
|
|
441
|
-
.sc(
|
|
468
|
+
.sc(ListResourceSnapshots$)
|
|
442
469
|
.build() {
|
|
443
470
|
}
|
|
444
471
|
|
|
445
|
-
class ListSolutionsCommand extends
|
|
472
|
+
class ListSolutionsCommand extends Command
|
|
446
473
|
.classBuilder()
|
|
447
474
|
.ep(commonParams)
|
|
448
475
|
.m(function (Command, cs, config, o) {
|
|
449
|
-
return [
|
|
476
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
450
477
|
})
|
|
451
478
|
.s("AWSPartnerCentralSelling", "ListSolutions", {})
|
|
452
479
|
.n("PartnerCentralSellingClient", "ListSolutionsCommand")
|
|
453
|
-
.sc(
|
|
480
|
+
.sc(ListSolutions$)
|
|
454
481
|
.build() {
|
|
455
482
|
}
|
|
456
483
|
|
|
457
|
-
class ListTagsForResourceCommand extends
|
|
484
|
+
class ListTagsForResourceCommand extends Command
|
|
458
485
|
.classBuilder()
|
|
459
486
|
.ep(commonParams)
|
|
460
487
|
.m(function (Command, cs, config, o) {
|
|
461
|
-
return [
|
|
488
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
462
489
|
})
|
|
463
490
|
.s("AWSPartnerCentralSelling", "ListTagsForResource", {})
|
|
464
491
|
.n("PartnerCentralSellingClient", "ListTagsForResourceCommand")
|
|
465
|
-
.sc(
|
|
492
|
+
.sc(ListTagsForResource$)
|
|
466
493
|
.build() {
|
|
467
494
|
}
|
|
468
495
|
|
|
469
|
-
class PutSellingSystemSettingsCommand extends
|
|
496
|
+
class PutSellingSystemSettingsCommand extends Command
|
|
470
497
|
.classBuilder()
|
|
471
498
|
.ep(commonParams)
|
|
472
499
|
.m(function (Command, cs, config, o) {
|
|
473
|
-
return [
|
|
500
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
474
501
|
})
|
|
475
502
|
.s("AWSPartnerCentralSelling", "PutSellingSystemSettings", {})
|
|
476
503
|
.n("PartnerCentralSellingClient", "PutSellingSystemSettingsCommand")
|
|
477
|
-
.sc(
|
|
504
|
+
.sc(PutSellingSystemSettings$)
|
|
478
505
|
.build() {
|
|
479
506
|
}
|
|
480
507
|
|
|
481
|
-
class RejectEngagementInvitationCommand extends
|
|
508
|
+
class RejectEngagementInvitationCommand extends Command
|
|
482
509
|
.classBuilder()
|
|
483
510
|
.ep(commonParams)
|
|
484
511
|
.m(function (Command, cs, config, o) {
|
|
485
|
-
return [
|
|
512
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
486
513
|
})
|
|
487
514
|
.s("AWSPartnerCentralSelling", "RejectEngagementInvitation", {})
|
|
488
515
|
.n("PartnerCentralSellingClient", "RejectEngagementInvitationCommand")
|
|
489
|
-
.sc(
|
|
516
|
+
.sc(RejectEngagementInvitation$)
|
|
490
517
|
.build() {
|
|
491
518
|
}
|
|
492
519
|
|
|
493
|
-
class StartEngagementByAcceptingInvitationTaskCommand extends
|
|
520
|
+
class StartEngagementByAcceptingInvitationTaskCommand extends Command
|
|
494
521
|
.classBuilder()
|
|
495
522
|
.ep(commonParams)
|
|
496
523
|
.m(function (Command, cs, config, o) {
|
|
497
|
-
return [
|
|
524
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
498
525
|
})
|
|
499
526
|
.s("AWSPartnerCentralSelling", "StartEngagementByAcceptingInvitationTask", {})
|
|
500
527
|
.n("PartnerCentralSellingClient", "StartEngagementByAcceptingInvitationTaskCommand")
|
|
501
|
-
.sc(
|
|
528
|
+
.sc(StartEngagementByAcceptingInvitationTask$)
|
|
502
529
|
.build() {
|
|
503
530
|
}
|
|
504
531
|
|
|
505
|
-
class StartEngagementFromOpportunityTaskCommand extends
|
|
532
|
+
class StartEngagementFromOpportunityTaskCommand extends Command
|
|
506
533
|
.classBuilder()
|
|
507
534
|
.ep(commonParams)
|
|
508
535
|
.m(function (Command, cs, config, o) {
|
|
509
|
-
return [
|
|
536
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
510
537
|
})
|
|
511
538
|
.s("AWSPartnerCentralSelling", "StartEngagementFromOpportunityTask", {})
|
|
512
539
|
.n("PartnerCentralSellingClient", "StartEngagementFromOpportunityTaskCommand")
|
|
513
|
-
.sc(
|
|
540
|
+
.sc(StartEngagementFromOpportunityTask$)
|
|
514
541
|
.build() {
|
|
515
542
|
}
|
|
516
543
|
|
|
517
|
-
class StartOpportunityFromEngagementTaskCommand extends
|
|
544
|
+
class StartOpportunityFromEngagementTaskCommand extends Command
|
|
518
545
|
.classBuilder()
|
|
519
546
|
.ep(commonParams)
|
|
520
547
|
.m(function (Command, cs, config, o) {
|
|
521
|
-
return [
|
|
548
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
522
549
|
})
|
|
523
550
|
.s("AWSPartnerCentralSelling", "StartOpportunityFromEngagementTask", {})
|
|
524
551
|
.n("PartnerCentralSellingClient", "StartOpportunityFromEngagementTaskCommand")
|
|
525
|
-
.sc(
|
|
552
|
+
.sc(StartOpportunityFromEngagementTask$)
|
|
526
553
|
.build() {
|
|
527
554
|
}
|
|
528
555
|
|
|
529
|
-
class
|
|
556
|
+
class StartProspectingFromEngagementTaskCommand extends Command
|
|
530
557
|
.classBuilder()
|
|
531
558
|
.ep(commonParams)
|
|
532
559
|
.m(function (Command, cs, config, o) {
|
|
533
|
-
return [
|
|
560
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
561
|
+
})
|
|
562
|
+
.s("AWSPartnerCentralSelling", "StartProspectingFromEngagementTask", {})
|
|
563
|
+
.n("PartnerCentralSellingClient", "StartProspectingFromEngagementTaskCommand")
|
|
564
|
+
.sc(StartProspectingFromEngagementTask$)
|
|
565
|
+
.build() {
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
class StartResourceSnapshotJobCommand extends Command
|
|
569
|
+
.classBuilder()
|
|
570
|
+
.ep(commonParams)
|
|
571
|
+
.m(function (Command, cs, config, o) {
|
|
572
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
534
573
|
})
|
|
535
574
|
.s("AWSPartnerCentralSelling", "StartResourceSnapshotJob", {})
|
|
536
575
|
.n("PartnerCentralSellingClient", "StartResourceSnapshotJobCommand")
|
|
537
|
-
.sc(
|
|
576
|
+
.sc(StartResourceSnapshotJob$)
|
|
538
577
|
.build() {
|
|
539
578
|
}
|
|
540
579
|
|
|
541
|
-
class StopResourceSnapshotJobCommand extends
|
|
580
|
+
class StopResourceSnapshotJobCommand extends Command
|
|
542
581
|
.classBuilder()
|
|
543
582
|
.ep(commonParams)
|
|
544
583
|
.m(function (Command, cs, config, o) {
|
|
545
|
-
return [
|
|
584
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
546
585
|
})
|
|
547
586
|
.s("AWSPartnerCentralSelling", "StopResourceSnapshotJob", {})
|
|
548
587
|
.n("PartnerCentralSellingClient", "StopResourceSnapshotJobCommand")
|
|
549
|
-
.sc(
|
|
588
|
+
.sc(StopResourceSnapshotJob$)
|
|
550
589
|
.build() {
|
|
551
590
|
}
|
|
552
591
|
|
|
553
|
-
class SubmitOpportunityCommand extends
|
|
592
|
+
class SubmitOpportunityCommand extends Command
|
|
554
593
|
.classBuilder()
|
|
555
594
|
.ep(commonParams)
|
|
556
595
|
.m(function (Command, cs, config, o) {
|
|
557
|
-
return [
|
|
596
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
558
597
|
})
|
|
559
598
|
.s("AWSPartnerCentralSelling", "SubmitOpportunity", {})
|
|
560
599
|
.n("PartnerCentralSellingClient", "SubmitOpportunityCommand")
|
|
561
|
-
.sc(
|
|
600
|
+
.sc(SubmitOpportunity$)
|
|
562
601
|
.build() {
|
|
563
602
|
}
|
|
564
603
|
|
|
565
|
-
class TagResourceCommand extends
|
|
604
|
+
class TagResourceCommand extends Command
|
|
566
605
|
.classBuilder()
|
|
567
606
|
.ep(commonParams)
|
|
568
607
|
.m(function (Command, cs, config, o) {
|
|
569
|
-
return [
|
|
608
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
570
609
|
})
|
|
571
610
|
.s("AWSPartnerCentralSelling", "TagResource", {})
|
|
572
611
|
.n("PartnerCentralSellingClient", "TagResourceCommand")
|
|
573
|
-
.sc(
|
|
612
|
+
.sc(TagResource$)
|
|
574
613
|
.build() {
|
|
575
614
|
}
|
|
576
615
|
|
|
577
|
-
class UntagResourceCommand extends
|
|
616
|
+
class UntagResourceCommand extends Command
|
|
578
617
|
.classBuilder()
|
|
579
618
|
.ep(commonParams)
|
|
580
619
|
.m(function (Command, cs, config, o) {
|
|
581
|
-
return [
|
|
620
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
582
621
|
})
|
|
583
622
|
.s("AWSPartnerCentralSelling", "UntagResource", {})
|
|
584
623
|
.n("PartnerCentralSellingClient", "UntagResourceCommand")
|
|
585
|
-
.sc(
|
|
624
|
+
.sc(UntagResource$)
|
|
586
625
|
.build() {
|
|
587
626
|
}
|
|
588
627
|
|
|
589
|
-
class UpdateEngagementContextCommand extends
|
|
628
|
+
class UpdateEngagementContextCommand extends Command
|
|
590
629
|
.classBuilder()
|
|
591
630
|
.ep(commonParams)
|
|
592
631
|
.m(function (Command, cs, config, o) {
|
|
593
|
-
return [
|
|
632
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
594
633
|
})
|
|
595
634
|
.s("AWSPartnerCentralSelling", "UpdateEngagementContext", {})
|
|
596
635
|
.n("PartnerCentralSellingClient", "UpdateEngagementContextCommand")
|
|
597
|
-
.sc(
|
|
636
|
+
.sc(UpdateEngagementContext$)
|
|
598
637
|
.build() {
|
|
599
638
|
}
|
|
600
639
|
|
|
601
|
-
class UpdateOpportunityCommand extends
|
|
640
|
+
class UpdateOpportunityCommand extends Command
|
|
602
641
|
.classBuilder()
|
|
603
642
|
.ep(commonParams)
|
|
604
643
|
.m(function (Command, cs, config, o) {
|
|
605
|
-
return [
|
|
644
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
606
645
|
})
|
|
607
646
|
.s("AWSPartnerCentralSelling", "UpdateOpportunity", {})
|
|
608
647
|
.n("PartnerCentralSellingClient", "UpdateOpportunityCommand")
|
|
609
|
-
.sc(
|
|
648
|
+
.sc(UpdateOpportunity$)
|
|
610
649
|
.build() {
|
|
611
650
|
}
|
|
612
651
|
|
|
613
|
-
const paginateListEngagementByAcceptingInvitationTasks =
|
|
652
|
+
const paginateListEngagementByAcceptingInvitationTasks = createPaginator(PartnerCentralSellingClient, ListEngagementByAcceptingInvitationTasksCommand, "NextToken", "NextToken", "MaxResults");
|
|
653
|
+
|
|
654
|
+
const paginateListEngagementFromOpportunityTasks = createPaginator(PartnerCentralSellingClient, ListEngagementFromOpportunityTasksCommand, "NextToken", "NextToken", "MaxResults");
|
|
614
655
|
|
|
615
|
-
const
|
|
656
|
+
const paginateListEngagementInvitations = createPaginator(PartnerCentralSellingClient, ListEngagementInvitationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
616
657
|
|
|
617
|
-
const
|
|
658
|
+
const paginateListEngagementMembers = createPaginator(PartnerCentralSellingClient, ListEngagementMembersCommand, "NextToken", "NextToken", "MaxResults");
|
|
618
659
|
|
|
619
|
-
const
|
|
660
|
+
const paginateListEngagementResourceAssociations = createPaginator(PartnerCentralSellingClient, ListEngagementResourceAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
620
661
|
|
|
621
|
-
const
|
|
662
|
+
const paginateListEngagements = createPaginator(PartnerCentralSellingClient, ListEngagementsCommand, "NextToken", "NextToken", "MaxResults");
|
|
622
663
|
|
|
623
|
-
const
|
|
664
|
+
const paginateListOpportunities = createPaginator(PartnerCentralSellingClient, ListOpportunitiesCommand, "NextToken", "NextToken", "MaxResults");
|
|
624
665
|
|
|
625
|
-
const
|
|
666
|
+
const paginateListOpportunityFromEngagementTasks = createPaginator(PartnerCentralSellingClient, ListOpportunityFromEngagementTasksCommand, "NextToken", "NextToken", "MaxResults");
|
|
626
667
|
|
|
627
|
-
const
|
|
668
|
+
const paginateListProspectingFromEngagementTasks = createPaginator(PartnerCentralSellingClient, ListProspectingFromEngagementTasksCommand, "NextToken", "NextToken", "MaxResults");
|
|
628
669
|
|
|
629
|
-
const paginateListResourceSnapshotJobs =
|
|
670
|
+
const paginateListResourceSnapshotJobs = createPaginator(PartnerCentralSellingClient, ListResourceSnapshotJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
630
671
|
|
|
631
|
-
const paginateListResourceSnapshots =
|
|
672
|
+
const paginateListResourceSnapshots = createPaginator(PartnerCentralSellingClient, ListResourceSnapshotsCommand, "NextToken", "NextToken", "MaxResults");
|
|
632
673
|
|
|
633
|
-
const paginateListSolutions =
|
|
674
|
+
const paginateListSolutions = createPaginator(PartnerCentralSellingClient, ListSolutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
634
675
|
|
|
635
676
|
const commands = {
|
|
636
677
|
AcceptEngagementInvitationCommand,
|
|
@@ -648,6 +689,7 @@ const commands = {
|
|
|
648
689
|
GetEngagementCommand,
|
|
649
690
|
GetEngagementInvitationCommand,
|
|
650
691
|
GetOpportunityCommand,
|
|
692
|
+
GetProspectingFromEngagementTaskCommand,
|
|
651
693
|
GetResourceSnapshotCommand,
|
|
652
694
|
GetResourceSnapshotJobCommand,
|
|
653
695
|
GetSellingSystemSettingsCommand,
|
|
@@ -659,6 +701,7 @@ const commands = {
|
|
|
659
701
|
ListEngagementsCommand,
|
|
660
702
|
ListOpportunitiesCommand,
|
|
661
703
|
ListOpportunityFromEngagementTasksCommand,
|
|
704
|
+
ListProspectingFromEngagementTasksCommand,
|
|
662
705
|
ListResourceSnapshotJobsCommand,
|
|
663
706
|
ListResourceSnapshotsCommand,
|
|
664
707
|
ListSolutionsCommand,
|
|
@@ -668,6 +711,7 @@ const commands = {
|
|
|
668
711
|
StartEngagementByAcceptingInvitationTaskCommand,
|
|
669
712
|
StartEngagementFromOpportunityTaskCommand,
|
|
670
713
|
StartOpportunityFromEngagementTaskCommand,
|
|
714
|
+
StartProspectingFromEngagementTaskCommand,
|
|
671
715
|
StartResourceSnapshotJobCommand,
|
|
672
716
|
StopResourceSnapshotJobCommand,
|
|
673
717
|
SubmitOpportunityCommand,
|
|
@@ -685,13 +729,14 @@ const paginators = {
|
|
|
685
729
|
paginateListEngagements,
|
|
686
730
|
paginateListOpportunities,
|
|
687
731
|
paginateListOpportunityFromEngagementTasks,
|
|
732
|
+
paginateListProspectingFromEngagementTasks,
|
|
688
733
|
paginateListResourceSnapshotJobs,
|
|
689
734
|
paginateListResourceSnapshots,
|
|
690
735
|
paginateListSolutions,
|
|
691
736
|
};
|
|
692
737
|
class PartnerCentralSelling extends PartnerCentralSellingClient {
|
|
693
738
|
}
|
|
694
|
-
|
|
739
|
+
createAggregatedClient(commands, PartnerCentralSelling, { paginators });
|
|
695
740
|
|
|
696
741
|
const AccessDeniedExceptionErrorCode = {
|
|
697
742
|
INCOMPATIBLE_BENEFIT_AWS_PARTNER_STATE: "INCOMPATIBLE_BENEFIT_AWS_PARTNER_STATE",
|
|
@@ -1297,6 +1342,7 @@ const MarketSegment = {
|
|
|
1297
1342
|
const EngagementContextType = {
|
|
1298
1343
|
CUSTOMER_PROJECT: "CustomerProject",
|
|
1299
1344
|
LEAD: "Lead",
|
|
1345
|
+
PROSPECTING_RESULT: "ProspectingResult",
|
|
1300
1346
|
};
|
|
1301
1347
|
const EngagementSortName = {
|
|
1302
1348
|
CreatedDate: "CreatedDate",
|
|
@@ -1487,6 +1533,17 @@ const OpportunitySortName = {
|
|
|
1487
1533
|
LAST_MODIFIEDDATE: "LastModifiedDate",
|
|
1488
1534
|
TARGET_CLOSE_DATE: "TargetCloseDate",
|
|
1489
1535
|
};
|
|
1536
|
+
const ProspectingTaskStatus = {
|
|
1537
|
+
COMPLETED: "COMPLETED",
|
|
1538
|
+
FAILED: "FAILED",
|
|
1539
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1540
|
+
PENDING: "PENDING",
|
|
1541
|
+
};
|
|
1542
|
+
const ProspectingFromEngagementTaskSortName = {
|
|
1543
|
+
FailedEngagementCount: "FailedEngagementCount",
|
|
1544
|
+
StartTime: "StartTime",
|
|
1545
|
+
TaskName: "TaskName",
|
|
1546
|
+
};
|
|
1490
1547
|
const ResourceType = {
|
|
1491
1548
|
OPPORTUNITY: "Opportunity",
|
|
1492
1549
|
};
|
|
@@ -1510,9 +1567,6 @@ const SolutionStatus = {
|
|
|
1510
1567
|
INACTIVE: "Inactive",
|
|
1511
1568
|
};
|
|
1512
1569
|
|
|
1513
|
-
exports.$Command = client.Command;
|
|
1514
|
-
exports.__Client = client.Client;
|
|
1515
|
-
exports.PartnerCentralSellingServiceException = PartnerCentralSellingServiceException.PartnerCentralSellingServiceException;
|
|
1516
1570
|
exports.AcceptEngagementInvitationCommand = AcceptEngagementInvitationCommand;
|
|
1517
1571
|
exports.AccessDeniedExceptionErrorCode = AccessDeniedExceptionErrorCode;
|
|
1518
1572
|
exports.AssignOpportunityCommand = AssignOpportunityCommand;
|
|
@@ -1545,6 +1599,7 @@ exports.GetAwsOpportunitySummaryCommand = GetAwsOpportunitySummaryCommand;
|
|
|
1545
1599
|
exports.GetEngagementCommand = GetEngagementCommand;
|
|
1546
1600
|
exports.GetEngagementInvitationCommand = GetEngagementInvitationCommand;
|
|
1547
1601
|
exports.GetOpportunityCommand = GetOpportunityCommand;
|
|
1602
|
+
exports.GetProspectingFromEngagementTaskCommand = GetProspectingFromEngagementTaskCommand;
|
|
1548
1603
|
exports.GetResourceSnapshotCommand = GetResourceSnapshotCommand;
|
|
1549
1604
|
exports.GetResourceSnapshotJobCommand = GetResourceSnapshotJobCommand;
|
|
1550
1605
|
exports.GetSellingSystemSettingsCommand = GetSellingSystemSettingsCommand;
|
|
@@ -1559,6 +1614,7 @@ exports.ListEngagementResourceAssociationsCommand = ListEngagementResourceAssoci
|
|
|
1559
1614
|
exports.ListEngagementsCommand = ListEngagementsCommand;
|
|
1560
1615
|
exports.ListOpportunitiesCommand = ListOpportunitiesCommand;
|
|
1561
1616
|
exports.ListOpportunityFromEngagementTasksCommand = ListOpportunityFromEngagementTasksCommand;
|
|
1617
|
+
exports.ListProspectingFromEngagementTasksCommand = ListProspectingFromEngagementTasksCommand;
|
|
1562
1618
|
exports.ListResourceSnapshotJobsCommand = ListResourceSnapshotJobsCommand;
|
|
1563
1619
|
exports.ListResourceSnapshotsCommand = ListResourceSnapshotsCommand;
|
|
1564
1620
|
exports.ListSolutionsCommand = ListSolutionsCommand;
|
|
@@ -1576,6 +1632,8 @@ exports.PartnerCentralSelling = PartnerCentralSelling;
|
|
|
1576
1632
|
exports.PartnerCentralSellingClient = PartnerCentralSellingClient;
|
|
1577
1633
|
exports.PaymentFrequency = PaymentFrequency;
|
|
1578
1634
|
exports.PrimaryNeedFromAws = PrimaryNeedFromAws;
|
|
1635
|
+
exports.ProspectingFromEngagementTaskSortName = ProspectingFromEngagementTaskSortName;
|
|
1636
|
+
exports.ProspectingTaskStatus = ProspectingTaskStatus;
|
|
1579
1637
|
exports.PutSellingSystemSettingsCommand = PutSellingSystemSettingsCommand;
|
|
1580
1638
|
exports.ReasonCode = ReasonCode;
|
|
1581
1639
|
exports.ReceiverResponsibility = ReceiverResponsibility;
|
|
@@ -1595,6 +1653,7 @@ exports.Stage = Stage;
|
|
|
1595
1653
|
exports.StartEngagementByAcceptingInvitationTaskCommand = StartEngagementByAcceptingInvitationTaskCommand;
|
|
1596
1654
|
exports.StartEngagementFromOpportunityTaskCommand = StartEngagementFromOpportunityTaskCommand;
|
|
1597
1655
|
exports.StartOpportunityFromEngagementTaskCommand = StartOpportunityFromEngagementTaskCommand;
|
|
1656
|
+
exports.StartProspectingFromEngagementTaskCommand = StartProspectingFromEngagementTaskCommand;
|
|
1598
1657
|
exports.StartResourceSnapshotJobCommand = StartResourceSnapshotJobCommand;
|
|
1599
1658
|
exports.StopResourceSnapshotJobCommand = StopResourceSnapshotJobCommand;
|
|
1600
1659
|
exports.SubmitOpportunityCommand = SubmitOpportunityCommand;
|
|
@@ -1614,26 +1673,7 @@ exports.paginateListEngagementResourceAssociations = paginateListEngagementResou
|
|
|
1614
1673
|
exports.paginateListEngagements = paginateListEngagements;
|
|
1615
1674
|
exports.paginateListOpportunities = paginateListOpportunities;
|
|
1616
1675
|
exports.paginateListOpportunityFromEngagementTasks = paginateListOpportunityFromEngagementTasks;
|
|
1676
|
+
exports.paginateListProspectingFromEngagementTasks = paginateListProspectingFromEngagementTasks;
|
|
1617
1677
|
exports.paginateListResourceSnapshotJobs = paginateListResourceSnapshotJobs;
|
|
1618
1678
|
exports.paginateListResourceSnapshots = paginateListResourceSnapshots;
|
|
1619
1679
|
exports.paginateListSolutions = paginateListSolutions;
|
|
1620
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
1621
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1622
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1623
|
-
enumerable: true,
|
|
1624
|
-
value: schemas_0['__proto__']
|
|
1625
|
-
});
|
|
1626
|
-
|
|
1627
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
1628
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
1629
|
-
});
|
|
1630
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
1631
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1632
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1633
|
-
enumerable: true,
|
|
1634
|
-
value: errors['__proto__']
|
|
1635
|
-
});
|
|
1636
|
-
|
|
1637
|
-
Object.keys(errors).forEach(function (k) {
|
|
1638
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
1639
|
-
});
|