@aws-sdk/client-repostspace 3.927.0 → 3.929.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist-cjs/index.js +850 -981
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/RepostspaceClient.js +2 -0
  4. package/dist-es/commands/BatchAddChannelRoleToAccessorsCommand.js +3 -9
  5. package/dist-es/commands/BatchAddRoleCommand.js +3 -9
  6. package/dist-es/commands/BatchRemoveChannelRoleFromAccessorsCommand.js +3 -9
  7. package/dist-es/commands/BatchRemoveRoleCommand.js +3 -9
  8. package/dist-es/commands/CreateChannelCommand.js +3 -10
  9. package/dist-es/commands/CreateSpaceCommand.js +3 -10
  10. package/dist-es/commands/DeleteSpaceCommand.js +3 -9
  11. package/dist-es/commands/DeregisterAdminCommand.js +3 -9
  12. package/dist-es/commands/GetChannelCommand.js +3 -10
  13. package/dist-es/commands/GetSpaceCommand.js +3 -10
  14. package/dist-es/commands/ListChannelsCommand.js +3 -10
  15. package/dist-es/commands/ListSpacesCommand.js +3 -10
  16. package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
  17. package/dist-es/commands/RegisterAdminCommand.js +3 -9
  18. package/dist-es/commands/SendInvitesCommand.js +3 -10
  19. package/dist-es/commands/TagResourceCommand.js +3 -10
  20. package/dist-es/commands/UntagResourceCommand.js +3 -9
  21. package/dist-es/commands/UpdateChannelCommand.js +3 -10
  22. package/dist-es/commands/UpdateSpaceCommand.js +3 -10
  23. package/dist-es/models/models_0.js +0 -82
  24. package/dist-es/runtimeConfig.shared.js +2 -0
  25. package/dist-es/schemas/schemas_0.js +801 -0
  26. package/dist-types/RepostspaceClient.d.ts +10 -1
  27. package/dist-types/models/models_0.d.ts +0 -60
  28. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  29. package/dist-types/runtimeConfig.d.ts +1 -0
  30. package/dist-types/runtimeConfig.native.d.ts +1 -0
  31. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  32. package/dist-types/schemas/schemas_0.d.ts +89 -0
  33. package/dist-types/ts3.4/RepostspaceClient.d.ts +4 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +0 -41
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  39. package/dist-types/ts3.4/schemas/schemas_0.d.ts +96 -0
  40. package/package.json +5 -5
  41. package/dist-es/protocols/Aws_restJson1.js +0 -736
  42. package/dist-types/protocols/Aws_restJson1.d.ts +0 -173
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -233
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,8 +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
18
  var utilWaiter = require('@smithy/util-waiter');
20
19
 
21
20
  const resolveClientEndpointParameters = (options) => {
@@ -92,6 +91,7 @@ class RepostspaceClient extends smithyClient.Client {
92
91
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
93
92
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
94
93
  this.config = _config_8;
94
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
95
95
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
97
97
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -111,14 +111,14 @@ class RepostspaceClient extends smithyClient.Client {
111
111
  }
112
112
  }
113
113
 
114
- class RepostspaceServiceException extends smithyClient.ServiceException {
114
+ let RepostspaceServiceException$1 = class RepostspaceServiceException extends smithyClient.ServiceException {
115
115
  constructor(options) {
116
116
  super(options);
117
117
  Object.setPrototypeOf(this, RepostspaceServiceException.prototype);
118
118
  }
119
- }
119
+ };
120
120
 
121
- class AccessDeniedException extends RepostspaceServiceException {
121
+ let AccessDeniedException$1 = class AccessDeniedException extends RepostspaceServiceException$1 {
122
122
  name = "AccessDeniedException";
123
123
  $fault = "client";
124
124
  constructor(opts) {
@@ -129,14 +129,14 @@ class AccessDeniedException extends RepostspaceServiceException {
129
129
  });
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  }
132
- }
132
+ };
133
133
  const ChannelRole = {
134
134
  ASKER: "ASKER",
135
135
  EXPERT: "EXPERT",
136
136
  MODERATOR: "MODERATOR",
137
137
  SUPPORTREQUESTOR: "SUPPORTREQUESTOR",
138
138
  };
