@aws-sdk/client-mq 3.928.0 → 3.930.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/index.js +2954 -1366
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MqClient.js +2 -0
- package/dist-es/commands/CreateBrokerCommand.js +3 -9
- package/dist-es/commands/CreateConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateTagsCommand.js +3 -9
- package/dist-es/commands/CreateUserCommand.js +3 -9
- package/dist-es/commands/DeleteBrokerCommand.js +3 -9
- package/dist-es/commands/DeleteConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteTagsCommand.js +3 -9
- package/dist-es/commands/DeleteUserCommand.js +3 -9
- package/dist-es/commands/DescribeBrokerCommand.js +3 -9
- package/dist-es/commands/DescribeBrokerEngineTypesCommand.js +3 -9
- package/dist-es/commands/DescribeBrokerInstanceOptionsCommand.js +3 -9
- package/dist-es/commands/DescribeConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeConfigurationRevisionCommand.js +3 -9
- package/dist-es/commands/DescribeUserCommand.js +3 -9
- package/dist-es/commands/ListBrokersCommand.js +3 -9
- package/dist-es/commands/ListConfigurationRevisionsCommand.js +3 -9
- package/dist-es/commands/ListConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListTagsCommand.js +3 -9
- package/dist-es/commands/ListUsersCommand.js +3 -9
- package/dist-es/commands/PromoteCommand.js +3 -9
- package/dist-es/commands/RebootBrokerCommand.js +3 -9
- package/dist-es/commands/UpdateBrokerCommand.js +3 -9
- package/dist-es/commands/UpdateConfigurationCommand.js +3 -9
- package/dist-es/commands/UpdateUserCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +2901 -0
- package/dist-types/MqClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +119 -0
- package/dist-types/ts3.4/MqClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +124 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1193
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -218
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -293
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class MqClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,12 +110,12 @@ class MqClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class MqServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let MqServiceException$1 = class MqServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, MqServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
120
|
const EngineType = {
|
|
122
121
|
ACTIVEMQ: "ACTIVEMQ",
|
|
@@ -155,7 +154,7 @@ const ChangeType = {
|
|
|
155
154
|
DELETE: "DELETE",
|
|
156
155
|
UPDATE: "UPDATE",
|
|
157
156
|
};
|
|
158
|
-
class BadRequestException extends MqServiceException {
|
|
157
|
+
let BadRequestException$1 = class BadRequestException extends MqServiceException$1 {
|
|
159
158
|
name = "BadRequestException";
|
|
160
159
|
$fault = "client";
|
|
161
160
|
ErrorAttribute;
|
|
@@ -170,8 +169,8 @@ class BadRequestException extends MqServiceException {
|
|
|
170
169
|
this.ErrorAttribute = opts.ErrorAttribute;
|
|
171
170
|
this.Message = opts.Message;
|
|
172
171
|
}
|
|
173
|
-
}
|
|
174
|
-
class ConflictException extends MqServiceException {
|
|
172
|
+
};
|
|
173
|
+
let ConflictException$1 = class ConflictException extends MqServiceException$1 {
|
|
175
174
|
name = "ConflictException";
|
|
176
175
|
$fault = "client";
|
|
177
176
|
ErrorAttribute;
|
|
@@ -186,7 +185,7 @@ class ConflictException extends MqServiceException {
|
|
|
186
185
|
this.ErrorAttribute = opts.ErrorAttribute;
|
|
187
186
|
this.Message = opts.Message;
|
|
188
187
|
}
|
|
189
|
-
}
|
|
188
|
+
};
|
|
190
189
|
const DataReplicationMode = {
|
|
191
190
|
CRDR: "CRDR",
|
|
192
191
|
NONE: "NONE",
|
|
@@ -200,7 +199,7 @@ const DayOfWeek = {
|
|
|
200
199
|
TUESDAY: "TUESDAY",
|
|
201
200
|
WEDNESDAY: "WEDNESDAY",
|
|
202
201
|
};
|
|
203
|
-
class ForbiddenException extends MqServiceException {
|
|
202
|
+
let ForbiddenException$1 = class ForbiddenException extends MqServiceException$1 {
|
|
204
203
|
name = "ForbiddenException";
|
|
205
204
|
$fault = "client";
|
|
206
205
|
ErrorAttribute;
|
|
@@ -215,8 +214,8 @@ class ForbiddenException extends MqServiceException {
|
|
|
215
214
|
this.ErrorAttribute = opts.ErrorAttribute;
|
|
216
215
|
this.Message = opts.Message;
|
|
217
216
|
}
|
|
218
|
-
}
|
|
219
|
-
class InternalServerErrorException extends MqServiceException {
|
|
217
|
+
};
|
|
218
|
+
let InternalServerErrorException$1 = class InternalServerErrorException extends MqServiceException$1 {
|
|
220
219
|
name = "InternalServerErrorException";
|
|
221
220
|
$fault = "server";
|
|
222
221
|
ErrorAttribute;
|
|
@@ -231,8 +230,8 @@ class InternalServerErrorException extends MqServiceException {
|
|
|
231
230
|
this.ErrorAttribute = opts.ErrorAttribute;
|
|
232
231
|
this.Message = opts.Message;
|
|
233
232
|
}
|
|
234
|
-
}
|
|
235
|
-
class UnauthorizedException extends MqServiceException {
|
|
233
|
+
};
|
|
234
|
+
let UnauthorizedException$1 = class UnauthorizedException extends MqServiceException$1 {
|
|
236
235
|
name = "UnauthorizedException";
|
|
237
236
|
$fault = "client";
|
|
238
237
|
ErrorAttribute;
|
|
@@ -247,8 +246,8 @@ class UnauthorizedException extends MqServiceException {
|
|
|
247
246
|
this.ErrorAttribute = opts.ErrorAttribute;
|
|
248
247
|
this.Message = opts.Message;
|
|
249
248
|
}
|
|
250
|
-
}
|
|
251
|
-
class NotFoundException extends MqServiceException {
|
|
249
|
+
};
|
|
250
|
+
let NotFoundException$1 = class NotFoundException extends MqServiceException$1 {
|
|
252
251
|
name = "NotFoundException";
|
|
253
252
|
$fault = "client";
|
|
254
253
|
ErrorAttribute;
|
|
@@ -263,1213 +262,2917 @@ class NotFoundException extends MqServiceException {
|
|
|
263
262
|
this.ErrorAttribute = opts.ErrorAttribute;
|
|
264
263
|
this.Message = opts.Message;
|
|
265
264
|
}
|
|
266
|
-
}
|
|
265
|
+
};
|
|
267
266
|
const PromoteMode = {
|
|
268
267
|
FAILOVER: "FAILOVER",
|
|
269
268
|
SWITCHOVER: "SWITCHOVER",
|
|
270
269
|
};
|
|
271
270
|
|
|
272
|
-
const
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
const
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
const
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
const
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
const
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
return b.build();
|
|
362
|
-
};
|
|
363
|
-
const se_DeleteConfigurationCommand = async (input, context) => {
|
|
364
|
-
const b = core.requestBuilder(input, context);
|
|
365
|
-
const headers = {};
|
|
366
|
-
b.bp("/v1/configurations/{ConfigurationId}");
|
|
367
|
-
b.p("ConfigurationId", () => input.ConfigurationId, "{ConfigurationId}", false);
|
|
368
|
-
let body;
|
|
369
|
-
b.m("DELETE").h(headers).b(body);
|
|
370
|
-
return b.build();
|
|
371
|
-
};
|
|
372
|
-
const se_DeleteTagsCommand = async (input, context) => {
|
|
373
|
-
const b = core.requestBuilder(input, context);
|
|
374
|
-
const headers = {};
|
|
375
|
-
b.bp("/v1/tags/{ResourceArn}");
|
|
376
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
377
|
-
const query = smithyClient.map({
|
|
378
|
-
[_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
|
|
379
|
-
});
|
|
380
|
-
let body;
|
|
381
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
382
|
-
return b.build();
|
|
383
|
-
};
|
|
384
|
-
const se_DeleteUserCommand = async (input, context) => {
|
|
385
|
-
const b = core.requestBuilder(input, context);
|
|
386
|
-
const headers = {};
|
|
387
|
-
b.bp("/v1/brokers/{BrokerId}/users/{Username}");
|
|
388
|
-
b.p("BrokerId", () => input.BrokerId, "{BrokerId}", false);
|
|
389
|
-
b.p("Username", () => input.Username, "{Username}", false);
|
|
390
|
-
let body;
|
|
391
|
-
b.m("DELETE").h(headers).b(body);
|
|
392
|
-
return b.build();
|
|
393
|
-
};
|
|
394
|
-
const se_DescribeBrokerCommand = async (input, context) => {
|
|
395
|
-
const b = core.requestBuilder(input, context);
|
|
396
|
-
const headers = {};
|
|
397
|
-
b.bp("/v1/brokers/{BrokerId}");
|
|
398
|
-
b.p("BrokerId", () => input.BrokerId, "{BrokerId}", false);
|
|
399
|
-
let body;
|
|
400
|
-
b.m("GET").h(headers).b(body);
|
|
401
|
-
return b.build();
|
|
402
|
-
};
|
|
403
|
-
const se_DescribeBrokerEngineTypesCommand = async (input, context) => {
|
|
404
|
-
const b = core.requestBuilder(input, context);
|
|
405
|
-
const headers = {};
|
|
406
|
-
b.bp("/v1/broker-engine-types");
|
|
407
|
-
const query = smithyClient.map({
|
|
408
|
-
[_eT]: [, input[_ET]],
|
|
409
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
410
|
-
[_nT]: [, input[_NT]],
|
|
411
|
-
});
|
|
412
|
-
let body;
|
|
413
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
414
|
-
return b.build();
|
|
415
|
-
};
|
|
416
|
-
const se_DescribeBrokerInstanceOptionsCommand = async (input, context) => {
|
|
417
|
-
const b = core.requestBuilder(input, context);
|
|
418
|
-
const headers = {};
|
|
419
|
-
b.bp("/v1/broker-instance-options");
|
|
420
|
-
const query = smithyClient.map({
|
|
421
|
-
[_eT]: [, input[_ET]],
|
|
422
|
-
[_hIT]: [, input[_HIT]],
|
|
423
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
424
|
-
[_nT]: [, input[_NT]],
|
|
425
|
-
[_sT]: [, input[_ST]],
|
|
426
|
-
});
|
|
427
|
-
let body;
|
|
428
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
429
|
-
return b.build();
|
|
430
|
-
};
|
|
431
|
-
const se_DescribeConfigurationCommand = async (input, context) => {
|
|
432
|
-
const b = core.requestBuilder(input, context);
|
|
433
|
-
const headers = {};
|
|
434
|
-
b.bp("/v1/configurations/{ConfigurationId}");
|
|
435
|
-
b.p("ConfigurationId", () => input.ConfigurationId, "{ConfigurationId}", false);
|
|
436
|
-
let body;
|
|
437
|
-
b.m("GET").h(headers).b(body);
|
|
438
|
-
return b.build();
|
|
439
|
-
};
|
|
440
|
-
const se_DescribeConfigurationRevisionCommand = async (input, context) => {
|
|
441
|
-
const b = core.requestBuilder(input, context);
|
|
442
|
-
const headers = {};
|
|
443
|
-
b.bp("/v1/configurations/{ConfigurationId}/revisions/{ConfigurationRevision}");
|
|
444
|
-
b.p("ConfigurationId", () => input.ConfigurationId, "{ConfigurationId}", false);
|
|
445
|
-
b.p("ConfigurationRevision", () => input.ConfigurationRevision, "{ConfigurationRevision}", false);
|
|
446
|
-
let body;
|
|
447
|
-
b.m("GET").h(headers).b(body);
|
|
448
|
-
return b.build();
|
|
449
|
-
};
|
|
450
|
-
const se_DescribeUserCommand = async (input, context) => {
|
|
451
|
-
const b = core.requestBuilder(input, context);
|
|
452
|
-
const headers = {};
|
|
453
|
-
b.bp("/v1/brokers/{BrokerId}/users/{Username}");
|
|
454
|
-
b.p("BrokerId", () => input.BrokerId, "{BrokerId}", false);
|
|
455
|
-
b.p("Username", () => input.Username, "{Username}", false);
|
|
456
|
-
let body;
|
|
457
|
-
b.m("GET").h(headers).b(body);
|
|
458
|
-
return b.build();
|
|
459
|
-
};
|
|
460
|
-
const se_ListBrokersCommand = async (input, context) => {
|
|
461
|
-
const b = core.requestBuilder(input, context);
|
|
462
|
-
const headers = {};
|
|
463
|
-
b.bp("/v1/brokers");
|
|
464
|
-
const query = smithyClient.map({
|
|
465
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
466
|
-
[_nT]: [, input[_NT]],
|
|
467
|
-
});
|
|
468
|
-
let body;
|
|
469
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
470
|
-
return b.build();
|
|
471
|
-
};
|
|
472
|
-
const se_ListConfigurationRevisionsCommand = async (input, context) => {
|
|
473
|
-
const b = core.requestBuilder(input, context);
|
|
474
|
-
const headers = {};
|
|
475
|
-
b.bp("/v1/configurations/{ConfigurationId}/revisions");
|
|
476
|
-
b.p("ConfigurationId", () => input.ConfigurationId, "{ConfigurationId}", false);
|
|
477
|
-
const query = smithyClient.map({
|
|
478
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
479
|
-
[_nT]: [, input[_NT]],
|
|
480
|
-
});
|
|
481
|
-
let body;
|
|
482
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
483
|
-
return b.build();
|
|
484
|
-
};
|
|
485
|
-
const se_ListConfigurationsCommand = async (input, context) => {
|
|
486
|
-
const b = core.requestBuilder(input, context);
|
|
487
|
-
const headers = {};
|
|
488
|
-
b.bp("/v1/configurations");
|
|
489
|
-
const query = smithyClient.map({
|
|
490
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
491
|
-
[_nT]: [, input[_NT]],
|
|
492
|
-
});
|
|
493
|
-
let body;
|
|
494
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
495
|
-
return b.build();
|
|
496
|
-
};
|
|
497
|
-
const se_ListTagsCommand = async (input, context) => {
|
|
498
|
-
const b = core.requestBuilder(input, context);
|
|
499
|
-
const headers = {};
|
|
500
|
-
b.bp("/v1/tags/{ResourceArn}");
|
|
501
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
502
|
-
let body;
|
|
503
|
-
b.m("GET").h(headers).b(body);
|
|
504
|
-
return b.build();
|
|
505
|
-
};
|
|
506
|
-
const se_ListUsersCommand = async (input, context) => {
|
|
507
|
-
const b = core.requestBuilder(input, context);
|
|
508
|
-
const headers = {};
|
|
509
|
-
b.bp("/v1/brokers/{BrokerId}/users");
|
|
510
|
-
b.p("BrokerId", () => input.BrokerId, "{BrokerId}", false);
|
|
511
|
-
const query = smithyClient.map({
|
|
512
|
-
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
513
|
-
[_nT]: [, input[_NT]],
|
|
514
|
-
});
|
|
515
|
-
let body;
|
|
516
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
517
|
-
return b.build();
|
|
518
|
-
};
|
|
519
|
-
const se_PromoteCommand = async (input, context) => {
|
|
520
|
-
const b = core.requestBuilder(input, context);
|
|
521
|
-
const headers = {
|
|
522
|
-
"content-type": "application/json",
|
|
523
|
-
};
|
|
524
|
-
b.bp("/v1/brokers/{BrokerId}/promote");
|
|
525
|
-
b.p("BrokerId", () => input.BrokerId, "{BrokerId}", false);
|
|
526
|
-
let body;
|
|
527
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
528
|
-
mode: [, , `Mode`],
|
|
529
|
-
}));
|
|
530
|
-
b.m("POST").h(headers).b(body);
|
|
531
|
-
return b.build();
|
|
532
|
-
};
|
|
533
|
-
const se_RebootBrokerCommand = async (input, context) => {
|
|
534
|
-
const b = core.requestBuilder(input, context);
|
|
535
|
-
const headers = {};
|
|
536
|
-
b.bp("/v1/brokers/{BrokerId}/reboot");
|
|
537
|
-
b.p("BrokerId", () => input.BrokerId, "{BrokerId}", false);
|
|
538
|
-
let body;
|
|
539
|
-
b.m("POST").h(headers).b(body);
|
|
540
|
-
return b.build();
|
|
541
|
-
};
|
|
542
|
-
const se_UpdateBrokerCommand = async (input, context) => {
|
|
543
|
-
const b = core.requestBuilder(input, context);
|
|
544
|
-
const headers = {
|
|
545
|
-
"content-type": "application/json",
|
|
546
|
-
};
|
|
547
|
-
b.bp("/v1/brokers/{BrokerId}");
|
|
548
|
-
b.p("BrokerId", () => input.BrokerId, "{BrokerId}", false);
|
|
549
|
-
let body;
|
|
550
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
551
|
-
authenticationStrategy: [, , `AuthenticationStrategy`],
|
|
552
|
-
autoMinorVersionUpgrade: [, , `AutoMinorVersionUpgrade`],
|
|
553
|
-
configuration: [, (_) => se_ConfigurationId(_), `Configuration`],
|
|
554
|
-
dataReplicationMode: [, , `DataReplicationMode`],
|
|
555
|
-
engineVersion: [, , `EngineVersion`],
|
|
556
|
-
hostInstanceType: [, , `HostInstanceType`],
|
|
557
|
-
ldapServerMetadata: [, (_) => se_LdapServerMetadataInput(_), `LdapServerMetadata`],
|
|
558
|
-
logs: [, (_) => se_Logs(_), `Logs`],
|
|
559
|
-
maintenanceWindowStartTime: [, (_) => se_WeeklyStartTime(_), `MaintenanceWindowStartTime`],
|
|
560
|
-
securityGroups: [, (_) => smithyClient._json(_), `SecurityGroups`],
|
|
561
|
-
}));
|
|
562
|
-
b.m("PUT").h(headers).b(body);
|
|
563
|
-
return b.build();
|
|
564
|
-
};
|
|
565
|
-
const se_UpdateConfigurationCommand = async (input, context) => {
|
|
566
|
-
const b = core.requestBuilder(input, context);
|
|
567
|
-
const headers = {
|
|
568
|
-
"content-type": "application/json",
|
|
569
|
-
};
|
|
570
|
-
b.bp("/v1/configurations/{ConfigurationId}");
|
|
571
|
-
b.p("ConfigurationId", () => input.ConfigurationId, "{ConfigurationId}", false);
|
|
572
|
-
let body;
|
|
573
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
574
|
-
data: [, , `Data`],
|
|
575
|
-
description: [, , `Description`],
|
|
576
|
-
}));
|
|
577
|
-
b.m("PUT").h(headers).b(body);
|
|
578
|
-
return b.build();
|
|
579
|
-
};
|
|
580
|
-
const se_UpdateUserCommand = async (input, context) => {
|
|
581
|
-
const b = core.requestBuilder(input, context);
|
|
582
|
-
const headers = {
|
|
583
|
-
"content-type": "application/json",
|
|
584
|
-
};
|
|
585
|
-
b.bp("/v1/brokers/{BrokerId}/users/{Username}");
|
|
586
|
-
b.p("BrokerId", () => input.BrokerId, "{BrokerId}", false);
|
|
587
|
-
b.p("Username", () => input.Username, "{Username}", false);
|
|
588
|
-
let body;
|
|
589
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
590
|
-
consoleAccess: [, , `ConsoleAccess`],
|
|
591
|
-
groups: [, (_) => smithyClient._json(_), `Groups`],
|
|
592
|
-
password: [, , `Password`],
|
|
593
|
-
replicationUser: [, , `ReplicationUser`],
|
|
594
|
-
}));
|
|
595
|
-
b.m("PUT").h(headers).b(body);
|
|
596
|
-
return b.build();
|
|
597
|
-
};
|
|
598
|
-
const de_CreateBrokerCommand = async (output, context) => {
|
|
599
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
600
|
-
return de_CommandError(output, context);
|
|
601
|
-
}
|
|
602
|
-
const contents = smithyClient.map({
|
|
603
|
-
$metadata: deserializeMetadata(output),
|
|
604
|
-
});
|
|
605
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
606
|
-
const doc = smithyClient.take(data, {
|
|
607
|
-
BrokerArn: [, smithyClient.expectString, `brokerArn`],
|
|
608
|
-
BrokerId: [, smithyClient.expectString, `brokerId`],
|
|
609
|
-
});
|
|
610
|
-
Object.assign(contents, doc);
|
|
611
|
-
return contents;
|
|
612
|
-
};
|
|
613
|
-
const de_CreateConfigurationCommand = async (output, context) => {
|
|
614
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
615
|
-
return de_CommandError(output, context);
|
|
616
|
-
}
|
|
617
|
-
const contents = smithyClient.map({
|
|
618
|
-
$metadata: deserializeMetadata(output),
|
|
619
|
-
});
|
|
620
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
621
|
-
const doc = smithyClient.take(data, {
|
|
622
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
623
|
-
AuthenticationStrategy: [, smithyClient.expectString, `authenticationStrategy`],
|
|
624
|
-
Created: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `created`],
|
|
625
|
-
Id: [, smithyClient.expectString, `id`],
|
|
626
|
-
LatestRevision: [, (_) => de_ConfigurationRevision(_), `latestRevision`],
|
|
627
|
-
Name: [, smithyClient.expectString, `name`],
|
|
628
|
-
});
|
|
629
|
-
Object.assign(contents, doc);
|
|
630
|
-
return contents;
|
|
631
|
-
};
|
|
632
|
-
const de_CreateTagsCommand = async (output, context) => {
|
|
633
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
634
|
-
return de_CommandError(output, context);
|
|
635
|
-
}
|
|
636
|
-
const contents = smithyClient.map({
|
|
637
|
-
$metadata: deserializeMetadata(output),
|
|
638
|
-
});
|
|
639
|
-
await smithyClient.collectBody(output.body, context);
|
|
640
|
-
return contents;
|
|
641
|
-
};
|
|
642
|
-
const de_CreateUserCommand = async (output, context) => {
|
|
643
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
644
|
-
return de_CommandError(output, context);
|
|
645
|
-
}
|
|
646
|
-
const contents = smithyClient.map({
|
|
647
|
-
$metadata: deserializeMetadata(output),
|
|
648
|
-
});
|
|
649
|
-
await smithyClient.collectBody(output.body, context);
|
|
650
|
-
return contents;
|
|
651
|
-
};
|
|
652
|
-
const de_DeleteBrokerCommand = async (output, context) => {
|
|
653
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
654
|
-
return de_CommandError(output, context);
|
|
655
|
-
}
|
|
656
|
-
const contents = smithyClient.map({
|
|
657
|
-
$metadata: deserializeMetadata(output),
|
|
658
|
-
});
|
|
659
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
660
|
-
const doc = smithyClient.take(data, {
|
|
661
|
-
BrokerId: [, smithyClient.expectString, `brokerId`],
|
|
662
|
-
});
|
|
663
|
-
Object.assign(contents, doc);
|
|
664
|
-
return contents;
|
|
665
|
-
};
|
|
666
|
-
const de_DeleteConfigurationCommand = async (output, context) => {
|
|
667
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
668
|
-
return de_CommandError(output, context);
|
|
669
|
-
}
|
|
670
|
-
const contents = smithyClient.map({
|
|
671
|
-
$metadata: deserializeMetadata(output),
|
|
672
|
-
});
|
|
673
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
674
|
-
const doc = smithyClient.take(data, {
|
|
675
|
-
ConfigurationId: [, smithyClient.expectString, `configurationId`],
|
|
676
|
-
});
|
|
677
|
-
Object.assign(contents, doc);
|
|
678
|
-
return contents;
|
|
679
|
-
};
|
|
680
|
-
const de_DeleteTagsCommand = async (output, context) => {
|
|
681
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
682
|
-
return de_CommandError(output, context);
|
|
683
|
-
}
|
|
684
|
-
const contents = smithyClient.map({
|
|
685
|
-
$metadata: deserializeMetadata(output),
|
|
686
|
-
});
|
|
687
|
-
await smithyClient.collectBody(output.body, context);
|
|
688
|
-
return contents;
|
|
689
|
-
};
|
|
690
|
-
const de_DeleteUserCommand = async (output, context) => {
|
|
691
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
692
|
-
return de_CommandError(output, context);
|
|
693
|
-
}
|
|
694
|
-
const contents = smithyClient.map({
|
|
695
|
-
$metadata: deserializeMetadata(output),
|
|
696
|
-
});
|
|
697
|
-
await smithyClient.collectBody(output.body, context);
|
|
698
|
-
return contents;
|
|
699
|
-
};
|
|
700
|
-
const de_DescribeBrokerCommand = async (output, context) => {
|
|
701
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
702
|
-
return de_CommandError(output, context);
|
|
703
|
-
}
|
|
704
|
-
const contents = smithyClient.map({
|
|
705
|
-
$metadata: deserializeMetadata(output),
|
|
706
|
-
});
|
|
707
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
708
|
-
const doc = smithyClient.take(data, {
|
|
709
|
-
ActionsRequired: [, (_) => de___listOfActionRequired(_), `actionsRequired`],
|
|
710
|
-
AuthenticationStrategy: [, smithyClient.expectString, `authenticationStrategy`],
|
|
711
|
-
AutoMinorVersionUpgrade: [, smithyClient.expectBoolean, `autoMinorVersionUpgrade`],
|
|
712
|
-
BrokerArn: [, smithyClient.expectString, `brokerArn`],
|
|
713
|
-
BrokerId: [, smithyClient.expectString, `brokerId`],
|
|
714
|
-
BrokerInstances: [, (_) => de___listOfBrokerInstance(_), `brokerInstances`],
|
|
715
|
-
BrokerName: [, smithyClient.expectString, `brokerName`],
|
|
716
|
-
BrokerState: [, smithyClient.expectString, `brokerState`],
|
|
717
|
-
Configurations: [, (_) => de_Configurations(_), `configurations`],
|
|
718
|
-
Created: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `created`],
|
|
719
|
-
DataReplicationMetadata: [, (_) => de_DataReplicationMetadataOutput(_), `dataReplicationMetadata`],
|
|
720
|
-
DataReplicationMode: [, smithyClient.expectString, `dataReplicationMode`],
|
|
721
|
-
DeploymentMode: [, smithyClient.expectString, `deploymentMode`],
|
|
722
|
-
EncryptionOptions: [, (_) => de_EncryptionOptions(_), `encryptionOptions`],
|
|
723
|
-
EngineType: [, smithyClient.expectString, `engineType`],
|
|
724
|
-
EngineVersion: [, smithyClient.expectString, `engineVersion`],
|
|
725
|
-
HostInstanceType: [, smithyClient.expectString, `hostInstanceType`],
|
|
726
|
-
LdapServerMetadata: [, (_) => de_LdapServerMetadataOutput(_), `ldapServerMetadata`],
|
|
727
|
-
Logs: [, (_) => de_LogsSummary(_), `logs`],
|
|
728
|
-
MaintenanceWindowStartTime: [, (_) => de_WeeklyStartTime(_), `maintenanceWindowStartTime`],
|
|
729
|
-
PendingAuthenticationStrategy: [, smithyClient.expectString, `pendingAuthenticationStrategy`],
|
|
730
|
-
PendingDataReplicationMetadata: [
|
|
731
|
-
,
|
|
732
|
-
(_) => de_DataReplicationMetadataOutput(_),
|
|
733
|
-
`pendingDataReplicationMetadata`,
|
|
734
|
-
],
|
|
735
|
-
PendingDataReplicationMode: [, smithyClient.expectString, `pendingDataReplicationMode`],
|
|
736
|
-
PendingEngineVersion: [, smithyClient.expectString, `pendingEngineVersion`],
|
|
737
|
-
PendingHostInstanceType: [, smithyClient.expectString, `pendingHostInstanceType`],
|
|
738
|
-
PendingLdapServerMetadata: [, (_) => de_LdapServerMetadataOutput(_), `pendingLdapServerMetadata`],
|
|
739
|
-
PendingSecurityGroups: [, smithyClient._json, `pendingSecurityGroups`],
|
|
740
|
-
PubliclyAccessible: [, smithyClient.expectBoolean, `publiclyAccessible`],
|
|
741
|
-
SecurityGroups: [, smithyClient._json, `securityGroups`],
|
|
742
|
-
StorageType: [, smithyClient.expectString, `storageType`],
|
|
743
|
-
SubnetIds: [, smithyClient._json, `subnetIds`],
|
|
744
|
-
Tags: [, smithyClient._json, `tags`],
|
|
745
|
-
Users: [, (_) => de___listOfUserSummary(_), `users`],
|
|
746
|
-
});
|
|
747
|
-
Object.assign(contents, doc);
|
|
748
|
-
return contents;
|
|
749
|
-
};
|
|
750
|
-
const de_DescribeBrokerEngineTypesCommand = async (output, context) => {
|
|
751
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
752
|
-
return de_CommandError(output, context);
|
|
753
|
-
}
|
|
754
|
-
const contents = smithyClient.map({
|
|
755
|
-
$metadata: deserializeMetadata(output),
|
|
756
|
-
});
|
|
757
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
758
|
-
const doc = smithyClient.take(data, {
|
|
759
|
-
BrokerEngineTypes: [, (_) => de___listOfBrokerEngineType(_), `brokerEngineTypes`],
|
|
760
|
-
MaxResults: [, smithyClient.expectInt32, `maxResults`],
|
|
761
|
-
NextToken: [, smithyClient.expectString, `nextToken`],
|
|
762
|
-
});
|
|
763
|
-
Object.assign(contents, doc);
|
|
764
|
-
return contents;
|
|
765
|
-
};
|
|
766
|
-
const de_DescribeBrokerInstanceOptionsCommand = async (output, context) => {
|
|
767
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
768
|
-
return de_CommandError(output, context);
|
|
769
|
-
}
|
|
770
|
-
const contents = smithyClient.map({
|
|
771
|
-
$metadata: deserializeMetadata(output),
|
|
772
|
-
});
|
|
773
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
774
|
-
const doc = smithyClient.take(data, {
|
|
775
|
-
BrokerInstanceOptions: [, (_) => de___listOfBrokerInstanceOption(_), `brokerInstanceOptions`],
|
|
776
|
-
MaxResults: [, smithyClient.expectInt32, `maxResults`],
|
|
777
|
-
NextToken: [, smithyClient.expectString, `nextToken`],
|
|
778
|
-
});
|
|
779
|
-
Object.assign(contents, doc);
|
|
780
|
-
return contents;
|
|
781
|
-
};
|
|
782
|
-
const de_DescribeConfigurationCommand = async (output, context) => {
|
|
783
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
784
|
-
return de_CommandError(output, context);
|
|
785
|
-
}
|
|
786
|
-
const contents = smithyClient.map({
|
|
787
|
-
$metadata: deserializeMetadata(output),
|
|
788
|
-
});
|
|
789
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
790
|
-
const doc = smithyClient.take(data, {
|
|
791
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
792
|
-
AuthenticationStrategy: [, smithyClient.expectString, `authenticationStrategy`],
|
|
793
|
-
Created: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `created`],
|
|
794
|
-
Description: [, smithyClient.expectString, `description`],
|
|
795
|
-
EngineType: [, smithyClient.expectString, `engineType`],
|
|
796
|
-
EngineVersion: [, smithyClient.expectString, `engineVersion`],
|
|
797
|
-
Id: [, smithyClient.expectString, `id`],
|
|
798
|
-
LatestRevision: [, (_) => de_ConfigurationRevision(_), `latestRevision`],
|
|
799
|
-
Name: [, smithyClient.expectString, `name`],
|
|
800
|
-
Tags: [, smithyClient._json, `tags`],
|
|
801
|
-
});
|
|
802
|
-
Object.assign(contents, doc);
|
|
803
|
-
return contents;
|
|
804
|
-
};
|
|
805
|
-
const de_DescribeConfigurationRevisionCommand = async (output, context) => {
|
|
806
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
807
|
-
return de_CommandError(output, context);
|
|
808
|
-
}
|
|
809
|
-
const contents = smithyClient.map({
|
|
810
|
-
$metadata: deserializeMetadata(output),
|
|
811
|
-
});
|
|
812
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
813
|
-
const doc = smithyClient.take(data, {
|
|
814
|
-
ConfigurationId: [, smithyClient.expectString, `configurationId`],
|
|
815
|
-
Created: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `created`],
|
|
816
|
-
Data: [, smithyClient.expectString, `data`],
|
|
817
|
-
Description: [, smithyClient.expectString, `description`],
|
|
818
|
-
});
|
|
819
|
-
Object.assign(contents, doc);
|
|
820
|
-
return contents;
|
|
821
|
-
};
|
|
822
|
-
const de_DescribeUserCommand = async (output, context) => {
|
|
823
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
824
|
-
return de_CommandError(output, context);
|
|
825
|
-
}
|
|
826
|
-
const contents = smithyClient.map({
|
|
827
|
-
$metadata: deserializeMetadata(output),
|
|
828
|
-
});
|
|
829
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
830
|
-
const doc = smithyClient.take(data, {
|
|
831
|
-
BrokerId: [, smithyClient.expectString, `brokerId`],
|
|
832
|
-
ConsoleAccess: [, smithyClient.expectBoolean, `consoleAccess`],
|
|
833
|
-
Groups: [, smithyClient._json, `groups`],
|
|
834
|
-
Pending: [, (_) => de_UserPendingChanges(_), `pending`],
|
|
835
|
-
ReplicationUser: [, smithyClient.expectBoolean, `replicationUser`],
|
|
836
|
-
Username: [, smithyClient.expectString, `username`],
|
|
837
|
-
});
|
|
838
|
-
Object.assign(contents, doc);
|
|
839
|
-
return contents;
|
|
840
|
-
};
|
|
841
|
-
const de_ListBrokersCommand = async (output, context) => {
|
|
842
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
843
|
-
return de_CommandError(output, context);
|
|
844
|
-
}
|
|
845
|
-
const contents = smithyClient.map({
|
|
846
|
-
$metadata: deserializeMetadata(output),
|
|
847
|
-
});
|
|
848
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
849
|
-
const doc = smithyClient.take(data, {
|
|
850
|
-
BrokerSummaries: [, (_) => de___listOfBrokerSummary(_), `brokerSummaries`],
|
|
851
|
-
NextToken: [, smithyClient.expectString, `nextToken`],
|
|
852
|
-
});
|
|
853
|
-
Object.assign(contents, doc);
|
|
854
|
-
return contents;
|
|
855
|
-
};
|
|
856
|
-
const de_ListConfigurationRevisionsCommand = async (output, context) => {
|
|
857
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
858
|
-
return de_CommandError(output, context);
|
|
859
|
-
}
|
|
860
|
-
const contents = smithyClient.map({
|
|
861
|
-
$metadata: deserializeMetadata(output),
|
|
862
|
-
});
|
|
863
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
864
|
-
const doc = smithyClient.take(data, {
|
|
865
|
-
ConfigurationId: [, smithyClient.expectString, `configurationId`],
|
|
866
|
-
MaxResults: [, smithyClient.expectInt32, `maxResults`],
|
|
867
|
-
NextToken: [, smithyClient.expectString, `nextToken`],
|
|
868
|
-
Revisions: [, (_) => de___listOfConfigurationRevision(_), `revisions`],
|
|
869
|
-
});
|
|
870
|
-
Object.assign(contents, doc);
|
|
871
|
-
return contents;
|
|
872
|
-
};
|
|
873
|
-
const de_ListConfigurationsCommand = async (output, context) => {
|
|
874
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
875
|
-
return de_CommandError(output, context);
|
|
876
|
-
}
|
|
877
|
-
const contents = smithyClient.map({
|
|
878
|
-
$metadata: deserializeMetadata(output),
|
|
879
|
-
});
|
|
880
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
881
|
-
const doc = smithyClient.take(data, {
|
|
882
|
-
Configurations: [, (_) => de___listOfConfiguration(_), `configurations`],
|
|
883
|
-
MaxResults: [, smithyClient.expectInt32, `maxResults`],
|
|
884
|
-
NextToken: [, smithyClient.expectString, `nextToken`],
|
|
885
|
-
});
|
|
886
|
-
Object.assign(contents, doc);
|
|
887
|
-
return contents;
|
|
888
|
-
};
|
|
889
|
-
const de_ListTagsCommand = async (output, context) => {
|
|
890
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
891
|
-
return de_CommandError(output, context);
|
|
892
|
-
}
|
|
893
|
-
const contents = smithyClient.map({
|
|
894
|
-
$metadata: deserializeMetadata(output),
|
|
895
|
-
});
|
|
896
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
897
|
-
const doc = smithyClient.take(data, {
|
|
898
|
-
Tags: [, smithyClient._json, `tags`],
|
|
899
|
-
});
|
|
900
|
-
Object.assign(contents, doc);
|
|
901
|
-
return contents;
|
|
902
|
-
};
|
|
903
|
-
const de_ListUsersCommand = async (output, context) => {
|
|
904
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
905
|
-
return de_CommandError(output, context);
|
|
906
|
-
}
|
|
907
|
-
const contents = smithyClient.map({
|
|
908
|
-
$metadata: deserializeMetadata(output),
|
|
909
|
-
});
|
|
910
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
911
|
-
const doc = smithyClient.take(data, {
|
|
912
|
-
BrokerId: [, smithyClient.expectString, `brokerId`],
|
|
913
|
-
MaxResults: [, smithyClient.expectInt32, `maxResults`],
|
|
914
|
-
NextToken: [, smithyClient.expectString, `nextToken`],
|
|
915
|
-
Users: [, (_) => de___listOfUserSummary(_), `users`],
|
|
916
|
-
});
|
|
917
|
-
Object.assign(contents, doc);
|
|
918
|
-
return contents;
|
|
919
|
-
};
|
|
920
|
-
const de_PromoteCommand = async (output, context) => {
|
|
921
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
922
|
-
return de_CommandError(output, context);
|
|
923
|
-
}
|
|
924
|
-
const contents = smithyClient.map({
|
|
925
|
-
$metadata: deserializeMetadata(output),
|
|
926
|
-
});
|
|
927
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
928
|
-
const doc = smithyClient.take(data, {
|
|
929
|
-
BrokerId: [, smithyClient.expectString, `brokerId`],
|
|
930
|
-
});
|
|
931
|
-
Object.assign(contents, doc);
|
|
932
|
-
return contents;
|
|
933
|
-
};
|
|
934
|
-
const de_RebootBrokerCommand = async (output, context) => {
|
|
935
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
936
|
-
return de_CommandError(output, context);
|
|
937
|
-
}
|
|
938
|
-
const contents = smithyClient.map({
|
|
939
|
-
$metadata: deserializeMetadata(output),
|
|
940
|
-
});
|
|
941
|
-
await smithyClient.collectBody(output.body, context);
|
|
942
|
-
return contents;
|
|
943
|
-
};
|
|
944
|
-
const de_UpdateBrokerCommand = async (output, context) => {
|
|
945
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
946
|
-
return de_CommandError(output, context);
|
|
947
|
-
}
|
|
948
|
-
const contents = smithyClient.map({
|
|
949
|
-
$metadata: deserializeMetadata(output),
|
|
950
|
-
});
|
|
951
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
952
|
-
const doc = smithyClient.take(data, {
|
|
953
|
-
AuthenticationStrategy: [, smithyClient.expectString, `authenticationStrategy`],
|
|
954
|
-
AutoMinorVersionUpgrade: [, smithyClient.expectBoolean, `autoMinorVersionUpgrade`],
|
|
955
|
-
BrokerId: [, smithyClient.expectString, `brokerId`],
|
|
956
|
-
Configuration: [, (_) => de_ConfigurationId(_), `configuration`],
|
|
957
|
-
DataReplicationMetadata: [, (_) => de_DataReplicationMetadataOutput(_), `dataReplicationMetadata`],
|
|
958
|
-
DataReplicationMode: [, smithyClient.expectString, `dataReplicationMode`],
|
|
959
|
-
EngineVersion: [, smithyClient.expectString, `engineVersion`],
|
|
960
|
-
HostInstanceType: [, smithyClient.expectString, `hostInstanceType`],
|
|
961
|
-
LdapServerMetadata: [, (_) => de_LdapServerMetadataOutput(_), `ldapServerMetadata`],
|
|
962
|
-
Logs: [, (_) => de_Logs(_), `logs`],
|
|
963
|
-
MaintenanceWindowStartTime: [, (_) => de_WeeklyStartTime(_), `maintenanceWindowStartTime`],
|
|
964
|
-
PendingDataReplicationMetadata: [
|
|
965
|
-
,
|
|
966
|
-
(_) => de_DataReplicationMetadataOutput(_),
|
|
967
|
-
`pendingDataReplicationMetadata`,
|
|
968
|
-
],
|
|
969
|
-
PendingDataReplicationMode: [, smithyClient.expectString, `pendingDataReplicationMode`],
|
|
970
|
-
SecurityGroups: [, smithyClient._json, `securityGroups`],
|
|
971
|
-
});
|
|
972
|
-
Object.assign(contents, doc);
|
|
973
|
-
return contents;
|
|
974
|
-
};
|
|
975
|
-
const de_UpdateConfigurationCommand = async (output, context) => {
|
|
976
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
977
|
-
return de_CommandError(output, context);
|
|
978
|
-
}
|
|
979
|
-
const contents = smithyClient.map({
|
|
980
|
-
$metadata: deserializeMetadata(output),
|
|
981
|
-
});
|
|
982
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
983
|
-
const doc = smithyClient.take(data, {
|
|
984
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
985
|
-
Created: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `created`],
|
|
986
|
-
Id: [, smithyClient.expectString, `id`],
|
|
987
|
-
LatestRevision: [, (_) => de_ConfigurationRevision(_), `latestRevision`],
|
|
988
|
-
Name: [, smithyClient.expectString, `name`],
|
|
989
|
-
Warnings: [, (_) => de___listOfSanitizationWarning(_), `warnings`],
|
|
990
|
-
});
|
|
991
|
-
Object.assign(contents, doc);
|
|
992
|
-
return contents;
|
|
993
|
-
};
|
|
994
|
-
const de_UpdateUserCommand = async (output, context) => {
|
|
995
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
996
|
-
return de_CommandError(output, context);
|
|
997
|
-
}
|
|
998
|
-
const contents = smithyClient.map({
|
|
999
|
-
$metadata: deserializeMetadata(output),
|
|
1000
|
-
});
|
|
1001
|
-
await smithyClient.collectBody(output.body, context);
|
|
1002
|
-
return contents;
|
|
1003
|
-
};
|
|
1004
|
-
const de_CommandError = async (output, context) => {
|
|
1005
|
-
const parsedOutput = {
|
|
1006
|
-
...output,
|
|
1007
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1008
|
-
};
|
|
1009
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1010
|
-
switch (errorCode) {
|
|
1011
|
-
case "BadRequestException":
|
|
1012
|
-
case "com.amazonaws.mq#BadRequestException":
|
|
1013
|
-
throw await de_BadRequestExceptionRes(parsedOutput);
|
|
1014
|
-
case "ConflictException":
|
|
1015
|
-
case "com.amazonaws.mq#ConflictException":
|
|
1016
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1017
|
-
case "ForbiddenException":
|
|
1018
|
-
case "com.amazonaws.mq#ForbiddenException":
|
|
1019
|
-
throw await de_ForbiddenExceptionRes(parsedOutput);
|
|
1020
|
-
case "InternalServerErrorException":
|
|
1021
|
-
case "com.amazonaws.mq#InternalServerErrorException":
|
|
1022
|
-
throw await de_InternalServerErrorExceptionRes(parsedOutput);
|
|
1023
|
-
case "UnauthorizedException":
|
|
1024
|
-
case "com.amazonaws.mq#UnauthorizedException":
|
|
1025
|
-
throw await de_UnauthorizedExceptionRes(parsedOutput);
|
|
1026
|
-
case "NotFoundException":
|
|
1027
|
-
case "com.amazonaws.mq#NotFoundException":
|
|
1028
|
-
throw await de_NotFoundExceptionRes(parsedOutput);
|
|
1029
|
-
default:
|
|
1030
|
-
const parsedBody = parsedOutput.body;
|
|
1031
|
-
return throwDefaultError({
|
|
1032
|
-
output,
|
|
1033
|
-
parsedBody,
|
|
1034
|
-
errorCode,
|
|
1035
|
-
});
|
|
1036
|
-
}
|
|
1037
|
-
};
|
|
1038
|
-
const throwDefaultError = smithyClient.withBaseException(MqServiceException);
|
|
1039
|
-
const de_BadRequestExceptionRes = async (parsedOutput, context) => {
|
|
1040
|
-
const contents = smithyClient.map({});
|
|
1041
|
-
const data = parsedOutput.body;
|
|
1042
|
-
const doc = smithyClient.take(data, {
|
|
1043
|
-
ErrorAttribute: [, smithyClient.expectString, `errorAttribute`],
|
|
1044
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1045
|
-
});
|
|
1046
|
-
Object.assign(contents, doc);
|
|
1047
|
-
const exception = new BadRequestException({
|
|
1048
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1049
|
-
...contents,
|
|
1050
|
-
});
|
|
1051
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1052
|
-
};
|
|
1053
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1054
|
-
const contents = smithyClient.map({});
|
|
1055
|
-
const data = parsedOutput.body;
|
|
1056
|
-
const doc = smithyClient.take(data, {
|
|
1057
|
-
ErrorAttribute: [, smithyClient.expectString, `errorAttribute`],
|
|
1058
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1059
|
-
});
|
|
1060
|
-
Object.assign(contents, doc);
|
|
1061
|
-
const exception = new ConflictException({
|
|
1062
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1063
|
-
...contents,
|
|
1064
|
-
});
|
|
1065
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1066
|
-
};
|
|
1067
|
-
const de_ForbiddenExceptionRes = async (parsedOutput, context) => {
|
|
1068
|
-
const contents = smithyClient.map({});
|
|
1069
|
-
const data = parsedOutput.body;
|
|
1070
|
-
const doc = smithyClient.take(data, {
|
|
1071
|
-
ErrorAttribute: [, smithyClient.expectString, `errorAttribute`],
|
|
1072
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1073
|
-
});
|
|
1074
|
-
Object.assign(contents, doc);
|
|
1075
|
-
const exception = new ForbiddenException({
|
|
1076
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1077
|
-
...contents,
|
|
1078
|
-
});
|
|
1079
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1080
|
-
};
|
|
1081
|
-
const de_InternalServerErrorExceptionRes = async (parsedOutput, context) => {
|
|
1082
|
-
const contents = smithyClient.map({});
|
|
1083
|
-
const data = parsedOutput.body;
|
|
1084
|
-
const doc = smithyClient.take(data, {
|
|
1085
|
-
ErrorAttribute: [, smithyClient.expectString, `errorAttribute`],
|
|
1086
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1087
|
-
});
|
|
1088
|
-
Object.assign(contents, doc);
|
|
1089
|
-
const exception = new InternalServerErrorException({
|
|
1090
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1091
|
-
...contents,
|
|
1092
|
-
});
|
|
1093
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1094
|
-
};
|
|
1095
|
-
const de_NotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1096
|
-
const contents = smithyClient.map({});
|
|
1097
|
-
const data = parsedOutput.body;
|
|
1098
|
-
const doc = smithyClient.take(data, {
|
|
1099
|
-
ErrorAttribute: [, smithyClient.expectString, `errorAttribute`],
|
|
1100
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1101
|
-
});
|
|
1102
|
-
Object.assign(contents, doc);
|
|
1103
|
-
const exception = new NotFoundException({
|
|
1104
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1105
|
-
...contents,
|
|
1106
|
-
});
|
|
1107
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1108
|
-
};
|
|
1109
|
-
const de_UnauthorizedExceptionRes = async (parsedOutput, context) => {
|
|
1110
|
-
const contents = smithyClient.map({});
|
|
1111
|
-
const data = parsedOutput.body;
|
|
1112
|
-
const doc = smithyClient.take(data, {
|
|
1113
|
-
ErrorAttribute: [, smithyClient.expectString, `errorAttribute`],
|
|
1114
|
-
Message: [, smithyClient.expectString, `message`],
|
|
1115
|
-
});
|
|
1116
|
-
Object.assign(contents, doc);
|
|
1117
|
-
const exception = new UnauthorizedException({
|
|
1118
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1119
|
-
...contents,
|
|
1120
|
-
});
|
|
1121
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1122
|
-
};
|
|
1123
|
-
const se___listOfUser = (input, context) => {
|
|
1124
|
-
return input
|
|
1125
|
-
.filter((e) => e != null)
|
|
1126
|
-
.map((entry) => {
|
|
1127
|
-
return se_User(entry);
|
|
1128
|
-
});
|
|
1129
|
-
};
|
|
1130
|
-
const se_ConfigurationId = (input, context) => {
|
|
1131
|
-
return smithyClient.take(input, {
|
|
1132
|
-
id: [, , `Id`],
|
|
1133
|
-
revision: [, , `Revision`],
|
|
1134
|
-
});
|
|
1135
|
-
};
|
|
1136
|
-
const se_EncryptionOptions = (input, context) => {
|
|
1137
|
-
return smithyClient.take(input, {
|
|
1138
|
-
kmsKeyId: [, , `KmsKeyId`],
|
|
1139
|
-
useAwsOwnedKey: [, , `UseAwsOwnedKey`],
|
|
1140
|
-
});
|
|
1141
|
-
};
|
|
1142
|
-
const se_LdapServerMetadataInput = (input, context) => {
|
|
1143
|
-
return smithyClient.take(input, {
|
|
1144
|
-
hosts: [, smithyClient._json, `Hosts`],
|
|
1145
|
-
roleBase: [, , `RoleBase`],
|
|
1146
|
-
roleName: [, , `RoleName`],
|
|
1147
|
-
roleSearchMatching: [, , `RoleSearchMatching`],
|
|
1148
|
-
roleSearchSubtree: [, , `RoleSearchSubtree`],
|
|
1149
|
-
serviceAccountPassword: [, , `ServiceAccountPassword`],
|
|
1150
|
-
serviceAccountUsername: [, , `ServiceAccountUsername`],
|
|
1151
|
-
userBase: [, , `UserBase`],
|
|
1152
|
-
userRoleName: [, , `UserRoleName`],
|
|
1153
|
-
userSearchMatching: [, , `UserSearchMatching`],
|
|
1154
|
-
userSearchSubtree: [, , `UserSearchSubtree`],
|
|
1155
|
-
});
|
|
1156
|
-
};
|
|
1157
|
-
const se_Logs = (input, context) => {
|
|
1158
|
-
return smithyClient.take(input, {
|
|
1159
|
-
audit: [, , `Audit`],
|
|
1160
|
-
general: [, , `General`],
|
|
1161
|
-
});
|
|
1162
|
-
};
|
|
1163
|
-
const se_User = (input, context) => {
|
|
1164
|
-
return smithyClient.take(input, {
|
|
1165
|
-
consoleAccess: [, , `ConsoleAccess`],
|
|
1166
|
-
groups: [, smithyClient._json, `Groups`],
|
|
1167
|
-
password: [, , `Password`],
|
|
1168
|
-
replicationUser: [, , `ReplicationUser`],
|
|
1169
|
-
username: [, , `Username`],
|
|
1170
|
-
});
|
|
1171
|
-
};
|
|
1172
|
-
const se_WeeklyStartTime = (input, context) => {
|
|
1173
|
-
return smithyClient.take(input, {
|
|
1174
|
-
dayOfWeek: [, , `DayOfWeek`],
|
|
1175
|
-
timeOfDay: [, , `TimeOfDay`],
|
|
1176
|
-
timeZone: [, , `TimeZone`],
|
|
1177
|
-
});
|
|
1178
|
-
};
|
|
1179
|
-
const de___listOfActionRequired = (output, context) => {
|
|
1180
|
-
const retVal = (output || [])
|
|
1181
|
-
.filter((e) => e != null)
|
|
1182
|
-
.map((entry) => {
|
|
1183
|
-
return de_ActionRequired(entry);
|
|
1184
|
-
});
|
|
1185
|
-
return retVal;
|
|
1186
|
-
};
|
|
1187
|
-
const de___listOfAvailabilityZone = (output, context) => {
|
|
1188
|
-
const retVal = (output || [])
|
|
1189
|
-
.filter((e) => e != null)
|
|
1190
|
-
.map((entry) => {
|
|
1191
|
-
return de_AvailabilityZone(entry);
|
|
1192
|
-
});
|
|
1193
|
-
return retVal;
|
|
1194
|
-
};
|
|
1195
|
-
const de___listOfBrokerEngineType = (output, context) => {
|
|
1196
|
-
const retVal = (output || [])
|
|
1197
|
-
.filter((e) => e != null)
|
|
1198
|
-
.map((entry) => {
|
|
1199
|
-
return de_BrokerEngineType(entry);
|
|
1200
|
-
});
|
|
1201
|
-
return retVal;
|
|
1202
|
-
};
|
|
1203
|
-
const de___listOfBrokerInstance = (output, context) => {
|
|
1204
|
-
const retVal = (output || [])
|
|
1205
|
-
.filter((e) => e != null)
|
|
1206
|
-
.map((entry) => {
|
|
1207
|
-
return de_BrokerInstance(entry);
|
|
1208
|
-
});
|
|
1209
|
-
return retVal;
|
|
1210
|
-
};
|
|
1211
|
-
const de___listOfBrokerInstanceOption = (output, context) => {
|
|
1212
|
-
const retVal = (output || [])
|
|
1213
|
-
.filter((e) => e != null)
|
|
1214
|
-
.map((entry) => {
|
|
1215
|
-
return de_BrokerInstanceOption(entry);
|
|
1216
|
-
});
|
|
1217
|
-
return retVal;
|
|
1218
|
-
};
|
|
1219
|
-
const de___listOfBrokerSummary = (output, context) => {
|
|
1220
|
-
const retVal = (output || [])
|
|
1221
|
-
.filter((e) => e != null)
|
|
1222
|
-
.map((entry) => {
|
|
1223
|
-
return de_BrokerSummary(entry);
|
|
1224
|
-
});
|
|
1225
|
-
return retVal;
|
|
1226
|
-
};
|
|
1227
|
-
const de___listOfConfiguration = (output, context) => {
|
|
1228
|
-
const retVal = (output || [])
|
|
1229
|
-
.filter((e) => e != null)
|
|
1230
|
-
.map((entry) => {
|
|
1231
|
-
return de_Configuration(entry);
|
|
1232
|
-
});
|
|
1233
|
-
return retVal;
|
|
1234
|
-
};
|
|
1235
|
-
const de___listOfConfigurationId = (output, context) => {
|
|
1236
|
-
const retVal = (output || [])
|
|
1237
|
-
.filter((e) => e != null)
|
|
1238
|
-
.map((entry) => {
|
|
1239
|
-
return de_ConfigurationId(entry);
|
|
1240
|
-
});
|
|
1241
|
-
return retVal;
|
|
1242
|
-
};
|
|
1243
|
-
const de___listOfConfigurationRevision = (output, context) => {
|
|
1244
|
-
const retVal = (output || [])
|
|
1245
|
-
.filter((e) => e != null)
|
|
1246
|
-
.map((entry) => {
|
|
1247
|
-
return de_ConfigurationRevision(entry);
|
|
1248
|
-
});
|
|
1249
|
-
return retVal;
|
|
1250
|
-
};
|
|
1251
|
-
const de___listOfEngineVersion = (output, context) => {
|
|
1252
|
-
const retVal = (output || [])
|
|
1253
|
-
.filter((e) => e != null)
|
|
1254
|
-
.map((entry) => {
|
|
1255
|
-
return de_EngineVersion(entry);
|
|
1256
|
-
});
|
|
1257
|
-
return retVal;
|
|
1258
|
-
};
|
|
1259
|
-
const de___listOfSanitizationWarning = (output, context) => {
|
|
1260
|
-
const retVal = (output || [])
|
|
1261
|
-
.filter((e) => e != null)
|
|
1262
|
-
.map((entry) => {
|
|
1263
|
-
return de_SanitizationWarning(entry);
|
|
1264
|
-
});
|
|
1265
|
-
return retVal;
|
|
1266
|
-
};
|
|
1267
|
-
const de___listOfUserSummary = (output, context) => {
|
|
1268
|
-
const retVal = (output || [])
|
|
1269
|
-
.filter((e) => e != null)
|
|
1270
|
-
.map((entry) => {
|
|
1271
|
-
return de_UserSummary(entry);
|
|
1272
|
-
});
|
|
1273
|
-
return retVal;
|
|
1274
|
-
};
|
|
1275
|
-
const de_ActionRequired = (output, context) => {
|
|
1276
|
-
return smithyClient.take(output, {
|
|
1277
|
-
ActionRequiredCode: [, smithyClient.expectString, `actionRequiredCode`],
|
|
1278
|
-
ActionRequiredInfo: [, smithyClient.expectString, `actionRequiredInfo`],
|
|
1279
|
-
});
|
|
1280
|
-
};
|
|
1281
|
-
const de_AvailabilityZone = (output, context) => {
|
|
1282
|
-
return smithyClient.take(output, {
|
|
1283
|
-
Name: [, smithyClient.expectString, `name`],
|
|
1284
|
-
});
|
|
1285
|
-
};
|
|
1286
|
-
const de_BrokerEngineType = (output, context) => {
|
|
1287
|
-
return smithyClient.take(output, {
|
|
1288
|
-
EngineType: [, smithyClient.expectString, `engineType`],
|
|
1289
|
-
EngineVersions: [, (_) => de___listOfEngineVersion(_), `engineVersions`],
|
|
1290
|
-
});
|
|
1291
|
-
};
|
|
1292
|
-
const de_BrokerInstance = (output, context) => {
|
|
1293
|
-
return smithyClient.take(output, {
|
|
1294
|
-
ConsoleURL: [, smithyClient.expectString, `consoleURL`],
|
|
1295
|
-
Endpoints: [, smithyClient._json, `endpoints`],
|
|
1296
|
-
IpAddress: [, smithyClient.expectString, `ipAddress`],
|
|
1297
|
-
});
|
|
1298
|
-
};
|
|
1299
|
-
const de_BrokerInstanceOption = (output, context) => {
|
|
1300
|
-
return smithyClient.take(output, {
|
|
1301
|
-
AvailabilityZones: [, (_) => de___listOfAvailabilityZone(_), `availabilityZones`],
|
|
1302
|
-
EngineType: [, smithyClient.expectString, `engineType`],
|
|
1303
|
-
HostInstanceType: [, smithyClient.expectString, `hostInstanceType`],
|
|
1304
|
-
StorageType: [, smithyClient.expectString, `storageType`],
|
|
1305
|
-
SupportedDeploymentModes: [, smithyClient._json, `supportedDeploymentModes`],
|
|
1306
|
-
SupportedEngineVersions: [, smithyClient._json, `supportedEngineVersions`],
|
|
1307
|
-
});
|
|
1308
|
-
};
|
|
1309
|
-
const de_BrokerSummary = (output, context) => {
|
|
1310
|
-
return smithyClient.take(output, {
|
|
1311
|
-
BrokerArn: [, smithyClient.expectString, `brokerArn`],
|
|
1312
|
-
BrokerId: [, smithyClient.expectString, `brokerId`],
|
|
1313
|
-
BrokerName: [, smithyClient.expectString, `brokerName`],
|
|
1314
|
-
BrokerState: [, smithyClient.expectString, `brokerState`],
|
|
1315
|
-
Created: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `created`],
|
|
1316
|
-
DeploymentMode: [, smithyClient.expectString, `deploymentMode`],
|
|
1317
|
-
EngineType: [, smithyClient.expectString, `engineType`],
|
|
1318
|
-
HostInstanceType: [, smithyClient.expectString, `hostInstanceType`],
|
|
1319
|
-
});
|
|
1320
|
-
};
|
|
1321
|
-
const de_Configuration = (output, context) => {
|
|
1322
|
-
return smithyClient.take(output, {
|
|
1323
|
-
Arn: [, smithyClient.expectString, `arn`],
|
|
1324
|
-
AuthenticationStrategy: [, smithyClient.expectString, `authenticationStrategy`],
|
|
1325
|
-
Created: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `created`],
|
|
1326
|
-
Description: [, smithyClient.expectString, `description`],
|
|
1327
|
-
EngineType: [, smithyClient.expectString, `engineType`],
|
|
1328
|
-
EngineVersion: [, smithyClient.expectString, `engineVersion`],
|
|
1329
|
-
Id: [, smithyClient.expectString, `id`],
|
|
1330
|
-
LatestRevision: [, (_) => de_ConfigurationRevision(_), `latestRevision`],
|
|
1331
|
-
Name: [, smithyClient.expectString, `name`],
|
|
1332
|
-
Tags: [, smithyClient._json, `tags`],
|
|
1333
|
-
});
|
|
1334
|
-
};
|
|
1335
|
-
const de_ConfigurationId = (output, context) => {
|
|
1336
|
-
return smithyClient.take(output, {
|
|
1337
|
-
Id: [, smithyClient.expectString, `id`],
|
|
1338
|
-
Revision: [, smithyClient.expectInt32, `revision`],
|
|
1339
|
-
});
|
|
1340
|
-
};
|
|
1341
|
-
const de_ConfigurationRevision = (output, context) => {
|
|
1342
|
-
return smithyClient.take(output, {
|
|
1343
|
-
Created: [, (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)), `created`],
|
|
1344
|
-
Description: [, smithyClient.expectString, `description`],
|
|
1345
|
-
Revision: [, smithyClient.expectInt32, `revision`],
|
|
1346
|
-
});
|
|
1347
|
-
};
|
|
1348
|
-
const de_Configurations = (output, context) => {
|
|
1349
|
-
return smithyClient.take(output, {
|
|
1350
|
-
Current: [, (_) => de_ConfigurationId(_), `current`],
|
|
1351
|
-
History: [, (_) => de___listOfConfigurationId(_), `history`],
|
|
1352
|
-
Pending: [, (_) => de_ConfigurationId(_), `pending`],
|
|
1353
|
-
});
|
|
1354
|
-
};
|
|
1355
|
-
const de_DataReplicationCounterpart = (output, context) => {
|
|
1356
|
-
return smithyClient.take(output, {
|
|
1357
|
-
BrokerId: [, smithyClient.expectString, `brokerId`],
|
|
1358
|
-
Region: [, smithyClient.expectString, `region`],
|
|
1359
|
-
});
|
|
1360
|
-
};
|
|
1361
|
-
const de_DataReplicationMetadataOutput = (output, context) => {
|
|
1362
|
-
return smithyClient.take(output, {
|
|
1363
|
-
DataReplicationCounterpart: [, (_) => de_DataReplicationCounterpart(_), `dataReplicationCounterpart`],
|
|
1364
|
-
DataReplicationRole: [, smithyClient.expectString, `dataReplicationRole`],
|
|
1365
|
-
});
|
|
1366
|
-
};
|
|
1367
|
-
const de_EncryptionOptions = (output, context) => {
|
|
1368
|
-
return smithyClient.take(output, {
|
|
1369
|
-
KmsKeyId: [, smithyClient.expectString, `kmsKeyId`],
|
|
1370
|
-
UseAwsOwnedKey: [, smithyClient.expectBoolean, `useAwsOwnedKey`],
|
|
1371
|
-
});
|
|
1372
|
-
};
|
|
1373
|
-
const de_EngineVersion = (output, context) => {
|
|
1374
|
-
return smithyClient.take(output, {
|
|
1375
|
-
Name: [, smithyClient.expectString, `name`],
|
|
1376
|
-
});
|
|
1377
|
-
};
|
|
1378
|
-
const de_LdapServerMetadataOutput = (output, context) => {
|
|
1379
|
-
return smithyClient.take(output, {
|
|
1380
|
-
Hosts: [, smithyClient._json, `hosts`],
|
|
1381
|
-
RoleBase: [, smithyClient.expectString, `roleBase`],
|
|
1382
|
-
RoleName: [, smithyClient.expectString, `roleName`],
|
|
1383
|
-
RoleSearchMatching: [, smithyClient.expectString, `roleSearchMatching`],
|
|
1384
|
-
RoleSearchSubtree: [, smithyClient.expectBoolean, `roleSearchSubtree`],
|
|
1385
|
-
ServiceAccountUsername: [, smithyClient.expectString, `serviceAccountUsername`],
|
|
1386
|
-
UserBase: [, smithyClient.expectString, `userBase`],
|
|
1387
|
-
UserRoleName: [, smithyClient.expectString, `userRoleName`],
|
|
1388
|
-
UserSearchMatching: [, smithyClient.expectString, `userSearchMatching`],
|
|
1389
|
-
UserSearchSubtree: [, smithyClient.expectBoolean, `userSearchSubtree`],
|
|
1390
|
-
});
|
|
1391
|
-
};
|
|
1392
|
-
const de_Logs = (output, context) => {
|
|
1393
|
-
return smithyClient.take(output, {
|
|
1394
|
-
Audit: [, smithyClient.expectBoolean, `audit`],
|
|
1395
|
-
General: [, smithyClient.expectBoolean, `general`],
|
|
1396
|
-
});
|
|
1397
|
-
};
|
|
1398
|
-
const de_LogsSummary = (output, context) => {
|
|
1399
|
-
return smithyClient.take(output, {
|
|
1400
|
-
Audit: [, smithyClient.expectBoolean, `audit`],
|
|
1401
|
-
AuditLogGroup: [, smithyClient.expectString, `auditLogGroup`],
|
|
1402
|
-
General: [, smithyClient.expectBoolean, `general`],
|
|
1403
|
-
GeneralLogGroup: [, smithyClient.expectString, `generalLogGroup`],
|
|
1404
|
-
Pending: [, (_) => de_PendingLogs(_), `pending`],
|
|
1405
|
-
});
|
|
1406
|
-
};
|
|
1407
|
-
const de_PendingLogs = (output, context) => {
|
|
1408
|
-
return smithyClient.take(output, {
|
|
1409
|
-
Audit: [, smithyClient.expectBoolean, `audit`],
|
|
1410
|
-
General: [, smithyClient.expectBoolean, `general`],
|
|
1411
|
-
});
|
|
1412
|
-
};
|
|
1413
|
-
const de_SanitizationWarning = (output, context) => {
|
|
1414
|
-
return smithyClient.take(output, {
|
|
1415
|
-
AttributeName: [, smithyClient.expectString, `attributeName`],
|
|
1416
|
-
ElementName: [, smithyClient.expectString, `elementName`],
|
|
1417
|
-
Reason: [, smithyClient.expectString, `reason`],
|
|
1418
|
-
});
|
|
1419
|
-
};
|
|
1420
|
-
const de_UserPendingChanges = (output, context) => {
|
|
1421
|
-
return smithyClient.take(output, {
|
|
1422
|
-
ConsoleAccess: [, smithyClient.expectBoolean, `consoleAccess`],
|
|
1423
|
-
Groups: [, smithyClient._json, `groups`],
|
|
1424
|
-
PendingChange: [, smithyClient.expectString, `pendingChange`],
|
|
1425
|
-
});
|
|
1426
|
-
};
|
|
1427
|
-
const de_UserSummary = (output, context) => {
|
|
1428
|
-
return smithyClient.take(output, {
|
|
1429
|
-
PendingChange: [, smithyClient.expectString, `pendingChange`],
|
|
1430
|
-
Username: [, smithyClient.expectString, `username`],
|
|
1431
|
-
});
|
|
1432
|
-
};
|
|
1433
|
-
const de_WeeklyStartTime = (output, context) => {
|
|
1434
|
-
return smithyClient.take(output, {
|
|
1435
|
-
DayOfWeek: [, smithyClient.expectString, `dayOfWeek`],
|
|
1436
|
-
TimeOfDay: [, smithyClient.expectString, `timeOfDay`],
|
|
1437
|
-
TimeZone: [, smithyClient.expectString, `timeZone`],
|
|
1438
|
-
});
|
|
1439
|
-
};
|
|
1440
|
-
const deserializeMetadata = (output) => ({
|
|
1441
|
-
httpStatusCode: output.statusCode,
|
|
1442
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1443
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1444
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1445
|
-
});
|
|
271
|
+
const _A = "Arn";
|
|
272
|
+
const _ALG = "AuditLogGroup";
|
|
273
|
+
const _AMVU = "AutoMinorVersionUpgrade";
|
|
274
|
+
const _AN = "AttributeName";
|
|
275
|
+
const _AR = "ActionRequired";
|
|
276
|
+
const _ARC = "ActionRequiredCode";
|
|
277
|
+
const _ARI = "ActionRequiredInfo";
|
|
278
|
+
const _ARc = "ActionsRequired";
|
|
279
|
+
const _AS = "AuthenticationStrategy";
|
|
280
|
+
const _AZ = "AvailabilityZone";
|
|
281
|
+
const _AZv = "AvailabilityZones";
|
|
282
|
+
const _Au = "Audit";
|
|
283
|
+
const _BA = "BrokerArn";
|
|
284
|
+
const _BET = "BrokerEngineType";
|
|
285
|
+
const _BETr = "BrokerEngineTypes";
|
|
286
|
+
const _BI = "BrokerInstance";
|
|
287
|
+
const _BIO = "BrokerInstanceOption";
|
|
288
|
+
const _BIOr = "BrokerInstanceOptions";
|
|
289
|
+
const _BIr = "BrokerId";
|
|
290
|
+
const _BIro = "BrokerInstances";
|
|
291
|
+
const _BN = "BrokerName";
|
|
292
|
+
const _BRE = "BadRequestException";
|
|
293
|
+
const _BS = "BrokerSummary";
|
|
294
|
+
const _BSr = "BrokerState";
|
|
295
|
+
const _BSro = "BrokerSummaries";
|
|
296
|
+
const _C = "Created";
|
|
297
|
+
const _CA = "ConsoleAccess";
|
|
298
|
+
const _CB = "CreateBroker";
|
|
299
|
+
const _CBR = "CreateBrokerRequest";
|
|
300
|
+
const _CBRr = "CreateBrokerResponse";
|
|
301
|
+
const _CC = "CreateConfiguration";
|
|
302
|
+
const _CCR = "CreateConfigurationRequest";
|
|
303
|
+
const _CCRr = "CreateConfigurationResponse";
|
|
304
|
+
const _CE = "ConflictException";
|
|
305
|
+
const _CI = "ConfigurationId";
|
|
306
|
+
const _CR = "ConfigurationRevision";
|
|
307
|
+
const _CRI = "CreatorRequestId";
|
|
308
|
+
const _CT = "CreateTags";
|
|
309
|
+
const _CTR = "CreateTagsRequest";
|
|
310
|
+
const _CU = "CreateUser";
|
|
311
|
+
const _CUR = "CreateUserRequest";
|
|
312
|
+
const _CURL = "ConsoleURL";
|
|
313
|
+
const _CURr = "CreateUserResponse";
|
|
314
|
+
const _Co = "Configuration";
|
|
315
|
+
const _Con = "Configurations";
|
|
316
|
+
const _Cu = "Current";
|
|
317
|
+
const _D = "Description";
|
|
318
|
+
const _DB = "DeleteBroker";
|
|
319
|
+
const _DBET = "DescribeBrokerEngineTypes";
|
|
320
|
+
const _DBETR = "DescribeBrokerEngineTypesRequest";
|
|
321
|
+
const _DBETRe = "DescribeBrokerEngineTypesResponse";
|
|
322
|
+
const _DBIO = "DescribeBrokerInstanceOptions";
|
|
323
|
+
const _DBIOR = "DescribeBrokerInstanceOptionsRequest";
|
|
324
|
+
const _DBIORe = "DescribeBrokerInstanceOptionsResponse";
|
|
325
|
+
const _DBR = "DeleteBrokerRequest";
|
|
326
|
+
const _DBRe = "DeleteBrokerResponse";
|
|
327
|
+
const _DBRes = "DescribeBrokerRequest";
|
|
328
|
+
const _DBResc = "DescribeBrokerResponse";
|
|
329
|
+
const _DBe = "DescribeBroker";
|
|
330
|
+
const _DC = "DeleteConfiguration";
|
|
331
|
+
const _DCR = "DeleteConfigurationRequest";
|
|
332
|
+
const _DCRR = "DescribeConfigurationRevisionRequest";
|
|
333
|
+
const _DCRRe = "DescribeConfigurationRevisionResponse";
|
|
334
|
+
const _DCRe = "DeleteConfigurationResponse";
|
|
335
|
+
const _DCRes = "DescribeConfigurationRequest";
|
|
336
|
+
const _DCResc = "DescribeConfigurationResponse";
|
|
337
|
+
const _DCRescr = "DescribeConfigurationRevision";
|
|
338
|
+
const _DCe = "DescribeConfiguration";
|
|
339
|
+
const _DM = "DeploymentMode";
|
|
340
|
+
const _DOW = "DayOfWeek";
|
|
341
|
+
const _DRC = "DataReplicationCounterpart";
|
|
342
|
+
const _DRM = "DataReplicationMode";
|
|
343
|
+
const _DRMO = "DataReplicationMetadataOutput";
|
|
344
|
+
const _DRMa = "DataReplicationMetadata";
|
|
345
|
+
const _DRPBA = "DataReplicationPrimaryBrokerArn";
|
|
346
|
+
const _DRR = "DataReplicationRole";
|
|
347
|
+
const _DT = "DeleteTags";
|
|
348
|
+
const _DTR = "DeleteTagsRequest";
|
|
349
|
+
const _DU = "DeleteUser";
|
|
350
|
+
const _DUR = "DeleteUserRequest";
|
|
351
|
+
const _DURe = "DeleteUserResponse";
|
|
352
|
+
const _DURes = "DescribeUserRequest";
|
|
353
|
+
const _DUResc = "DescribeUserResponse";
|
|
354
|
+
const _DUe = "DescribeUser";
|
|
355
|
+
const _Da = "Data";
|
|
356
|
+
const _E = "Endpoints";
|
|
357
|
+
const _EA = "ErrorAttribute";
|
|
358
|
+
const _EN = "ElementName";
|
|
359
|
+
const _EO = "EncryptionOptions";
|
|
1446
360
|
const _ET = "EngineType";
|
|
361
|
+
const _EV = "EngineVersions";
|
|
362
|
+
const _EVn = "EngineVersion";
|
|
363
|
+
const _FE = "ForbiddenException";
|
|
364
|
+
const _G = "Groups";
|
|
365
|
+
const _GLG = "GeneralLogGroup";
|
|
366
|
+
const _Ge = "General";
|
|
367
|
+
const _H = "History";
|
|
1447
368
|
const _HIT = "HostInstanceType";
|
|
369
|
+
const _Ho = "Hosts";
|
|
370
|
+
const _I = "Id";
|
|
371
|
+
const _IA = "IpAddress";
|
|
372
|
+
const _ISEE = "InternalServerErrorException";
|
|
373
|
+
const _KKI = "KmsKeyId";
|
|
374
|
+
const _L = "Logs";
|
|
375
|
+
const _LB = "ListBrokers";
|
|
376
|
+
const _LBR = "ListBrokersRequest";
|
|
377
|
+
const _LBRi = "ListBrokersResponse";
|
|
378
|
+
const _LC = "ListConfigurations";
|
|
379
|
+
const _LCR = "ListConfigurationsRequest";
|
|
380
|
+
const _LCRR = "ListConfigurationRevisionsRequest";
|
|
381
|
+
const _LCRRi = "ListConfigurationRevisionsResponse";
|
|
382
|
+
const _LCRi = "ListConfigurationsResponse";
|
|
383
|
+
const _LCRis = "ListConfigurationRevisions";
|
|
384
|
+
const _LR = "LatestRevision";
|
|
385
|
+
const _LS = "LogsSummary";
|
|
386
|
+
const _LSM = "LdapServerMetadata";
|
|
387
|
+
const _LSMI = "LdapServerMetadataInput";
|
|
388
|
+
const _LSMO = "LdapServerMetadataOutput";
|
|
389
|
+
const _LT = "ListTags";
|
|
390
|
+
const _LTR = "ListTagsRequest";
|
|
391
|
+
const _LTRi = "ListTagsResponse";
|
|
392
|
+
const _LU = "ListUsers";
|
|
393
|
+
const _LUR = "ListUsersRequest";
|
|
394
|
+
const _LURi = "ListUsersResponse";
|
|
395
|
+
const _M = "Message";
|
|
1448
396
|
const _MR = "MaxResults";
|
|
397
|
+
const _MWST = "MaintenanceWindowStartTime";
|
|
398
|
+
const _Mo = "Mode";
|
|
399
|
+
const _N = "Name";
|
|
400
|
+
const _NFE = "NotFoundException";
|
|
1449
401
|
const _NT = "NextToken";
|
|
402
|
+
const _P = "Pending";
|
|
403
|
+
const _PA = "PubliclyAccessible";
|
|
404
|
+
const _PAS = "PendingAuthenticationStrategy";
|
|
405
|
+
const _PC = "PendingChange";
|
|
406
|
+
const _PDRM = "PendingDataReplicationMetadata";
|
|
407
|
+
const _PDRMe = "PendingDataReplicationMode";
|
|
408
|
+
const _PEV = "PendingEngineVersion";
|
|
409
|
+
const _PHIT = "PendingHostInstanceType";
|
|
410
|
+
const _PL = "PendingLogs";
|
|
411
|
+
const _PLSM = "PendingLdapServerMetadata";
|
|
412
|
+
const _PR = "PromoteRequest";
|
|
413
|
+
const _PRr = "PromoteResponse";
|
|
414
|
+
const _PSG = "PendingSecurityGroups";
|
|
415
|
+
const _Pa = "Password";
|
|
416
|
+
const _Pr = "Promote";
|
|
417
|
+
const _R = "Revision";
|
|
418
|
+
const _RA = "ResourceArn";
|
|
419
|
+
const _RB = "RoleBase";
|
|
420
|
+
const _RBR = "RebootBrokerRequest";
|
|
421
|
+
const _RBRe = "RebootBrokerResponse";
|
|
422
|
+
const _RBe = "RebootBroker";
|
|
423
|
+
const _RN = "RoleName";
|
|
424
|
+
const _RSM = "RoleSearchMatching";
|
|
425
|
+
const _RSS = "RoleSearchSubtree";
|
|
426
|
+
const _RU = "ReplicationUser";
|
|
427
|
+
const _Re = "Region";
|
|
428
|
+
const _Rea = "Reason";
|
|
429
|
+
const _Rev = "Revisions";
|
|
430
|
+
const _SAP = "ServiceAccountPassword";
|
|
431
|
+
const _SAU = "ServiceAccountUsername";
|
|
432
|
+
const _SDM = "SupportedDeploymentModes";
|
|
433
|
+
const _SEV = "SupportedEngineVersions";
|
|
434
|
+
const _SG = "SecurityGroups";
|
|
435
|
+
const _SI = "SubnetIds";
|
|
1450
436
|
const _ST = "StorageType";
|
|
437
|
+
const _SW = "SanitizationWarning";
|
|
438
|
+
const _T = "Tags";
|
|
1451
439
|
const _TK = "TagKeys";
|
|
440
|
+
const _TOD = "TimeOfDay";
|
|
441
|
+
const _TZ = "TimeZone";
|
|
442
|
+
const _U = "Users";
|
|
443
|
+
const _UAOK = "UseAwsOwnedKey";
|
|
444
|
+
const _UB = "UserBase";
|
|
445
|
+
const _UBR = "UpdateBrokerRequest";
|
|
446
|
+
const _UBRp = "UpdateBrokerResponse";
|
|
447
|
+
const _UBp = "UpdateBroker";
|
|
448
|
+
const _UC = "UpdateConfiguration";
|
|
449
|
+
const _UCR = "UpdateConfigurationRequest";
|
|
450
|
+
const _UCRp = "UpdateConfigurationResponse";
|
|
451
|
+
const _UE = "UnauthorizedException";
|
|
452
|
+
const _UPC = "UserPendingChanges";
|
|
453
|
+
const _URN = "UserRoleName";
|
|
454
|
+
const _US = "UserSummary";
|
|
455
|
+
const _USM = "UserSearchMatching";
|
|
456
|
+
const _USS = "UserSearchSubtree";
|
|
457
|
+
const _UU = "UpdateUser";
|
|
458
|
+
const _UUR = "UpdateUserRequest";
|
|
459
|
+
const _UURp = "UpdateUserResponse";
|
|
460
|
+
const _Us = "Username";
|
|
461
|
+
const _Use = "User";
|
|
462
|
+
const _W = "Warnings";
|
|
463
|
+
const _WST = "WeeklyStartTime";
|
|
464
|
+
const _a = "arn";
|
|
465
|
+
const _aLG = "auditLogGroup";
|
|
466
|
+
const _aMVU = "autoMinorVersionUpgrade";
|
|
467
|
+
const _aN = "attributeName";
|
|
468
|
+
const _aR = "actionsRequired";
|
|
469
|
+
const _aRC = "actionRequiredCode";
|
|
470
|
+
const _aRI = "actionRequiredInfo";
|
|
471
|
+
const _aS = "authenticationStrategy";
|
|
472
|
+
const _aZ = "availabilityZones";
|
|
473
|
+
const _au = "audit";
|
|
474
|
+
const _bA = "brokerArn";
|
|
475
|
+
const _bET = "brokerEngineTypes";
|
|
476
|
+
const _bI = "brokerId";
|
|
477
|
+
const _bIO = "brokerInstanceOptions";
|
|
478
|
+
const _bIr = "brokerInstances";
|
|
479
|
+
const _bN = "brokerName";
|
|
480
|
+
const _bS = "brokerState";
|
|
481
|
+
const _bSr = "brokerSummaries";
|
|
482
|
+
const _c = "client";
|
|
483
|
+
const _cA = "consoleAccess";
|
|
484
|
+
const _cI = "configurationId";
|
|
485
|
+
const _cRI = "creatorRequestId";
|
|
486
|
+
const _cURL = "consoleURL";
|
|
487
|
+
const _co = "configuration";
|
|
488
|
+
const _con = "configurations";
|
|
489
|
+
const _cr = "created";
|
|
490
|
+
const _cu = "current";
|
|
491
|
+
const _d = "description";
|
|
492
|
+
const _dM = "deploymentMode";
|
|
493
|
+
const _dOW = "dayOfWeek";
|
|
494
|
+
const _dRC = "dataReplicationCounterpart";
|
|
495
|
+
const _dRM = "dataReplicationMode";
|
|
496
|
+
const _dRMa = "dataReplicationMetadata";
|
|
497
|
+
const _dRPBA = "dataReplicationPrimaryBrokerArn";
|
|
498
|
+
const _dRR = "dataReplicationRole";
|
|
499
|
+
const _da = "data";
|
|
500
|
+
const _e = "error";
|
|
501
|
+
const _eA = "errorAttribute";
|
|
502
|
+
const _eN = "elementName";
|
|
503
|
+
const _eO = "encryptionOptions";
|
|
1452
504
|
const _eT = "engineType";
|
|
505
|
+
const _eV = "engineVersions";
|
|
506
|
+
const _eVn = "engineVersion";
|
|
507
|
+
const _en = "endpoints";
|
|
508
|
+
const _g = "groups";
|
|
509
|
+
const _gLG = "generalLogGroup";
|
|
510
|
+
const _ge = "general";
|
|
511
|
+
const _h = "history";
|
|
512
|
+
const _hE = "httpError";
|
|
1453
513
|
const _hIT = "hostInstanceType";
|
|
514
|
+
const _hQ = "httpQuery";
|
|
515
|
+
const _ho = "hosts";
|
|
516
|
+
const _ht = "http";
|
|
517
|
+
const _i = "id";
|
|
518
|
+
const _iA = "ipAddress";
|
|
519
|
+
const _iT = "idempotencyToken";
|
|
520
|
+
const _jN = "jsonName";
|
|
521
|
+
const _kKI = "kmsKeyId";
|
|
522
|
+
const _l = "logs";
|
|
523
|
+
const _lOAR = "__listOfActionRequired";
|
|
524
|
+
const _lOAZ = "__listOfAvailabilityZone";
|
|
525
|
+
const _lOBET = "__listOfBrokerEngineType";
|
|
526
|
+
const _lOBI = "__listOfBrokerInstance";
|
|
527
|
+
const _lOBIO = "__listOfBrokerInstanceOption";
|
|
528
|
+
const _lOBS = "__listOfBrokerSummary";
|
|
529
|
+
const _lOC = "__listOfConfiguration";
|
|
530
|
+
const _lOCI = "__listOfConfigurationId";
|
|
531
|
+
const _lOCR = "__listOfConfigurationRevision";
|
|
532
|
+
const _lOEV = "__listOfEngineVersion";
|
|
533
|
+
const _lOSW = "__listOfSanitizationWarning";
|
|
534
|
+
const _lOU = "__listOfUser";
|
|
535
|
+
const _lOUS = "__listOfUserSummary";
|
|
536
|
+
const _lR = "latestRevision";
|
|
537
|
+
const _lSM = "ldapServerMetadata";
|
|
538
|
+
const _m = "message";
|
|
1454
539
|
const _mR = "maxResults";
|
|
540
|
+
const _mWST = "maintenanceWindowStartTime";
|
|
541
|
+
const _mo = "mode";
|
|
542
|
+
const _n = "name";
|
|
1455
543
|
const _nT = "nextToken";
|
|
544
|
+
const _p = "pending";
|
|
545
|
+
const _pA = "publiclyAccessible";
|
|
546
|
+
const _pAS = "pendingAuthenticationStrategy";
|
|
547
|
+
const _pC = "pendingChange";
|
|
548
|
+
const _pDRM = "pendingDataReplicationMetadata";
|
|
549
|
+
const _pDRMe = "pendingDataReplicationMode";
|
|
550
|
+
const _pEV = "pendingEngineVersion";
|
|
551
|
+
const _pHIT = "pendingHostInstanceType";
|
|
552
|
+
const _pLSM = "pendingLdapServerMetadata";
|
|
553
|
+
const _pSG = "pendingSecurityGroups";
|
|
554
|
+
const _pa = "password";
|
|
555
|
+
const _r = "revision";
|
|
556
|
+
const _rB = "roleBase";
|
|
557
|
+
const _rN = "roleName";
|
|
558
|
+
const _rSM = "roleSearchMatching";
|
|
559
|
+
const _rSS = "roleSearchSubtree";
|
|
560
|
+
const _rU = "replicationUser";
|
|
561
|
+
const _re = "region";
|
|
562
|
+
const _rea = "reason";
|
|
563
|
+
const _rev = "revisions";
|
|
564
|
+
const _s = "server";
|
|
565
|
+
const _sAP = "serviceAccountPassword";
|
|
566
|
+
const _sAU = "serviceAccountUsername";
|
|
567
|
+
const _sDM = "supportedDeploymentModes";
|
|
568
|
+
const _sEV = "supportedEngineVersions";
|
|
569
|
+
const _sG = "securityGroups";
|
|
570
|
+
const _sI = "subnetIds";
|
|
1456
571
|
const _sT = "storageType";
|
|
572
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.mq";
|
|
573
|
+
const _t = "tags";
|
|
1457
574
|
const _tK = "tagKeys";
|
|
575
|
+
const _tOD = "timeOfDay";
|
|
576
|
+
const _tZ = "timeZone";
|
|
577
|
+
const _u = "users";
|
|
578
|
+
const _uAOK = "useAwsOwnedKey";
|
|
579
|
+
const _uB = "userBase";
|
|
580
|
+
const _uRN = "userRoleName";
|
|
581
|
+
const _uSM = "userSearchMatching";
|
|
582
|
+
const _uSS = "userSearchSubtree";
|
|
583
|
+
const _us = "username";
|
|
584
|
+
const _w = "warnings";
|
|
585
|
+
const n0 = "com.amazonaws.mq";
|
|
586
|
+
var ActionRequired = [
|
|
587
|
+
3,
|
|
588
|
+
n0,
|
|
589
|
+
_AR,
|
|
590
|
+
0,
|
|
591
|
+
[_ARC, _ARI],
|
|
592
|
+
[
|
|
593
|
+
[
|
|
594
|
+
0,
|
|
595
|
+
{
|
|
596
|
+
[_jN]: _aRC,
|
|
597
|
+
},
|
|
598
|
+
],
|
|
599
|
+
[
|
|
600
|
+
0,
|
|
601
|
+
{
|
|
602
|
+
[_jN]: _aRI,
|
|
603
|
+
},
|
|
604
|
+
],
|
|
605
|
+
],
|
|
606
|
+
];
|
|
607
|
+
var AvailabilityZone = [
|
|
608
|
+
3,
|
|
609
|
+
n0,
|
|
610
|
+
_AZ,
|
|
611
|
+
0,
|
|
612
|
+
[_N],
|
|
613
|
+
[
|
|
614
|
+
[
|
|
615
|
+
0,
|
|
616
|
+
{
|
|
617
|
+
[_jN]: _n,
|
|
618
|
+
},
|
|
619
|
+
],
|
|
620
|
+
],
|
|
621
|
+
];
|
|
622
|
+
var BadRequestException = [
|
|
623
|
+
-3,
|
|
624
|
+
n0,
|
|
625
|
+
_BRE,
|
|
626
|
+
{
|
|
627
|
+
[_e]: _c,
|
|
628
|
+
[_hE]: 400,
|
|
629
|
+
},
|
|
630
|
+
[_EA, _M],
|
|
631
|
+
[
|
|
632
|
+
[
|
|
633
|
+
0,
|
|
634
|
+
{
|
|
635
|
+
[_jN]: _eA,
|
|
636
|
+
},
|
|
637
|
+
],
|
|
638
|
+
[
|
|
639
|
+
0,
|
|
640
|
+
{
|
|
641
|
+
[_jN]: _m,
|
|
642
|
+
},
|
|
643
|
+
],
|
|
644
|
+
],
|
|
645
|
+
];
|
|
646
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
|
|
647
|
+
var BrokerEngineType = [
|
|
648
|
+
3,
|
|
649
|
+
n0,
|
|
650
|
+
_BET,
|
|
651
|
+
0,
|
|
652
|
+
[_ET, _EV],
|
|
653
|
+
[
|
|
654
|
+
[
|
|
655
|
+
0,
|
|
656
|
+
{
|
|
657
|
+
[_jN]: _eT,
|
|
658
|
+
},
|
|
659
|
+
],
|
|
660
|
+
[
|
|
661
|
+
() => __listOfEngineVersion,
|
|
662
|
+
{
|
|
663
|
+
[_jN]: _eV,
|
|
664
|
+
},
|
|
665
|
+
],
|
|
666
|
+
],
|
|
667
|
+
];
|
|
668
|
+
var BrokerInstance = [
|
|
669
|
+
3,
|
|
670
|
+
n0,
|
|
671
|
+
_BI,
|
|
672
|
+
0,
|
|
673
|
+
[_CURL, _E, _IA],
|
|
674
|
+
[
|
|
675
|
+
[
|
|
676
|
+
0,
|
|
677
|
+
{
|
|
678
|
+
[_jN]: _cURL,
|
|
679
|
+
},
|
|
680
|
+
],
|
|
681
|
+
[
|
|
682
|
+
64 | 0,
|
|
683
|
+
{
|
|
684
|
+
[_jN]: _en,
|
|
685
|
+
},
|
|
686
|
+
],
|
|
687
|
+
[
|
|
688
|
+
0,
|
|
689
|
+
{
|
|
690
|
+
[_jN]: _iA,
|
|
691
|
+
},
|
|
692
|
+
],
|
|
693
|
+
],
|
|
694
|
+
];
|
|
695
|
+
var BrokerInstanceOption = [
|
|
696
|
+
3,
|
|
697
|
+
n0,
|
|
698
|
+
_BIO,
|
|
699
|
+
0,
|
|
700
|
+
[_AZv, _ET, _HIT, _ST, _SDM, _SEV],
|
|
701
|
+
[
|
|
702
|
+
[
|
|
703
|
+
() => __listOfAvailabilityZone,
|
|
704
|
+
{
|
|
705
|
+
[_jN]: _aZ,
|
|
706
|
+
},
|
|
707
|
+
],
|
|
708
|
+
[
|
|
709
|
+
0,
|
|
710
|
+
{
|
|
711
|
+
[_jN]: _eT,
|
|
712
|
+
},
|
|
713
|
+
],
|
|
714
|
+
[
|
|
715
|
+
0,
|
|
716
|
+
{
|
|
717
|
+
[_jN]: _hIT,
|
|
718
|
+
},
|
|
719
|
+
],
|
|
720
|
+
[
|
|
721
|
+
0,
|
|
722
|
+
{
|
|
723
|
+
[_jN]: _sT,
|
|
724
|
+
},
|
|
725
|
+
],
|
|
726
|
+
[
|
|
727
|
+
64 | 0,
|
|
728
|
+
{
|
|
729
|
+
[_jN]: _sDM,
|
|
730
|
+
},
|
|
731
|
+
],
|
|
732
|
+
[
|
|
733
|
+
64 | 0,
|
|
734
|
+
{
|
|
735
|
+
[_jN]: _sEV,
|
|
736
|
+
},
|
|
737
|
+
],
|
|
738
|
+
],
|
|
739
|
+
];
|
|
740
|
+
var BrokerSummary = [
|
|
741
|
+
3,
|
|
742
|
+
n0,
|
|
743
|
+
_BS,
|
|
744
|
+
0,
|
|
745
|
+
[_BA, _BIr, _BN, _BSr, _C, _DM, _ET, _HIT],
|
|
746
|
+
[
|
|
747
|
+
[
|
|
748
|
+
0,
|
|
749
|
+
{
|
|
750
|
+
[_jN]: _bA,
|
|
751
|
+
},
|
|
752
|
+
],
|
|
753
|
+
[
|
|
754
|
+
0,
|
|
755
|
+
{
|
|
756
|
+
[_jN]: _bI,
|
|
757
|
+
},
|
|
758
|
+
],
|
|
759
|
+
[
|
|
760
|
+
0,
|
|
761
|
+
{
|
|
762
|
+
[_jN]: _bN,
|
|
763
|
+
},
|
|
764
|
+
],
|
|
765
|
+
[
|
|
766
|
+
0,
|
|
767
|
+
{
|
|
768
|
+
[_jN]: _bS,
|
|
769
|
+
},
|
|
770
|
+
],
|
|
771
|
+
[
|
|
772
|
+
5,
|
|
773
|
+
{
|
|
774
|
+
[_jN]: _cr,
|
|
775
|
+
},
|
|
776
|
+
],
|
|
777
|
+
[
|
|
778
|
+
0,
|
|
779
|
+
{
|
|
780
|
+
[_jN]: _dM,
|
|
781
|
+
},
|
|
782
|
+
],
|
|
783
|
+
[
|
|
784
|
+
0,
|
|
785
|
+
{
|
|
786
|
+
[_jN]: _eT,
|
|
787
|
+
},
|
|
788
|
+
],
|
|
789
|
+
[
|
|
790
|
+
0,
|
|
791
|
+
{
|
|
792
|
+
[_jN]: _hIT,
|
|
793
|
+
},
|
|
794
|
+
],
|
|
795
|
+
],
|
|
796
|
+
];
|
|
797
|
+
var Configuration = [
|
|
798
|
+
3,
|
|
799
|
+
n0,
|
|
800
|
+
_Co,
|
|
801
|
+
0,
|
|
802
|
+
[_A, _AS, _C, _D, _ET, _EVn, _I, _LR, _N, _T],
|
|
803
|
+
[
|
|
804
|
+
[
|
|
805
|
+
0,
|
|
806
|
+
{
|
|
807
|
+
[_jN]: _a,
|
|
808
|
+
},
|
|
809
|
+
],
|
|
810
|
+
[
|
|
811
|
+
0,
|
|
812
|
+
{
|
|
813
|
+
[_jN]: _aS,
|
|
814
|
+
},
|
|
815
|
+
],
|
|
816
|
+
[
|
|
817
|
+
5,
|
|
818
|
+
{
|
|
819
|
+
[_jN]: _cr,
|
|
820
|
+
},
|
|
821
|
+
],
|
|
822
|
+
[
|
|
823
|
+
0,
|
|
824
|
+
{
|
|
825
|
+
[_jN]: _d,
|
|
826
|
+
},
|
|
827
|
+
],
|
|
828
|
+
[
|
|
829
|
+
0,
|
|
830
|
+
{
|
|
831
|
+
[_jN]: _eT,
|
|
832
|
+
},
|
|
833
|
+
],
|
|
834
|
+
[
|
|
835
|
+
0,
|
|
836
|
+
{
|
|
837
|
+
[_jN]: _eVn,
|
|
838
|
+
},
|
|
839
|
+
],
|
|
840
|
+
[
|
|
841
|
+
0,
|
|
842
|
+
{
|
|
843
|
+
[_jN]: _i,
|
|
844
|
+
},
|
|
845
|
+
],
|
|
846
|
+
[
|
|
847
|
+
() => ConfigurationRevision,
|
|
848
|
+
{
|
|
849
|
+
[_jN]: _lR,
|
|
850
|
+
},
|
|
851
|
+
],
|
|
852
|
+
[
|
|
853
|
+
0,
|
|
854
|
+
{
|
|
855
|
+
[_jN]: _n,
|
|
856
|
+
},
|
|
857
|
+
],
|
|
858
|
+
[
|
|
859
|
+
128 | 0,
|
|
860
|
+
{
|
|
861
|
+
[_jN]: _t,
|
|
862
|
+
},
|
|
863
|
+
],
|
|
864
|
+
],
|
|
865
|
+
];
|
|
866
|
+
var ConfigurationId = [
|
|
867
|
+
3,
|
|
868
|
+
n0,
|
|
869
|
+
_CI,
|
|
870
|
+
0,
|
|
871
|
+
[_I, _R],
|
|
872
|
+
[
|
|
873
|
+
[
|
|
874
|
+
0,
|
|
875
|
+
{
|
|
876
|
+
[_jN]: _i,
|
|
877
|
+
},
|
|
878
|
+
],
|
|
879
|
+
[
|
|
880
|
+
1,
|
|
881
|
+
{
|
|
882
|
+
[_jN]: _r,
|
|
883
|
+
},
|
|
884
|
+
],
|
|
885
|
+
],
|
|
886
|
+
];
|
|
887
|
+
var ConfigurationRevision = [
|
|
888
|
+
3,
|
|
889
|
+
n0,
|
|
890
|
+
_CR,
|
|
891
|
+
0,
|
|
892
|
+
[_C, _D, _R],
|
|
893
|
+
[
|
|
894
|
+
[
|
|
895
|
+
5,
|
|
896
|
+
{
|
|
897
|
+
[_jN]: _cr,
|
|
898
|
+
},
|
|
899
|
+
],
|
|
900
|
+
[
|
|
901
|
+
0,
|
|
902
|
+
{
|
|
903
|
+
[_jN]: _d,
|
|
904
|
+
},
|
|
905
|
+
],
|
|
906
|
+
[
|
|
907
|
+
1,
|
|
908
|
+
{
|
|
909
|
+
[_jN]: _r,
|
|
910
|
+
},
|
|
911
|
+
],
|
|
912
|
+
],
|
|
913
|
+
];
|
|
914
|
+
var Configurations = [
|
|
915
|
+
3,
|
|
916
|
+
n0,
|
|
917
|
+
_Con,
|
|
918
|
+
0,
|
|
919
|
+
[_Cu, _H, _P],
|
|
920
|
+
[
|
|
921
|
+
[
|
|
922
|
+
() => ConfigurationId,
|
|
923
|
+
{
|
|
924
|
+
[_jN]: _cu,
|
|
925
|
+
},
|
|
926
|
+
],
|
|
927
|
+
[
|
|
928
|
+
() => __listOfConfigurationId,
|
|
929
|
+
{
|
|
930
|
+
[_jN]: _h,
|
|
931
|
+
},
|
|
932
|
+
],
|
|
933
|
+
[
|
|
934
|
+
() => ConfigurationId,
|
|
935
|
+
{
|
|
936
|
+
[_jN]: _p,
|
|
937
|
+
},
|
|
938
|
+
],
|
|
939
|
+
],
|
|
940
|
+
];
|
|
941
|
+
var ConflictException = [
|
|
942
|
+
-3,
|
|
943
|
+
n0,
|
|
944
|
+
_CE,
|
|
945
|
+
{
|
|
946
|
+
[_e]: _c,
|
|
947
|
+
[_hE]: 409,
|
|
948
|
+
},
|
|
949
|
+
[_EA, _M],
|
|
950
|
+
[
|
|
951
|
+
[
|
|
952
|
+
0,
|
|
953
|
+
{
|
|
954
|
+
[_jN]: _eA,
|
|
955
|
+
},
|
|
956
|
+
],
|
|
957
|
+
[
|
|
958
|
+
0,
|
|
959
|
+
{
|
|
960
|
+
[_jN]: _m,
|
|
961
|
+
},
|
|
962
|
+
],
|
|
963
|
+
],
|
|
964
|
+
];
|
|
965
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
966
|
+
var CreateBrokerRequest = [
|
|
967
|
+
3,
|
|
968
|
+
n0,
|
|
969
|
+
_CBR,
|
|
970
|
+
0,
|
|
971
|
+
[_AS, _AMVU, _BN, _Co, _CRI, _DM, _EO, _ET, _EVn, _HIT, _LSM, _L, _MWST, _PA, _SG, _ST, _SI, _T, _U, _DRM, _DRPBA],
|
|
972
|
+
[
|
|
973
|
+
[
|
|
974
|
+
0,
|
|
975
|
+
{
|
|
976
|
+
[_jN]: _aS,
|
|
977
|
+
},
|
|
978
|
+
],
|
|
979
|
+
[
|
|
980
|
+
2,
|
|
981
|
+
{
|
|
982
|
+
[_jN]: _aMVU,
|
|
983
|
+
},
|
|
984
|
+
],
|
|
985
|
+
[
|
|
986
|
+
0,
|
|
987
|
+
{
|
|
988
|
+
[_jN]: _bN,
|
|
989
|
+
},
|
|
990
|
+
],
|
|
991
|
+
[
|
|
992
|
+
() => ConfigurationId,
|
|
993
|
+
{
|
|
994
|
+
[_jN]: _co,
|
|
995
|
+
},
|
|
996
|
+
],
|
|
997
|
+
[
|
|
998
|
+
0,
|
|
999
|
+
{
|
|
1000
|
+
[_jN]: _cRI,
|
|
1001
|
+
[_iT]: 1,
|
|
1002
|
+
},
|
|
1003
|
+
],
|
|
1004
|
+
[
|
|
1005
|
+
0,
|
|
1006
|
+
{
|
|
1007
|
+
[_jN]: _dM,
|
|
1008
|
+
},
|
|
1009
|
+
],
|
|
1010
|
+
[
|
|
1011
|
+
() => EncryptionOptions,
|
|
1012
|
+
{
|
|
1013
|
+
[_jN]: _eO,
|
|
1014
|
+
},
|
|
1015
|
+
],
|
|
1016
|
+
[
|
|
1017
|
+
0,
|
|
1018
|
+
{
|
|
1019
|
+
[_jN]: _eT,
|
|
1020
|
+
},
|
|
1021
|
+
],
|
|
1022
|
+
[
|
|
1023
|
+
0,
|
|
1024
|
+
{
|
|
1025
|
+
[_jN]: _eVn,
|
|
1026
|
+
},
|
|
1027
|
+
],
|
|
1028
|
+
[
|
|
1029
|
+
0,
|
|
1030
|
+
{
|
|
1031
|
+
[_jN]: _hIT,
|
|
1032
|
+
},
|
|
1033
|
+
],
|
|
1034
|
+
[
|
|
1035
|
+
() => LdapServerMetadataInput,
|
|
1036
|
+
{
|
|
1037
|
+
[_jN]: _lSM,
|
|
1038
|
+
},
|
|
1039
|
+
],
|
|
1040
|
+
[
|
|
1041
|
+
() => Logs,
|
|
1042
|
+
{
|
|
1043
|
+
[_jN]: _l,
|
|
1044
|
+
},
|
|
1045
|
+
],
|
|
1046
|
+
[
|
|
1047
|
+
() => WeeklyStartTime,
|
|
1048
|
+
{
|
|
1049
|
+
[_jN]: _mWST,
|
|
1050
|
+
},
|
|
1051
|
+
],
|
|
1052
|
+
[
|
|
1053
|
+
2,
|
|
1054
|
+
{
|
|
1055
|
+
[_jN]: _pA,
|
|
1056
|
+
},
|
|
1057
|
+
],
|
|
1058
|
+
[
|
|
1059
|
+
64 | 0,
|
|
1060
|
+
{
|
|
1061
|
+
[_jN]: _sG,
|
|
1062
|
+
},
|
|
1063
|
+
],
|
|
1064
|
+
[
|
|
1065
|
+
0,
|
|
1066
|
+
{
|
|
1067
|
+
[_jN]: _sT,
|
|
1068
|
+
},
|
|
1069
|
+
],
|
|
1070
|
+
[
|
|
1071
|
+
64 | 0,
|
|
1072
|
+
{
|
|
1073
|
+
[_jN]: _sI,
|
|
1074
|
+
},
|
|
1075
|
+
],
|
|
1076
|
+
[
|
|
1077
|
+
128 | 0,
|
|
1078
|
+
{
|
|
1079
|
+
[_jN]: _t,
|
|
1080
|
+
},
|
|
1081
|
+
],
|
|
1082
|
+
[
|
|
1083
|
+
() => __listOfUser,
|
|
1084
|
+
{
|
|
1085
|
+
[_jN]: _u,
|
|
1086
|
+
},
|
|
1087
|
+
],
|
|
1088
|
+
[
|
|
1089
|
+
0,
|
|
1090
|
+
{
|
|
1091
|
+
[_jN]: _dRM,
|
|
1092
|
+
},
|
|
1093
|
+
],
|
|
1094
|
+
[
|
|
1095
|
+
0,
|
|
1096
|
+
{
|
|
1097
|
+
[_jN]: _dRPBA,
|
|
1098
|
+
},
|
|
1099
|
+
],
|
|
1100
|
+
],
|
|
1101
|
+
];
|
|
1102
|
+
var CreateBrokerResponse = [
|
|
1103
|
+
3,
|
|
1104
|
+
n0,
|
|
1105
|
+
_CBRr,
|
|
1106
|
+
0,
|
|
1107
|
+
[_BA, _BIr],
|
|
1108
|
+
[
|
|
1109
|
+
[
|
|
1110
|
+
0,
|
|
1111
|
+
{
|
|
1112
|
+
[_jN]: _bA,
|
|
1113
|
+
},
|
|
1114
|
+
],
|
|
1115
|
+
[
|
|
1116
|
+
0,
|
|
1117
|
+
{
|
|
1118
|
+
[_jN]: _bI,
|
|
1119
|
+
},
|
|
1120
|
+
],
|
|
1121
|
+
],
|
|
1122
|
+
];
|
|
1123
|
+
var CreateConfigurationRequest = [
|
|
1124
|
+
3,
|
|
1125
|
+
n0,
|
|
1126
|
+
_CCR,
|
|
1127
|
+
0,
|
|
1128
|
+
[_AS, _ET, _EVn, _N, _T],
|
|
1129
|
+
[
|
|
1130
|
+
[
|
|
1131
|
+
0,
|
|
1132
|
+
{
|
|
1133
|
+
[_jN]: _aS,
|
|
1134
|
+
},
|
|
1135
|
+
],
|
|
1136
|
+
[
|
|
1137
|
+
0,
|
|
1138
|
+
{
|
|
1139
|
+
[_jN]: _eT,
|
|
1140
|
+
},
|
|
1141
|
+
],
|
|
1142
|
+
[
|
|
1143
|
+
0,
|
|
1144
|
+
{
|
|
1145
|
+
[_jN]: _eVn,
|
|
1146
|
+
},
|
|
1147
|
+
],
|
|
1148
|
+
[
|
|
1149
|
+
0,
|
|
1150
|
+
{
|
|
1151
|
+
[_jN]: _n,
|
|
1152
|
+
},
|
|
1153
|
+
],
|
|
1154
|
+
[
|
|
1155
|
+
128 | 0,
|
|
1156
|
+
{
|
|
1157
|
+
[_jN]: _t,
|
|
1158
|
+
},
|
|
1159
|
+
],
|
|
1160
|
+
],
|
|
1161
|
+
];
|
|
1162
|
+
var CreateConfigurationResponse = [
|
|
1163
|
+
3,
|
|
1164
|
+
n0,
|
|
1165
|
+
_CCRr,
|
|
1166
|
+
0,
|
|
1167
|
+
[_A, _AS, _C, _I, _LR, _N],
|
|
1168
|
+
[
|
|
1169
|
+
[
|
|
1170
|
+
0,
|
|
1171
|
+
{
|
|
1172
|
+
[_jN]: _a,
|
|
1173
|
+
},
|
|
1174
|
+
],
|
|
1175
|
+
[
|
|
1176
|
+
0,
|
|
1177
|
+
{
|
|
1178
|
+
[_jN]: _aS,
|
|
1179
|
+
},
|
|
1180
|
+
],
|
|
1181
|
+
[
|
|
1182
|
+
5,
|
|
1183
|
+
{
|
|
1184
|
+
[_jN]: _cr,
|
|
1185
|
+
},
|
|
1186
|
+
],
|
|
1187
|
+
[
|
|
1188
|
+
0,
|
|
1189
|
+
{
|
|
1190
|
+
[_jN]: _i,
|
|
1191
|
+
},
|
|
1192
|
+
],
|
|
1193
|
+
[
|
|
1194
|
+
() => ConfigurationRevision,
|
|
1195
|
+
{
|
|
1196
|
+
[_jN]: _lR,
|
|
1197
|
+
},
|
|
1198
|
+
],
|
|
1199
|
+
[
|
|
1200
|
+
0,
|
|
1201
|
+
{
|
|
1202
|
+
[_jN]: _n,
|
|
1203
|
+
},
|
|
1204
|
+
],
|
|
1205
|
+
],
|
|
1206
|
+
];
|
|
1207
|
+
var CreateTagsRequest = [
|
|
1208
|
+
3,
|
|
1209
|
+
n0,
|
|
1210
|
+
_CTR,
|
|
1211
|
+
0,
|
|
1212
|
+
[_RA, _T],
|
|
1213
|
+
[
|
|
1214
|
+
[0, 1],
|
|
1215
|
+
[
|
|
1216
|
+
128 | 0,
|
|
1217
|
+
{
|
|
1218
|
+
[_jN]: _t,
|
|
1219
|
+
},
|
|
1220
|
+
],
|
|
1221
|
+
],
|
|
1222
|
+
];
|
|
1223
|
+
var CreateUserRequest = [
|
|
1224
|
+
3,
|
|
1225
|
+
n0,
|
|
1226
|
+
_CUR,
|
|
1227
|
+
0,
|
|
1228
|
+
[_BIr, _CA, _G, _Pa, _Us, _RU],
|
|
1229
|
+
[
|
|
1230
|
+
[0, 1],
|
|
1231
|
+
[
|
|
1232
|
+
2,
|
|
1233
|
+
{
|
|
1234
|
+
[_jN]: _cA,
|
|
1235
|
+
},
|
|
1236
|
+
],
|
|
1237
|
+
[
|
|
1238
|
+
64 | 0,
|
|
1239
|
+
{
|
|
1240
|
+
[_jN]: _g,
|
|
1241
|
+
},
|
|
1242
|
+
],
|
|
1243
|
+
[
|
|
1244
|
+
0,
|
|
1245
|
+
{
|
|
1246
|
+
[_jN]: _pa,
|
|
1247
|
+
},
|
|
1248
|
+
],
|
|
1249
|
+
[0, 1],
|
|
1250
|
+
[
|
|
1251
|
+
2,
|
|
1252
|
+
{
|
|
1253
|
+
[_jN]: _rU,
|
|
1254
|
+
},
|
|
1255
|
+
],
|
|
1256
|
+
],
|
|
1257
|
+
];
|
|
1258
|
+
var CreateUserResponse = [3, n0, _CURr, 0, [], []];
|
|
1259
|
+
var DataReplicationCounterpart = [
|
|
1260
|
+
3,
|
|
1261
|
+
n0,
|
|
1262
|
+
_DRC,
|
|
1263
|
+
0,
|
|
1264
|
+
[_BIr, _Re],
|
|
1265
|
+
[
|
|
1266
|
+
[
|
|
1267
|
+
0,
|
|
1268
|
+
{
|
|
1269
|
+
[_jN]: _bI,
|
|
1270
|
+
},
|
|
1271
|
+
],
|
|
1272
|
+
[
|
|
1273
|
+
0,
|
|
1274
|
+
{
|
|
1275
|
+
[_jN]: _re,
|
|
1276
|
+
},
|
|
1277
|
+
],
|
|
1278
|
+
],
|
|
1279
|
+
];
|
|
1280
|
+
var DataReplicationMetadataOutput = [
|
|
1281
|
+
3,
|
|
1282
|
+
n0,
|
|
1283
|
+
_DRMO,
|
|
1284
|
+
0,
|
|
1285
|
+
[_DRC, _DRR],
|
|
1286
|
+
[
|
|
1287
|
+
[
|
|
1288
|
+
() => DataReplicationCounterpart,
|
|
1289
|
+
{
|
|
1290
|
+
[_jN]: _dRC,
|
|
1291
|
+
},
|
|
1292
|
+
],
|
|
1293
|
+
[
|
|
1294
|
+
0,
|
|
1295
|
+
{
|
|
1296
|
+
[_jN]: _dRR,
|
|
1297
|
+
},
|
|
1298
|
+
],
|
|
1299
|
+
],
|
|
1300
|
+
];
|
|
1301
|
+
var DeleteBrokerRequest = [3, n0, _DBR, 0, [_BIr], [[0, 1]]];
|
|
1302
|
+
var DeleteBrokerResponse = [
|
|
1303
|
+
3,
|
|
1304
|
+
n0,
|
|
1305
|
+
_DBRe,
|
|
1306
|
+
0,
|
|
1307
|
+
[_BIr],
|
|
1308
|
+
[
|
|
1309
|
+
[
|
|
1310
|
+
0,
|
|
1311
|
+
{
|
|
1312
|
+
[_jN]: _bI,
|
|
1313
|
+
},
|
|
1314
|
+
],
|
|
1315
|
+
],
|
|
1316
|
+
];
|
|
1317
|
+
var DeleteConfigurationRequest = [3, n0, _DCR, 0, [_CI], [[0, 1]]];
|
|
1318
|
+
var DeleteConfigurationResponse = [
|
|
1319
|
+
3,
|
|
1320
|
+
n0,
|
|
1321
|
+
_DCRe,
|
|
1322
|
+
0,
|
|
1323
|
+
[_CI],
|
|
1324
|
+
[
|
|
1325
|
+
[
|
|
1326
|
+
0,
|
|
1327
|
+
{
|
|
1328
|
+
[_jN]: _cI,
|
|
1329
|
+
},
|
|
1330
|
+
],
|
|
1331
|
+
],
|
|
1332
|
+
];
|
|
1333
|
+
var DeleteTagsRequest = [
|
|
1334
|
+
3,
|
|
1335
|
+
n0,
|
|
1336
|
+
_DTR,
|
|
1337
|
+
0,
|
|
1338
|
+
[_RA, _TK],
|
|
1339
|
+
[
|
|
1340
|
+
[0, 1],
|
|
1341
|
+
[
|
|
1342
|
+
64 | 0,
|
|
1343
|
+
{
|
|
1344
|
+
[_hQ]: _tK,
|
|
1345
|
+
},
|
|
1346
|
+
],
|
|
1347
|
+
],
|
|
1348
|
+
];
|
|
1349
|
+
var DeleteUserRequest = [
|
|
1350
|
+
3,
|
|
1351
|
+
n0,
|
|
1352
|
+
_DUR,
|
|
1353
|
+
0,
|
|
1354
|
+
[_BIr, _Us],
|
|
1355
|
+
[
|
|
1356
|
+
[0, 1],
|
|
1357
|
+
[0, 1],
|
|
1358
|
+
],
|
|
1359
|
+
];
|
|
1360
|
+
var DeleteUserResponse = [3, n0, _DURe, 0, [], []];
|
|
1361
|
+
var DescribeBrokerEngineTypesRequest = [
|
|
1362
|
+
3,
|
|
1363
|
+
n0,
|
|
1364
|
+
_DBETR,
|
|
1365
|
+
0,
|
|
1366
|
+
[_ET, _MR, _NT],
|
|
1367
|
+
[
|
|
1368
|
+
[
|
|
1369
|
+
0,
|
|
1370
|
+
{
|
|
1371
|
+
[_hQ]: _eT,
|
|
1372
|
+
},
|
|
1373
|
+
],
|
|
1374
|
+
[
|
|
1375
|
+
1,
|
|
1376
|
+
{
|
|
1377
|
+
[_hQ]: _mR,
|
|
1378
|
+
},
|
|
1379
|
+
],
|
|
1380
|
+
[
|
|
1381
|
+
0,
|
|
1382
|
+
{
|
|
1383
|
+
[_hQ]: _nT,
|
|
1384
|
+
},
|
|
1385
|
+
],
|
|
1386
|
+
],
|
|
1387
|
+
];
|
|
1388
|
+
var DescribeBrokerEngineTypesResponse = [
|
|
1389
|
+
3,
|
|
1390
|
+
n0,
|
|
1391
|
+
_DBETRe,
|
|
1392
|
+
0,
|
|
1393
|
+
[_BETr, _MR, _NT],
|
|
1394
|
+
[
|
|
1395
|
+
[
|
|
1396
|
+
() => __listOfBrokerEngineType,
|
|
1397
|
+
{
|
|
1398
|
+
[_jN]: _bET,
|
|
1399
|
+
},
|
|
1400
|
+
],
|
|
1401
|
+
[
|
|
1402
|
+
1,
|
|
1403
|
+
{
|
|
1404
|
+
[_jN]: _mR,
|
|
1405
|
+
},
|
|
1406
|
+
],
|
|
1407
|
+
[
|
|
1408
|
+
0,
|
|
1409
|
+
{
|
|
1410
|
+
[_jN]: _nT,
|
|
1411
|
+
},
|
|
1412
|
+
],
|
|
1413
|
+
],
|
|
1414
|
+
];
|
|
1415
|
+
var DescribeBrokerInstanceOptionsRequest = [
|
|
1416
|
+
3,
|
|
1417
|
+
n0,
|
|
1418
|
+
_DBIOR,
|
|
1419
|
+
0,
|
|
1420
|
+
[_ET, _HIT, _MR, _NT, _ST],
|
|
1421
|
+
[
|
|
1422
|
+
[
|
|
1423
|
+
0,
|
|
1424
|
+
{
|
|
1425
|
+
[_hQ]: _eT,
|
|
1426
|
+
},
|
|
1427
|
+
],
|
|
1428
|
+
[
|
|
1429
|
+
0,
|
|
1430
|
+
{
|
|
1431
|
+
[_hQ]: _hIT,
|
|
1432
|
+
},
|
|
1433
|
+
],
|
|
1434
|
+
[
|
|
1435
|
+
1,
|
|
1436
|
+
{
|
|
1437
|
+
[_hQ]: _mR,
|
|
1438
|
+
},
|
|
1439
|
+
],
|
|
1440
|
+
[
|
|
1441
|
+
0,
|
|
1442
|
+
{
|
|
1443
|
+
[_hQ]: _nT,
|
|
1444
|
+
},
|
|
1445
|
+
],
|
|
1446
|
+
[
|
|
1447
|
+
0,
|
|
1448
|
+
{
|
|
1449
|
+
[_hQ]: _sT,
|
|
1450
|
+
},
|
|
1451
|
+
],
|
|
1452
|
+
],
|
|
1453
|
+
];
|
|
1454
|
+
var DescribeBrokerInstanceOptionsResponse = [
|
|
1455
|
+
3,
|
|
1456
|
+
n0,
|
|
1457
|
+
_DBIORe,
|
|
1458
|
+
0,
|
|
1459
|
+
[_BIOr, _MR, _NT],
|
|
1460
|
+
[
|
|
1461
|
+
[
|
|
1462
|
+
() => __listOfBrokerInstanceOption,
|
|
1463
|
+
{
|
|
1464
|
+
[_jN]: _bIO,
|
|
1465
|
+
},
|
|
1466
|
+
],
|
|
1467
|
+
[
|
|
1468
|
+
1,
|
|
1469
|
+
{
|
|
1470
|
+
[_jN]: _mR,
|
|
1471
|
+
},
|
|
1472
|
+
],
|
|
1473
|
+
[
|
|
1474
|
+
0,
|
|
1475
|
+
{
|
|
1476
|
+
[_jN]: _nT,
|
|
1477
|
+
},
|
|
1478
|
+
],
|
|
1479
|
+
],
|
|
1480
|
+
];
|
|
1481
|
+
var DescribeBrokerRequest = [3, n0, _DBRes, 0, [_BIr], [[0, 1]]];
|
|
1482
|
+
var DescribeBrokerResponse = [
|
|
1483
|
+
3,
|
|
1484
|
+
n0,
|
|
1485
|
+
_DBResc,
|
|
1486
|
+
0,
|
|
1487
|
+
[
|
|
1488
|
+
_ARc,
|
|
1489
|
+
_AS,
|
|
1490
|
+
_AMVU,
|
|
1491
|
+
_BA,
|
|
1492
|
+
_BIr,
|
|
1493
|
+
_BIro,
|
|
1494
|
+
_BN,
|
|
1495
|
+
_BSr,
|
|
1496
|
+
_Con,
|
|
1497
|
+
_C,
|
|
1498
|
+
_DM,
|
|
1499
|
+
_EO,
|
|
1500
|
+
_ET,
|
|
1501
|
+
_EVn,
|
|
1502
|
+
_HIT,
|
|
1503
|
+
_LSM,
|
|
1504
|
+
_L,
|
|
1505
|
+
_MWST,
|
|
1506
|
+
_PAS,
|
|
1507
|
+
_PEV,
|
|
1508
|
+
_PHIT,
|
|
1509
|
+
_PLSM,
|
|
1510
|
+
_PSG,
|
|
1511
|
+
_PA,
|
|
1512
|
+
_SG,
|
|
1513
|
+
_ST,
|
|
1514
|
+
_SI,
|
|
1515
|
+
_T,
|
|
1516
|
+
_U,
|
|
1517
|
+
_DRMa,
|
|
1518
|
+
_DRM,
|
|
1519
|
+
_PDRM,
|
|
1520
|
+
_PDRMe,
|
|
1521
|
+
],
|
|
1522
|
+
[
|
|
1523
|
+
[
|
|
1524
|
+
() => __listOfActionRequired,
|
|
1525
|
+
{
|
|
1526
|
+
[_jN]: _aR,
|
|
1527
|
+
},
|
|
1528
|
+
],
|
|
1529
|
+
[
|
|
1530
|
+
0,
|
|
1531
|
+
{
|
|
1532
|
+
[_jN]: _aS,
|
|
1533
|
+
},
|
|
1534
|
+
],
|
|
1535
|
+
[
|
|
1536
|
+
2,
|
|
1537
|
+
{
|
|
1538
|
+
[_jN]: _aMVU,
|
|
1539
|
+
},
|
|
1540
|
+
],
|
|
1541
|
+
[
|
|
1542
|
+
0,
|
|
1543
|
+
{
|
|
1544
|
+
[_jN]: _bA,
|
|
1545
|
+
},
|
|
1546
|
+
],
|
|
1547
|
+
[
|
|
1548
|
+
0,
|
|
1549
|
+
{
|
|
1550
|
+
[_jN]: _bI,
|
|
1551
|
+
},
|
|
1552
|
+
],
|
|
1553
|
+
[
|
|
1554
|
+
() => __listOfBrokerInstance,
|
|
1555
|
+
{
|
|
1556
|
+
[_jN]: _bIr,
|
|
1557
|
+
},
|
|
1558
|
+
],
|
|
1559
|
+
[
|
|
1560
|
+
0,
|
|
1561
|
+
{
|
|
1562
|
+
[_jN]: _bN,
|
|
1563
|
+
},
|
|
1564
|
+
],
|
|
1565
|
+
[
|
|
1566
|
+
0,
|
|
1567
|
+
{
|
|
1568
|
+
[_jN]: _bS,
|
|
1569
|
+
},
|
|
1570
|
+
],
|
|
1571
|
+
[
|
|
1572
|
+
() => Configurations,
|
|
1573
|
+
{
|
|
1574
|
+
[_jN]: _con,
|
|
1575
|
+
},
|
|
1576
|
+
],
|
|
1577
|
+
[
|
|
1578
|
+
5,
|
|
1579
|
+
{
|
|
1580
|
+
[_jN]: _cr,
|
|
1581
|
+
},
|
|
1582
|
+
],
|
|
1583
|
+
[
|
|
1584
|
+
0,
|
|
1585
|
+
{
|
|
1586
|
+
[_jN]: _dM,
|
|
1587
|
+
},
|
|
1588
|
+
],
|
|
1589
|
+
[
|
|
1590
|
+
() => EncryptionOptions,
|
|
1591
|
+
{
|
|
1592
|
+
[_jN]: _eO,
|
|
1593
|
+
},
|
|
1594
|
+
],
|
|
1595
|
+
[
|
|
1596
|
+
0,
|
|
1597
|
+
{
|
|
1598
|
+
[_jN]: _eT,
|
|
1599
|
+
},
|
|
1600
|
+
],
|
|
1601
|
+
[
|
|
1602
|
+
0,
|
|
1603
|
+
{
|
|
1604
|
+
[_jN]: _eVn,
|
|
1605
|
+
},
|
|
1606
|
+
],
|
|
1607
|
+
[
|
|
1608
|
+
0,
|
|
1609
|
+
{
|
|
1610
|
+
[_jN]: _hIT,
|
|
1611
|
+
},
|
|
1612
|
+
],
|
|
1613
|
+
[
|
|
1614
|
+
() => LdapServerMetadataOutput,
|
|
1615
|
+
{
|
|
1616
|
+
[_jN]: _lSM,
|
|
1617
|
+
},
|
|
1618
|
+
],
|
|
1619
|
+
[
|
|
1620
|
+
() => LogsSummary,
|
|
1621
|
+
{
|
|
1622
|
+
[_jN]: _l,
|
|
1623
|
+
},
|
|
1624
|
+
],
|
|
1625
|
+
[
|
|
1626
|
+
() => WeeklyStartTime,
|
|
1627
|
+
{
|
|
1628
|
+
[_jN]: _mWST,
|
|
1629
|
+
},
|
|
1630
|
+
],
|
|
1631
|
+
[
|
|
1632
|
+
0,
|
|
1633
|
+
{
|
|
1634
|
+
[_jN]: _pAS,
|
|
1635
|
+
},
|
|
1636
|
+
],
|
|
1637
|
+
[
|
|
1638
|
+
0,
|
|
1639
|
+
{
|
|
1640
|
+
[_jN]: _pEV,
|
|
1641
|
+
},
|
|
1642
|
+
],
|
|
1643
|
+
[
|
|
1644
|
+
0,
|
|
1645
|
+
{
|
|
1646
|
+
[_jN]: _pHIT,
|
|
1647
|
+
},
|
|
1648
|
+
],
|
|
1649
|
+
[
|
|
1650
|
+
() => LdapServerMetadataOutput,
|
|
1651
|
+
{
|
|
1652
|
+
[_jN]: _pLSM,
|
|
1653
|
+
},
|
|
1654
|
+
],
|
|
1655
|
+
[
|
|
1656
|
+
64 | 0,
|
|
1657
|
+
{
|
|
1658
|
+
[_jN]: _pSG,
|
|
1659
|
+
},
|
|
1660
|
+
],
|
|
1661
|
+
[
|
|
1662
|
+
2,
|
|
1663
|
+
{
|
|
1664
|
+
[_jN]: _pA,
|
|
1665
|
+
},
|
|
1666
|
+
],
|
|
1667
|
+
[
|
|
1668
|
+
64 | 0,
|
|
1669
|
+
{
|
|
1670
|
+
[_jN]: _sG,
|
|
1671
|
+
},
|
|
1672
|
+
],
|
|
1673
|
+
[
|
|
1674
|
+
0,
|
|
1675
|
+
{
|
|
1676
|
+
[_jN]: _sT,
|
|
1677
|
+
},
|
|
1678
|
+
],
|
|
1679
|
+
[
|
|
1680
|
+
64 | 0,
|
|
1681
|
+
{
|
|
1682
|
+
[_jN]: _sI,
|
|
1683
|
+
},
|
|
1684
|
+
],
|
|
1685
|
+
[
|
|
1686
|
+
128 | 0,
|
|
1687
|
+
{
|
|
1688
|
+
[_jN]: _t,
|
|
1689
|
+
},
|
|
1690
|
+
],
|
|
1691
|
+
[
|
|
1692
|
+
() => __listOfUserSummary,
|
|
1693
|
+
{
|
|
1694
|
+
[_jN]: _u,
|
|
1695
|
+
},
|
|
1696
|
+
],
|
|
1697
|
+
[
|
|
1698
|
+
() => DataReplicationMetadataOutput,
|
|
1699
|
+
{
|
|
1700
|
+
[_jN]: _dRMa,
|
|
1701
|
+
},
|
|
1702
|
+
],
|
|
1703
|
+
[
|
|
1704
|
+
0,
|
|
1705
|
+
{
|
|
1706
|
+
[_jN]: _dRM,
|
|
1707
|
+
},
|
|
1708
|
+
],
|
|
1709
|
+
[
|
|
1710
|
+
() => DataReplicationMetadataOutput,
|
|
1711
|
+
{
|
|
1712
|
+
[_jN]: _pDRM,
|
|
1713
|
+
},
|
|
1714
|
+
],
|
|
1715
|
+
[
|
|
1716
|
+
0,
|
|
1717
|
+
{
|
|
1718
|
+
[_jN]: _pDRMe,
|
|
1719
|
+
},
|
|
1720
|
+
],
|
|
1721
|
+
],
|
|
1722
|
+
];
|
|
1723
|
+
var DescribeConfigurationRequest = [3, n0, _DCRes, 0, [_CI], [[0, 1]]];
|
|
1724
|
+
var DescribeConfigurationResponse = [
|
|
1725
|
+
3,
|
|
1726
|
+
n0,
|
|
1727
|
+
_DCResc,
|
|
1728
|
+
0,
|
|
1729
|
+
[_A, _AS, _C, _D, _ET, _EVn, _I, _LR, _N, _T],
|
|
1730
|
+
[
|
|
1731
|
+
[
|
|
1732
|
+
0,
|
|
1733
|
+
{
|
|
1734
|
+
[_jN]: _a,
|
|
1735
|
+
},
|
|
1736
|
+
],
|
|
1737
|
+
[
|
|
1738
|
+
0,
|
|
1739
|
+
{
|
|
1740
|
+
[_jN]: _aS,
|
|
1741
|
+
},
|
|
1742
|
+
],
|
|
1743
|
+
[
|
|
1744
|
+
5,
|
|
1745
|
+
{
|
|
1746
|
+
[_jN]: _cr,
|
|
1747
|
+
},
|
|
1748
|
+
],
|
|
1749
|
+
[
|
|
1750
|
+
0,
|
|
1751
|
+
{
|
|
1752
|
+
[_jN]: _d,
|
|
1753
|
+
},
|
|
1754
|
+
],
|
|
1755
|
+
[
|
|
1756
|
+
0,
|
|
1757
|
+
{
|
|
1758
|
+
[_jN]: _eT,
|
|
1759
|
+
},
|
|
1760
|
+
],
|
|
1761
|
+
[
|
|
1762
|
+
0,
|
|
1763
|
+
{
|
|
1764
|
+
[_jN]: _eVn,
|
|
1765
|
+
},
|
|
1766
|
+
],
|
|
1767
|
+
[
|
|
1768
|
+
0,
|
|
1769
|
+
{
|
|
1770
|
+
[_jN]: _i,
|
|
1771
|
+
},
|
|
1772
|
+
],
|
|
1773
|
+
[
|
|
1774
|
+
() => ConfigurationRevision,
|
|
1775
|
+
{
|
|
1776
|
+
[_jN]: _lR,
|
|
1777
|
+
},
|
|
1778
|
+
],
|
|
1779
|
+
[
|
|
1780
|
+
0,
|
|
1781
|
+
{
|
|
1782
|
+
[_jN]: _n,
|
|
1783
|
+
},
|
|
1784
|
+
],
|
|
1785
|
+
[
|
|
1786
|
+
128 | 0,
|
|
1787
|
+
{
|
|
1788
|
+
[_jN]: _t,
|
|
1789
|
+
},
|
|
1790
|
+
],
|
|
1791
|
+
],
|
|
1792
|
+
];
|
|
1793
|
+
var DescribeConfigurationRevisionRequest = [
|
|
1794
|
+
3,
|
|
1795
|
+
n0,
|
|
1796
|
+
_DCRR,
|
|
1797
|
+
0,
|
|
1798
|
+
[_CI, _CR],
|
|
1799
|
+
[
|
|
1800
|
+
[0, 1],
|
|
1801
|
+
[0, 1],
|
|
1802
|
+
],
|
|
1803
|
+
];
|
|
1804
|
+
var DescribeConfigurationRevisionResponse = [
|
|
1805
|
+
3,
|
|
1806
|
+
n0,
|
|
1807
|
+
_DCRRe,
|
|
1808
|
+
0,
|
|
1809
|
+
[_CI, _C, _Da, _D],
|
|
1810
|
+
[
|
|
1811
|
+
[
|
|
1812
|
+
0,
|
|
1813
|
+
{
|
|
1814
|
+
[_jN]: _cI,
|
|
1815
|
+
},
|
|
1816
|
+
],
|
|
1817
|
+
[
|
|
1818
|
+
5,
|
|
1819
|
+
{
|
|
1820
|
+
[_jN]: _cr,
|
|
1821
|
+
},
|
|
1822
|
+
],
|
|
1823
|
+
[
|
|
1824
|
+
0,
|
|
1825
|
+
{
|
|
1826
|
+
[_jN]: _da,
|
|
1827
|
+
},
|
|
1828
|
+
],
|
|
1829
|
+
[
|
|
1830
|
+
0,
|
|
1831
|
+
{
|
|
1832
|
+
[_jN]: _d,
|
|
1833
|
+
},
|
|
1834
|
+
],
|
|
1835
|
+
],
|
|
1836
|
+
];
|
|
1837
|
+
var DescribeUserRequest = [
|
|
1838
|
+
3,
|
|
1839
|
+
n0,
|
|
1840
|
+
_DURes,
|
|
1841
|
+
0,
|
|
1842
|
+
[_BIr, _Us],
|
|
1843
|
+
[
|
|
1844
|
+
[0, 1],
|
|
1845
|
+
[0, 1],
|
|
1846
|
+
],
|
|
1847
|
+
];
|
|
1848
|
+
var DescribeUserResponse = [
|
|
1849
|
+
3,
|
|
1850
|
+
n0,
|
|
1851
|
+
_DUResc,
|
|
1852
|
+
0,
|
|
1853
|
+
[_BIr, _CA, _G, _P, _Us, _RU],
|
|
1854
|
+
[
|
|
1855
|
+
[
|
|
1856
|
+
0,
|
|
1857
|
+
{
|
|
1858
|
+
[_jN]: _bI,
|
|
1859
|
+
},
|
|
1860
|
+
],
|
|
1861
|
+
[
|
|
1862
|
+
2,
|
|
1863
|
+
{
|
|
1864
|
+
[_jN]: _cA,
|
|
1865
|
+
},
|
|
1866
|
+
],
|
|
1867
|
+
[
|
|
1868
|
+
64 | 0,
|
|
1869
|
+
{
|
|
1870
|
+
[_jN]: _g,
|
|
1871
|
+
},
|
|
1872
|
+
],
|
|
1873
|
+
[
|
|
1874
|
+
() => UserPendingChanges,
|
|
1875
|
+
{
|
|
1876
|
+
[_jN]: _p,
|
|
1877
|
+
},
|
|
1878
|
+
],
|
|
1879
|
+
[
|
|
1880
|
+
0,
|
|
1881
|
+
{
|
|
1882
|
+
[_jN]: _us,
|
|
1883
|
+
},
|
|
1884
|
+
],
|
|
1885
|
+
[
|
|
1886
|
+
2,
|
|
1887
|
+
{
|
|
1888
|
+
[_jN]: _rU,
|
|
1889
|
+
},
|
|
1890
|
+
],
|
|
1891
|
+
],
|
|
1892
|
+
];
|
|
1893
|
+
var EncryptionOptions = [
|
|
1894
|
+
3,
|
|
1895
|
+
n0,
|
|
1896
|
+
_EO,
|
|
1897
|
+
0,
|
|
1898
|
+
[_KKI, _UAOK],
|
|
1899
|
+
[
|
|
1900
|
+
[
|
|
1901
|
+
0,
|
|
1902
|
+
{
|
|
1903
|
+
[_jN]: _kKI,
|
|
1904
|
+
},
|
|
1905
|
+
],
|
|
1906
|
+
[
|
|
1907
|
+
2,
|
|
1908
|
+
{
|
|
1909
|
+
[_jN]: _uAOK,
|
|
1910
|
+
},
|
|
1911
|
+
],
|
|
1912
|
+
],
|
|
1913
|
+
];
|
|
1914
|
+
var EngineVersion = [
|
|
1915
|
+
3,
|
|
1916
|
+
n0,
|
|
1917
|
+
_EVn,
|
|
1918
|
+
0,
|
|
1919
|
+
[_N],
|
|
1920
|
+
[
|
|
1921
|
+
[
|
|
1922
|
+
0,
|
|
1923
|
+
{
|
|
1924
|
+
[_jN]: _n,
|
|
1925
|
+
},
|
|
1926
|
+
],
|
|
1927
|
+
],
|
|
1928
|
+
];
|
|
1929
|
+
var ForbiddenException = [
|
|
1930
|
+
-3,
|
|
1931
|
+
n0,
|
|
1932
|
+
_FE,
|
|
1933
|
+
{
|
|
1934
|
+
[_e]: _c,
|
|
1935
|
+
[_hE]: 403,
|
|
1936
|
+
},
|
|
1937
|
+
[_EA, _M],
|
|
1938
|
+
[
|
|
1939
|
+
[
|
|
1940
|
+
0,
|
|
1941
|
+
{
|
|
1942
|
+
[_jN]: _eA,
|
|
1943
|
+
},
|
|
1944
|
+
],
|
|
1945
|
+
[
|
|
1946
|
+
0,
|
|
1947
|
+
{
|
|
1948
|
+
[_jN]: _m,
|
|
1949
|
+
},
|
|
1950
|
+
],
|
|
1951
|
+
],
|
|
1952
|
+
];
|
|
1953
|
+
schema.TypeRegistry.for(n0).registerError(ForbiddenException, ForbiddenException$1);
|
|
1954
|
+
var InternalServerErrorException = [
|
|
1955
|
+
-3,
|
|
1956
|
+
n0,
|
|
1957
|
+
_ISEE,
|
|
1958
|
+
{
|
|
1959
|
+
[_e]: _s,
|
|
1960
|
+
[_hE]: 500,
|
|
1961
|
+
},
|
|
1962
|
+
[_EA, _M],
|
|
1963
|
+
[
|
|
1964
|
+
[
|
|
1965
|
+
0,
|
|
1966
|
+
{
|
|
1967
|
+
[_jN]: _eA,
|
|
1968
|
+
},
|
|
1969
|
+
],
|
|
1970
|
+
[
|
|
1971
|
+
0,
|
|
1972
|
+
{
|
|
1973
|
+
[_jN]: _m,
|
|
1974
|
+
},
|
|
1975
|
+
],
|
|
1976
|
+
],
|
|
1977
|
+
];
|
|
1978
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException, InternalServerErrorException$1);
|
|
1979
|
+
var LdapServerMetadataInput = [
|
|
1980
|
+
3,
|
|
1981
|
+
n0,
|
|
1982
|
+
_LSMI,
|
|
1983
|
+
0,
|
|
1984
|
+
[_Ho, _RB, _RN, _RSM, _RSS, _SAP, _SAU, _UB, _URN, _USM, _USS],
|
|
1985
|
+
[
|
|
1986
|
+
[
|
|
1987
|
+
64 | 0,
|
|
1988
|
+
{
|
|
1989
|
+
[_jN]: _ho,
|
|
1990
|
+
},
|
|
1991
|
+
],
|
|
1992
|
+
[
|
|
1993
|
+
0,
|
|
1994
|
+
{
|
|
1995
|
+
[_jN]: _rB,
|
|
1996
|
+
},
|
|
1997
|
+
],
|
|
1998
|
+
[
|
|
1999
|
+
0,
|
|
2000
|
+
{
|
|
2001
|
+
[_jN]: _rN,
|
|
2002
|
+
},
|
|
2003
|
+
],
|
|
2004
|
+
[
|
|
2005
|
+
0,
|
|
2006
|
+
{
|
|
2007
|
+
[_jN]: _rSM,
|
|
2008
|
+
},
|
|
2009
|
+
],
|
|
2010
|
+
[
|
|
2011
|
+
2,
|
|
2012
|
+
{
|
|
2013
|
+
[_jN]: _rSS,
|
|
2014
|
+
},
|
|
2015
|
+
],
|
|
2016
|
+
[
|
|
2017
|
+
0,
|
|
2018
|
+
{
|
|
2019
|
+
[_jN]: _sAP,
|
|
2020
|
+
},
|
|
2021
|
+
],
|
|
2022
|
+
[
|
|
2023
|
+
0,
|
|
2024
|
+
{
|
|
2025
|
+
[_jN]: _sAU,
|
|
2026
|
+
},
|
|
2027
|
+
],
|
|
2028
|
+
[
|
|
2029
|
+
0,
|
|
2030
|
+
{
|
|
2031
|
+
[_jN]: _uB,
|
|
2032
|
+
},
|
|
2033
|
+
],
|
|
2034
|
+
[
|
|
2035
|
+
0,
|
|
2036
|
+
{
|
|
2037
|
+
[_jN]: _uRN,
|
|
2038
|
+
},
|
|
2039
|
+
],
|
|
2040
|
+
[
|
|
2041
|
+
0,
|
|
2042
|
+
{
|
|
2043
|
+
[_jN]: _uSM,
|
|
2044
|
+
},
|
|
2045
|
+
],
|
|
2046
|
+
[
|
|
2047
|
+
2,
|
|
2048
|
+
{
|
|
2049
|
+
[_jN]: _uSS,
|
|
2050
|
+
},
|
|
2051
|
+
],
|
|
2052
|
+
],
|
|
2053
|
+
];
|
|
2054
|
+
var LdapServerMetadataOutput = [
|
|
2055
|
+
3,
|
|
2056
|
+
n0,
|
|
2057
|
+
_LSMO,
|
|
2058
|
+
0,
|
|
2059
|
+
[_Ho, _RB, _RN, _RSM, _RSS, _SAU, _UB, _URN, _USM, _USS],
|
|
2060
|
+
[
|
|
2061
|
+
[
|
|
2062
|
+
64 | 0,
|
|
2063
|
+
{
|
|
2064
|
+
[_jN]: _ho,
|
|
2065
|
+
},
|
|
2066
|
+
],
|
|
2067
|
+
[
|
|
2068
|
+
0,
|
|
2069
|
+
{
|
|
2070
|
+
[_jN]: _rB,
|
|
2071
|
+
},
|
|
2072
|
+
],
|
|
2073
|
+
[
|
|
2074
|
+
0,
|
|
2075
|
+
{
|
|
2076
|
+
[_jN]: _rN,
|
|
2077
|
+
},
|
|
2078
|
+
],
|
|
2079
|
+
[
|
|
2080
|
+
0,
|
|
2081
|
+
{
|
|
2082
|
+
[_jN]: _rSM,
|
|
2083
|
+
},
|
|
2084
|
+
],
|
|
2085
|
+
[
|
|
2086
|
+
2,
|
|
2087
|
+
{
|
|
2088
|
+
[_jN]: _rSS,
|
|
2089
|
+
},
|
|
2090
|
+
],
|
|
2091
|
+
[
|
|
2092
|
+
0,
|
|
2093
|
+
{
|
|
2094
|
+
[_jN]: _sAU,
|
|
2095
|
+
},
|
|
2096
|
+
],
|
|
2097
|
+
[
|
|
2098
|
+
0,
|
|
2099
|
+
{
|
|
2100
|
+
[_jN]: _uB,
|
|
2101
|
+
},
|
|
2102
|
+
],
|
|
2103
|
+
[
|
|
2104
|
+
0,
|
|
2105
|
+
{
|
|
2106
|
+
[_jN]: _uRN,
|
|
2107
|
+
},
|
|
2108
|
+
],
|
|
2109
|
+
[
|
|
2110
|
+
0,
|
|
2111
|
+
{
|
|
2112
|
+
[_jN]: _uSM,
|
|
2113
|
+
},
|
|
2114
|
+
],
|
|
2115
|
+
[
|
|
2116
|
+
2,
|
|
2117
|
+
{
|
|
2118
|
+
[_jN]: _uSS,
|
|
2119
|
+
},
|
|
2120
|
+
],
|
|
2121
|
+
],
|
|
2122
|
+
];
|
|
2123
|
+
var ListBrokersRequest = [
|
|
2124
|
+
3,
|
|
2125
|
+
n0,
|
|
2126
|
+
_LBR,
|
|
2127
|
+
0,
|
|
2128
|
+
[_MR, _NT],
|
|
2129
|
+
[
|
|
2130
|
+
[
|
|
2131
|
+
1,
|
|
2132
|
+
{
|
|
2133
|
+
[_hQ]: _mR,
|
|
2134
|
+
},
|
|
2135
|
+
],
|
|
2136
|
+
[
|
|
2137
|
+
0,
|
|
2138
|
+
{
|
|
2139
|
+
[_hQ]: _nT,
|
|
2140
|
+
},
|
|
2141
|
+
],
|
|
2142
|
+
],
|
|
2143
|
+
];
|
|
2144
|
+
var ListBrokersResponse = [
|
|
2145
|
+
3,
|
|
2146
|
+
n0,
|
|
2147
|
+
_LBRi,
|
|
2148
|
+
0,
|
|
2149
|
+
[_BSro, _NT],
|
|
2150
|
+
[
|
|
2151
|
+
[
|
|
2152
|
+
() => __listOfBrokerSummary,
|
|
2153
|
+
{
|
|
2154
|
+
[_jN]: _bSr,
|
|
2155
|
+
},
|
|
2156
|
+
],
|
|
2157
|
+
[
|
|
2158
|
+
0,
|
|
2159
|
+
{
|
|
2160
|
+
[_jN]: _nT,
|
|
2161
|
+
},
|
|
2162
|
+
],
|
|
2163
|
+
],
|
|
2164
|
+
];
|
|
2165
|
+
var ListConfigurationRevisionsRequest = [
|
|
2166
|
+
3,
|
|
2167
|
+
n0,
|
|
2168
|
+
_LCRR,
|
|
2169
|
+
0,
|
|
2170
|
+
[_CI, _MR, _NT],
|
|
2171
|
+
[
|
|
2172
|
+
[0, 1],
|
|
2173
|
+
[
|
|
2174
|
+
1,
|
|
2175
|
+
{
|
|
2176
|
+
[_hQ]: _mR,
|
|
2177
|
+
},
|
|
2178
|
+
],
|
|
2179
|
+
[
|
|
2180
|
+
0,
|
|
2181
|
+
{
|
|
2182
|
+
[_hQ]: _nT,
|
|
2183
|
+
},
|
|
2184
|
+
],
|
|
2185
|
+
],
|
|
2186
|
+
];
|
|
2187
|
+
var ListConfigurationRevisionsResponse = [
|
|
2188
|
+
3,
|
|
2189
|
+
n0,
|
|
2190
|
+
_LCRRi,
|
|
2191
|
+
0,
|
|
2192
|
+
[_CI, _MR, _NT, _Rev],
|
|
2193
|
+
[
|
|
2194
|
+
[
|
|
2195
|
+
0,
|
|
2196
|
+
{
|
|
2197
|
+
[_jN]: _cI,
|
|
2198
|
+
},
|
|
2199
|
+
],
|
|
2200
|
+
[
|
|
2201
|
+
1,
|
|
2202
|
+
{
|
|
2203
|
+
[_jN]: _mR,
|
|
2204
|
+
},
|
|
2205
|
+
],
|
|
2206
|
+
[
|
|
2207
|
+
0,
|
|
2208
|
+
{
|
|
2209
|
+
[_jN]: _nT,
|
|
2210
|
+
},
|
|
2211
|
+
],
|
|
2212
|
+
[
|
|
2213
|
+
() => __listOfConfigurationRevision,
|
|
2214
|
+
{
|
|
2215
|
+
[_jN]: _rev,
|
|
2216
|
+
},
|
|
2217
|
+
],
|
|
2218
|
+
],
|
|
2219
|
+
];
|
|
2220
|
+
var ListConfigurationsRequest = [
|
|
2221
|
+
3,
|
|
2222
|
+
n0,
|
|
2223
|
+
_LCR,
|
|
2224
|
+
0,
|
|
2225
|
+
[_MR, _NT],
|
|
2226
|
+
[
|
|
2227
|
+
[
|
|
2228
|
+
1,
|
|
2229
|
+
{
|
|
2230
|
+
[_hQ]: _mR,
|
|
2231
|
+
},
|
|
2232
|
+
],
|
|
2233
|
+
[
|
|
2234
|
+
0,
|
|
2235
|
+
{
|
|
2236
|
+
[_hQ]: _nT,
|
|
2237
|
+
},
|
|
2238
|
+
],
|
|
2239
|
+
],
|
|
2240
|
+
];
|
|
2241
|
+
var ListConfigurationsResponse = [
|
|
2242
|
+
3,
|
|
2243
|
+
n0,
|
|
2244
|
+
_LCRi,
|
|
2245
|
+
0,
|
|
2246
|
+
[_Con, _MR, _NT],
|
|
2247
|
+
[
|
|
2248
|
+
[
|
|
2249
|
+
() => __listOfConfiguration,
|
|
2250
|
+
{
|
|
2251
|
+
[_jN]: _con,
|
|
2252
|
+
},
|
|
2253
|
+
],
|
|
2254
|
+
[
|
|
2255
|
+
1,
|
|
2256
|
+
{
|
|
2257
|
+
[_jN]: _mR,
|
|
2258
|
+
},
|
|
2259
|
+
],
|
|
2260
|
+
[
|
|
2261
|
+
0,
|
|
2262
|
+
{
|
|
2263
|
+
[_jN]: _nT,
|
|
2264
|
+
},
|
|
2265
|
+
],
|
|
2266
|
+
],
|
|
2267
|
+
];
|
|
2268
|
+
var ListTagsRequest = [3, n0, _LTR, 0, [_RA], [[0, 1]]];
|
|
2269
|
+
var ListTagsResponse = [
|
|
2270
|
+
3,
|
|
2271
|
+
n0,
|
|
2272
|
+
_LTRi,
|
|
2273
|
+
0,
|
|
2274
|
+
[_T],
|
|
2275
|
+
[
|
|
2276
|
+
[
|
|
2277
|
+
128 | 0,
|
|
2278
|
+
{
|
|
2279
|
+
[_jN]: _t,
|
|
2280
|
+
},
|
|
2281
|
+
],
|
|
2282
|
+
],
|
|
2283
|
+
];
|
|
2284
|
+
var ListUsersRequest = [
|
|
2285
|
+
3,
|
|
2286
|
+
n0,
|
|
2287
|
+
_LUR,
|
|
2288
|
+
0,
|
|
2289
|
+
[_BIr, _MR, _NT],
|
|
2290
|
+
[
|
|
2291
|
+
[0, 1],
|
|
2292
|
+
[
|
|
2293
|
+
1,
|
|
2294
|
+
{
|
|
2295
|
+
[_hQ]: _mR,
|
|
2296
|
+
},
|
|
2297
|
+
],
|
|
2298
|
+
[
|
|
2299
|
+
0,
|
|
2300
|
+
{
|
|
2301
|
+
[_hQ]: _nT,
|
|
2302
|
+
},
|
|
2303
|
+
],
|
|
2304
|
+
],
|
|
2305
|
+
];
|
|
2306
|
+
var ListUsersResponse = [
|
|
2307
|
+
3,
|
|
2308
|
+
n0,
|
|
2309
|
+
_LURi,
|
|
2310
|
+
0,
|
|
2311
|
+
[_BIr, _MR, _NT, _U],
|
|
2312
|
+
[
|
|
2313
|
+
[
|
|
2314
|
+
0,
|
|
2315
|
+
{
|
|
2316
|
+
[_jN]: _bI,
|
|
2317
|
+
},
|
|
2318
|
+
],
|
|
2319
|
+
[
|
|
2320
|
+
1,
|
|
2321
|
+
{
|
|
2322
|
+
[_jN]: _mR,
|
|
2323
|
+
},
|
|
2324
|
+
],
|
|
2325
|
+
[
|
|
2326
|
+
0,
|
|
2327
|
+
{
|
|
2328
|
+
[_jN]: _nT,
|
|
2329
|
+
},
|
|
2330
|
+
],
|
|
2331
|
+
[
|
|
2332
|
+
() => __listOfUserSummary,
|
|
2333
|
+
{
|
|
2334
|
+
[_jN]: _u,
|
|
2335
|
+
},
|
|
2336
|
+
],
|
|
2337
|
+
],
|
|
2338
|
+
];
|
|
2339
|
+
var Logs = [
|
|
2340
|
+
3,
|
|
2341
|
+
n0,
|
|
2342
|
+
_L,
|
|
2343
|
+
0,
|
|
2344
|
+
[_Au, _Ge],
|
|
2345
|
+
[
|
|
2346
|
+
[
|
|
2347
|
+
2,
|
|
2348
|
+
{
|
|
2349
|
+
[_jN]: _au,
|
|
2350
|
+
},
|
|
2351
|
+
],
|
|
2352
|
+
[
|
|
2353
|
+
2,
|
|
2354
|
+
{
|
|
2355
|
+
[_jN]: _ge,
|
|
2356
|
+
},
|
|
2357
|
+
],
|
|
2358
|
+
],
|
|
2359
|
+
];
|
|
2360
|
+
var LogsSummary = [
|
|
2361
|
+
3,
|
|
2362
|
+
n0,
|
|
2363
|
+
_LS,
|
|
2364
|
+
0,
|
|
2365
|
+
[_Au, _ALG, _Ge, _GLG, _P],
|
|
2366
|
+
[
|
|
2367
|
+
[
|
|
2368
|
+
2,
|
|
2369
|
+
{
|
|
2370
|
+
[_jN]: _au,
|
|
2371
|
+
},
|
|
2372
|
+
],
|
|
2373
|
+
[
|
|
2374
|
+
0,
|
|
2375
|
+
{
|
|
2376
|
+
[_jN]: _aLG,
|
|
2377
|
+
},
|
|
2378
|
+
],
|
|
2379
|
+
[
|
|
2380
|
+
2,
|
|
2381
|
+
{
|
|
2382
|
+
[_jN]: _ge,
|
|
2383
|
+
},
|
|
2384
|
+
],
|
|
2385
|
+
[
|
|
2386
|
+
0,
|
|
2387
|
+
{
|
|
2388
|
+
[_jN]: _gLG,
|
|
2389
|
+
},
|
|
2390
|
+
],
|
|
2391
|
+
[
|
|
2392
|
+
() => PendingLogs,
|
|
2393
|
+
{
|
|
2394
|
+
[_jN]: _p,
|
|
2395
|
+
},
|
|
2396
|
+
],
|
|
2397
|
+
],
|
|
2398
|
+
];
|
|
2399
|
+
var NotFoundException = [
|
|
2400
|
+
-3,
|
|
2401
|
+
n0,
|
|
2402
|
+
_NFE,
|
|
2403
|
+
{
|
|
2404
|
+
[_e]: _c,
|
|
2405
|
+
[_hE]: 404,
|
|
2406
|
+
},
|
|
2407
|
+
[_EA, _M],
|
|
2408
|
+
[
|
|
2409
|
+
[
|
|
2410
|
+
0,
|
|
2411
|
+
{
|
|
2412
|
+
[_jN]: _eA,
|
|
2413
|
+
},
|
|
2414
|
+
],
|
|
2415
|
+
[
|
|
2416
|
+
0,
|
|
2417
|
+
{
|
|
2418
|
+
[_jN]: _m,
|
|
2419
|
+
},
|
|
2420
|
+
],
|
|
2421
|
+
],
|
|
2422
|
+
];
|
|
2423
|
+
schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
|
|
2424
|
+
var PendingLogs = [
|
|
2425
|
+
3,
|
|
2426
|
+
n0,
|
|
2427
|
+
_PL,
|
|
2428
|
+
0,
|
|
2429
|
+
[_Au, _Ge],
|
|
2430
|
+
[
|
|
2431
|
+
[
|
|
2432
|
+
2,
|
|
2433
|
+
{
|
|
2434
|
+
[_jN]: _au,
|
|
2435
|
+
},
|
|
2436
|
+
],
|
|
2437
|
+
[
|
|
2438
|
+
2,
|
|
2439
|
+
{
|
|
2440
|
+
[_jN]: _ge,
|
|
2441
|
+
},
|
|
2442
|
+
],
|
|
2443
|
+
],
|
|
2444
|
+
];
|
|
2445
|
+
var PromoteRequest = [
|
|
2446
|
+
3,
|
|
2447
|
+
n0,
|
|
2448
|
+
_PR,
|
|
2449
|
+
0,
|
|
2450
|
+
[_BIr, _Mo],
|
|
2451
|
+
[
|
|
2452
|
+
[0, 1],
|
|
2453
|
+
[
|
|
2454
|
+
0,
|
|
2455
|
+
{
|
|
2456
|
+
[_jN]: _mo,
|
|
2457
|
+
},
|
|
2458
|
+
],
|
|
2459
|
+
],
|
|
2460
|
+
];
|
|
2461
|
+
var PromoteResponse = [
|
|
2462
|
+
3,
|
|
2463
|
+
n0,
|
|
2464
|
+
_PRr,
|
|
2465
|
+
0,
|
|
2466
|
+
[_BIr],
|
|
2467
|
+
[
|
|
2468
|
+
[
|
|
2469
|
+
0,
|
|
2470
|
+
{
|
|
2471
|
+
[_jN]: _bI,
|
|
2472
|
+
},
|
|
2473
|
+
],
|
|
2474
|
+
],
|
|
2475
|
+
];
|
|
2476
|
+
var RebootBrokerRequest = [3, n0, _RBR, 0, [_BIr], [[0, 1]]];
|
|
2477
|
+
var RebootBrokerResponse = [3, n0, _RBRe, 0, [], []];
|
|
2478
|
+
var SanitizationWarning = [
|
|
2479
|
+
3,
|
|
2480
|
+
n0,
|
|
2481
|
+
_SW,
|
|
2482
|
+
0,
|
|
2483
|
+
[_AN, _EN, _Rea],
|
|
2484
|
+
[
|
|
2485
|
+
[
|
|
2486
|
+
0,
|
|
2487
|
+
{
|
|
2488
|
+
[_jN]: _aN,
|
|
2489
|
+
},
|
|
2490
|
+
],
|
|
2491
|
+
[
|
|
2492
|
+
0,
|
|
2493
|
+
{
|
|
2494
|
+
[_jN]: _eN,
|
|
2495
|
+
},
|
|
2496
|
+
],
|
|
2497
|
+
[
|
|
2498
|
+
0,
|
|
2499
|
+
{
|
|
2500
|
+
[_jN]: _rea,
|
|
2501
|
+
},
|
|
2502
|
+
],
|
|
2503
|
+
],
|
|
2504
|
+
];
|
|
2505
|
+
var UnauthorizedException = [
|
|
2506
|
+
-3,
|
|
2507
|
+
n0,
|
|
2508
|
+
_UE,
|
|
2509
|
+
{
|
|
2510
|
+
[_e]: _c,
|
|
2511
|
+
[_hE]: 401,
|
|
2512
|
+
},
|
|
2513
|
+
[_EA, _M],
|
|
2514
|
+
[
|
|
2515
|
+
[
|
|
2516
|
+
0,
|
|
2517
|
+
{
|
|
2518
|
+
[_jN]: _eA,
|
|
2519
|
+
},
|
|
2520
|
+
],
|
|
2521
|
+
[
|
|
2522
|
+
0,
|
|
2523
|
+
{
|
|
2524
|
+
[_jN]: _m,
|
|
2525
|
+
},
|
|
2526
|
+
],
|
|
2527
|
+
],
|
|
2528
|
+
];
|
|
2529
|
+
schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
|
|
2530
|
+
var UpdateBrokerRequest = [
|
|
2531
|
+
3,
|
|
2532
|
+
n0,
|
|
2533
|
+
_UBR,
|
|
2534
|
+
0,
|
|
2535
|
+
[_AS, _AMVU, _BIr, _Co, _EVn, _HIT, _LSM, _L, _MWST, _SG, _DRM],
|
|
2536
|
+
[
|
|
2537
|
+
[
|
|
2538
|
+
0,
|
|
2539
|
+
{
|
|
2540
|
+
[_jN]: _aS,
|
|
2541
|
+
},
|
|
2542
|
+
],
|
|
2543
|
+
[
|
|
2544
|
+
2,
|
|
2545
|
+
{
|
|
2546
|
+
[_jN]: _aMVU,
|
|
2547
|
+
},
|
|
2548
|
+
],
|
|
2549
|
+
[0, 1],
|
|
2550
|
+
[
|
|
2551
|
+
() => ConfigurationId,
|
|
2552
|
+
{
|
|
2553
|
+
[_jN]: _co,
|
|
2554
|
+
},
|
|
2555
|
+
],
|
|
2556
|
+
[
|
|
2557
|
+
0,
|
|
2558
|
+
{
|
|
2559
|
+
[_jN]: _eVn,
|
|
2560
|
+
},
|
|
2561
|
+
],
|
|
2562
|
+
[
|
|
2563
|
+
0,
|
|
2564
|
+
{
|
|
2565
|
+
[_jN]: _hIT,
|
|
2566
|
+
},
|
|
2567
|
+
],
|
|
2568
|
+
[
|
|
2569
|
+
() => LdapServerMetadataInput,
|
|
2570
|
+
{
|
|
2571
|
+
[_jN]: _lSM,
|
|
2572
|
+
},
|
|
2573
|
+
],
|
|
2574
|
+
[
|
|
2575
|
+
() => Logs,
|
|
2576
|
+
{
|
|
2577
|
+
[_jN]: _l,
|
|
2578
|
+
},
|
|
2579
|
+
],
|
|
2580
|
+
[
|
|
2581
|
+
() => WeeklyStartTime,
|
|
2582
|
+
{
|
|
2583
|
+
[_jN]: _mWST,
|
|
2584
|
+
},
|
|
2585
|
+
],
|
|
2586
|
+
[
|
|
2587
|
+
64 | 0,
|
|
2588
|
+
{
|
|
2589
|
+
[_jN]: _sG,
|
|
2590
|
+
},
|
|
2591
|
+
],
|
|
2592
|
+
[
|
|
2593
|
+
0,
|
|
2594
|
+
{
|
|
2595
|
+
[_jN]: _dRM,
|
|
2596
|
+
},
|
|
2597
|
+
],
|
|
2598
|
+
],
|
|
2599
|
+
];
|
|
2600
|
+
var UpdateBrokerResponse = [
|
|
2601
|
+
3,
|
|
2602
|
+
n0,
|
|
2603
|
+
_UBRp,
|
|
2604
|
+
0,
|
|
2605
|
+
[_AS, _AMVU, _BIr, _Co, _EVn, _HIT, _LSM, _L, _MWST, _SG, _DRMa, _DRM, _PDRM, _PDRMe],
|
|
2606
|
+
[
|
|
2607
|
+
[
|
|
2608
|
+
0,
|
|
2609
|
+
{
|
|
2610
|
+
[_jN]: _aS,
|
|
2611
|
+
},
|
|
2612
|
+
],
|
|
2613
|
+
[
|
|
2614
|
+
2,
|
|
2615
|
+
{
|
|
2616
|
+
[_jN]: _aMVU,
|
|
2617
|
+
},
|
|
2618
|
+
],
|
|
2619
|
+
[
|
|
2620
|
+
0,
|
|
2621
|
+
{
|
|
2622
|
+
[_jN]: _bI,
|
|
2623
|
+
},
|
|
2624
|
+
],
|
|
2625
|
+
[
|
|
2626
|
+
() => ConfigurationId,
|
|
2627
|
+
{
|
|
2628
|
+
[_jN]: _co,
|
|
2629
|
+
},
|
|
2630
|
+
],
|
|
2631
|
+
[
|
|
2632
|
+
0,
|
|
2633
|
+
{
|
|
2634
|
+
[_jN]: _eVn,
|
|
2635
|
+
},
|
|
2636
|
+
],
|
|
2637
|
+
[
|
|
2638
|
+
0,
|
|
2639
|
+
{
|
|
2640
|
+
[_jN]: _hIT,
|
|
2641
|
+
},
|
|
2642
|
+
],
|
|
2643
|
+
[
|
|
2644
|
+
() => LdapServerMetadataOutput,
|
|
2645
|
+
{
|
|
2646
|
+
[_jN]: _lSM,
|
|
2647
|
+
},
|
|
2648
|
+
],
|
|
2649
|
+
[
|
|
2650
|
+
() => Logs,
|
|
2651
|
+
{
|
|
2652
|
+
[_jN]: _l,
|
|
2653
|
+
},
|
|
2654
|
+
],
|
|
2655
|
+
[
|
|
2656
|
+
() => WeeklyStartTime,
|
|
2657
|
+
{
|
|
2658
|
+
[_jN]: _mWST,
|
|
2659
|
+
},
|
|
2660
|
+
],
|
|
2661
|
+
[
|
|
2662
|
+
64 | 0,
|
|
2663
|
+
{
|
|
2664
|
+
[_jN]: _sG,
|
|
2665
|
+
},
|
|
2666
|
+
],
|
|
2667
|
+
[
|
|
2668
|
+
() => DataReplicationMetadataOutput,
|
|
2669
|
+
{
|
|
2670
|
+
[_jN]: _dRMa,
|
|
2671
|
+
},
|
|
2672
|
+
],
|
|
2673
|
+
[
|
|
2674
|
+
0,
|
|
2675
|
+
{
|
|
2676
|
+
[_jN]: _dRM,
|
|
2677
|
+
},
|
|
2678
|
+
],
|
|
2679
|
+
[
|
|
2680
|
+
() => DataReplicationMetadataOutput,
|
|
2681
|
+
{
|
|
2682
|
+
[_jN]: _pDRM,
|
|
2683
|
+
},
|
|
2684
|
+
],
|
|
2685
|
+
[
|
|
2686
|
+
0,
|
|
2687
|
+
{
|
|
2688
|
+
[_jN]: _pDRMe,
|
|
2689
|
+
},
|
|
2690
|
+
],
|
|
2691
|
+
],
|
|
2692
|
+
];
|
|
2693
|
+
var UpdateConfigurationRequest = [
|
|
2694
|
+
3,
|
|
2695
|
+
n0,
|
|
2696
|
+
_UCR,
|
|
2697
|
+
0,
|
|
2698
|
+
[_CI, _Da, _D],
|
|
2699
|
+
[
|
|
2700
|
+
[0, 1],
|
|
2701
|
+
[
|
|
2702
|
+
0,
|
|
2703
|
+
{
|
|
2704
|
+
[_jN]: _da,
|
|
2705
|
+
},
|
|
2706
|
+
],
|
|
2707
|
+
[
|
|
2708
|
+
0,
|
|
2709
|
+
{
|
|
2710
|
+
[_jN]: _d,
|
|
2711
|
+
},
|
|
2712
|
+
],
|
|
2713
|
+
],
|
|
2714
|
+
];
|
|
2715
|
+
var UpdateConfigurationResponse = [
|
|
2716
|
+
3,
|
|
2717
|
+
n0,
|
|
2718
|
+
_UCRp,
|
|
2719
|
+
0,
|
|
2720
|
+
[_A, _C, _I, _LR, _N, _W],
|
|
2721
|
+
[
|
|
2722
|
+
[
|
|
2723
|
+
0,
|
|
2724
|
+
{
|
|
2725
|
+
[_jN]: _a,
|
|
2726
|
+
},
|
|
2727
|
+
],
|
|
2728
|
+
[
|
|
2729
|
+
5,
|
|
2730
|
+
{
|
|
2731
|
+
[_jN]: _cr,
|
|
2732
|
+
},
|
|
2733
|
+
],
|
|
2734
|
+
[
|
|
2735
|
+
0,
|
|
2736
|
+
{
|
|
2737
|
+
[_jN]: _i,
|
|
2738
|
+
},
|
|
2739
|
+
],
|
|
2740
|
+
[
|
|
2741
|
+
() => ConfigurationRevision,
|
|
2742
|
+
{
|
|
2743
|
+
[_jN]: _lR,
|
|
2744
|
+
},
|
|
2745
|
+
],
|
|
2746
|
+
[
|
|
2747
|
+
0,
|
|
2748
|
+
{
|
|
2749
|
+
[_jN]: _n,
|
|
2750
|
+
},
|
|
2751
|
+
],
|
|
2752
|
+
[
|
|
2753
|
+
() => __listOfSanitizationWarning,
|
|
2754
|
+
{
|
|
2755
|
+
[_jN]: _w,
|
|
2756
|
+
},
|
|
2757
|
+
],
|
|
2758
|
+
],
|
|
2759
|
+
];
|
|
2760
|
+
var UpdateUserRequest = [
|
|
2761
|
+
3,
|
|
2762
|
+
n0,
|
|
2763
|
+
_UUR,
|
|
2764
|
+
0,
|
|
2765
|
+
[_BIr, _CA, _G, _Pa, _Us, _RU],
|
|
2766
|
+
[
|
|
2767
|
+
[0, 1],
|
|
2768
|
+
[
|
|
2769
|
+
2,
|
|
2770
|
+
{
|
|
2771
|
+
[_jN]: _cA,
|
|
2772
|
+
},
|
|
2773
|
+
],
|
|
2774
|
+
[
|
|
2775
|
+
64 | 0,
|
|
2776
|
+
{
|
|
2777
|
+
[_jN]: _g,
|
|
2778
|
+
},
|
|
2779
|
+
],
|
|
2780
|
+
[
|
|
2781
|
+
0,
|
|
2782
|
+
{
|
|
2783
|
+
[_jN]: _pa,
|
|
2784
|
+
},
|
|
2785
|
+
],
|
|
2786
|
+
[0, 1],
|
|
2787
|
+
[
|
|
2788
|
+
2,
|
|
2789
|
+
{
|
|
2790
|
+
[_jN]: _rU,
|
|
2791
|
+
},
|
|
2792
|
+
],
|
|
2793
|
+
],
|
|
2794
|
+
];
|
|
2795
|
+
var UpdateUserResponse = [3, n0, _UURp, 0, [], []];
|
|
2796
|
+
var User = [
|
|
2797
|
+
3,
|
|
2798
|
+
n0,
|
|
2799
|
+
_Use,
|
|
2800
|
+
0,
|
|
2801
|
+
[_CA, _G, _Pa, _Us, _RU],
|
|
2802
|
+
[
|
|
2803
|
+
[
|
|
2804
|
+
2,
|
|
2805
|
+
{
|
|
2806
|
+
[_jN]: _cA,
|
|
2807
|
+
},
|
|
2808
|
+
],
|
|
2809
|
+
[
|
|
2810
|
+
64 | 0,
|
|
2811
|
+
{
|
|
2812
|
+
[_jN]: _g,
|
|
2813
|
+
},
|
|
2814
|
+
],
|
|
2815
|
+
[
|
|
2816
|
+
0,
|
|
2817
|
+
{
|
|
2818
|
+
[_jN]: _pa,
|
|
2819
|
+
},
|
|
2820
|
+
],
|
|
2821
|
+
[
|
|
2822
|
+
0,
|
|
2823
|
+
{
|
|
2824
|
+
[_jN]: _us,
|
|
2825
|
+
},
|
|
2826
|
+
],
|
|
2827
|
+
[
|
|
2828
|
+
2,
|
|
2829
|
+
{
|
|
2830
|
+
[_jN]: _rU,
|
|
2831
|
+
},
|
|
2832
|
+
],
|
|
2833
|
+
],
|
|
2834
|
+
];
|
|
2835
|
+
var UserPendingChanges = [
|
|
2836
|
+
3,
|
|
2837
|
+
n0,
|
|
2838
|
+
_UPC,
|
|
2839
|
+
0,
|
|
2840
|
+
[_CA, _G, _PC],
|
|
2841
|
+
[
|
|
2842
|
+
[
|
|
2843
|
+
2,
|
|
2844
|
+
{
|
|
2845
|
+
[_jN]: _cA,
|
|
2846
|
+
},
|
|
2847
|
+
],
|
|
2848
|
+
[
|
|
2849
|
+
64 | 0,
|
|
2850
|
+
{
|
|
2851
|
+
[_jN]: _g,
|
|
2852
|
+
},
|
|
2853
|
+
],
|
|
2854
|
+
[
|
|
2855
|
+
0,
|
|
2856
|
+
{
|
|
2857
|
+
[_jN]: _pC,
|
|
2858
|
+
},
|
|
2859
|
+
],
|
|
2860
|
+
],
|
|
2861
|
+
];
|
|
2862
|
+
var UserSummary = [
|
|
2863
|
+
3,
|
|
2864
|
+
n0,
|
|
2865
|
+
_US,
|
|
2866
|
+
0,
|
|
2867
|
+
[_PC, _Us],
|
|
2868
|
+
[
|
|
2869
|
+
[
|
|
2870
|
+
0,
|
|
2871
|
+
{
|
|
2872
|
+
[_jN]: _pC,
|
|
2873
|
+
},
|
|
2874
|
+
],
|
|
2875
|
+
[
|
|
2876
|
+
0,
|
|
2877
|
+
{
|
|
2878
|
+
[_jN]: _us,
|
|
2879
|
+
},
|
|
2880
|
+
],
|
|
2881
|
+
],
|
|
2882
|
+
];
|
|
2883
|
+
var WeeklyStartTime = [
|
|
2884
|
+
3,
|
|
2885
|
+
n0,
|
|
2886
|
+
_WST,
|
|
2887
|
+
0,
|
|
2888
|
+
[_DOW, _TOD, _TZ],
|
|
2889
|
+
[
|
|
2890
|
+
[
|
|
2891
|
+
0,
|
|
2892
|
+
{
|
|
2893
|
+
[_jN]: _dOW,
|
|
2894
|
+
},
|
|
2895
|
+
],
|
|
2896
|
+
[
|
|
2897
|
+
0,
|
|
2898
|
+
{
|
|
2899
|
+
[_jN]: _tOD,
|
|
2900
|
+
},
|
|
2901
|
+
],
|
|
2902
|
+
[
|
|
2903
|
+
0,
|
|
2904
|
+
{
|
|
2905
|
+
[_jN]: _tZ,
|
|
2906
|
+
},
|
|
2907
|
+
],
|
|
2908
|
+
],
|
|
2909
|
+
];
|
|
2910
|
+
var __Unit = "unit";
|
|
2911
|
+
var MqServiceException = [-3, _sm, "MqServiceException", 0, [], []];
|
|
2912
|
+
schema.TypeRegistry.for(_sm).registerError(MqServiceException, MqServiceException$1);
|
|
2913
|
+
var __listOfActionRequired = [1, n0, _lOAR, 0, [() => ActionRequired, 0]];
|
|
2914
|
+
var __listOfAvailabilityZone = [1, n0, _lOAZ, 0, [() => AvailabilityZone, 0]];
|
|
2915
|
+
var __listOfBrokerEngineType = [1, n0, _lOBET, 0, [() => BrokerEngineType, 0]];
|
|
2916
|
+
var __listOfBrokerInstance = [1, n0, _lOBI, 0, [() => BrokerInstance, 0]];
|
|
2917
|
+
var __listOfBrokerInstanceOption = [1, n0, _lOBIO, 0, [() => BrokerInstanceOption, 0]];
|
|
2918
|
+
var __listOfBrokerSummary = [1, n0, _lOBS, 0, [() => BrokerSummary, 0]];
|
|
2919
|
+
var __listOfConfiguration = [1, n0, _lOC, 0, [() => Configuration, 0]];
|
|
2920
|
+
var __listOfConfigurationId = [1, n0, _lOCI, 0, [() => ConfigurationId, 0]];
|
|
2921
|
+
var __listOfConfigurationRevision = [1, n0, _lOCR, 0, [() => ConfigurationRevision, 0]];
|
|
2922
|
+
var __listOfEngineVersion = [1, n0, _lOEV, 0, [() => EngineVersion, 0]];
|
|
2923
|
+
var __listOfSanitizationWarning = [1, n0, _lOSW, 0, [() => SanitizationWarning, 0]];
|
|
2924
|
+
var __listOfUser = [1, n0, _lOU, 0, [() => User, 0]];
|
|
2925
|
+
var __listOfUserSummary = [1, n0, _lOUS, 0, [() => UserSummary, 0]];
|
|
2926
|
+
var CreateBroker = [
|
|
2927
|
+
9,
|
|
2928
|
+
n0,
|
|
2929
|
+
_CB,
|
|
2930
|
+
{
|
|
2931
|
+
[_ht]: ["POST", "/v1/brokers", 200],
|
|
2932
|
+
},
|
|
2933
|
+
() => CreateBrokerRequest,
|
|
2934
|
+
() => CreateBrokerResponse,
|
|
2935
|
+
];
|
|
2936
|
+
var CreateConfiguration = [
|
|
2937
|
+
9,
|
|
2938
|
+
n0,
|
|
2939
|
+
_CC,
|
|
2940
|
+
{
|
|
2941
|
+
[_ht]: ["POST", "/v1/configurations", 200],
|
|
2942
|
+
},
|
|
2943
|
+
() => CreateConfigurationRequest,
|
|
2944
|
+
() => CreateConfigurationResponse,
|
|
2945
|
+
];
|
|
2946
|
+
var CreateTags = [
|
|
2947
|
+
9,
|
|
2948
|
+
n0,
|
|
2949
|
+
_CT,
|
|
2950
|
+
{
|
|
2951
|
+
[_ht]: ["POST", "/v1/tags/{ResourceArn}", 204],
|
|
2952
|
+
},
|
|
2953
|
+
() => CreateTagsRequest,
|
|
2954
|
+
() => __Unit,
|
|
2955
|
+
];
|
|
2956
|
+
var CreateUser = [
|
|
2957
|
+
9,
|
|
2958
|
+
n0,
|
|
2959
|
+
_CU,
|
|
2960
|
+
{
|
|
2961
|
+
[_ht]: ["POST", "/v1/brokers/{BrokerId}/users/{Username}", 200],
|
|
2962
|
+
},
|
|
2963
|
+
() => CreateUserRequest,
|
|
2964
|
+
() => CreateUserResponse,
|
|
2965
|
+
];
|
|
2966
|
+
var DeleteBroker = [
|
|
2967
|
+
9,
|
|
2968
|
+
n0,
|
|
2969
|
+
_DB,
|
|
2970
|
+
{
|
|
2971
|
+
[_ht]: ["DELETE", "/v1/brokers/{BrokerId}", 200],
|
|
2972
|
+
},
|
|
2973
|
+
() => DeleteBrokerRequest,
|
|
2974
|
+
() => DeleteBrokerResponse,
|
|
2975
|
+
];
|
|
2976
|
+
var DeleteConfiguration = [
|
|
2977
|
+
9,
|
|
2978
|
+
n0,
|
|
2979
|
+
_DC,
|
|
2980
|
+
{
|
|
2981
|
+
[_ht]: ["DELETE", "/v1/configurations/{ConfigurationId}", 200],
|
|
2982
|
+
},
|
|
2983
|
+
() => DeleteConfigurationRequest,
|
|
2984
|
+
() => DeleteConfigurationResponse,
|
|
2985
|
+
];
|
|
2986
|
+
var DeleteTags = [
|
|
2987
|
+
9,
|
|
2988
|
+
n0,
|
|
2989
|
+
_DT,
|
|
2990
|
+
{
|
|
2991
|
+
[_ht]: ["DELETE", "/v1/tags/{ResourceArn}", 204],
|
|
2992
|
+
},
|
|
2993
|
+
() => DeleteTagsRequest,
|
|
2994
|
+
() => __Unit,
|
|
2995
|
+
];
|
|
2996
|
+
var DeleteUser = [
|
|
2997
|
+
9,
|
|
2998
|
+
n0,
|
|
2999
|
+
_DU,
|
|
3000
|
+
{
|
|
3001
|
+
[_ht]: ["DELETE", "/v1/brokers/{BrokerId}/users/{Username}", 200],
|
|
3002
|
+
},
|
|
3003
|
+
() => DeleteUserRequest,
|
|
3004
|
+
() => DeleteUserResponse,
|
|
3005
|
+
];
|
|
3006
|
+
var DescribeBroker = [
|
|
3007
|
+
9,
|
|
3008
|
+
n0,
|
|
3009
|
+
_DBe,
|
|
3010
|
+
{
|
|
3011
|
+
[_ht]: ["GET", "/v1/brokers/{BrokerId}", 200],
|
|
3012
|
+
},
|
|
3013
|
+
() => DescribeBrokerRequest,
|
|
3014
|
+
() => DescribeBrokerResponse,
|
|
3015
|
+
];
|
|
3016
|
+
var DescribeBrokerEngineTypes = [
|
|
3017
|
+
9,
|
|
3018
|
+
n0,
|
|
3019
|
+
_DBET,
|
|
3020
|
+
{
|
|
3021
|
+
[_ht]: ["GET", "/v1/broker-engine-types", 200],
|
|
3022
|
+
},
|
|
3023
|
+
() => DescribeBrokerEngineTypesRequest,
|
|
3024
|
+
() => DescribeBrokerEngineTypesResponse,
|
|
3025
|
+
];
|
|
3026
|
+
var DescribeBrokerInstanceOptions = [
|
|
3027
|
+
9,
|
|
3028
|
+
n0,
|
|
3029
|
+
_DBIO,
|
|
3030
|
+
{
|
|
3031
|
+
[_ht]: ["GET", "/v1/broker-instance-options", 200],
|
|
3032
|
+
},
|
|
3033
|
+
() => DescribeBrokerInstanceOptionsRequest,
|
|
3034
|
+
() => DescribeBrokerInstanceOptionsResponse,
|
|
3035
|
+
];
|
|
3036
|
+
var DescribeConfiguration = [
|
|
3037
|
+
9,
|
|
3038
|
+
n0,
|
|
3039
|
+
_DCe,
|
|
3040
|
+
{
|
|
3041
|
+
[_ht]: ["GET", "/v1/configurations/{ConfigurationId}", 200],
|
|
3042
|
+
},
|
|
3043
|
+
() => DescribeConfigurationRequest,
|
|
3044
|
+
() => DescribeConfigurationResponse,
|
|
3045
|
+
];
|
|
3046
|
+
var DescribeConfigurationRevision = [
|
|
3047
|
+
9,
|
|
3048
|
+
n0,
|
|
3049
|
+
_DCRescr,
|
|
3050
|
+
{
|
|
3051
|
+
[_ht]: ["GET", "/v1/configurations/{ConfigurationId}/revisions/{ConfigurationRevision}", 200],
|
|
3052
|
+
},
|
|
3053
|
+
() => DescribeConfigurationRevisionRequest,
|
|
3054
|
+
() => DescribeConfigurationRevisionResponse,
|
|
3055
|
+
];
|
|
3056
|
+
var DescribeUser = [
|
|
3057
|
+
9,
|
|
3058
|
+
n0,
|
|
3059
|
+
_DUe,
|
|
3060
|
+
{
|
|
3061
|
+
[_ht]: ["GET", "/v1/brokers/{BrokerId}/users/{Username}", 200],
|
|
3062
|
+
},
|
|
3063
|
+
() => DescribeUserRequest,
|
|
3064
|
+
() => DescribeUserResponse,
|
|
3065
|
+
];
|
|
3066
|
+
var ListBrokers = [
|
|
3067
|
+
9,
|
|
3068
|
+
n0,
|
|
3069
|
+
_LB,
|
|
3070
|
+
{
|
|
3071
|
+
[_ht]: ["GET", "/v1/brokers", 200],
|
|
3072
|
+
},
|
|
3073
|
+
() => ListBrokersRequest,
|
|
3074
|
+
() => ListBrokersResponse,
|
|
3075
|
+
];
|
|
3076
|
+
var ListConfigurationRevisions = [
|
|
3077
|
+
9,
|
|
3078
|
+
n0,
|
|
3079
|
+
_LCRis,
|
|
3080
|
+
{
|
|
3081
|
+
[_ht]: ["GET", "/v1/configurations/{ConfigurationId}/revisions", 200],
|
|
3082
|
+
},
|
|
3083
|
+
() => ListConfigurationRevisionsRequest,
|
|
3084
|
+
() => ListConfigurationRevisionsResponse,
|
|
3085
|
+
];
|
|
3086
|
+
var ListConfigurations = [
|
|
3087
|
+
9,
|
|
3088
|
+
n0,
|
|
3089
|
+
_LC,
|
|
3090
|
+
{
|
|
3091
|
+
[_ht]: ["GET", "/v1/configurations", 200],
|
|
3092
|
+
},
|
|
3093
|
+
() => ListConfigurationsRequest,
|
|
3094
|
+
() => ListConfigurationsResponse,
|
|
3095
|
+
];
|
|
3096
|
+
var ListTags = [
|
|
3097
|
+
9,
|
|
3098
|
+
n0,
|
|
3099
|
+
_LT,
|
|
3100
|
+
{
|
|
3101
|
+
[_ht]: ["GET", "/v1/tags/{ResourceArn}", 200],
|
|
3102
|
+
},
|
|
3103
|
+
() => ListTagsRequest,
|
|
3104
|
+
() => ListTagsResponse,
|
|
3105
|
+
];
|
|
3106
|
+
var ListUsers = [
|
|
3107
|
+
9,
|
|
3108
|
+
n0,
|
|
3109
|
+
_LU,
|
|
3110
|
+
{
|
|
3111
|
+
[_ht]: ["GET", "/v1/brokers/{BrokerId}/users", 200],
|
|
3112
|
+
},
|
|
3113
|
+
() => ListUsersRequest,
|
|
3114
|
+
() => ListUsersResponse,
|
|
3115
|
+
];
|
|
3116
|
+
var Promote = [
|
|
3117
|
+
9,
|
|
3118
|
+
n0,
|
|
3119
|
+
_Pr,
|
|
3120
|
+
{
|
|
3121
|
+
[_ht]: ["POST", "/v1/brokers/{BrokerId}/promote", 200],
|
|
3122
|
+
},
|
|
3123
|
+
() => PromoteRequest,
|
|
3124
|
+
() => PromoteResponse,
|
|
3125
|
+
];
|
|
3126
|
+
var RebootBroker = [
|
|
3127
|
+
9,
|
|
3128
|
+
n0,
|
|
3129
|
+
_RBe,
|
|
3130
|
+
{
|
|
3131
|
+
[_ht]: ["POST", "/v1/brokers/{BrokerId}/reboot", 200],
|
|
3132
|
+
},
|
|
3133
|
+
() => RebootBrokerRequest,
|
|
3134
|
+
() => RebootBrokerResponse,
|
|
3135
|
+
];
|
|
3136
|
+
var UpdateBroker = [
|
|
3137
|
+
9,
|
|
3138
|
+
n0,
|
|
3139
|
+
_UBp,
|
|
3140
|
+
{
|
|
3141
|
+
[_ht]: ["PUT", "/v1/brokers/{BrokerId}", 200],
|
|
3142
|
+
},
|
|
3143
|
+
() => UpdateBrokerRequest,
|
|
3144
|
+
() => UpdateBrokerResponse,
|
|
3145
|
+
];
|
|
3146
|
+
var UpdateConfiguration = [
|
|
3147
|
+
9,
|
|
3148
|
+
n0,
|
|
3149
|
+
_UC,
|
|
3150
|
+
{
|
|
3151
|
+
[_ht]: ["PUT", "/v1/configurations/{ConfigurationId}", 200],
|
|
3152
|
+
},
|
|
3153
|
+
() => UpdateConfigurationRequest,
|
|
3154
|
+
() => UpdateConfigurationResponse,
|
|
3155
|
+
];
|
|
3156
|
+
var UpdateUser = [
|
|
3157
|
+
9,
|
|
3158
|
+
n0,
|
|
3159
|
+
_UU,
|
|
3160
|
+
{
|
|
3161
|
+
[_ht]: ["PUT", "/v1/brokers/{BrokerId}/users/{Username}", 200],
|
|
3162
|
+
},
|
|
3163
|
+
() => UpdateUserRequest,
|
|
3164
|
+
() => UpdateUserResponse,
|
|
3165
|
+
];
|
|
1458
3166
|
|
|
1459
3167
|
class CreateBrokerCommand extends smithyClient.Command
|
|
1460
3168
|
.classBuilder()
|
|
1461
3169
|
.ep(commonParams)
|
|
1462
3170
|
.m(function (Command, cs, config, o) {
|
|
1463
|
-
return [
|
|
1464
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1465
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1466
|
-
];
|
|
3171
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1467
3172
|
})
|
|
1468
3173
|
.s("mq", "CreateBroker", {})
|
|
1469
3174
|
.n("MqClient", "CreateBrokerCommand")
|
|
1470
|
-
.
|
|
1471
|
-
.ser(se_CreateBrokerCommand)
|
|
1472
|
-
.de(de_CreateBrokerCommand)
|
|
3175
|
+
.sc(CreateBroker)
|
|
1473
3176
|
.build() {
|
|
1474
3177
|
}
|
|
1475
3178
|
|
|
@@ -1477,16 +3180,11 @@ class CreateConfigurationCommand extends smithyClient.Command
|
|
|
1477
3180
|
.classBuilder()
|
|
1478
3181
|
.ep(commonParams)
|
|
1479
3182
|
.m(function (Command, cs, config, o) {
|
|
1480
|
-
return [
|
|
1481
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1482
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1483
|
-
];
|
|
3183
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1484
3184
|
})
|
|
1485
3185
|
.s("mq", "CreateConfiguration", {})
|
|
1486
3186
|
.n("MqClient", "CreateConfigurationCommand")
|
|
1487
|
-
.
|
|
1488
|
-
.ser(se_CreateConfigurationCommand)
|
|
1489
|
-
.de(de_CreateConfigurationCommand)
|
|
3187
|
+
.sc(CreateConfiguration)
|
|
1490
3188
|
.build() {
|
|
1491
3189
|
}
|
|
1492
3190
|
|
|
@@ -1494,16 +3192,11 @@ class CreateTagsCommand extends smithyClient.Command
|
|
|
1494
3192
|
.classBuilder()
|
|
1495
3193
|
.ep(commonParams)
|
|
1496
3194
|
.m(function (Command, cs, config, o) {
|
|
1497
|
-
return [
|
|
1498
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1499
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1500
|
-
];
|
|
3195
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1501
3196
|
})
|
|
1502
3197
|
.s("mq", "CreateTags", {})
|
|
1503
3198
|
.n("MqClient", "CreateTagsCommand")
|
|
1504
|
-
.
|
|
1505
|
-
.ser(se_CreateTagsCommand)
|
|
1506
|
-
.de(de_CreateTagsCommand)
|
|
3199
|
+
.sc(CreateTags)
|
|
1507
3200
|
.build() {
|
|
1508
3201
|
}
|
|
1509
3202
|
|
|
@@ -1511,16 +3204,11 @@ class CreateUserCommand extends smithyClient.Command
|
|
|
1511
3204
|
.classBuilder()
|
|
1512
3205
|
.ep(commonParams)
|
|
1513
3206
|
.m(function (Command, cs, config, o) {
|
|
1514
|
-
return [
|
|
1515
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1516
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1517
|
-
];
|
|
3207
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1518
3208
|
})
|
|
1519
3209
|
.s("mq", "CreateUser", {})
|
|
1520
3210
|
.n("MqClient", "CreateUserCommand")
|
|
1521
|
-
.
|
|
1522
|
-
.ser(se_CreateUserCommand)
|
|
1523
|
-
.de(de_CreateUserCommand)
|
|
3211
|
+
.sc(CreateUser)
|
|
1524
3212
|
.build() {
|
|
1525
3213
|
}
|
|
1526
3214
|
|
|
@@ -1528,16 +3216,11 @@ class DeleteBrokerCommand extends smithyClient.Command
|
|
|
1528
3216
|
.classBuilder()
|
|
1529
3217
|
.ep(commonParams)
|
|
1530
3218
|
.m(function (Command, cs, config, o) {
|
|
1531
|
-
return [
|
|
1532
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1533
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1534
|
-
];
|
|
3219
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1535
3220
|
})
|
|
1536
3221
|
.s("mq", "DeleteBroker", {})
|
|
1537
3222
|
.n("MqClient", "DeleteBrokerCommand")
|
|
1538
|
-
.
|
|
1539
|
-
.ser(se_DeleteBrokerCommand)
|
|
1540
|
-
.de(de_DeleteBrokerCommand)
|
|
3223
|
+
.sc(DeleteBroker)
|
|
1541
3224
|
.build() {
|
|
1542
3225
|
}
|
|
1543
3226
|
|
|
@@ -1545,16 +3228,11 @@ class DeleteConfigurationCommand extends smithyClient.Command
|
|
|
1545
3228
|
.classBuilder()
|
|
1546
3229
|
.ep(commonParams)
|
|
1547
3230
|
.m(function (Command, cs, config, o) {
|
|
1548
|
-
return [
|
|
1549
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1550
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1551
|
-
];
|
|
3231
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1552
3232
|
})
|
|
1553
3233
|
.s("mq", "DeleteConfiguration", {})
|
|
1554
3234
|
.n("MqClient", "DeleteConfigurationCommand")
|
|
1555
|
-
.
|
|
1556
|
-
.ser(se_DeleteConfigurationCommand)
|
|
1557
|
-
.de(de_DeleteConfigurationCommand)
|
|
3235
|
+
.sc(DeleteConfiguration)
|
|
1558
3236
|
.build() {
|
|
1559
3237
|
}
|
|
1560
3238
|
|
|
@@ -1562,16 +3240,11 @@ class DeleteTagsCommand extends smithyClient.Command
|
|
|
1562
3240
|
.classBuilder()
|
|
1563
3241
|
.ep(commonParams)
|
|
1564
3242
|
.m(function (Command, cs, config, o) {
|
|
1565
|
-
return [
|
|
1566
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1567
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1568
|
-
];
|
|
3243
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1569
3244
|
})
|
|
1570
3245
|
.s("mq", "DeleteTags", {})
|
|
1571
3246
|
.n("MqClient", "DeleteTagsCommand")
|
|
1572
|
-
.
|
|
1573
|
-
.ser(se_DeleteTagsCommand)
|
|
1574
|
-
.de(de_DeleteTagsCommand)
|
|
3247
|
+
.sc(DeleteTags)
|
|
1575
3248
|
.build() {
|
|
1576
3249
|
}
|
|
1577
3250
|
|
|
@@ -1579,16 +3252,11 @@ class DeleteUserCommand extends smithyClient.Command
|
|
|
1579
3252
|
.classBuilder()
|
|
1580
3253
|
.ep(commonParams)
|
|
1581
3254
|
.m(function (Command, cs, config, o) {
|
|
1582
|
-
return [
|
|
1583
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1584
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1585
|
-
];
|
|
3255
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1586
3256
|
})
|
|
1587
3257
|
.s("mq", "DeleteUser", {})
|
|
1588
3258
|
.n("MqClient", "DeleteUserCommand")
|
|
1589
|
-
.
|
|
1590
|
-
.ser(se_DeleteUserCommand)
|
|
1591
|
-
.de(de_DeleteUserCommand)
|
|
3259
|
+
.sc(DeleteUser)
|
|
1592
3260
|
.build() {
|
|
1593
3261
|
}
|
|
1594
3262
|
|
|
@@ -1596,16 +3264,11 @@ class DescribeBrokerCommand extends smithyClient.Command
|
|
|
1596
3264
|
.classBuilder()
|
|
1597
3265
|
.ep(commonParams)
|
|
1598
3266
|
.m(function (Command, cs, config, o) {
|
|
1599
|
-
return [
|
|
1600
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1601
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1602
|
-
];
|
|
3267
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1603
3268
|
})
|
|
1604
3269
|
.s("mq", "DescribeBroker", {})
|
|
1605
3270
|
.n("MqClient", "DescribeBrokerCommand")
|
|
1606
|
-
.
|
|
1607
|
-
.ser(se_DescribeBrokerCommand)
|
|
1608
|
-
.de(de_DescribeBrokerCommand)
|
|
3271
|
+
.sc(DescribeBroker)
|
|
1609
3272
|
.build() {
|
|
1610
3273
|
}
|
|
1611
3274
|
|
|
@@ -1613,16 +3276,11 @@ class DescribeBrokerEngineTypesCommand extends smithyClient.Command
|
|
|
1613
3276
|
.classBuilder()
|
|
1614
3277
|
.ep(commonParams)
|
|
1615
3278
|
.m(function (Command, cs, config, o) {
|
|
1616
|
-
return [
|
|
1617
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1618
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1619
|
-
];
|
|
3279
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1620
3280
|
})
|
|
1621
3281
|
.s("mq", "DescribeBrokerEngineTypes", {})
|
|
1622
3282
|
.n("MqClient", "DescribeBrokerEngineTypesCommand")
|
|
1623
|
-
.
|
|
1624
|
-
.ser(se_DescribeBrokerEngineTypesCommand)
|
|
1625
|
-
.de(de_DescribeBrokerEngineTypesCommand)
|
|
3283
|
+
.sc(DescribeBrokerEngineTypes)
|
|
1626
3284
|
.build() {
|
|
1627
3285
|
}
|
|
1628
3286
|
|
|
@@ -1630,16 +3288,11 @@ class DescribeBrokerInstanceOptionsCommand extends smithyClient.Command
|
|
|
1630
3288
|
.classBuilder()
|
|
1631
3289
|
.ep(commonParams)
|
|
1632
3290
|
.m(function (Command, cs, config, o) {
|
|
1633
|
-
return [
|
|
1634
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1635
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1636
|
-
];
|
|
3291
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1637
3292
|
})
|
|
1638
3293
|
.s("mq", "DescribeBrokerInstanceOptions", {})
|
|
1639
3294
|
.n("MqClient", "DescribeBrokerInstanceOptionsCommand")
|
|
1640
|
-
.
|
|
1641
|
-
.ser(se_DescribeBrokerInstanceOptionsCommand)
|
|
1642
|
-
.de(de_DescribeBrokerInstanceOptionsCommand)
|
|
3295
|
+
.sc(DescribeBrokerInstanceOptions)
|
|
1643
3296
|
.build() {
|
|
1644
3297
|
}
|
|
1645
3298
|
|
|
@@ -1647,16 +3300,11 @@ class DescribeConfigurationCommand extends smithyClient.Command
|
|
|
1647
3300
|
.classBuilder()
|
|
1648
3301
|
.ep(commonParams)
|
|
1649
3302
|
.m(function (Command, cs, config, o) {
|
|
1650
|
-
return [
|
|
1651
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1652
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1653
|
-
];
|
|
3303
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1654
3304
|
})
|
|
1655
3305
|
.s("mq", "DescribeConfiguration", {})
|
|
1656
3306
|
.n("MqClient", "DescribeConfigurationCommand")
|
|
1657
|
-
.
|
|
1658
|
-
.ser(se_DescribeConfigurationCommand)
|
|
1659
|
-
.de(de_DescribeConfigurationCommand)
|
|
3307
|
+
.sc(DescribeConfiguration)
|
|
1660
3308
|
.build() {
|
|
1661
3309
|
}
|
|
1662
3310
|
|
|
@@ -1664,16 +3312,11 @@ class DescribeConfigurationRevisionCommand extends smithyClient.Command
|
|
|
1664
3312
|
.classBuilder()
|
|
1665
3313
|
.ep(commonParams)
|
|
1666
3314
|
.m(function (Command, cs, config, o) {
|
|
1667
|
-
return [
|
|
1668
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1669
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1670
|
-
];
|
|
3315
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1671
3316
|
})
|
|
1672
3317
|
.s("mq", "DescribeConfigurationRevision", {})
|
|
1673
3318
|
.n("MqClient", "DescribeConfigurationRevisionCommand")
|
|
1674
|
-
.
|
|
1675
|
-
.ser(se_DescribeConfigurationRevisionCommand)
|
|
1676
|
-
.de(de_DescribeConfigurationRevisionCommand)
|
|
3319
|
+
.sc(DescribeConfigurationRevision)
|
|
1677
3320
|
.build() {
|
|
1678
3321
|
}
|
|
1679
3322
|
|
|
@@ -1681,16 +3324,11 @@ class DescribeUserCommand extends smithyClient.Command
|
|
|
1681
3324
|
.classBuilder()
|
|
1682
3325
|
.ep(commonParams)
|
|
1683
3326
|
.m(function (Command, cs, config, o) {
|
|
1684
|
-
return [
|
|
1685
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1686
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1687
|
-
];
|
|
3327
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1688
3328
|
})
|
|
1689
3329
|
.s("mq", "DescribeUser", {})
|
|
1690
3330
|
.n("MqClient", "DescribeUserCommand")
|
|
1691
|
-
.
|
|
1692
|
-
.ser(se_DescribeUserCommand)
|
|
1693
|
-
.de(de_DescribeUserCommand)
|
|
3331
|
+
.sc(DescribeUser)
|
|
1694
3332
|
.build() {
|
|
1695
3333
|
}
|
|
1696
3334
|
|
|
@@ -1698,16 +3336,11 @@ class ListBrokersCommand extends smithyClient.Command
|
|
|
1698
3336
|
.classBuilder()
|
|
1699
3337
|
.ep(commonParams)
|
|
1700
3338
|
.m(function (Command, cs, config, o) {
|
|
1701
|
-
return [
|
|
1702
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1703
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1704
|
-
];
|
|
3339
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1705
3340
|
})
|
|
1706
3341
|
.s("mq", "ListBrokers", {})
|
|
1707
3342
|
.n("MqClient", "ListBrokersCommand")
|
|
1708
|
-
.
|
|
1709
|
-
.ser(se_ListBrokersCommand)
|
|
1710
|
-
.de(de_ListBrokersCommand)
|
|
3343
|
+
.sc(ListBrokers)
|
|
1711
3344
|
.build() {
|
|
1712
3345
|
}
|
|
1713
3346
|
|
|
@@ -1715,16 +3348,11 @@ class ListConfigurationRevisionsCommand extends smithyClient.Command
|
|
|
1715
3348
|
.classBuilder()
|
|
1716
3349
|
.ep(commonParams)
|
|
1717
3350
|
.m(function (Command, cs, config, o) {
|
|
1718
|
-
return [
|
|
1719
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1720
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1721
|
-
];
|
|
3351
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1722
3352
|
})
|
|
1723
3353
|
.s("mq", "ListConfigurationRevisions", {})
|
|
1724
3354
|
.n("MqClient", "ListConfigurationRevisionsCommand")
|
|
1725
|
-
.
|
|
1726
|
-
.ser(se_ListConfigurationRevisionsCommand)
|
|
1727
|
-
.de(de_ListConfigurationRevisionsCommand)
|
|
3355
|
+
.sc(ListConfigurationRevisions)
|
|
1728
3356
|
.build() {
|
|
1729
3357
|
}
|
|
1730
3358
|
|
|
@@ -1732,16 +3360,11 @@ class ListConfigurationsCommand extends smithyClient.Command
|
|
|
1732
3360
|
.classBuilder()
|
|
1733
3361
|
.ep(commonParams)
|
|
1734
3362
|
.m(function (Command, cs, config, o) {
|
|
1735
|
-
return [
|
|
1736
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1737
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1738
|
-
];
|
|
3363
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1739
3364
|
})
|
|
1740
3365
|
.s("mq", "ListConfigurations", {})
|
|
1741
3366
|
.n("MqClient", "ListConfigurationsCommand")
|
|
1742
|
-
.
|
|
1743
|
-
.ser(se_ListConfigurationsCommand)
|
|
1744
|
-
.de(de_ListConfigurationsCommand)
|
|
3367
|
+
.sc(ListConfigurations)
|
|
1745
3368
|
.build() {
|
|
1746
3369
|
}
|
|
1747
3370
|
|
|
@@ -1749,16 +3372,11 @@ class ListTagsCommand extends smithyClient.Command
|
|
|
1749
3372
|
.classBuilder()
|
|
1750
3373
|
.ep(commonParams)
|
|
1751
3374
|
.m(function (Command, cs, config, o) {
|
|
1752
|
-
return [
|
|
1753
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1754
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1755
|
-
];
|
|
3375
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1756
3376
|
})
|
|
1757
3377
|
.s("mq", "ListTags", {})
|
|
1758
3378
|
.n("MqClient", "ListTagsCommand")
|
|
1759
|
-
.
|
|
1760
|
-
.ser(se_ListTagsCommand)
|
|
1761
|
-
.de(de_ListTagsCommand)
|
|
3379
|
+
.sc(ListTags)
|
|
1762
3380
|
.build() {
|
|
1763
3381
|
}
|
|
1764
3382
|
|
|
@@ -1766,16 +3384,11 @@ class ListUsersCommand extends smithyClient.Command
|
|
|
1766
3384
|
.classBuilder()
|
|
1767
3385
|
.ep(commonParams)
|
|
1768
3386
|
.m(function (Command, cs, config, o) {
|
|
1769
|
-
return [
|
|
1770
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1771
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1772
|
-
];
|
|
3387
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1773
3388
|
})
|
|
1774
3389
|
.s("mq", "ListUsers", {})
|
|
1775
3390
|
.n("MqClient", "ListUsersCommand")
|
|
1776
|
-
.
|
|
1777
|
-
.ser(se_ListUsersCommand)
|
|
1778
|
-
.de(de_ListUsersCommand)
|
|
3391
|
+
.sc(ListUsers)
|
|
1779
3392
|
.build() {
|
|
1780
3393
|
}
|
|
1781
3394
|
|
|
@@ -1783,16 +3396,11 @@ class PromoteCommand extends smithyClient.Command
|
|
|
1783
3396
|
.classBuilder()
|
|
1784
3397
|
.ep(commonParams)
|
|
1785
3398
|
.m(function (Command, cs, config, o) {
|
|
1786
|
-
return [
|
|
1787
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1788
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1789
|
-
];
|
|
3399
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1790
3400
|
})
|
|
1791
3401
|
.s("mq", "Promote", {})
|
|
1792
3402
|
.n("MqClient", "PromoteCommand")
|
|
1793
|
-
.
|
|
1794
|
-
.ser(se_PromoteCommand)
|
|
1795
|
-
.de(de_PromoteCommand)
|
|
3403
|
+
.sc(Promote)
|
|
1796
3404
|
.build() {
|
|
1797
3405
|
}
|
|
1798
3406
|
|
|
@@ -1800,16 +3408,11 @@ class RebootBrokerCommand extends smithyClient.Command
|
|
|
1800
3408
|
.classBuilder()
|
|
1801
3409
|
.ep(commonParams)
|
|
1802
3410
|
.m(function (Command, cs, config, o) {
|
|
1803
|
-
return [
|
|
1804
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1805
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1806
|
-
];
|
|
3411
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1807
3412
|
})
|
|
1808
3413
|
.s("mq", "RebootBroker", {})
|
|
1809
3414
|
.n("MqClient", "RebootBrokerCommand")
|
|
1810
|
-
.
|
|
1811
|
-
.ser(se_RebootBrokerCommand)
|
|
1812
|
-
.de(de_RebootBrokerCommand)
|
|
3415
|
+
.sc(RebootBroker)
|
|
1813
3416
|
.build() {
|
|
1814
3417
|
}
|
|
1815
3418
|
|
|
@@ -1817,16 +3420,11 @@ class UpdateBrokerCommand extends smithyClient.Command
|
|
|
1817
3420
|
.classBuilder()
|
|
1818
3421
|
.ep(commonParams)
|
|
1819
3422
|
.m(function (Command, cs, config, o) {
|
|
1820
|
-
return [
|
|
1821
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1822
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1823
|
-
];
|
|
3423
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1824
3424
|
})
|
|
1825
3425
|
.s("mq", "UpdateBroker", {})
|
|
1826
3426
|
.n("MqClient", "UpdateBrokerCommand")
|
|
1827
|
-
.
|
|
1828
|
-
.ser(se_UpdateBrokerCommand)
|
|
1829
|
-
.de(de_UpdateBrokerCommand)
|
|
3427
|
+
.sc(UpdateBroker)
|
|
1830
3428
|
.build() {
|
|
1831
3429
|
}
|
|
1832
3430
|
|
|
@@ -1834,16 +3432,11 @@ class UpdateConfigurationCommand extends smithyClient.Command
|
|
|
1834
3432
|
.classBuilder()
|
|
1835
3433
|
.ep(commonParams)
|
|
1836
3434
|
.m(function (Command, cs, config, o) {
|
|
1837
|
-
return [
|
|
1838
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1839
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1840
|
-
];
|
|
3435
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1841
3436
|
})
|
|
1842
3437
|
.s("mq", "UpdateConfiguration", {})
|
|
1843
3438
|
.n("MqClient", "UpdateConfigurationCommand")
|
|
1844
|
-
.
|
|
1845
|
-
.ser(se_UpdateConfigurationCommand)
|
|
1846
|
-
.de(de_UpdateConfigurationCommand)
|
|
3439
|
+
.sc(UpdateConfiguration)
|
|
1847
3440
|
.build() {
|
|
1848
3441
|
}
|
|
1849
3442
|
|
|
@@ -1851,16 +3444,11 @@ class UpdateUserCommand extends smithyClient.Command
|
|
|
1851
3444
|
.classBuilder()
|
|
1852
3445
|
.ep(commonParams)
|
|
1853
3446
|
.m(function (Command, cs, config, o) {
|
|
1854
|
-
return [
|
|
1855
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1856
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1857
|
-
];
|
|
3447
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1858
3448
|
})
|
|
1859
3449
|
.s("mq", "UpdateUser", {})
|
|
1860
3450
|
.n("MqClient", "UpdateUserCommand")
|
|
1861
|
-
.
|
|
1862
|
-
.ser(se_UpdateUserCommand)
|
|
1863
|
-
.de(de_UpdateUserCommand)
|
|
3451
|
+
.sc(UpdateUser)
|
|
1864
3452
|
.build() {
|
|
1865
3453
|
}
|
|
1866
3454
|
|
|
@@ -1905,11 +3493,11 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1905
3493
|
get: function () { return smithyClient.Client; }
|
|
1906
3494
|
});
|
|
1907
3495
|
exports.AuthenticationStrategy = AuthenticationStrategy;
|
|
1908
|
-
exports.BadRequestException = BadRequestException;
|
|
3496
|
+
exports.BadRequestException = BadRequestException$1;
|
|
1909
3497
|
exports.BrokerState = BrokerState;
|
|
1910
3498
|
exports.BrokerStorageType = BrokerStorageType;
|
|
1911
3499
|
exports.ChangeType = ChangeType;
|
|
1912
|
-
exports.ConflictException = ConflictException;
|
|
3500
|
+
exports.ConflictException = ConflictException$1;
|
|
1913
3501
|
exports.CreateBrokerCommand = CreateBrokerCommand;
|
|
1914
3502
|
exports.CreateConfigurationCommand = CreateConfigurationCommand;
|
|
1915
3503
|
exports.CreateTagsCommand = CreateTagsCommand;
|
|
@@ -1928,8 +3516,8 @@ exports.DescribeConfigurationCommand = DescribeConfigurationCommand;
|
|
|
1928
3516
|
exports.DescribeConfigurationRevisionCommand = DescribeConfigurationRevisionCommand;
|
|
1929
3517
|
exports.DescribeUserCommand = DescribeUserCommand;
|
|
1930
3518
|
exports.EngineType = EngineType;
|
|
1931
|
-
exports.ForbiddenException = ForbiddenException;
|
|
1932
|
-
exports.InternalServerErrorException = InternalServerErrorException;
|
|
3519
|
+
exports.ForbiddenException = ForbiddenException$1;
|
|
3520
|
+
exports.InternalServerErrorException = InternalServerErrorException$1;
|
|
1933
3521
|
exports.ListBrokersCommand = ListBrokersCommand;
|
|
1934
3522
|
exports.ListConfigurationRevisionsCommand = ListConfigurationRevisionsCommand;
|
|
1935
3523
|
exports.ListConfigurationsCommand = ListConfigurationsCommand;
|
|
@@ -1937,13 +3525,13 @@ exports.ListTagsCommand = ListTagsCommand;
|
|
|
1937
3525
|
exports.ListUsersCommand = ListUsersCommand;
|
|
1938
3526
|
exports.Mq = Mq;
|
|
1939
3527
|
exports.MqClient = MqClient;
|
|
1940
|
-
exports.MqServiceException = MqServiceException;
|
|
1941
|
-
exports.NotFoundException = NotFoundException;
|
|
3528
|
+
exports.MqServiceException = MqServiceException$1;
|
|
3529
|
+
exports.NotFoundException = NotFoundException$1;
|
|
1942
3530
|
exports.PromoteCommand = PromoteCommand;
|
|
1943
3531
|
exports.PromoteMode = PromoteMode;
|
|
1944
3532
|
exports.RebootBrokerCommand = RebootBrokerCommand;
|
|
1945
3533
|
exports.SanitizationWarningReason = SanitizationWarningReason;
|
|
1946
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
3534
|
+
exports.UnauthorizedException = UnauthorizedException$1;
|
|
1947
3535
|
exports.UpdateBrokerCommand = UpdateBrokerCommand;
|
|
1948
3536
|
exports.UpdateConfigurationCommand = UpdateConfigurationCommand;
|
|
1949
3537
|
exports.UpdateUserCommand = UpdateUserCommand;
|