@aws-sdk/client-qbusiness 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/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 +314 -334
- package/dist-cjs/models/QBusinessServiceException.js +4 -8
- package/dist-cjs/models/errors.js +21 -34
- package/dist-cjs/runtimeConfig.browser.js +25 -29
- package/dist-cjs/runtimeConfig.js +34 -38
- package/dist-cjs/runtimeConfig.native.js +6 -9
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +895 -578
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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 { resolveEventStreamConfig, getEventStreamPlugin } = require("@aws-sdk/middleware-eventstream");
|
|
4
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
5
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
6
|
+
exports.$Command = Command;
|
|
7
|
+
exports.__Client = Client;
|
|
8
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
9
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
10
|
+
const { resolveEventStreamSerdeConfig } = require("@smithy/core/event-streams");
|
|
11
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
12
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
13
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
14
|
+
const { resolveHttpAuthSchemeConfig, defaultQBusinessHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
15
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
16
|
+
const { AssociatePermission$, BatchDeleteDocument$, BatchPutDocument$, CancelSubscription$, Chat$, ChatSync$, CheckDocumentAccess$, CreateAnonymousWebExperienceUrl$, CreateApplication$, CreateChatResponseConfiguration$, CreateDataAccessor$, CreateDataSource$, CreateIndex$, CreatePlugin$, CreateRetriever$, CreateSubscription$, CreateUser$, CreateWebExperience$, DeleteApplication$, DeleteAttachment$, DeleteChatControlsConfiguration$, DeleteChatResponseConfiguration$, DeleteConversation$, DeleteDataAccessor$, DeleteDataSource$, DeleteGroup$, DeleteIndex$, DeletePlugin$, DeleteRetriever$, DeleteUser$, DeleteWebExperience$, DisassociatePermission$, GetApplication$, GetChatControlsConfiguration$, GetChatResponseConfiguration$, GetDataAccessor$, GetDataSource$, GetDocumentContent$, GetGroup$, GetIndex$, GetMedia$, GetPlugin$, GetPolicy$, GetRetriever$, GetUser$, GetWebExperience$, ListApplications$, ListAttachments$, ListChatResponseConfigurations$, ListConversations$, ListDataAccessors$, ListDataSources$, ListDataSourceSyncJobs$, ListDocuments$, ListGroups$, ListIndices$, ListMessages$, ListPluginActions$, ListPlugins$, ListPluginTypeActions$, ListPluginTypeMetadata$, ListRetrievers$, ListSubscriptions$, ListTagsForResource$, ListWebExperiences$, PutFeedback$, PutGroup$, SearchRelevantContent$, StartDataSourceSyncJob$, StopDataSourceSyncJob$, TagResource$, UntagResource$, UpdateApplication$, UpdateChatControlsConfiguration$, UpdateChatResponseConfiguration$, UpdateDataAccessor$, UpdateDataSource$, UpdateIndex$, UpdatePlugin$, UpdateRetriever$, UpdateSubscription$, UpdateUser$, UpdateWebExperience$ } = require("./schemas/schemas_0");
|
|
17
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
18
|
+
__exportStar(require("./models/errors"), exports);
|
|
19
|
+
const { QBusinessServiceException } = require("./models/QBusinessServiceException");
|
|
20
|
+
exports.QBusinessServiceException = QBusinessServiceException;
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -68,103 +71,103 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class QBusinessClient extends
|
|
79
|
+
class QBusinessClient extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
89
|
-
const _config_8 =
|
|
90
|
-
const _config_9 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveEventStreamSerdeConfig(_config_6);
|
|
92
|
+
const _config_8 = resolveHttpAuthSchemeConfig(_config_7);
|
|
93
|
+
const _config_9 = resolveEventStreamConfig(_config_8);
|
|
91
94
|
const _config_10 = resolveRuntimeExtensions(_config_9, configuration?.extensions || []);
|
|
92
95
|
this.config = _config_10;
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
this.middlewareStack.use(
|
|
100
|
-
this.middlewareStack.use(
|
|
101
|
-
httpAuthSchemeParametersProvider:
|
|
102
|
-
identityProviderConfigProvider: async (config) => new
|
|
96
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
102
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
103
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
104
|
+
httpAuthSchemeParametersProvider: defaultQBusinessHttpAuthSchemeParametersProvider,
|
|
105
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
103
106
|
"aws.auth#sigv4": config.credentials,
|
|
104
107
|
}),
|
|
105
108
|
}));
|
|
106
|
-
this.middlewareStack.use(
|
|
109
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
107
110
|
}
|
|
108
111
|
destroy() {
|
|
109
112
|
super.destroy();
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class AssociatePermissionCommand extends
|
|
116
|
+
class AssociatePermissionCommand extends Command
|
|
114
117
|
.classBuilder()
|
|
115
118
|
.ep(commonParams)
|
|
116
119
|
.m(function (Command, cs, config, o) {
|
|
117
|
-
return [
|
|
120
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
118
121
|
})
|
|
119
122
|
.s("ExpertQ", "AssociatePermission", {})
|
|
120
123
|
.n("QBusinessClient", "AssociatePermissionCommand")
|
|
121
|
-
.sc(
|
|
124
|
+
.sc(AssociatePermission$)
|
|
122
125
|
.build() {
|
|
123
126
|
}
|
|
124
127
|
|
|
125
|
-
class BatchDeleteDocumentCommand extends
|
|
128
|
+
class BatchDeleteDocumentCommand extends Command
|
|
126
129
|
.classBuilder()
|
|
127
130
|
.ep(commonParams)
|
|
128
131
|
.m(function (Command, cs, config, o) {
|
|
129
|
-
return [
|
|
132
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
130
133
|
})
|
|
131
134
|
.s("ExpertQ", "BatchDeleteDocument", {})
|
|
132
135
|
.n("QBusinessClient", "BatchDeleteDocumentCommand")
|
|
133
|
-
.sc(
|
|
136
|
+
.sc(BatchDeleteDocument$)
|
|
134
137
|
.build() {
|
|
135
138
|
}
|
|
136
139
|
|
|
137
|
-
class BatchPutDocumentCommand extends
|
|
140
|
+
class BatchPutDocumentCommand extends Command
|
|
138
141
|
.classBuilder()
|
|
139
142
|
.ep(commonParams)
|
|
140
143
|
.m(function (Command, cs, config, o) {
|
|
141
|
-
return [
|
|
144
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
142
145
|
})
|
|
143
146
|
.s("ExpertQ", "BatchPutDocument", {})
|
|
144
147
|
.n("QBusinessClient", "BatchPutDocumentCommand")
|
|
145
|
-
.sc(
|
|
148
|
+
.sc(BatchPutDocument$)
|
|
146
149
|
.build() {
|
|
147
150
|
}
|
|
148
151
|
|
|
149
|
-
class CancelSubscriptionCommand extends
|
|
152
|
+
class CancelSubscriptionCommand extends Command
|
|
150
153
|
.classBuilder()
|
|
151
154
|
.ep(commonParams)
|
|
152
155
|
.m(function (Command, cs, config, o) {
|
|
153
|
-
return [
|
|
156
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
154
157
|
})
|
|
155
158
|
.s("ExpertQ", "CancelSubscription", {})
|
|
156
159
|
.n("QBusinessClient", "CancelSubscriptionCommand")
|
|
157
|
-
.sc(
|
|
160
|
+
.sc(CancelSubscription$)
|
|
158
161
|
.build() {
|
|
159
162
|
}
|
|
160
163
|
|
|
161
|
-
class ChatCommand extends
|
|
164
|
+
class ChatCommand extends Command
|
|
162
165
|
.classBuilder()
|
|
163
166
|
.ep(commonParams)
|
|
164
167
|
.m(function (Command, cs, config, o) {
|
|
165
168
|
return [
|
|
166
|
-
|
|
167
|
-
|
|
169
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
170
|
+
getEventStreamPlugin(config),
|
|
168
171
|
];
|
|
169
172
|
})
|
|
170
173
|
.s("ExpertQ", "Chat", {
|
|
@@ -174,985 +177,985 @@ class ChatCommand extends client.Command
|
|
|
174
177
|
},
|
|
175
178
|
})
|
|
176
179
|
.n("QBusinessClient", "ChatCommand")
|
|
177
|
-
.sc(
|
|
180
|
+
.sc(Chat$)
|
|
178
181
|
.build() {
|
|
179
182
|
}
|
|
180
183
|
|
|
181
|
-
class ChatSyncCommand extends
|
|
184
|
+
class ChatSyncCommand 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("ExpertQ", "ChatSync", {})
|
|
188
191
|
.n("QBusinessClient", "ChatSyncCommand")
|
|
189
|
-
.sc(
|
|
192
|
+
.sc(ChatSync$)
|
|
190
193
|
.build() {
|
|
191
194
|
}
|
|
192
195
|
|
|
193
|
-
class CheckDocumentAccessCommand extends
|
|
196
|
+
class CheckDocumentAccessCommand 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("ExpertQ", "CheckDocumentAccess", {})
|
|
200
203
|
.n("QBusinessClient", "CheckDocumentAccessCommand")
|
|
201
|
-
.sc(
|
|
204
|
+
.sc(CheckDocumentAccess$)
|
|
202
205
|
.build() {
|
|
203
206
|
}
|
|
204
207
|
|
|
205
|
-
class CreateAnonymousWebExperienceUrlCommand extends
|
|
208
|
+
class CreateAnonymousWebExperienceUrlCommand 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("ExpertQ", "CreateAnonymousWebExperienceUrl", {})
|
|
212
215
|
.n("QBusinessClient", "CreateAnonymousWebExperienceUrlCommand")
|
|
213
|
-
.sc(
|
|
216
|
+
.sc(CreateAnonymousWebExperienceUrl$)
|
|
214
217
|
.build() {
|
|
215
218
|
}
|
|
216
219
|
|
|
217
|
-
class CreateApplicationCommand extends
|
|
220
|
+
class CreateApplicationCommand 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("ExpertQ", "CreateApplication", {})
|
|
224
227
|
.n("QBusinessClient", "CreateApplicationCommand")
|
|
225
|
-
.sc(
|
|
228
|
+
.sc(CreateApplication$)
|
|
226
229
|
.build() {
|
|
227
230
|
}
|
|
228
231
|
|
|
229
|
-
class CreateChatResponseConfigurationCommand extends
|
|
232
|
+
class CreateChatResponseConfigurationCommand 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("ExpertQ", "CreateChatResponseConfiguration", {})
|
|
236
239
|
.n("QBusinessClient", "CreateChatResponseConfigurationCommand")
|
|
237
|
-
.sc(
|
|
240
|
+
.sc(CreateChatResponseConfiguration$)
|
|
238
241
|
.build() {
|
|
239
242
|
}
|
|
240
243
|
|
|
241
|
-
class CreateDataAccessorCommand extends
|
|
244
|
+
class CreateDataAccessorCommand 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("ExpertQ", "CreateDataAccessor", {})
|
|
248
251
|
.n("QBusinessClient", "CreateDataAccessorCommand")
|
|
249
|
-
.sc(
|
|
252
|
+
.sc(CreateDataAccessor$)
|
|
250
253
|
.build() {
|
|
251
254
|
}
|
|
252
255
|
|
|
253
|
-
class CreateDataSourceCommand extends
|
|
256
|
+
class CreateDataSourceCommand 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("ExpertQ", "CreateDataSource", {})
|
|
260
263
|
.n("QBusinessClient", "CreateDataSourceCommand")
|
|
261
|
-
.sc(
|
|
264
|
+
.sc(CreateDataSource$)
|
|
262
265
|
.build() {
|
|
263
266
|
}
|
|
264
267
|
|
|
265
|
-
class CreateIndexCommand extends
|
|
268
|
+
class CreateIndexCommand 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("ExpertQ", "CreateIndex", {})
|
|
272
275
|
.n("QBusinessClient", "CreateIndexCommand")
|
|
273
|
-
.sc(
|
|
276
|
+
.sc(CreateIndex$)
|
|
274
277
|
.build() {
|
|
275
278
|
}
|
|
276
279
|
|
|
277
|
-
class CreatePluginCommand extends
|
|
280
|
+
class CreatePluginCommand 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("ExpertQ", "CreatePlugin", {})
|
|
284
287
|
.n("QBusinessClient", "CreatePluginCommand")
|
|
285
|
-
.sc(
|
|
288
|
+
.sc(CreatePlugin$)
|
|
286
289
|
.build() {
|
|
287
290
|
}
|
|
288
291
|
|
|
289
|
-
class CreateRetrieverCommand extends
|
|
292
|
+
class CreateRetrieverCommand 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())];
|
|
294
297
|
})
|
|
295
298
|
.s("ExpertQ", "CreateRetriever", {})
|
|
296
299
|
.n("QBusinessClient", "CreateRetrieverCommand")
|
|
297
|
-
.sc(
|
|
300
|
+
.sc(CreateRetriever$)
|
|
298
301
|
.build() {
|
|
299
302
|
}
|
|
300
303
|
|
|
301
|
-
class CreateSubscriptionCommand extends
|
|
304
|
+
class CreateSubscriptionCommand extends Command
|
|
302
305
|
.classBuilder()
|
|
303
306
|
.ep(commonParams)
|
|
304
307
|
.m(function (Command, cs, config, o) {
|
|
305
|
-
return [
|
|
308
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
306
309
|
})
|
|
307
310
|
.s("ExpertQ", "CreateSubscription", {})
|
|
308
311
|
.n("QBusinessClient", "CreateSubscriptionCommand")
|
|
309
|
-
.sc(
|
|
312
|
+
.sc(CreateSubscription$)
|
|
310
313
|
.build() {
|
|
311
314
|
}
|
|
312
315
|
|
|
313
|
-
class CreateUserCommand extends
|
|
316
|
+
class CreateUserCommand extends Command
|
|
314
317
|
.classBuilder()
|
|
315
318
|
.ep(commonParams)
|
|
316
319
|
.m(function (Command, cs, config, o) {
|
|
317
|
-
return [
|
|
320
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
318
321
|
})
|
|
319
322
|
.s("ExpertQ", "CreateUser", {})
|
|
320
323
|
.n("QBusinessClient", "CreateUserCommand")
|
|
321
|
-
.sc(
|
|
324
|
+
.sc(CreateUser$)
|
|
322
325
|
.build() {
|
|
323
326
|
}
|
|
324
327
|
|
|
325
|
-
class CreateWebExperienceCommand extends
|
|
328
|
+
class CreateWebExperienceCommand extends Command
|
|
326
329
|
.classBuilder()
|
|
327
330
|
.ep(commonParams)
|
|
328
331
|
.m(function (Command, cs, config, o) {
|
|
329
|
-
return [
|
|
332
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
330
333
|
})
|
|
331
334
|
.s("ExpertQ", "CreateWebExperience", {})
|
|
332
335
|
.n("QBusinessClient", "CreateWebExperienceCommand")
|
|
333
|
-
.sc(
|
|
336
|
+
.sc(CreateWebExperience$)
|
|
334
337
|
.build() {
|
|
335
338
|
}
|
|
336
339
|
|
|
337
|
-
class DeleteApplicationCommand extends
|
|
340
|
+
class DeleteApplicationCommand extends Command
|
|
338
341
|
.classBuilder()
|
|
339
342
|
.ep(commonParams)
|
|
340
343
|
.m(function (Command, cs, config, o) {
|
|
341
|
-
return [
|
|
344
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
342
345
|
})
|
|
343
346
|
.s("ExpertQ", "DeleteApplication", {})
|
|
344
347
|
.n("QBusinessClient", "DeleteApplicationCommand")
|
|
345
|
-
.sc(
|
|
348
|
+
.sc(DeleteApplication$)
|
|
346
349
|
.build() {
|
|
347
350
|
}
|
|
348
351
|
|
|
349
|
-
class DeleteAttachmentCommand extends
|
|
352
|
+
class DeleteAttachmentCommand extends Command
|
|
350
353
|
.classBuilder()
|
|
351
354
|
.ep(commonParams)
|
|
352
355
|
.m(function (Command, cs, config, o) {
|
|
353
|
-
return [
|
|
356
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
354
357
|
})
|
|
355
358
|
.s("ExpertQ", "DeleteAttachment", {})
|
|
356
359
|
.n("QBusinessClient", "DeleteAttachmentCommand")
|
|
357
|
-
.sc(
|
|
360
|
+
.sc(DeleteAttachment$)
|
|
358
361
|
.build() {
|
|
359
362
|
}
|
|
360
363
|
|
|
361
|
-
class DeleteChatControlsConfigurationCommand extends
|
|
364
|
+
class DeleteChatControlsConfigurationCommand extends Command
|
|
362
365
|
.classBuilder()
|
|
363
366
|
.ep(commonParams)
|
|
364
367
|
.m(function (Command, cs, config, o) {
|
|
365
|
-
return [
|
|
368
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
366
369
|
})
|
|
367
370
|
.s("ExpertQ", "DeleteChatControlsConfiguration", {})
|
|
368
371
|
.n("QBusinessClient", "DeleteChatControlsConfigurationCommand")
|
|
369
|
-
.sc(
|
|
372
|
+
.sc(DeleteChatControlsConfiguration$)
|
|
370
373
|
.build() {
|
|
371
374
|
}
|
|
372
375
|
|
|
373
|
-
class DeleteChatResponseConfigurationCommand extends
|
|
376
|
+
class DeleteChatResponseConfigurationCommand extends Command
|
|
374
377
|
.classBuilder()
|
|
375
378
|
.ep(commonParams)
|
|
376
379
|
.m(function (Command, cs, config, o) {
|
|
377
|
-
return [
|
|
380
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
378
381
|
})
|
|
379
382
|
.s("ExpertQ", "DeleteChatResponseConfiguration", {})
|
|
380
383
|
.n("QBusinessClient", "DeleteChatResponseConfigurationCommand")
|
|
381
|
-
.sc(
|
|
384
|
+
.sc(DeleteChatResponseConfiguration$)
|
|
382
385
|
.build() {
|
|
383
386
|
}
|
|
384
387
|
|
|
385
|
-
class DeleteConversationCommand extends
|
|
388
|
+
class DeleteConversationCommand extends Command
|
|
386
389
|
.classBuilder()
|
|
387
390
|
.ep(commonParams)
|
|
388
391
|
.m(function (Command, cs, config, o) {
|
|
389
|
-
return [
|
|
392
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
390
393
|
})
|
|
391
394
|
.s("ExpertQ", "DeleteConversation", {})
|
|
392
395
|
.n("QBusinessClient", "DeleteConversationCommand")
|
|
393
|
-
.sc(
|
|
396
|
+
.sc(DeleteConversation$)
|
|
394
397
|
.build() {
|
|
395
398
|
}
|
|
396
399
|
|
|
397
|
-
class DeleteDataAccessorCommand extends
|
|
400
|
+
class DeleteDataAccessorCommand extends Command
|
|
398
401
|
.classBuilder()
|
|
399
402
|
.ep(commonParams)
|
|
400
403
|
.m(function (Command, cs, config, o) {
|
|
401
|
-
return [
|
|
404
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
402
405
|
})
|
|
403
406
|
.s("ExpertQ", "DeleteDataAccessor", {})
|
|
404
407
|
.n("QBusinessClient", "DeleteDataAccessorCommand")
|
|
405
|
-
.sc(
|
|
408
|
+
.sc(DeleteDataAccessor$)
|
|
406
409
|
.build() {
|
|
407
410
|
}
|
|
408
411
|
|
|
409
|
-
class DeleteDataSourceCommand extends
|
|
412
|
+
class DeleteDataSourceCommand extends Command
|
|
410
413
|
.classBuilder()
|
|
411
414
|
.ep(commonParams)
|
|
412
415
|
.m(function (Command, cs, config, o) {
|
|
413
|
-
return [
|
|
416
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
414
417
|
})
|
|
415
418
|
.s("ExpertQ", "DeleteDataSource", {})
|
|
416
419
|
.n("QBusinessClient", "DeleteDataSourceCommand")
|
|
417
|
-
.sc(
|
|
420
|
+
.sc(DeleteDataSource$)
|
|
418
421
|
.build() {
|
|
419
422
|
}
|
|
420
423
|
|
|
421
|
-
class DeleteGroupCommand extends
|
|
424
|
+
class DeleteGroupCommand extends Command
|
|
422
425
|
.classBuilder()
|
|
423
426
|
.ep(commonParams)
|
|
424
427
|
.m(function (Command, cs, config, o) {
|
|
425
|
-
return [
|
|
428
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
426
429
|
})
|
|
427
430
|
.s("ExpertQ", "DeleteGroup", {})
|
|
428
431
|
.n("QBusinessClient", "DeleteGroupCommand")
|
|
429
|
-
.sc(
|
|
432
|
+
.sc(DeleteGroup$)
|
|
430
433
|
.build() {
|
|
431
434
|
}
|
|
432
435
|
|
|
433
|
-
class DeleteIndexCommand extends
|
|
436
|
+
class DeleteIndexCommand extends Command
|
|
434
437
|
.classBuilder()
|
|
435
438
|
.ep(commonParams)
|
|
436
439
|
.m(function (Command, cs, config, o) {
|
|
437
|
-
return [
|
|
440
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
438
441
|
})
|
|
439
442
|
.s("ExpertQ", "DeleteIndex", {})
|
|
440
443
|
.n("QBusinessClient", "DeleteIndexCommand")
|
|
441
|
-
.sc(
|
|
444
|
+
.sc(DeleteIndex$)
|
|
442
445
|
.build() {
|
|
443
446
|
}
|
|
444
447
|
|
|
445
|
-
class DeletePluginCommand extends
|
|
448
|
+
class DeletePluginCommand extends Command
|
|
446
449
|
.classBuilder()
|
|
447
450
|
.ep(commonParams)
|
|
448
451
|
.m(function (Command, cs, config, o) {
|
|
449
|
-
return [
|
|
452
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
450
453
|
})
|
|
451
454
|
.s("ExpertQ", "DeletePlugin", {})
|
|
452
455
|
.n("QBusinessClient", "DeletePluginCommand")
|
|
453
|
-
.sc(
|
|
456
|
+
.sc(DeletePlugin$)
|
|
454
457
|
.build() {
|
|
455
458
|
}
|
|
456
459
|
|
|
457
|
-
class DeleteRetrieverCommand extends
|
|
460
|
+
class DeleteRetrieverCommand extends Command
|
|
458
461
|
.classBuilder()
|
|
459
462
|
.ep(commonParams)
|
|
460
463
|
.m(function (Command, cs, config, o) {
|
|
461
|
-
return [
|
|
464
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
462
465
|
})
|
|
463
466
|
.s("ExpertQ", "DeleteRetriever", {})
|
|
464
467
|
.n("QBusinessClient", "DeleteRetrieverCommand")
|
|
465
|
-
.sc(
|
|
468
|
+
.sc(DeleteRetriever$)
|
|
466
469
|
.build() {
|
|
467
470
|
}
|
|
468
471
|
|
|
469
|
-
class DeleteUserCommand extends
|
|
472
|
+
class DeleteUserCommand extends Command
|
|
470
473
|
.classBuilder()
|
|
471
474
|
.ep(commonParams)
|
|
472
475
|
.m(function (Command, cs, config, o) {
|
|
473
|
-
return [
|
|
476
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
474
477
|
})
|
|
475
478
|
.s("ExpertQ", "DeleteUser", {})
|
|
476
479
|
.n("QBusinessClient", "DeleteUserCommand")
|
|
477
|
-
.sc(
|
|
480
|
+
.sc(DeleteUser$)
|
|
478
481
|
.build() {
|
|
479
482
|
}
|
|
480
483
|
|
|
481
|
-
class DeleteWebExperienceCommand extends
|
|
484
|
+
class DeleteWebExperienceCommand extends Command
|
|
482
485
|
.classBuilder()
|
|
483
486
|
.ep(commonParams)
|
|
484
487
|
.m(function (Command, cs, config, o) {
|
|
485
|
-
return [
|
|
488
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
486
489
|
})
|
|
487
490
|
.s("ExpertQ", "DeleteWebExperience", {})
|
|
488
491
|
.n("QBusinessClient", "DeleteWebExperienceCommand")
|
|
489
|
-
.sc(
|
|
492
|
+
.sc(DeleteWebExperience$)
|
|
490
493
|
.build() {
|
|
491
494
|
}
|
|
492
495
|
|
|
493
|
-
class DisassociatePermissionCommand extends
|
|
496
|
+
class DisassociatePermissionCommand extends Command
|
|
494
497
|
.classBuilder()
|
|
495
498
|
.ep(commonParams)
|
|
496
499
|
.m(function (Command, cs, config, o) {
|
|
497
|
-
return [
|
|
500
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
498
501
|
})
|
|
499
502
|
.s("ExpertQ", "DisassociatePermission", {})
|
|
500
503
|
.n("QBusinessClient", "DisassociatePermissionCommand")
|
|
501
|
-
.sc(
|
|
504
|
+
.sc(DisassociatePermission$)
|
|
502
505
|
.build() {
|
|
503
506
|
}
|
|
504
507
|
|
|
505
|
-
class GetApplicationCommand extends
|
|
508
|
+
class GetApplicationCommand extends Command
|
|
506
509
|
.classBuilder()
|
|
507
510
|
.ep(commonParams)
|
|
508
511
|
.m(function (Command, cs, config, o) {
|
|
509
|
-
return [
|
|
512
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
510
513
|
})
|
|
511
514
|
.s("ExpertQ", "GetApplication", {})
|
|
512
515
|
.n("QBusinessClient", "GetApplicationCommand")
|
|
513
|
-
.sc(
|
|
516
|
+
.sc(GetApplication$)
|
|
514
517
|
.build() {
|
|
515
518
|
}
|
|
516
519
|
|
|
517
|
-
class GetChatControlsConfigurationCommand extends
|
|
520
|
+
class GetChatControlsConfigurationCommand extends Command
|
|
518
521
|
.classBuilder()
|
|
519
522
|
.ep(commonParams)
|
|
520
523
|
.m(function (Command, cs, config, o) {
|
|
521
|
-
return [
|
|
524
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
522
525
|
})
|
|
523
526
|
.s("ExpertQ", "GetChatControlsConfiguration", {})
|
|
524
527
|
.n("QBusinessClient", "GetChatControlsConfigurationCommand")
|
|
525
|
-
.sc(
|
|
528
|
+
.sc(GetChatControlsConfiguration$)
|
|
526
529
|
.build() {
|
|
527
530
|
}
|
|
528
531
|
|
|
529
|
-
class GetChatResponseConfigurationCommand extends
|
|
532
|
+
class GetChatResponseConfigurationCommand extends Command
|
|
530
533
|
.classBuilder()
|
|
531
534
|
.ep(commonParams)
|
|
532
535
|
.m(function (Command, cs, config, o) {
|
|
533
|
-
return [
|
|
536
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
534
537
|
})
|
|
535
538
|
.s("ExpertQ", "GetChatResponseConfiguration", {})
|
|
536
539
|
.n("QBusinessClient", "GetChatResponseConfigurationCommand")
|
|
537
|
-
.sc(
|
|
540
|
+
.sc(GetChatResponseConfiguration$)
|
|
538
541
|
.build() {
|
|
539
542
|
}
|
|
540
543
|
|
|
541
|
-
class GetDataAccessorCommand extends
|
|
544
|
+
class GetDataAccessorCommand extends Command
|
|
542
545
|
.classBuilder()
|
|
543
546
|
.ep(commonParams)
|
|
544
547
|
.m(function (Command, cs, config, o) {
|
|
545
|
-
return [
|
|
548
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
546
549
|
})
|
|
547
550
|
.s("ExpertQ", "GetDataAccessor", {})
|
|
548
551
|
.n("QBusinessClient", "GetDataAccessorCommand")
|
|
549
|
-
.sc(
|
|
552
|
+
.sc(GetDataAccessor$)
|
|
550
553
|
.build() {
|
|
551
554
|
}
|
|
552
555
|
|
|
553
|
-
class GetDataSourceCommand extends
|
|
556
|
+
class GetDataSourceCommand extends Command
|
|
554
557
|
.classBuilder()
|
|
555
558
|
.ep(commonParams)
|
|
556
559
|
.m(function (Command, cs, config, o) {
|
|
557
|
-
return [
|
|
560
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
558
561
|
})
|
|
559
562
|
.s("ExpertQ", "GetDataSource", {})
|
|
560
563
|
.n("QBusinessClient", "GetDataSourceCommand")
|
|
561
|
-
.sc(
|
|
564
|
+
.sc(GetDataSource$)
|
|
562
565
|
.build() {
|
|
563
566
|
}
|
|
564
567
|
|
|
565
|
-
class GetDocumentContentCommand extends
|
|
568
|
+
class GetDocumentContentCommand extends Command
|
|
566
569
|
.classBuilder()
|
|
567
570
|
.ep(commonParams)
|
|
568
571
|
.m(function (Command, cs, config, o) {
|
|
569
|
-
return [
|
|
572
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
570
573
|
})
|
|
571
574
|
.s("ExpertQ", "GetDocumentContent", {})
|
|
572
575
|
.n("QBusinessClient", "GetDocumentContentCommand")
|
|
573
|
-
.sc(
|
|
576
|
+
.sc(GetDocumentContent$)
|
|
574
577
|
.build() {
|
|
575
578
|
}
|
|
576
579
|
|
|
577
|
-
class GetGroupCommand extends
|
|
580
|
+
class GetGroupCommand extends Command
|
|
578
581
|
.classBuilder()
|
|
579
582
|
.ep(commonParams)
|
|
580
583
|
.m(function (Command, cs, config, o) {
|
|
581
|
-
return [
|
|
584
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
582
585
|
})
|
|
583
586
|
.s("ExpertQ", "GetGroup", {})
|
|
584
587
|
.n("QBusinessClient", "GetGroupCommand")
|
|
585
|
-
.sc(
|
|
588
|
+
.sc(GetGroup$)
|
|
586
589
|
.build() {
|
|
587
590
|
}
|
|
588
591
|
|
|
589
|
-
class GetIndexCommand extends
|
|
592
|
+
class GetIndexCommand extends Command
|
|
590
593
|
.classBuilder()
|
|
591
594
|
.ep(commonParams)
|
|
592
595
|
.m(function (Command, cs, config, o) {
|
|
593
|
-
return [
|
|
596
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
594
597
|
})
|
|
595
598
|
.s("ExpertQ", "GetIndex", {})
|
|
596
599
|
.n("QBusinessClient", "GetIndexCommand")
|
|
597
|
-
.sc(
|
|
600
|
+
.sc(GetIndex$)
|
|
598
601
|
.build() {
|
|
599
602
|
}
|
|
600
603
|
|
|
601
|
-
class GetMediaCommand extends
|
|
604
|
+
class GetMediaCommand extends Command
|
|
602
605
|
.classBuilder()
|
|
603
606
|
.ep(commonParams)
|
|
604
607
|
.m(function (Command, cs, config, o) {
|
|
605
|
-
return [
|
|
608
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
606
609
|
})
|
|
607
610
|
.s("ExpertQ", "GetMedia", {})
|
|
608
611
|
.n("QBusinessClient", "GetMediaCommand")
|
|
609
|
-
.sc(
|
|
612
|
+
.sc(GetMedia$)
|
|
610
613
|
.build() {
|
|
611
614
|
}
|
|
612
615
|
|
|
613
|
-
class GetPluginCommand extends
|
|
616
|
+
class GetPluginCommand extends Command
|
|
614
617
|
.classBuilder()
|
|
615
618
|
.ep(commonParams)
|
|
616
619
|
.m(function (Command, cs, config, o) {
|
|
617
|
-
return [
|
|
620
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
618
621
|
})
|
|
619
622
|
.s("ExpertQ", "GetPlugin", {})
|
|
620
623
|
.n("QBusinessClient", "GetPluginCommand")
|
|
621
|
-
.sc(
|
|
624
|
+
.sc(GetPlugin$)
|
|
622
625
|
.build() {
|
|
623
626
|
}
|
|
624
627
|
|
|
625
|
-
class GetPolicyCommand extends
|
|
628
|
+
class GetPolicyCommand extends Command
|
|
626
629
|
.classBuilder()
|
|
627
630
|
.ep(commonParams)
|
|
628
631
|
.m(function (Command, cs, config, o) {
|
|
629
|
-
return [
|
|
632
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
630
633
|
})
|
|
631
634
|
.s("ExpertQ", "GetPolicy", {})
|
|
632
635
|
.n("QBusinessClient", "GetPolicyCommand")
|
|
633
|
-
.sc(
|
|
636
|
+
.sc(GetPolicy$)
|
|
634
637
|
.build() {
|
|
635
638
|
}
|
|
636
639
|
|
|
637
|
-
class GetRetrieverCommand extends
|
|
640
|
+
class GetRetrieverCommand extends Command
|
|
638
641
|
.classBuilder()
|
|
639
642
|
.ep(commonParams)
|
|
640
643
|
.m(function (Command, cs, config, o) {
|
|
641
|
-
return [
|
|
644
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
642
645
|
})
|
|
643
646
|
.s("ExpertQ", "GetRetriever", {})
|
|
644
647
|
.n("QBusinessClient", "GetRetrieverCommand")
|
|
645
|
-
.sc(
|
|
648
|
+
.sc(GetRetriever$)
|
|
646
649
|
.build() {
|
|
647
650
|
}
|
|
648
651
|
|
|
649
|
-
class GetUserCommand extends
|
|
652
|
+
class GetUserCommand extends Command
|
|
650
653
|
.classBuilder()
|
|
651
654
|
.ep(commonParams)
|
|
652
655
|
.m(function (Command, cs, config, o) {
|
|
653
|
-
return [
|
|
656
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
654
657
|
})
|
|
655
658
|
.s("ExpertQ", "GetUser", {})
|
|
656
659
|
.n("QBusinessClient", "GetUserCommand")
|
|
657
|
-
.sc(
|
|
660
|
+
.sc(GetUser$)
|
|
658
661
|
.build() {
|
|
659
662
|
}
|
|
660
663
|
|
|
661
|
-
class GetWebExperienceCommand extends
|
|
664
|
+
class GetWebExperienceCommand extends Command
|
|
662
665
|
.classBuilder()
|
|
663
666
|
.ep(commonParams)
|
|
664
667
|
.m(function (Command, cs, config, o) {
|
|
665
|
-
return [
|
|
668
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
666
669
|
})
|
|
667
670
|
.s("ExpertQ", "GetWebExperience", {})
|
|
668
671
|
.n("QBusinessClient", "GetWebExperienceCommand")
|
|
669
|
-
.sc(
|
|
672
|
+
.sc(GetWebExperience$)
|
|
670
673
|
.build() {
|
|
671
674
|
}
|
|
672
675
|
|
|
673
|
-
class ListApplicationsCommand extends
|
|
676
|
+
class ListApplicationsCommand extends Command
|
|
674
677
|
.classBuilder()
|
|
675
678
|
.ep(commonParams)
|
|
676
679
|
.m(function (Command, cs, config, o) {
|
|
677
|
-
return [
|
|
680
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
678
681
|
})
|
|
679
682
|
.s("ExpertQ", "ListApplications", {})
|
|
680
683
|
.n("QBusinessClient", "ListApplicationsCommand")
|
|
681
|
-
.sc(
|
|
684
|
+
.sc(ListApplications$)
|
|
682
685
|
.build() {
|
|
683
686
|
}
|
|
684
687
|
|
|
685
|
-
class ListAttachmentsCommand extends
|
|
688
|
+
class ListAttachmentsCommand extends Command
|
|
686
689
|
.classBuilder()
|
|
687
690
|
.ep(commonParams)
|
|
688
691
|
.m(function (Command, cs, config, o) {
|
|
689
|
-
return [
|
|
692
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
690
693
|
})
|
|
691
694
|
.s("ExpertQ", "ListAttachments", {})
|
|
692
695
|
.n("QBusinessClient", "ListAttachmentsCommand")
|
|
693
|
-
.sc(
|
|
696
|
+
.sc(ListAttachments$)
|
|
694
697
|
.build() {
|
|
695
698
|
}
|
|
696
699
|
|
|
697
|
-
class ListChatResponseConfigurationsCommand extends
|
|
700
|
+
class ListChatResponseConfigurationsCommand extends Command
|
|
698
701
|
.classBuilder()
|
|
699
702
|
.ep(commonParams)
|
|
700
703
|
.m(function (Command, cs, config, o) {
|
|
701
|
-
return [
|
|
704
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
702
705
|
})
|
|
703
706
|
.s("ExpertQ", "ListChatResponseConfigurations", {})
|
|
704
707
|
.n("QBusinessClient", "ListChatResponseConfigurationsCommand")
|
|
705
|
-
.sc(
|
|
708
|
+
.sc(ListChatResponseConfigurations$)
|
|
706
709
|
.build() {
|
|
707
710
|
}
|
|
708
711
|
|
|
709
|
-
class ListConversationsCommand extends
|
|
712
|
+
class ListConversationsCommand extends Command
|
|
710
713
|
.classBuilder()
|
|
711
714
|
.ep(commonParams)
|
|
712
715
|
.m(function (Command, cs, config, o) {
|
|
713
|
-
return [
|
|
716
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
714
717
|
})
|
|
715
718
|
.s("ExpertQ", "ListConversations", {})
|
|
716
719
|
.n("QBusinessClient", "ListConversationsCommand")
|
|
717
|
-
.sc(
|
|
720
|
+
.sc(ListConversations$)
|
|
718
721
|
.build() {
|
|
719
722
|
}
|
|
720
723
|
|
|
721
|
-
class ListDataAccessorsCommand extends
|
|
724
|
+
class ListDataAccessorsCommand extends Command
|
|
722
725
|
.classBuilder()
|
|
723
726
|
.ep(commonParams)
|
|
724
727
|
.m(function (Command, cs, config, o) {
|
|
725
|
-
return [
|
|
728
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
726
729
|
})
|
|
727
730
|
.s("ExpertQ", "ListDataAccessors", {})
|
|
728
731
|
.n("QBusinessClient", "ListDataAccessorsCommand")
|
|
729
|
-
.sc(
|
|
732
|
+
.sc(ListDataAccessors$)
|
|
730
733
|
.build() {
|
|
731
734
|
}
|
|
732
735
|
|
|
733
|
-
class ListDataSourcesCommand extends
|
|
736
|
+
class ListDataSourcesCommand extends Command
|
|
734
737
|
.classBuilder()
|
|
735
738
|
.ep(commonParams)
|
|
736
739
|
.m(function (Command, cs, config, o) {
|
|
737
|
-
return [
|
|
740
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
738
741
|
})
|
|
739
742
|
.s("ExpertQ", "ListDataSources", {})
|
|
740
743
|
.n("QBusinessClient", "ListDataSourcesCommand")
|
|
741
|
-
.sc(
|
|
744
|
+
.sc(ListDataSources$)
|
|
742
745
|
.build() {
|
|
743
746
|
}
|
|
744
747
|
|
|
745
|
-
class ListDataSourceSyncJobsCommand extends
|
|
748
|
+
class ListDataSourceSyncJobsCommand extends Command
|
|
746
749
|
.classBuilder()
|
|
747
750
|
.ep(commonParams)
|
|
748
751
|
.m(function (Command, cs, config, o) {
|
|
749
|
-
return [
|
|
752
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
750
753
|
})
|
|
751
754
|
.s("ExpertQ", "ListDataSourceSyncJobs", {})
|
|
752
755
|
.n("QBusinessClient", "ListDataSourceSyncJobsCommand")
|
|
753
|
-
.sc(
|
|
756
|
+
.sc(ListDataSourceSyncJobs$)
|
|
754
757
|
.build() {
|
|
755
758
|
}
|
|
756
759
|
|
|
757
|
-
class ListDocumentsCommand extends
|
|
760
|
+
class ListDocumentsCommand extends Command
|
|
758
761
|
.classBuilder()
|
|
759
762
|
.ep(commonParams)
|
|
760
763
|
.m(function (Command, cs, config, o) {
|
|
761
|
-
return [
|
|
764
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
762
765
|
})
|
|
763
766
|
.s("ExpertQ", "ListDocuments", {})
|
|
764
767
|
.n("QBusinessClient", "ListDocumentsCommand")
|
|
765
|
-
.sc(
|
|
768
|
+
.sc(ListDocuments$)
|
|
766
769
|
.build() {
|
|
767
770
|
}
|
|
768
771
|
|
|
769
|
-
class ListGroupsCommand extends
|
|
772
|
+
class ListGroupsCommand extends Command
|
|
770
773
|
.classBuilder()
|
|
771
774
|
.ep(commonParams)
|
|
772
775
|
.m(function (Command, cs, config, o) {
|
|
773
|
-
return [
|
|
776
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
774
777
|
})
|
|
775
778
|
.s("ExpertQ", "ListGroups", {})
|
|
776
779
|
.n("QBusinessClient", "ListGroupsCommand")
|
|
777
|
-
.sc(
|
|
780
|
+
.sc(ListGroups$)
|
|
778
781
|
.build() {
|
|
779
782
|
}
|
|
780
783
|
|
|
781
|
-
class ListIndicesCommand extends
|
|
784
|
+
class ListIndicesCommand extends Command
|
|
782
785
|
.classBuilder()
|
|
783
786
|
.ep(commonParams)
|
|
784
787
|
.m(function (Command, cs, config, o) {
|
|
785
|
-
return [
|
|
788
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
786
789
|
})
|
|
787
790
|
.s("ExpertQ", "ListIndices", {})
|
|
788
791
|
.n("QBusinessClient", "ListIndicesCommand")
|
|
789
|
-
.sc(
|
|
792
|
+
.sc(ListIndices$)
|
|
790
793
|
.build() {
|
|
791
794
|
}
|
|
792
795
|
|
|
793
|
-
class ListMessagesCommand extends
|
|
796
|
+
class ListMessagesCommand extends Command
|
|
794
797
|
.classBuilder()
|
|
795
798
|
.ep(commonParams)
|
|
796
799
|
.m(function (Command, cs, config, o) {
|
|
797
|
-
return [
|
|
800
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
798
801
|
})
|
|
799
802
|
.s("ExpertQ", "ListMessages", {})
|
|
800
803
|
.n("QBusinessClient", "ListMessagesCommand")
|
|
801
|
-
.sc(
|
|
804
|
+
.sc(ListMessages$)
|
|
802
805
|
.build() {
|
|
803
806
|
}
|
|
804
807
|
|
|
805
|
-
class ListPluginActionsCommand extends
|
|
808
|
+
class ListPluginActionsCommand extends Command
|
|
806
809
|
.classBuilder()
|
|
807
810
|
.ep(commonParams)
|
|
808
811
|
.m(function (Command, cs, config, o) {
|
|
809
|
-
return [
|
|
812
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
810
813
|
})
|
|
811
814
|
.s("ExpertQ", "ListPluginActions", {})
|
|
812
815
|
.n("QBusinessClient", "ListPluginActionsCommand")
|
|
813
|
-
.sc(
|
|
816
|
+
.sc(ListPluginActions$)
|
|
814
817
|
.build() {
|
|
815
818
|
}
|
|
816
819
|
|
|
817
|
-
class ListPluginsCommand extends
|
|
820
|
+
class ListPluginsCommand extends Command
|
|
818
821
|
.classBuilder()
|
|
819
822
|
.ep(commonParams)
|
|
820
823
|
.m(function (Command, cs, config, o) {
|
|
821
|
-
return [
|
|
824
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
822
825
|
})
|
|
823
826
|
.s("ExpertQ", "ListPlugins", {})
|
|
824
827
|
.n("QBusinessClient", "ListPluginsCommand")
|
|
825
|
-
.sc(
|
|
828
|
+
.sc(ListPlugins$)
|
|
826
829
|
.build() {
|
|
827
830
|
}
|
|
828
831
|
|
|
829
|
-
class ListPluginTypeActionsCommand extends
|
|
832
|
+
class ListPluginTypeActionsCommand extends Command
|
|
830
833
|
.classBuilder()
|
|
831
834
|
.ep(commonParams)
|
|
832
835
|
.m(function (Command, cs, config, o) {
|
|
833
|
-
return [
|
|
836
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
834
837
|
})
|
|
835
838
|
.s("ExpertQ", "ListPluginTypeActions", {})
|
|
836
839
|
.n("QBusinessClient", "ListPluginTypeActionsCommand")
|
|
837
|
-
.sc(
|
|
840
|
+
.sc(ListPluginTypeActions$)
|
|
838
841
|
.build() {
|
|
839
842
|
}
|
|
840
843
|
|
|
841
|
-
class ListPluginTypeMetadataCommand extends
|
|
844
|
+
class ListPluginTypeMetadataCommand extends Command
|
|
842
845
|
.classBuilder()
|
|
843
846
|
.ep(commonParams)
|
|
844
847
|
.m(function (Command, cs, config, o) {
|
|
845
|
-
return [
|
|
848
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
846
849
|
})
|
|
847
850
|
.s("ExpertQ", "ListPluginTypeMetadata", {})
|
|
848
851
|
.n("QBusinessClient", "ListPluginTypeMetadataCommand")
|
|
849
|
-
.sc(
|
|
852
|
+
.sc(ListPluginTypeMetadata$)
|
|
850
853
|
.build() {
|
|
851
854
|
}
|
|
852
855
|
|
|
853
|
-
class ListRetrieversCommand extends
|
|
856
|
+
class ListRetrieversCommand extends Command
|
|
854
857
|
.classBuilder()
|
|
855
858
|
.ep(commonParams)
|
|
856
859
|
.m(function (Command, cs, config, o) {
|
|
857
|
-
return [
|
|
860
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
858
861
|
})
|
|
859
862
|
.s("ExpertQ", "ListRetrievers", {})
|
|
860
863
|
.n("QBusinessClient", "ListRetrieversCommand")
|
|
861
|
-
.sc(
|
|
864
|
+
.sc(ListRetrievers$)
|
|
862
865
|
.build() {
|
|
863
866
|
}
|
|
864
867
|
|
|
865
|
-
class ListSubscriptionsCommand extends
|
|
868
|
+
class ListSubscriptionsCommand extends Command
|
|
866
869
|
.classBuilder()
|
|
867
870
|
.ep(commonParams)
|
|
868
871
|
.m(function (Command, cs, config, o) {
|
|
869
|
-
return [
|
|
872
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
870
873
|
})
|
|
871
874
|
.s("ExpertQ", "ListSubscriptions", {})
|
|
872
875
|
.n("QBusinessClient", "ListSubscriptionsCommand")
|
|
873
|
-
.sc(
|
|
876
|
+
.sc(ListSubscriptions$)
|
|
874
877
|
.build() {
|
|
875
878
|
}
|
|
876
879
|
|
|
877
|
-
class ListTagsForResourceCommand extends
|
|
880
|
+
class ListTagsForResourceCommand extends Command
|
|
878
881
|
.classBuilder()
|
|
879
882
|
.ep(commonParams)
|
|
880
883
|
.m(function (Command, cs, config, o) {
|
|
881
|
-
return [
|
|
884
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
882
885
|
})
|
|
883
886
|
.s("ExpertQ", "ListTagsForResource", {})
|
|
884
887
|
.n("QBusinessClient", "ListTagsForResourceCommand")
|
|
885
|
-
.sc(
|
|
888
|
+
.sc(ListTagsForResource$)
|
|
886
889
|
.build() {
|
|
887
890
|
}
|
|
888
891
|
|
|
889
|
-
class ListWebExperiencesCommand extends
|
|
892
|
+
class ListWebExperiencesCommand extends Command
|
|
890
893
|
.classBuilder()
|
|
891
894
|
.ep(commonParams)
|
|
892
895
|
.m(function (Command, cs, config, o) {
|
|
893
|
-
return [
|
|
896
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
894
897
|
})
|
|
895
898
|
.s("ExpertQ", "ListWebExperiences", {})
|
|
896
899
|
.n("QBusinessClient", "ListWebExperiencesCommand")
|
|
897
|
-
.sc(
|
|
900
|
+
.sc(ListWebExperiences$)
|
|
898
901
|
.build() {
|
|
899
902
|
}
|
|
900
903
|
|
|
901
|
-
class PutFeedbackCommand extends
|
|
904
|
+
class PutFeedbackCommand extends Command
|
|
902
905
|
.classBuilder()
|
|
903
906
|
.ep(commonParams)
|
|
904
907
|
.m(function (Command, cs, config, o) {
|
|
905
|
-
return [
|
|
908
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
906
909
|
})
|
|
907
910
|
.s("ExpertQ", "PutFeedback", {})
|
|
908
911
|
.n("QBusinessClient", "PutFeedbackCommand")
|
|
909
|
-
.sc(
|
|
912
|
+
.sc(PutFeedback$)
|
|
910
913
|
.build() {
|
|
911
914
|
}
|
|
912
915
|
|
|
913
|
-
class PutGroupCommand extends
|
|
916
|
+
class PutGroupCommand extends Command
|
|
914
917
|
.classBuilder()
|
|
915
918
|
.ep(commonParams)
|
|
916
919
|
.m(function (Command, cs, config, o) {
|
|
917
|
-
return [
|
|
920
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
918
921
|
})
|
|
919
922
|
.s("ExpertQ", "PutGroup", {})
|
|
920
923
|
.n("QBusinessClient", "PutGroupCommand")
|
|
921
|
-
.sc(
|
|
924
|
+
.sc(PutGroup$)
|
|
922
925
|
.build() {
|
|
923
926
|
}
|
|
924
927
|
|
|
925
|
-
class SearchRelevantContentCommand extends
|
|
928
|
+
class SearchRelevantContentCommand extends Command
|
|
926
929
|
.classBuilder()
|
|
927
930
|
.ep(commonParams)
|
|
928
931
|
.m(function (Command, cs, config, o) {
|
|
929
|
-
return [
|
|
932
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
930
933
|
})
|
|
931
934
|
.s("ExpertQ", "SearchRelevantContent", {})
|
|
932
935
|
.n("QBusinessClient", "SearchRelevantContentCommand")
|
|
933
|
-
.sc(
|
|
936
|
+
.sc(SearchRelevantContent$)
|
|
934
937
|
.build() {
|
|
935
938
|
}
|
|
936
939
|
|
|
937
|
-
class StartDataSourceSyncJobCommand extends
|
|
940
|
+
class StartDataSourceSyncJobCommand extends Command
|
|
938
941
|
.classBuilder()
|
|
939
942
|
.ep(commonParams)
|
|
940
943
|
.m(function (Command, cs, config, o) {
|
|
941
|
-
return [
|
|
944
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
942
945
|
})
|
|
943
946
|
.s("ExpertQ", "StartDataSourceSyncJob", {})
|
|
944
947
|
.n("QBusinessClient", "StartDataSourceSyncJobCommand")
|
|
945
|
-
.sc(
|
|
948
|
+
.sc(StartDataSourceSyncJob$)
|
|
946
949
|
.build() {
|
|
947
950
|
}
|
|
948
951
|
|
|
949
|
-
class StopDataSourceSyncJobCommand extends
|
|
952
|
+
class StopDataSourceSyncJobCommand extends Command
|
|
950
953
|
.classBuilder()
|
|
951
954
|
.ep(commonParams)
|
|
952
955
|
.m(function (Command, cs, config, o) {
|
|
953
|
-
return [
|
|
956
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
954
957
|
})
|
|
955
958
|
.s("ExpertQ", "StopDataSourceSyncJob", {})
|
|
956
959
|
.n("QBusinessClient", "StopDataSourceSyncJobCommand")
|
|
957
|
-
.sc(
|
|
960
|
+
.sc(StopDataSourceSyncJob$)
|
|
958
961
|
.build() {
|
|
959
962
|
}
|
|
960
963
|
|
|
961
|
-
class TagResourceCommand extends
|
|
964
|
+
class TagResourceCommand extends Command
|
|
962
965
|
.classBuilder()
|
|
963
966
|
.ep(commonParams)
|
|
964
967
|
.m(function (Command, cs, config, o) {
|
|
965
|
-
return [
|
|
968
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
966
969
|
})
|
|
967
970
|
.s("ExpertQ", "TagResource", {})
|
|
968
971
|
.n("QBusinessClient", "TagResourceCommand")
|
|
969
|
-
.sc(
|
|
972
|
+
.sc(TagResource$)
|
|
970
973
|
.build() {
|
|
971
974
|
}
|
|
972
975
|
|
|
973
|
-
class UntagResourceCommand extends
|
|
976
|
+
class UntagResourceCommand extends Command
|
|
974
977
|
.classBuilder()
|
|
975
978
|
.ep(commonParams)
|
|
976
979
|
.m(function (Command, cs, config, o) {
|
|
977
|
-
return [
|
|
980
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
978
981
|
})
|
|
979
982
|
.s("ExpertQ", "UntagResource", {})
|
|
980
983
|
.n("QBusinessClient", "UntagResourceCommand")
|
|
981
|
-
.sc(
|
|
984
|
+
.sc(UntagResource$)
|
|
982
985
|
.build() {
|
|
983
986
|
}
|
|
984
987
|
|
|
985
|
-
class UpdateApplicationCommand extends
|
|
988
|
+
class UpdateApplicationCommand extends Command
|
|
986
989
|
.classBuilder()
|
|
987
990
|
.ep(commonParams)
|
|
988
991
|
.m(function (Command, cs, config, o) {
|
|
989
|
-
return [
|
|
992
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
990
993
|
})
|
|
991
994
|
.s("ExpertQ", "UpdateApplication", {})
|
|
992
995
|
.n("QBusinessClient", "UpdateApplicationCommand")
|
|
993
|
-
.sc(
|
|
996
|
+
.sc(UpdateApplication$)
|
|
994
997
|
.build() {
|
|
995
998
|
}
|
|
996
999
|
|
|
997
|
-
class UpdateChatControlsConfigurationCommand extends
|
|
1000
|
+
class UpdateChatControlsConfigurationCommand extends Command
|
|
998
1001
|
.classBuilder()
|
|
999
1002
|
.ep(commonParams)
|
|
1000
1003
|
.m(function (Command, cs, config, o) {
|
|
1001
|
-
return [
|
|
1004
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1002
1005
|
})
|
|
1003
1006
|
.s("ExpertQ", "UpdateChatControlsConfiguration", {})
|
|
1004
1007
|
.n("QBusinessClient", "UpdateChatControlsConfigurationCommand")
|
|
1005
|
-
.sc(
|
|
1008
|
+
.sc(UpdateChatControlsConfiguration$)
|
|
1006
1009
|
.build() {
|
|
1007
1010
|
}
|
|
1008
1011
|
|
|
1009
|
-
class UpdateChatResponseConfigurationCommand extends
|
|
1012
|
+
class UpdateChatResponseConfigurationCommand extends Command
|
|
1010
1013
|
.classBuilder()
|
|
1011
1014
|
.ep(commonParams)
|
|
1012
1015
|
.m(function (Command, cs, config, o) {
|
|
1013
|
-
return [
|
|
1016
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1014
1017
|
})
|
|
1015
1018
|
.s("ExpertQ", "UpdateChatResponseConfiguration", {})
|
|
1016
1019
|
.n("QBusinessClient", "UpdateChatResponseConfigurationCommand")
|
|
1017
|
-
.sc(
|
|
1020
|
+
.sc(UpdateChatResponseConfiguration$)
|
|
1018
1021
|
.build() {
|
|
1019
1022
|
}
|
|
1020
1023
|
|
|
1021
|
-
class UpdateDataAccessorCommand extends
|
|
1024
|
+
class UpdateDataAccessorCommand extends Command
|
|
1022
1025
|
.classBuilder()
|
|
1023
1026
|
.ep(commonParams)
|
|
1024
1027
|
.m(function (Command, cs, config, o) {
|
|
1025
|
-
return [
|
|
1028
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1026
1029
|
})
|
|
1027
1030
|
.s("ExpertQ", "UpdateDataAccessor", {})
|
|
1028
1031
|
.n("QBusinessClient", "UpdateDataAccessorCommand")
|
|
1029
|
-
.sc(
|
|
1032
|
+
.sc(UpdateDataAccessor$)
|
|
1030
1033
|
.build() {
|
|
1031
1034
|
}
|
|
1032
1035
|
|
|
1033
|
-
class UpdateDataSourceCommand extends
|
|
1036
|
+
class UpdateDataSourceCommand extends Command
|
|
1034
1037
|
.classBuilder()
|
|
1035
1038
|
.ep(commonParams)
|
|
1036
1039
|
.m(function (Command, cs, config, o) {
|
|
1037
|
-
return [
|
|
1040
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1038
1041
|
})
|
|
1039
1042
|
.s("ExpertQ", "UpdateDataSource", {})
|
|
1040
1043
|
.n("QBusinessClient", "UpdateDataSourceCommand")
|
|
1041
|
-
.sc(
|
|
1044
|
+
.sc(UpdateDataSource$)
|
|
1042
1045
|
.build() {
|
|
1043
1046
|
}
|
|
1044
1047
|
|
|
1045
|
-
class UpdateIndexCommand extends
|
|
1048
|
+
class UpdateIndexCommand extends Command
|
|
1046
1049
|
.classBuilder()
|
|
1047
1050
|
.ep(commonParams)
|
|
1048
1051
|
.m(function (Command, cs, config, o) {
|
|
1049
|
-
return [
|
|
1052
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1050
1053
|
})
|
|
1051
1054
|
.s("ExpertQ", "UpdateIndex", {})
|
|
1052
1055
|
.n("QBusinessClient", "UpdateIndexCommand")
|
|
1053
|
-
.sc(
|
|
1056
|
+
.sc(UpdateIndex$)
|
|
1054
1057
|
.build() {
|
|
1055
1058
|
}
|
|
1056
1059
|
|
|
1057
|
-
class UpdatePluginCommand extends
|
|
1060
|
+
class UpdatePluginCommand extends Command
|
|
1058
1061
|
.classBuilder()
|
|
1059
1062
|
.ep(commonParams)
|
|
1060
1063
|
.m(function (Command, cs, config, o) {
|
|
1061
|
-
return [
|
|
1064
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1062
1065
|
})
|
|
1063
1066
|
.s("ExpertQ", "UpdatePlugin", {})
|
|
1064
1067
|
.n("QBusinessClient", "UpdatePluginCommand")
|
|
1065
|
-
.sc(
|
|
1068
|
+
.sc(UpdatePlugin$)
|
|
1066
1069
|
.build() {
|
|
1067
1070
|
}
|
|
1068
1071
|
|
|
1069
|
-
class UpdateRetrieverCommand extends
|
|
1072
|
+
class UpdateRetrieverCommand extends Command
|
|
1070
1073
|
.classBuilder()
|
|
1071
1074
|
.ep(commonParams)
|
|
1072
1075
|
.m(function (Command, cs, config, o) {
|
|
1073
|
-
return [
|
|
1076
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1074
1077
|
})
|
|
1075
1078
|
.s("ExpertQ", "UpdateRetriever", {})
|
|
1076
1079
|
.n("QBusinessClient", "UpdateRetrieverCommand")
|
|
1077
|
-
.sc(
|
|
1080
|
+
.sc(UpdateRetriever$)
|
|
1078
1081
|
.build() {
|
|
1079
1082
|
}
|
|
1080
1083
|
|
|
1081
|
-
class UpdateSubscriptionCommand extends
|
|
1084
|
+
class UpdateSubscriptionCommand extends Command
|
|
1082
1085
|
.classBuilder()
|
|
1083
1086
|
.ep(commonParams)
|
|
1084
1087
|
.m(function (Command, cs, config, o) {
|
|
1085
|
-
return [
|
|
1088
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1086
1089
|
})
|
|
1087
1090
|
.s("ExpertQ", "UpdateSubscription", {})
|
|
1088
1091
|
.n("QBusinessClient", "UpdateSubscriptionCommand")
|
|
1089
|
-
.sc(
|
|
1092
|
+
.sc(UpdateSubscription$)
|
|
1090
1093
|
.build() {
|
|
1091
1094
|
}
|
|
1092
1095
|
|
|
1093
|
-
class UpdateUserCommand extends
|
|
1096
|
+
class UpdateUserCommand extends Command
|
|
1094
1097
|
.classBuilder()
|
|
1095
1098
|
.ep(commonParams)
|
|
1096
1099
|
.m(function (Command, cs, config, o) {
|
|
1097
|
-
return [
|
|
1100
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1098
1101
|
})
|
|
1099
1102
|
.s("ExpertQ", "UpdateUser", {})
|
|
1100
1103
|
.n("QBusinessClient", "UpdateUserCommand")
|
|
1101
|
-
.sc(
|
|
1104
|
+
.sc(UpdateUser$)
|
|
1102
1105
|
.build() {
|
|
1103
1106
|
}
|
|
1104
1107
|
|
|
1105
|
-
class UpdateWebExperienceCommand extends
|
|
1108
|
+
class UpdateWebExperienceCommand extends Command
|
|
1106
1109
|
.classBuilder()
|
|
1107
1110
|
.ep(commonParams)
|
|
1108
1111
|
.m(function (Command, cs, config, o) {
|
|
1109
|
-
return [
|
|
1112
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1110
1113
|
})
|
|
1111
1114
|
.s("ExpertQ", "UpdateWebExperience", {})
|
|
1112
1115
|
.n("QBusinessClient", "UpdateWebExperienceCommand")
|
|
1113
|
-
.sc(
|
|
1116
|
+
.sc(UpdateWebExperience$)
|
|
1114
1117
|
.build() {
|
|
1115
1118
|
}
|
|
1116
1119
|
|
|
1117
|
-
const paginateGetChatControlsConfiguration =
|
|
1120
|
+
const paginateGetChatControlsConfiguration = createPaginator(QBusinessClient, GetChatControlsConfigurationCommand, "nextToken", "nextToken", "maxResults");
|
|
1118
1121
|
|
|
1119
|
-
const paginateListApplications =
|
|
1122
|
+
const paginateListApplications = createPaginator(QBusinessClient, ListApplicationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1120
1123
|
|
|
1121
|
-
const paginateListAttachments =
|
|
1124
|
+
const paginateListAttachments = createPaginator(QBusinessClient, ListAttachmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1122
1125
|
|
|
1123
|
-
const paginateListChatResponseConfigurations =
|
|
1126
|
+
const paginateListChatResponseConfigurations = createPaginator(QBusinessClient, ListChatResponseConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1124
1127
|
|
|
1125
|
-
const paginateListConversations =
|
|
1128
|
+
const paginateListConversations = createPaginator(QBusinessClient, ListConversationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1126
1129
|
|
|
1127
|
-
const paginateListDataAccessors =
|
|
1130
|
+
const paginateListDataAccessors = createPaginator(QBusinessClient, ListDataAccessorsCommand, "nextToken", "nextToken", "maxResults");
|
|
1128
1131
|
|
|
1129
|
-
const paginateListDataSources =
|
|
1132
|
+
const paginateListDataSources = createPaginator(QBusinessClient, ListDataSourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
1130
1133
|
|
|
1131
|
-
const paginateListDataSourceSyncJobs =
|
|
1134
|
+
const paginateListDataSourceSyncJobs = createPaginator(QBusinessClient, ListDataSourceSyncJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
1132
1135
|
|
|
1133
|
-
const paginateListDocuments =
|
|
1136
|
+
const paginateListDocuments = createPaginator(QBusinessClient, ListDocumentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1134
1137
|
|
|
1135
|
-
const paginateListGroups =
|
|
1138
|
+
const paginateListGroups = createPaginator(QBusinessClient, ListGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1136
1139
|
|
|
1137
|
-
const paginateListIndices =
|
|
1140
|
+
const paginateListIndices = createPaginator(QBusinessClient, ListIndicesCommand, "nextToken", "nextToken", "maxResults");
|
|
1138
1141
|
|
|
1139
|
-
const paginateListMessages =
|
|
1142
|
+
const paginateListMessages = createPaginator(QBusinessClient, ListMessagesCommand, "nextToken", "nextToken", "maxResults");
|
|
1140
1143
|
|
|
1141
|
-
const paginateListPluginActions =
|
|
1144
|
+
const paginateListPluginActions = createPaginator(QBusinessClient, ListPluginActionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1142
1145
|
|
|
1143
|
-
const paginateListPlugins =
|
|
1146
|
+
const paginateListPlugins = createPaginator(QBusinessClient, ListPluginsCommand, "nextToken", "nextToken", "maxResults");
|
|
1144
1147
|
|
|
1145
|
-
const paginateListPluginTypeActions =
|
|
1148
|
+
const paginateListPluginTypeActions = createPaginator(QBusinessClient, ListPluginTypeActionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1146
1149
|
|
|
1147
|
-
const paginateListPluginTypeMetadata =
|
|
1150
|
+
const paginateListPluginTypeMetadata = createPaginator(QBusinessClient, ListPluginTypeMetadataCommand, "nextToken", "nextToken", "maxResults");
|
|
1148
1151
|
|
|
1149
|
-
const paginateListRetrievers =
|
|
1152
|
+
const paginateListRetrievers = createPaginator(QBusinessClient, ListRetrieversCommand, "nextToken", "nextToken", "maxResults");
|
|
1150
1153
|
|
|
1151
|
-
const paginateListSubscriptions =
|
|
1154
|
+
const paginateListSubscriptions = createPaginator(QBusinessClient, ListSubscriptionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1152
1155
|
|
|
1153
|
-
const paginateListWebExperiences =
|
|
1156
|
+
const paginateListWebExperiences = createPaginator(QBusinessClient, ListWebExperiencesCommand, "nextToken", "nextToken", "maxResults");
|
|
1154
1157
|
|
|
1155
|
-
const paginateSearchRelevantContent =
|
|
1158
|
+
const paginateSearchRelevantContent = createPaginator(QBusinessClient, SearchRelevantContentCommand, "nextToken", "nextToken", "maxResults");
|
|
1156
1159
|
|
|
1157
1160
|
const commands = {
|
|
1158
1161
|
AssociatePermissionCommand,
|
|
@@ -1263,7 +1266,7 @@ const paginators = {
|
|
|
1263
1266
|
};
|
|
1264
1267
|
class QBusiness extends QBusinessClient {
|
|
1265
1268
|
}
|
|
1266
|
-
|
|
1269
|
+
createAggregatedClient(commands, QBusiness, { paginators });
|
|
1267
1270
|
|
|
1268
1271
|
const MemberRelation = {
|
|
1269
1272
|
AND: "AND",
|
|
@@ -1609,9 +1612,6 @@ const ScoreConfidence = {
|
|
|
1609
1612
|
VERY_HIGH: "VERY_HIGH",
|
|
1610
1613
|
};
|
|
1611
1614
|
|
|
1612
|
-
exports.$Command = client.Command;
|
|
1613
|
-
exports.__Client = client.Client;
|
|
1614
|
-
exports.QBusinessServiceException = QBusinessServiceException.QBusinessServiceException;
|
|
1615
1615
|
exports.APISchemaType = APISchemaType;
|
|
1616
1616
|
exports.ActionPayloadFieldType = ActionPayloadFieldType;
|
|
1617
1617
|
exports.ApplicationStatus = ApplicationStatus;
|
|
@@ -1777,23 +1777,3 @@ exports.paginateListRetrievers = paginateListRetrievers;
|
|
|
1777
1777
|
exports.paginateListSubscriptions = paginateListSubscriptions;
|
|
1778
1778
|
exports.paginateListWebExperiences = paginateListWebExperiences;
|
|
1779
1779
|
exports.paginateSearchRelevantContent = paginateSearchRelevantContent;
|
|
1780
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
1781
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1782
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1783
|
-
enumerable: true,
|
|
1784
|
-
value: schemas_0['__proto__']
|
|
1785
|
-
});
|
|
1786
|
-
|
|
1787
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
1788
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
1789
|
-
});
|
|
1790
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
1791
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1792
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1793
|
-
enumerable: true,
|
|
1794
|
-
value: errors['__proto__']
|
|
1795
|
-
});
|
|
1796
|
-
|
|
1797
|
-
Object.keys(errors).forEach(function (k) {
|
|
1798
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
1799
|
-
});
|