139
- class InternalServerException extends RepostspaceServiceException {
139
+ let InternalServerException$1 = class InternalServerException extends RepostspaceServiceException$1 {
140
140
  name = "InternalServerException";
141
141
  $fault = "server";
142
142
  $retryable = {};
@@ -150,8 +150,8 @@ class InternalServerException extends RepostspaceServiceException {
150
150
  Object.setPrototypeOf(this, InternalServerException.prototype);
151
151
  this.retryAfterSeconds = opts.retryAfterSeconds;
152
152
  }
153
- }
154
- class ResourceNotFoundException extends RepostspaceServiceException {
153
+ };
154
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends RepostspaceServiceException$1 {
155
155
  name = "ResourceNotFoundException";
156
156
  $fault = "client";
157
157
  resourceId;
@@ -166,8 +166,8 @@ class ResourceNotFoundException extends RepostspaceServiceException {
166
166
  this.resourceId = opts.resourceId;
167
167
  this.resourceType = opts.resourceType;
168
168
  }
169
- }
170
- class ThrottlingException extends RepostspaceServiceException {
169
+ };
170
+ let ThrottlingException$1 = class ThrottlingException extends RepostspaceServiceException$1 {
171
171
  name = "ThrottlingException";
172
172
  $fault = "client";
173
173
  $retryable = {
@@ -187,14 +187,14 @@ class ThrottlingException extends RepostspaceServiceException {
187
187
  this.quotaCode = opts.quotaCode;
188
188
  this.retryAfterSeconds = opts.retryAfterSeconds;
189
189
  }
190
- }
190
+ };
191
191
  const ValidationExceptionReason = {
192
192
  CANNOT_PARSE: "cannotParse",
193
193
  FIELD_VALIDATION_FAILED: "fieldValidationFailed",
194
194
  OTHER: "other",
195
195
  UNKNOWN_OPERATION: "unknownOperation",
196
196
  };
197
- class ValidationException extends RepostspaceServiceException {
197
+ let ValidationException$1 = class ValidationException extends RepostspaceServiceException$1 {
198
198
  name = "ValidationException";
199
199
  $fault = "client";
200
200
  reason;
@@ -209,7 +209,7 @@ class ValidationException extends RepostspaceServiceException {
209
209
  this.reason = opts.reason;
210
210
  this.fieldList = opts.fieldList;
211
211
  }
212
- }
212
+ };
213
213
  const Role = {
214
214
  ADMINISTRATOR: "ADMINISTRATOR",
215
215
  EXPERT: "EXPERT",
@@ -228,7 +228,7 @@ const ConfigurationStatus = {
228
228
  CONFIGURED: "CONFIGURED",
229
229
  UNCONFIGURED: "UNCONFIGURED",
230
230
  };
231
- class ConflictException extends RepostspaceServiceException {
231
+ let ConflictException$1 = class ConflictException extends RepostspaceServiceException$1 {
232
232
  name = "ConflictException";
233
233
  $fault = "client";
234
234
  resourceId;
@@ -243,8 +243,8 @@ class ConflictException extends RepostspaceServiceException {
243
243
  this.resourceId = opts.resourceId;
244
244
  this.resourceType = opts.resourceType;
245
245
  }
246
- }
247
- class ServiceQuotaExceededException extends RepostspaceServiceException {
246
+ };
247
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends RepostspaceServiceException$1 {
248
248
  name = "ServiceQuotaExceededException";
249
249
  $fault = "client";
250
250
  resourceId;
@@ -263,7 +263,7 @@ class ServiceQuotaExceededException extends RepostspaceServiceException {
263
263
  this.serviceCode = opts.serviceCode;
264
264
  this.quotaCode = opts.quotaCode;
265
265
  }
266
- }
266
+ };
267
267
  const FeatureEnableParameter = {
268
268
  DISABLED: "DISABLED",
269
269
  ENABLED: "ENABLED",
@@ -282,833 +282,807 @@ const VanityDomainStatus = {
282
282
  PENDING: "PENDING",
283
283
  UNAPPROVED: "UNAPPROVED",
284
284
  };
285
- const ChannelDataFilterSensitiveLog = (obj) => ({
286
- ...obj,
287
- ...(obj.channelName && { channelName: smithyClient.SENSITIVE_STRING }),
288
- ...(obj.channelDescription && { channelDescription: smithyClient.SENSITIVE_STRING }),
289
- });
290
- const CreateChannelInputFilterSensitiveLog = (obj) => ({
291
- ...obj,
292
- ...(obj.channelName && { channelName: smithyClient.SENSITIVE_STRING }),
293
- ...(obj.channelDescription && { channelDescription: smithyClient.SENSITIVE_STRING }),
294
- });
295
- const SupportedEmailDomainsParametersFilterSensitiveLog = (obj) => ({
296
- ...obj,
297
- ...(obj.allowedDomains && { allowedDomains: smithyClient.SENSITIVE_STRING }),
298
- });
299
- const CreateSpaceInputFilterSensitiveLog = (obj) => ({
300
- ...obj,
301
- ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
302
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
303
- ...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
304
- ...(obj.supportedEmailDomains && {
305
- supportedEmailDomains: SupportedEmailDomainsParametersFilterSensitiveLog(obj.supportedEmailDomains),
306
- }),
307
- });
308
- const GetChannelOutputFilterSensitiveLog = (obj) => ({
309
- ...obj,
310
- ...(obj.channelName && { channelName: smithyClient.SENSITIVE_STRING }),
311
- ...(obj.channelDescription && { channelDescription: smithyClient.SENSITIVE_STRING }),
312
- });
313
- const SupportedEmailDomainsStatusFilterSensitiveLog = (obj) => ({
314
- ...obj,
315
- ...(obj.allowedDomains && { allowedDomains: smithyClient.SENSITIVE_STRING }),
316
- });
317
- const GetSpaceOutputFilterSensitiveLog = (obj) => ({
318
- ...obj,
319
- ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
320
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
321
- ...(obj.supportedEmailDomains && {
322
- supportedEmailDomains: SupportedEmailDomainsStatusFilterSensitiveLog(obj.supportedEmailDomains),
323
- }),
324
- });
325
- const ListChannelsOutputFilterSensitiveLog = (obj) => ({
326
- ...obj,
327
- ...(obj.channels && { channels: obj.channels.map((item) => ChannelDataFilterSensitiveLog(item)) }),
328
- });
329
- const SpaceDataFilterSensitiveLog = (obj) => ({
330
- ...obj,
331
- ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
332
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
333
- ...(obj.supportedEmailDomains && {
334
- supportedEmailDomains: SupportedEmailDomainsStatusFilterSensitiveLog(obj.supportedEmailDomains),
335
- }),
336
- });
337
- const ListSpacesOutputFilterSensitiveLog = (obj) => ({
338
- ...obj,
339
- ...(obj.spaces && { spaces: obj.spaces.map((item) => SpaceDataFilterSensitiveLog(item)) }),
340
- });
341
- const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
342
- ...obj,
343
- ...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
344
- });
345
- const SendInvitesInputFilterSensitiveLog = (obj) => ({
346
- ...obj,
347
- ...(obj.title && { title: smithyClient.SENSITIVE_STRING }),
348
- ...(obj.body && { body: smithyClient.SENSITIVE_STRING }),
349
- });
350
- const TagResourceRequestFilterSensitiveLog = (obj) => ({
351
- ...obj,
352
- ...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
353
- });
354
- const UpdateChannelInputFilterSensitiveLog = (obj) => ({
355
- ...obj,
356
- ...(obj.channelName && { channelName: smithyClient.SENSITIVE_STRING }),
357
- ...(obj.channelDescription && { channelDescription: smithyClient.SENSITIVE_STRING }),
358
- });
359
- const UpdateSpaceInputFilterSensitiveLog = (obj) => ({
360
- ...obj,
361
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
362
- ...(obj.supportedEmailDomains && {
363
- supportedEmailDomains: SupportedEmailDomainsParametersFilterSensitiveLog(obj.supportedEmailDomains),
364
- }),
365
- });
366
285
 
367
- const se_BatchAddChannelRoleToAccessorsCommand = async (input, context) => {
368
- const b = core.requestBuilder(input, context);
369
- const headers = {
370
- "content-type": "application/json",
371
- };
372
- b.bp("/spaces/{spaceId}/channels/{channelId}/roles");
373
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
374
- b.p("channelId", () => input.channelId, "{channelId}", false);
375
- let body;
376
- body = JSON.stringify(smithyClient.take(input, {
377
- accessorIds: (_) => smithyClient._json(_),
378
- channelRole: [],
379
- }));
380
- b.m("POST").h(headers).b(body);
381
- return b.build();
382
- };
383
- const se_BatchAddRoleCommand = async (input, context) => {
384
- const b = core.requestBuilder(input, context);
385
- const headers = {
386
- "content-type": "application/json",
387
- };
388
- b.bp("/spaces/{spaceId}/roles");
389
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
390
- let body;
391
- body = JSON.stringify(smithyClient.take(input, {
392
- accessorIds: (_) => smithyClient._json(_),
393
- role: [],
394
- }));
395
- b.m("POST").h(headers).b(body);
396
- return b.build();
397
- };
398
- const se_BatchRemoveChannelRoleFromAccessorsCommand = async (input, context) => {
399
- const b = core.requestBuilder(input, context);
400
- const headers = {
401
- "content-type": "application/json",
402
- };
403
- b.bp("/spaces/{spaceId}/channels/{channelId}/roles");
404
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
405
- b.p("channelId", () => input.channelId, "{channelId}", false);
406
- let body;
407
- body = JSON.stringify(smithyClient.take(input, {
408
- accessorIds: (_) => smithyClient._json(_),
409
- channelRole: [],
410
- }));
411
- b.m("PATCH").h(headers).b(body);
412
- return b.build();
413
- };
414
- const se_BatchRemoveRoleCommand = async (input, context) => {
415
- const b = core.requestBuilder(input, context);
416
- const headers = {
417
- "content-type": "application/json",
418
- };
419
- b.bp("/spaces/{spaceId}/roles");
420
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
421
- let body;
422
- body = JSON.stringify(smithyClient.take(input, {
423
- accessorIds: (_) => smithyClient._json(_),
424
- role: [],
425
- }));
426
- b.m("PATCH").h(headers).b(body);
427
- return b.build();
428
- };
429
- const se_CreateChannelCommand = async (input, context) => {
430
- const b = core.requestBuilder(input, context);
431
- const headers = {
432
- "content-type": "application/json",
433
- };
434
- b.bp("/spaces/{spaceId}/channels");
435
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
436
- let body;
437
- body = JSON.stringify(smithyClient.take(input, {
438
- channelDescription: [],
439
- channelName: [],
440
- }));
441
- b.m("POST").h(headers).b(body);
442
- return b.build();
443
- };
444
- const se_CreateSpaceCommand = async (input, context) => {
445
- const b = core.requestBuilder(input, context);
446
- const headers = {
447
- "content-type": "application/json",
448
- };
449
- b.bp("/spaces");
450
- let body;
451
- body = JSON.stringify(smithyClient.take(input, {
452
- description: [],
453
- name: [],
454
- roleArn: [],
455
- subdomain: [],
456
- supportedEmailDomains: (_) => smithyClient._json(_),
457
- tags: (_) => smithyClient._json(_),
458
- tier: [],
459
- userKMSKey: [],
460
- }));
461
- b.m("POST").h(headers).b(body);
462
- return b.build();
463
- };
464
- const se_DeleteSpaceCommand = async (input, context) => {
465
- const b = core.requestBuilder(input, context);
466
- const headers = {};
467
- b.bp("/spaces/{spaceId}");
468
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
469
- let body;
470
- b.m("DELETE").h(headers).b(body);
471
- return b.build();
472
- };
473
- const se_DeregisterAdminCommand = async (input, context) => {
474
- const b = core.requestBuilder(input, context);
475
- const headers = {};
476
- b.bp("/spaces/{spaceId}/admins/{adminId}");
477
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
478
- b.p("adminId", () => input.adminId, "{adminId}", false);
479
- let body;
480
- b.m("DELETE").h(headers).b(body);
481
- return b.build();
482
- };
483
- const se_GetChannelCommand = async (input, context) => {
484
- const b = core.requestBuilder(input, context);
485
- const headers = {};
486
- b.bp("/spaces/{spaceId}/channels/{channelId}");
487
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
488
- b.p("channelId", () => input.channelId, "{channelId}", false);
489
- let body;
490
- b.m("GET").h(headers).b(body);
491
- return b.build();
492
- };
493
- const se_GetSpaceCommand = async (input, context) => {
494
- const b = core.requestBuilder(input, context);
495
- const headers = {};
496
- b.bp("/spaces/{spaceId}");
497
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
498
- let body;
499
- b.m("GET").h(headers).b(body);
500
- return b.build();
501
- };
502
- const se_ListChannelsCommand = async (input, context) => {
503
- const b = core.requestBuilder(input, context);
504
- const headers = {};
505
- b.bp("/spaces/{spaceId}/channels");
506
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
507
- const query = smithyClient.map({
508
- [_nT]: [, input[_nT]],
509
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
510
- });
511
- let body;
512
- b.m("GET").h(headers).q(query).b(body);
513
- return b.build();
514
- };
515
- const se_ListSpacesCommand = async (input, context) => {
516
- const b = core.requestBuilder(input, context);
517
- const headers = {};
518
- b.bp("/spaces");
519
- const query = smithyClient.map({
520
- [_nT]: [, input[_nT]],
521
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
522
- });
523
- let body;
524
- b.m("GET").h(headers).q(query).b(body);
525
- return b.build();
526
- };
527
- const se_ListTagsForResourceCommand = async (input, context) => {
528
- const b = core.requestBuilder(input, context);
529
- const headers = {};
530
- b.bp("/tags/{resourceArn}");
531
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
532
- let body;
533
- b.m("GET").h(headers).b(body);
534
- return b.build();
535
- };
536
- const se_RegisterAdminCommand = async (input, context) => {
537
- const b = core.requestBuilder(input, context);
538
- const headers = {};
539
- b.bp("/spaces/{spaceId}/admins/{adminId}");
540
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
541
- b.p("adminId", () => input.adminId, "{adminId}", false);
542
- let body;
543
- b.m("POST").h(headers).b(body);
544
- return b.build();
545
- };
546
- const se_SendInvitesCommand = async (input, context) => {
547
- const b = core.requestBuilder(input, context);
548
- const headers = {
549
- "content-type": "application/json",
550
- };
551
- b.bp("/spaces/{spaceId}/invite");
552
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
553
- let body;
554
- body = JSON.stringify(smithyClient.take(input, {
555
- accessorIds: (_) => smithyClient._json(_),
556
- body: [],
557
- title: [],
558
- }));
559
- b.m("POST").h(headers).b(body);
560
- return b.build();
561
- };
562
- const se_TagResourceCommand = async (input, context) => {
563
- const b = core.requestBuilder(input, context);
564
- const headers = {
565
- "content-type": "application/json",
566
- };
567
- b.bp("/tags/{resourceArn}");
568
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
569
- let body;
570
- body = JSON.stringify(smithyClient.take(input, {
571
- tags: (_) => smithyClient._json(_),
572
- }));
573
- b.m("POST").h(headers).b(body);
574
- return b.build();
575
- };
576
- const se_UntagResourceCommand = async (input, context) => {
577
- const b = core.requestBuilder(input, context);
578
- const headers = {};
579
- b.bp("/tags/{resourceArn}");
580
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
581
- const query = smithyClient.map({
582
- [_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
583
- });
584
- let body;
585
- b.m("DELETE").h(headers).q(query).b(body);
586
- return b.build();
587
- };
588
- const se_UpdateChannelCommand = async (input, context) => {
589
- const b = core.requestBuilder(input, context);
590
- const headers = {
591
- "content-type": "application/json",
592
- };
593
- b.bp("/spaces/{spaceId}/channels/{channelId}");
594
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
595
- b.p("channelId", () => input.channelId, "{channelId}", false);
596
- let body;
597
- body = JSON.stringify(smithyClient.take(input, {
598
- channelDescription: [],
599
- channelName: [],
600
- }));
601
- b.m("PUT").h(headers).b(body);
602
- return b.build();
603
- };
604
- const se_UpdateSpaceCommand = async (input, context) => {
605
- const b = core.requestBuilder(input, context);
606
- const headers = {
607
- "content-type": "application/json",
608
- };
609
- b.bp("/spaces/{spaceId}");
610
- b.p("spaceId", () => input.spaceId, "{spaceId}", false);
611
- let body;
612
- body = JSON.stringify(smithyClient.take(input, {
613
- description: [],
614
- roleArn: [],
615
- supportedEmailDomains: (_) => smithyClient._json(_),
616
- tier: [],
617
- }));
618
- b.m("PUT").h(headers).b(body);
619
- return b.build();
620
- };
621
- const de_BatchAddChannelRoleToAccessorsCommand = async (output, context) => {
622
- if (output.statusCode !== 200 && output.statusCode >= 300) {
623
- return de_CommandError(output, context);
624
- }
625
- const contents = smithyClient.map({
626
- $metadata: deserializeMetadata(output),
627
- });
628
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
629
- const doc = smithyClient.take(data, {
630
- addedAccessorIds: smithyClient._json,
631
- errors: smithyClient._json,
632
- });
633
- Object.assign(contents, doc);
634
- return contents;
635
- };
636
- const de_BatchAddRoleCommand = async (output, context) => {
637
- if (output.statusCode !== 200 && output.statusCode >= 300) {
638
- return de_CommandError(output, context);
639
- }
640
- const contents = smithyClient.map({
641
- $metadata: deserializeMetadata(output),
642
- });
643
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
644
- const doc = smithyClient.take(data, {
645
- addedAccessorIds: smithyClient._json,
646
- errors: smithyClient._json,
647
- });
648
- Object.assign(contents, doc);
649
- return contents;
650
- };
651
- const de_BatchRemoveChannelRoleFromAccessorsCommand = async (output, context) => {
652
- if (output.statusCode !== 200 && output.statusCode >= 300) {
653
- return de_CommandError(output, context);
654
- }
655
- const contents = smithyClient.map({
656
- $metadata: deserializeMetadata(output),
657
- });
658
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
659
- const doc = smithyClient.take(data, {
660
- errors: smithyClient._json,
661
- removedAccessorIds: smithyClient._json,
662
- });
663
- Object.assign(contents, doc);
664
- return contents;
665
- };
666
- const de_BatchRemoveRoleCommand = 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
- errors: smithyClient._json,
676
- removedAccessorIds: smithyClient._json,
677
- });
678
- Object.assign(contents, doc);
679
- return contents;
680
- };
681
- const de_CreateChannelCommand = async (output, context) => {
682
- if (output.statusCode !== 200 && output.statusCode >= 300) {
683
- return de_CommandError(output, context);
684
- }
685
- const contents = smithyClient.map({
686
- $metadata: deserializeMetadata(output),
687
- });
688
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
689
- const doc = smithyClient.take(data, {
690
- channelId: smithyClient.expectString,
691
- });
692
- Object.assign(contents, doc);
693
- return contents;
694
- };
695
- const de_CreateSpaceCommand = async (output, context) => {
696
- if (output.statusCode !== 200 && output.statusCode >= 300) {
697
- return de_CommandError(output, context);
698
- }
699
- const contents = smithyClient.map({
700
- $metadata: deserializeMetadata(output),
701
- });
702
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
703
- const doc = smithyClient.take(data, {
704
- spaceId: smithyClient.expectString,
705
- });
706
- Object.assign(contents, doc);
707
- return contents;
708
- };
709
- const de_DeleteSpaceCommand = async (output, context) => {
710
- if (output.statusCode !== 200 && output.statusCode >= 300) {
711
- return de_CommandError(output, context);
712
- }
713
- const contents = smithyClient.map({
714
- $metadata: deserializeMetadata(output),
715
- });
716
- await smithyClient.collectBody(output.body, context);
717
- return contents;
718
- };
719
- const de_DeregisterAdminCommand = async (output, context) => {
720
- if (output.statusCode !== 200 && output.statusCode >= 300) {
721
- return de_CommandError(output, context);
722
- }
723
- const contents = smithyClient.map({
724
- $metadata: deserializeMetadata(output),
725
- });
726
- await smithyClient.collectBody(output.body, context);
727
- return contents;
728
- };
729
- const de_GetChannelCommand = async (output, context) => {
730
- if (output.statusCode !== 200 && output.statusCode >= 300) {
731
- return de_CommandError(output, context);
732
- }
733
- const contents = smithyClient.map({
734
- $metadata: deserializeMetadata(output),
735
- });
736
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
737
- const doc = smithyClient.take(data, {
738
- channelDescription: smithyClient.expectString,
739
- channelId: smithyClient.expectString,
740
- channelName: smithyClient.expectString,
741
- channelRoles: smithyClient._json,
742
- channelStatus: smithyClient.expectString,
743
- createDateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
744
- deleteDateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
745
- spaceId: smithyClient.expectString,
746
- });
747
- Object.assign(contents, doc);
748
- return contents;
749
- };
750
- const de_GetSpaceCommand = 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
- applicationArn: smithyClient.expectString,
760
- arn: smithyClient.expectString,
761
- clientId: smithyClient.expectString,
762
- configurationStatus: smithyClient.expectString,
763
- contentSize: smithyClient.expectLong,
764
- createDateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
765
- customerRoleArn: smithyClient.expectString,
766
- deleteDateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
767
- description: smithyClient.expectString,
768
- groupAdmins: smithyClient._json,
769
- identityStoreId: smithyClient.expectString,
770
- name: smithyClient.expectString,
771
- randomDomain: smithyClient.expectString,
772
- roles: smithyClient._json,
773
- spaceId: smithyClient.expectString,
774
- status: smithyClient.expectString,
775
- storageLimit: smithyClient.expectLong,
776
- supportedEmailDomains: smithyClient._json,
777
- tier: smithyClient.expectString,
778
- userAdmins: smithyClient._json,
779
- userCount: smithyClient.expectInt32,
780
- userKMSKey: smithyClient.expectString,
781
- vanityDomain: smithyClient.expectString,
782
- vanityDomainStatus: smithyClient.expectString,
783
- });
784
- Object.assign(contents, doc);
785
- return contents;
786
- };
787
- const de_ListChannelsCommand = async (output, context) => {
788
- if (output.statusCode !== 200 && output.statusCode >= 300) {
789
- return de_CommandError(output, context);
790
- }
791
- const contents = smithyClient.map({
792
- $metadata: deserializeMetadata(output),
793
- });
794
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
795
- const doc = smithyClient.take(data, {
796
- channels: (_) => de_ChannelsList(_),
797
- nextToken: smithyClient.expectString,
798
- });
799
- Object.assign(contents, doc);
800
- return contents;
801
- };
802
- const de_ListSpacesCommand = async (output, context) => {
803
- if (output.statusCode !== 200 && output.statusCode >= 300) {
804
- return de_CommandError(output, context);
805
- }
806
- const contents = smithyClient.map({
807
- $metadata: deserializeMetadata(output),
808
- });
809
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
810
- const doc = smithyClient.take(data, {
811
- nextToken: smithyClient.expectString,
812
- spaces: (_) => de_SpacesList(_),
813
- });
814
- Object.assign(contents, doc);
815
- return contents;
816
- };
817
- const de_ListTagsForResourceCommand = async (output, context) => {
818
- if (output.statusCode !== 200 && output.statusCode >= 300) {
819
- return de_CommandError(output, context);
820
- }
821
- const contents = smithyClient.map({
822
- $metadata: deserializeMetadata(output),
823
- });
824
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
825
- const doc = smithyClient.take(data, {
826
- tags: smithyClient._json,
827
- });
828
- Object.assign(contents, doc);
829
- return contents;
830
- };
831
- const de_RegisterAdminCommand = async (output, context) => {
832
- if (output.statusCode !== 200 && output.statusCode >= 300) {
833
- return de_CommandError(output, context);
834
- }
835
- const contents = smithyClient.map({
836
- $metadata: deserializeMetadata(output),
837
- });
838
- await smithyClient.collectBody(output.body, context);
839
- return contents;
840
- };
841
- const de_SendInvitesCommand = 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
- await smithyClient.collectBody(output.body, context);
849
- return contents;
850
- };
851
- const de_TagResourceCommand = async (output, context) => {
852
- if (output.statusCode !== 200 && output.statusCode >= 300) {
853
- return de_CommandError(output, context);
854
- }
855
- const contents = smithyClient.map({
856
- $metadata: deserializeMetadata(output),
857
- });
858
- await smithyClient.collectBody(output.body, context);
859
- return contents;
860
- };
861
- const de_UntagResourceCommand = async (output, context) => {
862
- if (output.statusCode !== 200 && output.statusCode >= 300) {
863
- return de_CommandError(output, context);
864
- }
865
- const contents = smithyClient.map({
866
- $metadata: deserializeMetadata(output),
867
- });
868
- await smithyClient.collectBody(output.body, context);
869
- return contents;
870
- };
871
- const de_UpdateChannelCommand = async (output, context) => {
872
- if (output.statusCode !== 200 && output.statusCode >= 300) {
873
- return de_CommandError(output, context);
874
- }
875
- const contents = smithyClient.map({
876
- $metadata: deserializeMetadata(output),
877
- });
878
- await smithyClient.collectBody(output.body, context);
879
- return contents;
880
- };
881
- const de_UpdateSpaceCommand = async (output, context) => {
882
- if (output.statusCode !== 200 && output.statusCode >= 300) {
883
- return de_CommandError(output, context);
884
- }
885
- const contents = smithyClient.map({
886
- $metadata: deserializeMetadata(output),
887
- });
888
- await smithyClient.collectBody(output.body, context);
889
- return contents;
890
- };
891
- const de_CommandError = async (output, context) => {
892
- const parsedOutput = {
893
- ...output,
894
- body: await core$1.parseJsonErrorBody(output.body, context),
895
- };
896
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
897
- switch (errorCode) {
898
- case "AccessDeniedException":
899
- case "com.amazonaws.repostspace#AccessDeniedException":
900
- throw await de_AccessDeniedExceptionRes(parsedOutput);
901
- case "InternalServerException":
902
- case "com.amazonaws.repostspace#InternalServerException":
903
- throw await de_InternalServerExceptionRes(parsedOutput);
904
- case "ResourceNotFoundException":
905
- case "com.amazonaws.repostspace#ResourceNotFoundException":
906
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
907
- case "ThrottlingException":
908
- case "com.amazonaws.repostspace#ThrottlingException":
909
- throw await de_ThrottlingExceptionRes(parsedOutput);
910
- case "ValidationException":
911
- case "com.amazonaws.repostspace#ValidationException":
912
- throw await de_ValidationExceptionRes(parsedOutput);
913
- case "ConflictException":
914
- case "com.amazonaws.repostspace#ConflictException":
915
- throw await de_ConflictExceptionRes(parsedOutput);
916
- case "ServiceQuotaExceededException":
917
- case "com.amazonaws.repostspace#ServiceQuotaExceededException":
918
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
919
- default:
920
- const parsedBody = parsedOutput.body;
921
- return throwDefaultError({
922
- output,
923
- parsedBody,
924
- errorCode,
925
- });
926
- }
927
- };
928
- const throwDefaultError = smithyClient.withBaseException(RepostspaceServiceException);
929
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
930
- const contents = smithyClient.map({});
931
- const data = parsedOutput.body;
932
- const doc = smithyClient.take(data, {
933
- message: smithyClient.expectString,
934
- });
935
- Object.assign(contents, doc);
936
- const exception = new AccessDeniedException({
937
- $metadata: deserializeMetadata(parsedOutput),
938
- ...contents,
939
- });
940
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
941
- };
942
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
943
- const contents = smithyClient.map({});
944
- const data = parsedOutput.body;
945
- const doc = smithyClient.take(data, {
946
- message: smithyClient.expectString,
947
- resourceId: smithyClient.expectString,
948
- resourceType: smithyClient.expectString,
949
- });
950
- Object.assign(contents, doc);
951
- const exception = new ConflictException({
952
- $metadata: deserializeMetadata(parsedOutput),
953
- ...contents,
954
- });
955
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
956
- };
957
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
958
- const contents = smithyClient.map({
959
- [_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
960
- });
961
- const data = parsedOutput.body;
962
- const doc = smithyClient.take(data, {
963
- message: smithyClient.expectString,
964
- });
965
- Object.assign(contents, doc);
966
- const exception = new InternalServerException({
967
- $metadata: deserializeMetadata(parsedOutput),
968
- ...contents,
969
- });
970
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
971
- };
972
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
973
- const contents = smithyClient.map({});
974
- const data = parsedOutput.body;
975
- const doc = smithyClient.take(data, {
976
- message: smithyClient.expectString,
977
- resourceId: smithyClient.expectString,
978
- resourceType: smithyClient.expectString,
979
- });
980
- Object.assign(contents, doc);
981
- const exception = new ResourceNotFoundException({
982
- $metadata: deserializeMetadata(parsedOutput),
983
- ...contents,
984
- });
985
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
986
- };
987
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
988
- const contents = smithyClient.map({});
989
- const data = parsedOutput.body;
990
- const doc = smithyClient.take(data, {
991
- message: smithyClient.expectString,
992
- quotaCode: smithyClient.expectString,
993
- resourceId: smithyClient.expectString,
994
- resourceType: smithyClient.expectString,
995
- serviceCode: smithyClient.expectString,
996
- });
997
- Object.assign(contents, doc);
998
- const exception = new ServiceQuotaExceededException({
999
- $metadata: deserializeMetadata(parsedOutput),
1000
- ...contents,
1001
- });
1002
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1003
- };
1004
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
1005
- const contents = smithyClient.map({
1006
- [_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
1007
- });
1008
- const data = parsedOutput.body;
1009
- const doc = smithyClient.take(data, {
1010
- message: smithyClient.expectString,
1011
- quotaCode: smithyClient.expectString,
1012
- serviceCode: smithyClient.expectString,
1013
- });
1014
- Object.assign(contents, doc);
1015
- const exception = new ThrottlingException({
1016
- $metadata: deserializeMetadata(parsedOutput),
1017
- ...contents,
1018
- });
1019
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1020
- };
1021
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
1022
- const contents = smithyClient.map({});
1023
- const data = parsedOutput.body;
1024
- const doc = smithyClient.take(data, {
1025
- fieldList: smithyClient._json,
1026
- message: smithyClient.expectString,
1027
- reason: smithyClient.expectString,
1028
- });
1029
- Object.assign(contents, doc);
1030
- const exception = new ValidationException({
1031
- $metadata: deserializeMetadata(parsedOutput),
1032
- ...contents,
1033
- });
1034
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1035
- };
1036
- const de_ChannelData = (output, context) => {
1037
- return smithyClient.take(output, {
1038
- channelDescription: smithyClient.expectString,
1039
- channelId: smithyClient.expectString,
1040
- channelName: smithyClient.expectString,
1041
- channelStatus: smithyClient.expectString,
1042
- createDateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1043
- deleteDateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1044
- groupCount: smithyClient.expectInt32,
1045
- spaceId: smithyClient.expectString,
1046
- userCount: smithyClient.expectInt32,
1047
- });
1048
- };
1049
- const de_ChannelsList = (output, context) => {
1050
- const retVal = (output || [])
1051
- .filter((e) => e != null)
1052
- .map((entry) => {
1053
- return de_ChannelData(entry);
1054
- });
1055
- return retVal;
1056
- };
1057
- const de_SpaceData = (output, context) => {
1058
- return smithyClient.take(output, {
1059
- arn: smithyClient.expectString,
1060
- configurationStatus: smithyClient.expectString,
1061
- contentSize: smithyClient.expectLong,
1062
- createDateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1063
- deleteDateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1064
- description: smithyClient.expectString,
1065
- name: smithyClient.expectString,
1066
- randomDomain: smithyClient.expectString,
1067
- spaceId: smithyClient.expectString,
1068
- status: smithyClient.expectString,
1069
- storageLimit: smithyClient.expectLong,
1070
- supportedEmailDomains: smithyClient._json,
1071
- tier: smithyClient.expectString,
1072
- userCount: smithyClient.expectInt32,
1073
- userKMSKey: smithyClient.expectString,
1074
- vanityDomain: smithyClient.expectString,
1075
- vanityDomainStatus: smithyClient.expectString,
1076
- });
1077
- };
1078
- const de_SpacesList = (output, context) => {
1079
- const retVal = (output || [])
1080
- .filter((e) => e != null)
1081
- .map((entry) => {
1082
- return de_SpaceData(entry);
1083
- });
1084
- return retVal;
1085
- };
1086
- const deserializeMetadata = (output) => ({
1087
- httpStatusCode: output.statusCode,
1088
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1089
- extendedRequestId: output.headers["x-amz-id-2"],
1090
- cfId: output.headers["x-amz-cf-id"],
1091
- });
286
+ const _ADE = "AccessDeniedException";
287
+ const _ADL = "AllowedDomainsList";
288
+ const _BACRTA = "BatchAddChannelRoleToAccessors";
289
+ const _BACRTAI = "BatchAddChannelRoleToAccessorsInput";
290
+ const _BACRTAO = "BatchAddChannelRoleToAccessorsOutput";
291
+ const _BAR = "BatchAddRole";
292
+ const _BARI = "BatchAddRoleInput";
293
+ const _BARO = "BatchAddRoleOutput";
294
+ const _BE = "BatchError";
295
+ const _BEL = "BatchErrorList";
296
+ const _BRCRFA = "BatchRemoveChannelRoleFromAccessors";
297
+ const _BRCRFAI = "BatchRemoveChannelRoleFromAccessorsInput";
298
+ const _BRCRFAO = "BatchRemoveChannelRoleFromAccessorsOutput";
299
+ const _BRR = "BatchRemoveRole";
300
+ const _BRRI = "BatchRemoveRoleInput";
301
+ const _BRRO = "BatchRemoveRoleOutput";
302
+ const _CC = "CreateChannel";
303
+ const _CCI = "CreateChannelInput";
304
+ const _CCO = "CreateChannelOutput";
305
+ const _CD = "ChannelDescription";
306
+ const _CDh = "ChannelData";
307
+ const _CE = "ConflictException";
308
+ const _CL = "ChannelsList";
309
+ const _CN = "ChannelName";
310
+ const _CR = "ChannelRoles";
311
+ const _CS = "CreateSpace";
312
+ const _CSI = "CreateSpaceInput";
313
+ const _CSO = "CreateSpaceOutput";
314
+ const _DA = "DeregisterAdmin";
315
+ const _DAI = "DeregisterAdminInput";
316
+ const _DS = "DeleteSpace";
317
+ const _DSI = "DeleteSpaceInput";
318
+ const _ED = "EmailDomain";
319
+ const _GC = "GetChannel";
320
+ const _GCI = "GetChannelInput";
321
+ const _GCO = "GetChannelOutput";
322
+ const _GS = "GetSpace";
323
+ const _GSI = "GetSpaceInput";
324
+ const _GSO = "GetSpaceOutput";
325
+ const _IB = "InviteBody";
326
+ const _ISE = "InternalServerException";
327
+ const _IT = "InviteTitle";
328
+ const _LC = "ListChannels";
329
+ const _LCI = "ListChannelsInput";
330
+ const _LCO = "ListChannelsOutput";
331
+ const _LS = "ListSpaces";
332
+ const _LSI = "ListSpacesInput";
333
+ const _LSO = "ListSpacesOutput";
334
+ const _LTFR = "ListTagsForResource";
335
+ const _LTFRR = "ListTagsForResourceRequest";
336
+ const _LTFRRi = "ListTagsForResourceResponse";
337
+ const _R = "Roles";
338
+ const _RA = "Retry-After";
339
+ const _RAI = "RegisterAdminInput";
340
+ const _RAe = "RegisterAdmin";
341
+ const _RNFE = "ResourceNotFoundException";
342
+ const _SD = "SpaceDescription";
343
+ const _SDp = "SpaceData";
344
+ const _SEDP = "SupportedEmailDomainsParameters";
345
+ const _SEDS = "SupportedEmailDomainsStatus";
346
+ const _SI = "SendInvites";
347
+ const _SII = "SendInvitesInput";
348
+ const _SL = "SpacesList";
349
+ const _SN = "SpaceName";
350
+ const _SQEE = "ServiceQuotaExceededException";
351
+ const _T = "Tags";
352
+ const _TE = "ThrottlingException";
353
+ const _TR = "TagResource";
354
+ const _TRR = "TagResourceRequest";
355
+ const _TRRa = "TagResourceResponse";
356
+ const _UC = "UpdateChannel";
357
+ const _UCI = "UpdateChannelInput";
358
+ const _UCO = "UpdateChannelOutput";
359
+ const _UR = "UntagResource";
360
+ const _URR = "UntagResourceRequest";
361
+ const _URRn = "UntagResourceResponse";
362
+ const _US = "UpdateSpace";
363
+ const _USI = "UpdateSpaceInput";
364
+ const _VE = "ValidationException";
365
+ const _VEF = "ValidationExceptionField";
366
+ const _VEFL = "ValidationExceptionFieldList";
367
+ const _a = "arn";
368
+ const _aA = "applicationArn";
369
+ const _aAI = "addedAccessorIds";
370
+ const _aD = "allowedDomains";
371
+ const _aI = "accessorIds";
372
+ const _aIc = "accessorId";
373
+ const _aId = "adminId";
374
+ const _b = "body";
375
+ const _c = "client";
376
+ const _cD = "channelDescription";
377
+ const _cDT = "createDateTime";
378
+ const _cI = "channelId";
379
+ const _cIl = "clientId";
380
+ const _cN = "channelName";
381
+ const _cR = "channelRole";
382
+ const _cRA = "customerRoleArn";
383
+ const _cRh = "channelRoles";
384
+ const _cS = "channelStatus";
385
+ const _cSo = "configurationStatus";
386
+ const _cSon = "contentSize";
387
+ const _ch = "channels";
388
+ const _d = "description";
389
+ const _dDT = "deleteDateTime";
390
+ const _e = "error";
391
+ const _en = "enabled";
392
+ const _er = "errors";
393
+ const _fL = "fieldList";
394
+ const _gA = "groupAdmins";
395
+ const _gC = "groupCount";
396
+ const _h = "http";
397
+ const _hE = "httpError";
398
+ const _hH = "httpHeader";
399
+ const _hQ = "httpQuery";
400
+ const _iSI = "identityStoreId";
401
+ const _m = "message";
1092
402
  const _mR = "maxResults";
403
+ const _n = "name";
1093
404
  const _nT = "nextToken";
405
+ const _qC = "quotaCode";
406
+ const _r = "role";
407
+ const _rA = "roleArn";
408
+ const _rAI = "removedAccessorIds";
1094
409
  const _rAS = "retryAfterSeconds";
1095
- const _ra = "retry-after";
410
+ const _rAe = "resourceArn";
411
+ const _rD = "randomDomain";
412
+ const _rI = "resourceId";
413
+ const _rT = "resourceType";
414
+ const _re = "reason";
415
+ const _ro = "roles";
416
+ const _s = "subdomain";
417
+ const _sC = "serviceCode";
418
+ const _sED = "supportedEmailDomains";
419
+ const _sI = "spaceId";
420
+ const _sL = "storageLimit";
421
+ const _se = "server";
422
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.repostspace";
423
+ const _sp = "spaces";
424
+ const _st = "status";
425
+ const _t = "tier";
1096
426
  const _tK = "tagKeys";
427
+ const _ta = "tags";
428
+ const _ti = "title";
429
+ const _uA = "userAdmins";
430
+ const _uC = "userCount";
431
+ const _uKMSK = "userKMSKey";
432
+ const _vD = "vanityDomain";
433
+ const _vDS = "vanityDomainStatus";
434
+ const n0 = "com.amazonaws.repostspace";
435
+ var ChannelDescription = [0, n0, _CD, 8, 0];
436
+ var ChannelName = [0, n0, _CN, 8, 0];
437
+ var EmailDomain = [0, n0, _ED, 8, 0];
438
+ var InviteBody = [0, n0, _IB, 8, 0];
439
+ var InviteTitle = [0, n0, _IT, 8, 0];
440
+ var SpaceDescription = [0, n0, _SD, 8, 0];
441
+ var SpaceName = [0, n0, _SN, 8, 0];
442
+ var AccessDeniedException = [
443
+ -3,
444
+ n0,
445
+ _ADE,
446
+ {
447
+ [_e]: _c,
448
+ [_hE]: 403,
449
+ },
450
+ [_m],
451
+ [0],
452
+ ];
453
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
454
+ var BatchAddChannelRoleToAccessorsInput = [
455
+ 3,
456
+ n0,
457
+ _BACRTAI,
458
+ 0,
459
+ [_sI, _cI, _aI, _cR],
460
+ [[0, 1], [0, 1], 64 | 0, 0],
461
+ ];
462
+ var BatchAddChannelRoleToAccessorsOutput = [
463
+ 3,
464
+ n0,
465
+ _BACRTAO,
466
+ 0,
467
+ [_aAI, _er],
468
+ [64 | 0, () => BatchErrorList],
469
+ ];
470
+ var BatchAddRoleInput = [3, n0, _BARI, 0, [_sI, _aI, _r], [[0, 1], 64 | 0, 0]];
471
+ var BatchAddRoleOutput = [3, n0, _BARO, 0, [_aAI, _er], [64 | 0, () => BatchErrorList]];
472
+ var BatchError = [3, n0, _BE, 0, [_aIc, _e, _m], [0, 1, 0]];
473
+ var BatchRemoveChannelRoleFromAccessorsInput = [
474
+ 3,
475
+ n0,
476
+ _BRCRFAI,
477
+ 0,
478
+ [_sI, _cI, _aI, _cR],
479
+ [[0, 1], [0, 1], 64 | 0, 0],
480
+ ];
481
+ var BatchRemoveChannelRoleFromAccessorsOutput = [
482
+ 3,
483
+ n0,
484
+ _BRCRFAO,
485
+ 0,
486
+ [_rAI, _er],
487
+ [64 | 0, () => BatchErrorList],
488
+ ];
489
+ var BatchRemoveRoleInput = [3, n0, _BRRI, 0, [_sI, _aI, _r], [[0, 1], 64 | 0, 0]];
490
+ var BatchRemoveRoleOutput = [
491
+ 3,
492
+ n0,
493
+ _BRRO,
494
+ 0,
495
+ [_rAI, _er],
496
+ [64 | 0, () => BatchErrorList],
497
+ ];
498
+ var ChannelData = [
499
+ 3,
500
+ n0,
501
+ _CDh,
502
+ 0,
503
+ [_sI, _cI, _cN, _cD, _cDT, _dDT, _cS, _uC, _gC],
504
+ [0, 0, [() => ChannelName, 0], [() => ChannelDescription, 0], 5, 5, 0, 1, 1],
505
+ ];
506
+ var ConflictException = [
507
+ -3,
508
+ n0,
509
+ _CE,
510
+ {
511
+ [_e]: _c,
512
+ [_hE]: 409,
513
+ },
514
+ [_m, _rI, _rT],
515
+ [0, 0, 0],
516
+ ];
517
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
518
+ var CreateChannelInput = [
519
+ 3,
520
+ n0,
521
+ _CCI,
522
+ 0,
523
+ [_sI, _cN, _cD],
524
+ [
525
+ [0, 1],
526
+ [() => ChannelName, 0],
527
+ [() => ChannelDescription, 0],
528
+ ],
529
+ ];
530
+ var CreateChannelOutput = [3, n0, _CCO, 0, [_cI], [0]];
531
+ var CreateSpaceInput = [
532
+ 3,
533
+ n0,
534
+ _CSI,
535
+ 0,
536
+ [_n, _s, _t, _d, _uKMSK, _ta, _rA, _sED],
537
+ [
538
+ [() => SpaceName, 0],
539
+ 0,
540
+ 0,
541
+ [() => SpaceDescription, 0],
542
+ 0,
543
+ [() => Tags, 0],
544
+ 0,
545
+ [() => SupportedEmailDomainsParameters, 0],
546
+ ],
547
+ ];
548
+ var CreateSpaceOutput = [3, n0, _CSO, 0, [_sI], [0]];
549
+ var DeleteSpaceInput = [3, n0, _DSI, 0, [_sI], [[0, 1]]];
550
+ var DeregisterAdminInput = [
551
+ 3,
552
+ n0,
553
+ _DAI,
554
+ 0,
555
+ [_sI, _aId],
556
+ [
557
+ [0, 1],
558
+ [0, 1],
559
+ ],
560
+ ];
561
+ var GetChannelInput = [
562
+ 3,
563
+ n0,
564
+ _GCI,
565
+ 0,
566
+ [_sI, _cI],
567
+ [
568
+ [0, 1],
569
+ [0, 1],
570
+ ],
571
+ ];
572
+ var GetChannelOutput = [
573
+ 3,
574
+ n0,
575
+ _GCO,
576
+ 0,
577
+ [_sI, _cI, _cN, _cD, _cDT, _dDT, _cRh, _cS],
578
+ [0, 0, [() => ChannelName, 0], [() => ChannelDescription, 0], 5, 5, [2, n0, _CR, 0, 0, 64 | 0], 0],
579
+ ];
580
+ var GetSpaceInput = [3, n0, _GSI, 0, [_sI], [[0, 1]]];
581
+ var GetSpaceOutput = [
582
+ 3,
583
+ n0,
584
+ _GSO,
585
+ 0,
586
+ [
587
+ _sI,
588
+ _a,
589
+ _n,
590
+ _st,
591
+ _cSo,
592
+ _cIl,
593
+ _iSI,
594
+ _aA,
595
+ _d,
596
+ _vDS,
597
+ _vD,
598
+ _rD,
599
+ _cRA,
600
+ _cDT,
601
+ _dDT,
602
+ _t,
603
+ _sL,
604
+ _uA,
605
+ _gA,
606
+ _ro,
607
+ _uKMSK,
608
+ _uC,
609
+ _cSon,
610
+ _sED,
611
+ ],
612
+ [
613
+ 0,
614
+ 0,
615
+ [() => SpaceName, 0],
616
+ 0,
617
+ 0,
618
+ 0,
619
+ 0,
620
+ 0,
621
+ [() => SpaceDescription, 0],
622
+ 0,
623
+ 0,
624
+ 0,
625
+ 0,
626
+ 5,
627
+ 5,
628
+ 0,
629
+ 1,
630
+ 64 | 0,
631
+ 64 | 0,
632
+ [2, n0, _R, 0, 0, 64 | 0],
633
+ 0,
634
+ 1,
635
+ 1,
636
+ [() => SupportedEmailDomainsStatus, 0],
637
+ ],
638
+ ];
639
+ var InternalServerException = [
640
+ -3,
641
+ n0,
642
+ _ISE,
643
+ {
644
+ [_e]: _se,
645
+ [_hE]: 500,
646
+ },
647
+ [_m, _rAS],
648
+ [
649
+ 0,
650
+ [
651
+ 1,
652
+ {
653
+ [_hH]: _RA,
654
+ },
655
+ ],
656
+ ],
657
+ ];
658
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
659
+ var ListChannelsInput = [
660
+ 3,
661
+ n0,
662
+ _LCI,
663
+ 0,
664
+ [_sI, _nT, _mR],
665
+ [
666
+ [0, 1],
667
+ [
668
+ 0,
669
+ {
670
+ [_hQ]: _nT,
671
+ },
672
+ ],
673
+ [
674
+ 1,
675
+ {
676
+ [_hQ]: _mR,
677
+ },
678
+ ],
679
+ ],
680
+ ];
681
+ var ListChannelsOutput = [3, n0, _LCO, 0, [_ch, _nT], [[() => ChannelsList, 0], 0]];
682
+ var ListSpacesInput = [
683
+ 3,
684
+ n0,
685
+ _LSI,
686
+ 0,
687
+ [_nT, _mR],
688
+ [
689
+ [
690
+ 0,
691
+ {
692
+ [_hQ]: _nT,
693
+ },
694
+ ],
695
+ [
696
+ 1,
697
+ {
698
+ [_hQ]: _mR,
699
+ },
700
+ ],
701
+ ],
702
+ ];
703
+ var ListSpacesOutput = [3, n0, _LSO, 0, [_sp, _nT], [[() => SpacesList, 0], 0]];
704
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
705
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [[() => Tags, 0]]];
706
+ var RegisterAdminInput = [
707
+ 3,
708
+ n0,
709
+ _RAI,
710
+ 0,
711
+ [_sI, _aId],
712
+ [
713
+ [0, 1],
714
+ [0, 1],
715
+ ],
716
+ ];
717
+ var ResourceNotFoundException = [
718
+ -3,
719
+ n0,
720
+ _RNFE,
721
+ {
722
+ [_e]: _c,
723
+ [_hE]: 404,
724
+ },
725
+ [_m, _rI, _rT],
726
+ [0, 0, 0],
727
+ ];
728
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
729
+ var SendInvitesInput = [
730
+ 3,
731
+ n0,
732
+ _SII,
733
+ 0,
734
+ [_sI, _aI, _ti, _b],
735
+ [[0, 1], 64 | 0, [() => InviteTitle, 0], [() => InviteBody, 0]],
736
+ ];
737
+ var ServiceQuotaExceededException = [
738
+ -3,
739
+ n0,
740
+ _SQEE,
741
+ {
742
+ [_e]: _c,
743
+ [_hE]: 402,
744
+ },
745
+ [_m, _rI, _rT, _sC, _qC],
746
+ [0, 0, 0, 0, 0],
747
+ ];
748
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
749
+ var SpaceData = [
750
+ 3,
751
+ n0,
752
+ _SDp,
753
+ 0,
754
+ [_sI, _a, _n, _d, _st, _cSo, _vDS, _vD, _rD, _t, _sL, _cDT, _dDT, _uKMSK, _uC, _cSon, _sED],
755
+ [
756
+ 0,
757
+ 0,
758
+ [() => SpaceName, 0],
759
+ [() => SpaceDescription, 0],
760
+ 0,
761
+ 0,
762
+ 0,
763
+ 0,
764
+ 0,
765
+ 0,
766
+ 1,
767
+ 5,
768
+ 5,
769
+ 0,
770
+ 1,
771
+ 1,
772
+ [() => SupportedEmailDomainsStatus, 0],
773
+ ],
774
+ ];
775
+ var SupportedEmailDomainsParameters = [
776
+ 3,
777
+ n0,
778
+ _SEDP,
779
+ 0,
780
+ [_en, _aD],
781
+ [0, [() => AllowedDomainsList, 0]],
782
+ ];
783
+ var SupportedEmailDomainsStatus = [
784
+ 3,
785
+ n0,
786
+ _SEDS,
787
+ 0,
788
+ [_en, _aD],
789
+ [0, [() => AllowedDomainsList, 0]],
790
+ ];
791
+ var TagResourceRequest = [
792
+ 3,
793
+ n0,
794
+ _TRR,
795
+ 0,
796
+ [_rAe, _ta],
797
+ [
798
+ [0, 1],
799
+ [() => Tags, 0],
800
+ ],
801
+ ];
802
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
803
+ var ThrottlingException = [
804
+ -3,
805
+ n0,
806
+ _TE,
807
+ {
808
+ [_e]: _c,
809
+ [_hE]: 429,
810
+ },
811
+ [_m, _sC, _qC, _rAS],
812
+ [
813
+ 0,
814
+ 0,
815
+ 0,
816
+ [
817
+ 1,
818
+ {
819
+ [_hH]: _RA,
820
+ },
821
+ ],
822
+ ],
823
+ ];
824
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
825
+ var UntagResourceRequest = [
826
+ 3,
827
+ n0,
828
+ _URR,
829
+ 0,
830
+ [_rAe, _tK],
831
+ [
832
+ [0, 1],
833
+ [
834
+ 64 | 0,
835
+ {
836
+ [_hQ]: _tK,
837
+ },
838
+ ],
839
+ ],
840
+ ];
841
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
842
+ var UpdateChannelInput = [
843
+ 3,
844
+ n0,
845
+ _UCI,
846
+ 0,
847
+ [_sI, _cI, _cN, _cD],
848
+ [
849
+ [0, 1],
850
+ [0, 1],
851
+ [() => ChannelName, 0],
852
+ [() => ChannelDescription, 0],
853
+ ],
854
+ ];
855
+ var UpdateChannelOutput = [3, n0, _UCO, 0, [], []];
856
+ var UpdateSpaceInput = [
857
+ 3,
858
+ n0,
859
+ _USI,
860
+ 0,
861
+ [_sI, _d, _t, _rA, _sED],
862
+ [[0, 1], [() => SpaceDescription, 0], 0, 0, [() => SupportedEmailDomainsParameters, 0]],
863
+ ];
864
+ var ValidationException = [
865
+ -3,
866
+ n0,
867
+ _VE,
868
+ {
869
+ [_e]: _c,
870
+ [_hE]: 400,
871
+ },
872
+ [_m, _re, _fL],
873
+ [0, 0, () => ValidationExceptionFieldList],
874
+ ];
875
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
876
+ var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
877
+ var __Unit = "unit";
878
+ var RepostspaceServiceException = [-3, _sm, "RepostspaceServiceException", 0, [], []];
879
+ schema.TypeRegistry.for(_sm).registerError(RepostspaceServiceException, RepostspaceServiceException$1);
880
+ var AllowedDomainsList = [1, n0, _ADL, 0, [() => EmailDomain, 0]];
881
+ var BatchErrorList = [1, n0, _BEL, 0, () => BatchError];
882
+ var ChannelsList = [1, n0, _CL, 0, [() => ChannelData, 0]];
883
+ var SpacesList = [1, n0, _SL, 0, [() => SpaceData, 0]];
884
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
885
+ var Tags = [2, n0, _T, 8, 0, 0];
886
+ var BatchAddChannelRoleToAccessors = [
887
+ 9,
888
+ n0,
889
+ _BACRTA,
890
+ {
891
+ [_h]: ["POST", "/spaces/{spaceId}/channels/{channelId}/roles", 200],
892
+ },
893
+ () => BatchAddChannelRoleToAccessorsInput,
894
+ () => BatchAddChannelRoleToAccessorsOutput,
895
+ ];
896
+ var BatchAddRole = [
897
+ 9,
898
+ n0,
899
+ _BAR,
900
+ {
901
+ [_h]: ["POST", "/spaces/{spaceId}/roles", 200],
902
+ },
903
+ () => BatchAddRoleInput,
904
+ () => BatchAddRoleOutput,
905
+ ];
906
+ var BatchRemoveChannelRoleFromAccessors = [
907
+ 9,
908
+ n0,
909
+ _BRCRFA,
910
+ {
911
+ [_h]: ["PATCH", "/spaces/{spaceId}/channels/{channelId}/roles", 200],
912
+ },
913
+ () => BatchRemoveChannelRoleFromAccessorsInput,
914
+ () => BatchRemoveChannelRoleFromAccessorsOutput,
915
+ ];
916
+ var BatchRemoveRole = [
917
+ 9,
918
+ n0,
919
+ _BRR,
920
+ {
921
+ [_h]: ["PATCH", "/spaces/{spaceId}/roles", 200],
922
+ },
923
+ () => BatchRemoveRoleInput,
924
+ () => BatchRemoveRoleOutput,
925
+ ];
926
+ var CreateChannel = [
927
+ 9,
928
+ n0,
929
+ _CC,
930
+ {
931
+ [_h]: ["POST", "/spaces/{spaceId}/channels", 200],
932
+ },
933
+ () => CreateChannelInput,
934
+ () => CreateChannelOutput,
935
+ ];
936
+ var CreateSpace = [
937
+ 9,
938
+ n0,
939
+ _CS,
940
+ {
941
+ [_h]: ["POST", "/spaces", 200],
942
+ },
943
+ () => CreateSpaceInput,
944
+ () => CreateSpaceOutput,
945
+ ];
946
+ var DeleteSpace = [
947
+ 9,
948
+ n0,
949
+ _DS,
950
+ {
951
+ [_h]: ["DELETE", "/spaces/{spaceId}", 200],
952
+ },
953
+ () => DeleteSpaceInput,
954
+ () => __Unit,
955
+ ];
956
+ var DeregisterAdmin = [
957
+ 9,
958
+ n0,
959
+ _DA,
960
+ {
961
+ [_h]: ["DELETE", "/spaces/{spaceId}/admins/{adminId}", 200],
962
+ },
963
+ () => DeregisterAdminInput,
964
+ () => __Unit,
965
+ ];
966
+ var GetChannel = [
967
+ 9,
968
+ n0,
969
+ _GC,
970
+ {
971
+ [_h]: ["GET", "/spaces/{spaceId}/channels/{channelId}", 200],
972
+ },
973
+ () => GetChannelInput,
974
+ () => GetChannelOutput,
975
+ ];
976
+ var GetSpace = [
977
+ 9,
978
+ n0,
979
+ _GS,
980
+ {
981
+ [_h]: ["GET", "/spaces/{spaceId}", 200],
982
+ },
983
+ () => GetSpaceInput,
984
+ () => GetSpaceOutput,
985
+ ];
986
+ var ListChannels = [
987
+ 9,
988
+ n0,
989
+ _LC,
990
+ {
991
+ [_h]: ["GET", "/spaces/{spaceId}/channels", 200],
992
+ },
993
+ () => ListChannelsInput,
994
+ () => ListChannelsOutput,
995
+ ];
996
+ var ListSpaces = [
997
+ 9,
998
+ n0,
999
+ _LS,
1000
+ {
1001
+ [_h]: ["GET", "/spaces", 200],
1002
+ },
1003
+ () => ListSpacesInput,
1004
+ () => ListSpacesOutput,
1005
+ ];
1006
+ var ListTagsForResource = [
1007
+ 9,
1008
+ n0,
1009
+ _LTFR,
1010
+ {
1011
+ [_h]: ["GET", "/tags/{resourceArn}", 200],
1012
+ },
1013
+ () => ListTagsForResourceRequest,
1014
+ () => ListTagsForResourceResponse,
1015
+ ];
1016
+ var RegisterAdmin = [
1017
+ 9,
1018
+ n0,
1019
+ _RAe,
1020
+ {
1021
+ [_h]: ["POST", "/spaces/{spaceId}/admins/{adminId}", 200],
1022
+ },
1023
+ () => RegisterAdminInput,
1024
+ () => __Unit,
1025
+ ];
1026
+ var SendInvites = [
1027
+ 9,
1028
+ n0,
1029
+ _SI,
1030
+ {
1031
+ [_h]: ["POST", "/spaces/{spaceId}/invite", 200],
1032
+ },
1033
+ () => SendInvitesInput,
1034
+ () => __Unit,
1035
+ ];
1036
+ var TagResource = [
1037
+ 9,
1038
+ n0,
1039
+ _TR,
1040
+ {
1041
+ [_h]: ["POST", "/tags/{resourceArn}", 200],
1042
+ },
1043
+ () => TagResourceRequest,
1044
+ () => TagResourceResponse,
1045
+ ];
1046
+ var UntagResource = [
1047
+ 9,
1048
+ n0,
1049
+ _UR,
1050
+ {
1051
+ [_h]: ["DELETE", "/tags/{resourceArn}", 200],
1052
+ },
1053
+ () => UntagResourceRequest,
1054
+ () => UntagResourceResponse,
1055
+ ];
1056
+ var UpdateChannel = [
1057
+ 9,
1058
+ n0,
1059
+ _UC,
1060
+ {
1061
+ [_h]: ["PUT", "/spaces/{spaceId}/channels/{channelId}", 200],
1062
+ },
1063
+ () => UpdateChannelInput,
1064
+ () => UpdateChannelOutput,
1065
+ ];
1066
+ var UpdateSpace = [
1067
+ 9,
1068
+ n0,
1069
+ _US,
1070
+ {
1071
+ [_h]: ["PUT", "/spaces/{spaceId}", 200],
1072
+ },
1073
+ () => UpdateSpaceInput,
1074
+ () => __Unit,
1075
+ ];
1097
1076
 
1098
1077
  class BatchAddChannelRoleToAccessorsCommand extends smithyClient.Command
1099
1078
  .classBuilder()
1100
1079
  .ep(commonParams)
1101
1080
  .m(function (Command, cs, config, o) {
1102
- return [
1103
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1104
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1105
- ];
1081
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1106
1082
  })
1107
1083
  .s("RepostSpace", "BatchAddChannelRoleToAccessors", {})
1108
1084
  .n("RepostspaceClient", "BatchAddChannelRoleToAccessorsCommand")
1109
- .f(void 0, void 0)
1110
- .ser(se_BatchAddChannelRoleToAccessorsCommand)
1111
- .de(de_BatchAddChannelRoleToAccessorsCommand)
1085
+ .sc(BatchAddChannelRoleToAccessors)
1112
1086
  .build() {
1113
1087
  }
1114
1088
 
@@ -1116,16 +1090,11 @@ class BatchAddRoleCommand extends smithyClient.Command
1116
1090
  .classBuilder()
1117
1091
  .ep(commonParams)
1118
1092
  .m(function (Command, cs, config, o) {
1119
- return [
1120
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1121
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1122
- ];
1093
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1123
1094
  })
1124
1095
  .s("RepostSpace", "BatchAddRole", {})
1125
1096
  .n("RepostspaceClient", "BatchAddRoleCommand")
1126
- .f(void 0, void 0)
1127
- .ser(se_BatchAddRoleCommand)
1128
- .de(de_BatchAddRoleCommand)
1097
+ .sc(BatchAddRole)
1129
1098
  .build() {
1130
1099
  }
1131
1100
 
@@ -1133,16 +1102,11 @@ class BatchRemoveChannelRoleFromAccessorsCommand extends smithyClient.Command
1133
1102
  .classBuilder()
1134
1103
  .ep(commonParams)
1135
1104
  .m(function (Command, cs, config, o) {
1136
- return [
1137
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1138
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1139
- ];
1105
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1140
1106
  })
1141
1107
  .s("RepostSpace", "BatchRemoveChannelRoleFromAccessors", {})
1142
1108
  .n("RepostspaceClient", "BatchRemoveChannelRoleFromAccessorsCommand")
1143
- .f(void 0, void 0)
1144
- .ser(se_BatchRemoveChannelRoleFromAccessorsCommand)
1145
- .de(de_BatchRemoveChannelRoleFromAccessorsCommand)
1109
+ .sc(BatchRemoveChannelRoleFromAccessors)
1146
1110
  .build() {
1147
1111
  }
1148
1112
 
@@ -1150,16 +1114,11 @@ class BatchRemoveRoleCommand extends smithyClient.Command
1150
1114
  .classBuilder()
1151
1115
  .ep(commonParams)
1152
1116
  .m(function (Command, cs, config, o) {
1153
- return [
1154
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1155
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1156
- ];
1117
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1157
1118
  })
1158
1119
  .s("RepostSpace", "BatchRemoveRole", {})
1159
1120
  .n("RepostspaceClient", "BatchRemoveRoleCommand")
1160
- .f(void 0, void 0)
1161
- .ser(se_BatchRemoveRoleCommand)
1162
- .de(de_BatchRemoveRoleCommand)
1121
+ .sc(BatchRemoveRole)
1163
1122
  .build() {
1164
1123
  }
1165
1124
 
@@ -1167,16 +1126,11 @@ class CreateChannelCommand extends smithyClient.Command
1167
1126
  .classBuilder()
1168
1127
  .ep(commonParams)
1169
1128
  .m(function (Command, cs, config, o) {
1170
- return [
1171
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1172
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1173
- ];
1129
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1174
1130
  })
1175
1131
  .s("RepostSpace", "CreateChannel", {})
1176
1132
  .n("RepostspaceClient", "CreateChannelCommand")
1177
- .f(CreateChannelInputFilterSensitiveLog, void 0)
1178
- .ser(se_CreateChannelCommand)
1179
- .de(de_CreateChannelCommand)
1133
+ .sc(CreateChannel)
1180
1134
  .build() {
1181
1135
  }
1182
1136
 
@@ -1184,16 +1138,11 @@ class CreateSpaceCommand extends smithyClient.Command
1184
1138
  .classBuilder()
1185
1139
  .ep(commonParams)
1186
1140
  .m(function (Command, cs, config, o) {
1187
- return [
1188
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1189
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1190
- ];
1141
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1191
1142
  })
1192
1143
  .s("RepostSpace", "CreateSpace", {})
1193
1144
  .n("RepostspaceClient", "CreateSpaceCommand")
1194
- .f(CreateSpaceInputFilterSensitiveLog, void 0)
1195
- .ser(se_CreateSpaceCommand)
1196
- .de(de_CreateSpaceCommand)
1145
+ .sc(CreateSpace)
1197
1146
  .build() {
1198
1147
  }
1199
1148
 
@@ -1201,16 +1150,11 @@ class DeleteSpaceCommand extends smithyClient.Command
1201
1150
  .classBuilder()
1202
1151
  .ep(commonParams)
1203
1152
  .m(function (Command, cs, config, o) {
1204
- return [
1205
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1206
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1207
- ];
1153
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1208
1154
  })
1209
1155
  .s("RepostSpace", "DeleteSpace", {})
1210
1156
  .n("RepostspaceClient", "DeleteSpaceCommand")
1211
- .f(void 0, void 0)
1212
- .ser(se_DeleteSpaceCommand)
1213
- .de(de_DeleteSpaceCommand)
1157
+ .sc(DeleteSpace)
1214
1158
  .build() {
1215
1159
  }
1216
1160
 
@@ -1218,16 +1162,11 @@ class DeregisterAdminCommand extends smithyClient.Command
1218
1162
  .classBuilder()
1219
1163
  .ep(commonParams)
1220
1164
  .m(function (Command, cs, config, o) {
1221
- return [
1222
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1223
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1224
- ];
1165
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1225
1166
  })
1226
1167
  .s("RepostSpace", "DeregisterAdmin", {})
1227
1168
  .n("RepostspaceClient", "DeregisterAdminCommand")
1228
- .f(void 0, void 0)
1229
- .ser(se_DeregisterAdminCommand)
1230
- .de(de_DeregisterAdminCommand)
1169
+ .sc(DeregisterAdmin)
1231
1170
  .build() {
1232
1171
  }
1233
1172
 
@@ -1235,16 +1174,11 @@ class GetChannelCommand extends smithyClient.Command
1235
1174
  .classBuilder()
1236
1175
  .ep(commonParams)
1237
1176
  .m(function (Command, cs, config, o) {
1238
- return [
1239
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1240
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1241
- ];
1177
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1242
1178
  })
1243
1179
  .s("RepostSpace", "GetChannel", {})
1244
1180
  .n("RepostspaceClient", "GetChannelCommand")
1245
- .f(void 0, GetChannelOutputFilterSensitiveLog)
1246
- .ser(se_GetChannelCommand)
1247
- .de(de_GetChannelCommand)
1181
+ .sc(GetChannel)
1248
1182
  .build() {
1249
1183
  }
1250
1184
 
@@ -1252,16 +1186,11 @@ class GetSpaceCommand extends smithyClient.Command
1252
1186
  .classBuilder()
1253
1187
  .ep(commonParams)
1254
1188
  .m(function (Command, cs, config, o) {
1255
- return [
1256
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1257
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1258
- ];
1189
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1259
1190
  })
1260
1191
  .s("RepostSpace", "GetSpace", {})
1261
1192
  .n("RepostspaceClient", "GetSpaceCommand")
1262
- .f(void 0, GetSpaceOutputFilterSensitiveLog)
1263
- .ser(se_GetSpaceCommand)
1264
- .de(de_GetSpaceCommand)
1193
+ .sc(GetSpace)
1265
1194
  .build() {
1266
1195
  }
1267
1196
 
@@ -1269,16 +1198,11 @@ class ListChannelsCommand extends smithyClient.Command
1269
1198
  .classBuilder()
1270
1199
  .ep(commonParams)
1271
1200
  .m(function (Command, cs, config, o) {
1272
- return [
1273
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1274
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1275
- ];
1201
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1276
1202
  })
1277
1203
  .s("RepostSpace", "ListChannels", {})
1278
1204
  .n("RepostspaceClient", "ListChannelsCommand")
1279
- .f(void 0, ListChannelsOutputFilterSensitiveLog)
1280
- .ser(se_ListChannelsCommand)
1281
- .de(de_ListChannelsCommand)
1205
+ .sc(ListChannels)
1282
1206
  .build() {
1283
1207
  }
1284
1208
 
@@ -1286,16 +1210,11 @@ class ListSpacesCommand extends smithyClient.Command
1286
1210
  .classBuilder()
1287
1211
  .ep(commonParams)
1288
1212
  .m(function (Command, cs, config, o) {
1289
- return [
1290
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1291
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1292
- ];
1213
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1293
1214
  })
1294
1215
  .s("RepostSpace", "ListSpaces", {})
1295
1216
  .n("RepostspaceClient", "ListSpacesCommand")
1296
- .f(void 0, ListSpacesOutputFilterSensitiveLog)
1297
- .ser(se_ListSpacesCommand)
1298
- .de(de_ListSpacesCommand)
1217
+ .sc(ListSpaces)
1299
1218
  .build() {
1300
1219
  }
1301
1220
 
@@ -1303,16 +1222,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1303
1222
  .classBuilder()
1304
1223
  .ep(commonParams)
1305
1224
  .m(function (Command, cs, config, o) {
1306
- return [
1307
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1308
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1309
- ];
1225
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1310
1226
  })
1311
1227
  .s("RepostSpace", "ListTagsForResource", {})
1312
1228
  .n("RepostspaceClient", "ListTagsForResourceCommand")
1313
- .f(void 0, ListTagsForResourceResponseFilterSensitiveLog)
1314
- .ser(se_ListTagsForResourceCommand)
1315
- .de(de_ListTagsForResourceCommand)
1229
+ .sc(ListTagsForResource)
1316
1230
  .build() {
1317
1231
  }
1318
1232
 
@@ -1320,16 +1234,11 @@ class RegisterAdminCommand extends smithyClient.Command
1320
1234
  .classBuilder()
1321
1235
  .ep(commonParams)
1322
1236
  .m(function (Command, cs, config, o) {
1323
- return [
1324
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1325
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1326
- ];
1237
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1327
1238
  })
1328
1239
  .s("RepostSpace", "RegisterAdmin", {})
1329
1240
  .n("RepostspaceClient", "RegisterAdminCommand")
1330
- .f(void 0, void 0)
1331
- .ser(se_RegisterAdminCommand)
1332
- .de(de_RegisterAdminCommand)
1241
+ .sc(RegisterAdmin)
1333
1242
  .build() {
1334
1243
  }
1335
1244
 
@@ -1337,16 +1246,11 @@ class SendInvitesCommand extends smithyClient.Command
1337
1246
  .classBuilder()
1338
1247
  .ep(commonParams)
1339
1248
  .m(function (Command, cs, config, o) {
1340
- return [
1341
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1342
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1343
- ];
1249
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1344
1250
  })
1345
1251
  .s("RepostSpace", "SendInvites", {})
1346
1252
  .n("RepostspaceClient", "SendInvitesCommand")
1347
- .f(SendInvitesInputFilterSensitiveLog, void 0)
1348
- .ser(se_SendInvitesCommand)
1349
- .de(de_SendInvitesCommand)
1253
+ .sc(SendInvites)
1350
1254
  .build() {
1351
1255
  }
1352
1256
 
@@ -1354,16 +1258,11 @@ class TagResourceCommand extends smithyClient.Command
1354
1258
  .classBuilder()
1355
1259
  .ep(commonParams)
1356
1260
  .m(function (Command, cs, config, o) {
1357
- return [
1358
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1359
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1360
- ];
1261
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1361
1262
  })
1362
1263
  .s("RepostSpace", "TagResource", {})
1363
1264
  .n("RepostspaceClient", "TagResourceCommand")
1364
- .f(TagResourceRequestFilterSensitiveLog, void 0)
1365
- .ser(se_TagResourceCommand)
1366
- .de(de_TagResourceCommand)
1265
+ .sc(TagResource)
1367
1266
  .build() {
1368
1267
  }
1369
1268
 
@@ -1371,16 +1270,11 @@ class UntagResourceCommand extends smithyClient.Command
1371
1270
  .classBuilder()
1372
1271
  .ep(commonParams)
1373
1272
  .m(function (Command, cs, config, o) {
1374
- return [
1375
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1376
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1377
- ];
1273
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1378
1274
  })
1379
1275
  .s("RepostSpace", "UntagResource", {})
1380
1276
  .n("RepostspaceClient", "UntagResourceCommand")
1381
- .f(void 0, void 0)
1382
- .ser(se_UntagResourceCommand)
1383
- .de(de_UntagResourceCommand)
1277
+ .sc(UntagResource)
1384
1278
  .build() {
1385
1279
  }
1386
1280
 
@@ -1388,16 +1282,11 @@ class UpdateChannelCommand extends smithyClient.Command
1388
1282
  .classBuilder()
1389
1283
  .ep(commonParams)
1390
1284
  .m(function (Command, cs, config, o) {
1391
- return [
1392
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1393
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1394
- ];
1285
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1395
1286
  })
1396
1287
  .s("RepostSpace", "UpdateChannel", {})
1397
1288
  .n("RepostspaceClient", "UpdateChannelCommand")
1398
- .f(UpdateChannelInputFilterSensitiveLog, void 0)
1399
- .ser(se_UpdateChannelCommand)
1400
- .de(de_UpdateChannelCommand)
1289
+ .sc(UpdateChannel)
1401
1290
  .build() {
1402
1291
  }
1403
1292
 
@@ -1405,16 +1294,11 @@ class UpdateSpaceCommand extends smithyClient.Command
1405
1294
  .classBuilder()
1406
1295
  .ep(commonParams)
1407
1296
  .m(function (Command, cs, config, o) {
1408
- return [
1409
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1410
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1411
- ];
1297
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1412
1298
  })
1413
1299
  .s("RepostSpace", "UpdateSpace", {})
1414
1300
  .n("RepostspaceClient", "UpdateSpaceCommand")
1415
- .f(UpdateSpaceInputFilterSensitiveLog, void 0)
1416
- .ser(se_UpdateSpaceCommand)
1417
- .de(de_UpdateSpaceCommand)
1301
+ .sc(UpdateSpace)
1418
1302
  .build() {
1419
1303
  }
1420
1304
 
@@ -1653,57 +1537,42 @@ Object.defineProperty(exports, "__Client", {
1653
1537
  enumerable: true,
1654
1538
  get: function () { return smithyClient.Client; }
1655
1539
  });
1656
- exports.AccessDeniedException = AccessDeniedException;
1540
+ exports.AccessDeniedException = AccessDeniedException$1;
1657
1541
  exports.BatchAddChannelRoleToAccessorsCommand = BatchAddChannelRoleToAccessorsCommand;
1658
1542
  exports.BatchAddRoleCommand = BatchAddRoleCommand;
1659
1543
  exports.BatchRemoveChannelRoleFromAccessorsCommand = BatchRemoveChannelRoleFromAccessorsCommand;
1660
1544
  exports.BatchRemoveRoleCommand = BatchRemoveRoleCommand;
1661
- exports.ChannelDataFilterSensitiveLog = ChannelDataFilterSensitiveLog;
1662
1545
  exports.ChannelRole = ChannelRole;
1663
1546
  exports.ChannelStatus = ChannelStatus;
1664
1547
  exports.ConfigurationStatus = ConfigurationStatus;
1665
- exports.ConflictException = ConflictException;
1548
+ exports.ConflictException = ConflictException$1;
1666
1549
  exports.CreateChannelCommand = CreateChannelCommand;
1667
- exports.CreateChannelInputFilterSensitiveLog = CreateChannelInputFilterSensitiveLog;
1668
1550
  exports.CreateSpaceCommand = CreateSpaceCommand;
1669
- exports.CreateSpaceInputFilterSensitiveLog = CreateSpaceInputFilterSensitiveLog;
1670
1551
  exports.DeleteSpaceCommand = DeleteSpaceCommand;
1671
1552
  exports.DeregisterAdminCommand = DeregisterAdminCommand;
1672
1553
  exports.FeatureEnableParameter = FeatureEnableParameter;
1673
1554
  exports.FeatureEnableStatus = FeatureEnableStatus;
1674
1555
  exports.GetChannelCommand = GetChannelCommand;
1675
- exports.GetChannelOutputFilterSensitiveLog = GetChannelOutputFilterSensitiveLog;
1676
1556
  exports.GetSpaceCommand = GetSpaceCommand;
1677
- exports.GetSpaceOutputFilterSensitiveLog = GetSpaceOutputFilterSensitiveLog;
1678
- exports.InternalServerException = InternalServerException;
1557
+ exports.InternalServerException = InternalServerException$1;
1679
1558
  exports.ListChannelsCommand = ListChannelsCommand;
1680
- exports.ListChannelsOutputFilterSensitiveLog = ListChannelsOutputFilterSensitiveLog;
1681
1559
  exports.ListSpacesCommand = ListSpacesCommand;
1682
- exports.ListSpacesOutputFilterSensitiveLog = ListSpacesOutputFilterSensitiveLog;
1683
1560
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1684
- exports.ListTagsForResourceResponseFilterSensitiveLog = ListTagsForResourceResponseFilterSensitiveLog;
1685
1561
  exports.RegisterAdminCommand = RegisterAdminCommand;
1686
1562
  exports.Repostspace = Repostspace;
1687
1563
  exports.RepostspaceClient = RepostspaceClient;
1688
- exports.RepostspaceServiceException = RepostspaceServiceException;
1689
- exports.ResourceNotFoundException = ResourceNotFoundException;
1564
+ exports.RepostspaceServiceException = RepostspaceServiceException$1;
1565
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1690
1566
  exports.Role = Role;
1691
1567
  exports.SendInvitesCommand = SendInvitesCommand;
1692
- exports.SendInvitesInputFilterSensitiveLog = SendInvitesInputFilterSensitiveLog;
1693
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1694
- exports.SpaceDataFilterSensitiveLog = SpaceDataFilterSensitiveLog;
1695
- exports.SupportedEmailDomainsParametersFilterSensitiveLog = SupportedEmailDomainsParametersFilterSensitiveLog;
1696
- exports.SupportedEmailDomainsStatusFilterSensitiveLog = SupportedEmailDomainsStatusFilterSensitiveLog;
1568
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1697
1569
  exports.TagResourceCommand = TagResourceCommand;
1698
- exports.TagResourceRequestFilterSensitiveLog = TagResourceRequestFilterSensitiveLog;
1699
- exports.ThrottlingException = ThrottlingException;
1570
+ exports.ThrottlingException = ThrottlingException$1;
1700
1571
  exports.TierLevel = TierLevel;
1701
1572
  exports.UntagResourceCommand = UntagResourceCommand;
1702
1573
  exports.UpdateChannelCommand = UpdateChannelCommand;
1703
- exports.UpdateChannelInputFilterSensitiveLog = UpdateChannelInputFilterSensitiveLog;
1704
1574
  exports.UpdateSpaceCommand = UpdateSpaceCommand;
1705
- exports.UpdateSpaceInputFilterSensitiveLog = UpdateSpaceInputFilterSensitiveLog;
1706
- exports.ValidationException = ValidationException;
1575
+ exports.ValidationException = ValidationException$1;
1707
1576
  exports.ValidationExceptionReason = ValidationExceptionReason;
1708
1577
  exports.VanityDomainStatus = VanityDomainStatus;
1709
1578
  exports.paginateListChannels = paginateListChannels;