@aws-sdk/client-cleanrooms 3.716.0 → 3.723.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 CHANGED
@@ -307,7 +307,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
307
307
  }, "resolveRuntimeExtensions");
308
308
 
309
309
  // src/CleanRoomsClient.ts
310
- var _CleanRoomsClient = class _CleanRoomsClient extends import_smithy_client.Client {
310
+ var CleanRoomsClient = class extends import_smithy_client.Client {
311
+ static {
312
+ __name(this, "CleanRoomsClient");
313
+ }
314
+ /**
315
+ * The resolved configuration of CleanRoomsClient class. This is resolved and normalized from the {@link CleanRoomsClientConfig | constructor configuration interface}.
316
+ */
317
+ config;
311
318
  constructor(...[configuration]) {
312
319
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
313
320
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -317,7 +324,7 @@ var _CleanRoomsClient = class _CleanRoomsClient extends import_smithy_client.Cli
317
324
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
318
325
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
319
326
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
320
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
327
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
321
328
  super(_config_8);
322
329
  this.config = _config_8;
323
330
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -345,8 +352,6 @@ var _CleanRoomsClient = class _CleanRoomsClient extends import_smithy_client.Cli
345
352
  super.destroy();
346
353
  }
347
354
  };
348
- __name(_CleanRoomsClient, "CleanRoomsClient");
349
- var CleanRoomsClient = _CleanRoomsClient;
350
355
 
351
356
  // src/CleanRooms.ts
352
357
 
@@ -361,7 +366,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
361
366
 
362
367
  // src/models/CleanRoomsServiceException.ts
363
368
 
364
- var _CleanRoomsServiceException = class _CleanRoomsServiceException extends import_smithy_client.ServiceException {
369
+ var CleanRoomsServiceException = class _CleanRoomsServiceException extends import_smithy_client.ServiceException {
370
+ static {
371
+ __name(this, "CleanRoomsServiceException");
372
+ }
365
373
  /**
366
374
  * @internal
367
375
  */
@@ -370,14 +378,22 @@ var _CleanRoomsServiceException = class _CleanRoomsServiceException extends impo
370
378
  Object.setPrototypeOf(this, _CleanRoomsServiceException.prototype);
371
379
  }
372
380
  };
373
- __name(_CleanRoomsServiceException, "CleanRoomsServiceException");
374
- var CleanRoomsServiceException = _CleanRoomsServiceException;
375
381
 
376
382
  // src/models/models_0.ts
377
383
  var AccessDeniedExceptionReason = {
378
384
  INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS"
379
385
  };
380
- var _AccessDeniedException = class _AccessDeniedException extends CleanRoomsServiceException {
386
+ var AccessDeniedException = class _AccessDeniedException extends CleanRoomsServiceException {
387
+ static {
388
+ __name(this, "AccessDeniedException");
389
+ }
390
+ name = "AccessDeniedException";
391
+ $fault = "client";
392
+ /**
393
+ * <p>A reason code for the exception.</p>
394
+ * @public
395
+ */
396
+ reason;
381
397
  /**
382
398
  * @internal
383
399
  */
@@ -387,14 +403,10 @@ var _AccessDeniedException = class _AccessDeniedException extends CleanRoomsServ
387
403
  $fault: "client",
388
404
  ...opts
389
405
  });
390
- this.name = "AccessDeniedException";
391
- this.$fault = "client";
392
406
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
393
407
  this.reason = opts.reason;
394
408
  }
395
409
  };
396
- __name(_AccessDeniedException, "AccessDeniedException");
397
- var AccessDeniedException = _AccessDeniedException;
398
410
  var AdditionalAnalyses = {
399
411
  ALLOWED: "ALLOWED",
400
412
  NOT_ALLOWED: "NOT_ALLOWED",
@@ -542,7 +554,27 @@ var ResourceType = {
542
554
  CONFIGURED_TABLE_ASSOCIATION: "CONFIGURED_TABLE_ASSOCIATION",
543
555
  MEMBERSHIP: "MEMBERSHIP"
544
556
  };
545
- var _ConflictException = class _ConflictException extends CleanRoomsServiceException {
557
+ var ConflictException = class _ConflictException extends CleanRoomsServiceException {
558
+ static {
559
+ __name(this, "ConflictException");
560
+ }
561
+ name = "ConflictException";
562
+ $fault = "client";
563
+ /**
564
+ * <p>The ID of the conflicting resource.</p>
565
+ * @public
566
+ */
567
+ resourceId;
568
+ /**
569
+ * <p>The type of the conflicting resource.</p>
570
+ * @public
571
+ */
572
+ resourceType;
573
+ /**
574
+ * <p>A reason code for the exception.</p>
575
+ * @public
576
+ */
577
+ reason;
546
578
  /**
547
579
  * @internal
548
580
  */
@@ -552,17 +584,18 @@ var _ConflictException = class _ConflictException extends CleanRoomsServiceExcep
552
584
  $fault: "client",
553
585
  ...opts
554
586
  });
555
- this.name = "ConflictException";
556
- this.$fault = "client";
557
587
  Object.setPrototypeOf(this, _ConflictException.prototype);
558
588
  this.resourceId = opts.resourceId;
559
589
  this.resourceType = opts.resourceType;
560
590
  this.reason = opts.reason;
561
591
  }
562
592
  };
563
- __name(_ConflictException, "ConflictException");
564
- var ConflictException = _ConflictException;
565
- var _InternalServerException = class _InternalServerException extends CleanRoomsServiceException {
593
+ var InternalServerException = class _InternalServerException extends CleanRoomsServiceException {
594
+ static {
595
+ __name(this, "InternalServerException");
596
+ }
597
+ name = "InternalServerException";
598
+ $fault = "server";
566
599
  /**
567
600
  * @internal
568
601
  */
@@ -572,14 +605,25 @@ var _InternalServerException = class _InternalServerException extends CleanRooms
572
605
  $fault: "server",
573
606
  ...opts
574
607
  });
575
- this.name = "InternalServerException";
576
- this.$fault = "server";
577
608
  Object.setPrototypeOf(this, _InternalServerException.prototype);
578
609
  }
579
610
  };
580
- __name(_InternalServerException, "InternalServerException");
581
- var InternalServerException = _InternalServerException;
582
- var _ResourceNotFoundException = class _ResourceNotFoundException extends CleanRoomsServiceException {
611
+ var ResourceNotFoundException = class _ResourceNotFoundException extends CleanRoomsServiceException {
612
+ static {
613
+ __name(this, "ResourceNotFoundException");
614
+ }
615
+ name = "ResourceNotFoundException";
616
+ $fault = "client";
617
+ /**
618
+ * <p>The Id of the missing resource.</p>
619
+ * @public
620
+ */
621
+ resourceId;
622
+ /**
623
+ * <p>The type of the missing resource.</p>
624
+ * @public
625
+ */
626
+ resourceType;
583
627
  /**
584
628
  * @internal
585
629
  */
@@ -589,16 +633,27 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends CleanR
589
633
  $fault: "client",
590
634
  ...opts
591
635
  });
592
- this.name = "ResourceNotFoundException";
593
- this.$fault = "client";
594
636
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
595
637
  this.resourceId = opts.resourceId;
596
638
  this.resourceType = opts.resourceType;
597
639
  }
598
640
  };
599
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
600
- var ResourceNotFoundException = _ResourceNotFoundException;
601
- var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends CleanRoomsServiceException {
641
+ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends CleanRoomsServiceException {
642
+ static {
643
+ __name(this, "ServiceQuotaExceededException");
644
+ }
645
+ name = "ServiceQuotaExceededException";
646
+ $fault = "client";
647
+ /**
648
+ * <p>The name of the quota.</p>
649
+ * @public
650
+ */
651
+ quotaName;
652
+ /**
653
+ * <p>The value of the quota.</p>
654
+ * @public
655
+ */
656
+ quotaValue;
602
657
  /**
603
658
  * @internal
604
659
  */
@@ -608,16 +663,17 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
608
663
  $fault: "client",
609
664
  ...opts
610
665
  });
611
- this.name = "ServiceQuotaExceededException";
612
- this.$fault = "client";
613
666
  Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
614
667
  this.quotaName = opts.quotaName;
615
668
  this.quotaValue = opts.quotaValue;
616
669
  }
617
670
  };
618
- __name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
619
- var ServiceQuotaExceededException = _ServiceQuotaExceededException;
620
- var _ThrottlingException = class _ThrottlingException extends CleanRoomsServiceException {
671
+ var ThrottlingException = class _ThrottlingException extends CleanRoomsServiceException {
672
+ static {
673
+ __name(this, "ThrottlingException");
674
+ }
675
+ name = "ThrottlingException";
676
+ $fault = "client";
621
677
  /**
622
678
  * @internal
623
679
  */
@@ -627,20 +683,31 @@ var _ThrottlingException = class _ThrottlingException extends CleanRoomsServiceE
627
683
  $fault: "client",
628
684
  ...opts
629
685
  });
630
- this.name = "ThrottlingException";
631
- this.$fault = "client";
632
686
  Object.setPrototypeOf(this, _ThrottlingException.prototype);
633
687
  }
634
688
  };
635
- __name(_ThrottlingException, "ThrottlingException");
636
- var ThrottlingException = _ThrottlingException;
637
689
  var ValidationExceptionReason = {
638
690
  FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
639
691
  IAM_SYNCHRONIZATION_DELAY: "IAM_SYNCHRONIZATION_DELAY",
640
692
  INVALID_CONFIGURATION: "INVALID_CONFIGURATION",
641
693
  INVALID_QUERY: "INVALID_QUERY"
642
694
  };
643
- var _ValidationException = class _ValidationException extends CleanRoomsServiceException {
695
+ var ValidationException = class _ValidationException extends CleanRoomsServiceException {
696
+ static {
697
+ __name(this, "ValidationException");
698
+ }
699
+ name = "ValidationException";
700
+ $fault = "client";
701
+ /**
702
+ * <p>A reason code for the exception.</p>
703
+ * @public
704
+ */
705
+ reason;
706
+ /**
707
+ * <p>Validation errors for specific input parameters.</p>
708
+ * @public
709
+ */
710
+ fieldList;
644
711
  /**
645
712
  * @internal
646
713
  */
@@ -650,15 +717,11 @@ var _ValidationException = class _ValidationException extends CleanRoomsServiceE
650
717
  $fault: "client",
651
718
  ...opts
652
719
  });
653
- this.name = "ValidationException";
654
- this.$fault = "client";
655
720
  Object.setPrototypeOf(this, _ValidationException.prototype);
656
721
  this.reason = opts.reason;
657
722
  this.fieldList = opts.fieldList;
658
723
  }
659
724
  };
660
- __name(_ValidationException, "ValidationException");
661
- var ValidationException = _ValidationException;
662
725
  var AnalysisType = {
663
726
  ADDITIONAL_ANALYSIS: "ADDITIONAL_ANALYSIS",
664
727
  DIRECT_ANALYSIS: "DIRECT_ANALYSIS"
@@ -4105,911 +4168,976 @@ var _sT = "schemaType";
4105
4168
  var _tK = "tagKeys";
4106
4169
 
4107
4170
  // src/commands/BatchGetCollaborationAnalysisTemplateCommand.ts
4108
- var _BatchGetCollaborationAnalysisTemplateCommand = class _BatchGetCollaborationAnalysisTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4171
+ var BatchGetCollaborationAnalysisTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4109
4172
  return [
4110
4173
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4111
4174
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4112
4175
  ];
4113
4176
  }).s("AWSBastionControlPlaneServiceLambda", "BatchGetCollaborationAnalysisTemplate", {}).n("CleanRoomsClient", "BatchGetCollaborationAnalysisTemplateCommand").f(void 0, BatchGetCollaborationAnalysisTemplateOutputFilterSensitiveLog).ser(se_BatchGetCollaborationAnalysisTemplateCommand).de(de_BatchGetCollaborationAnalysisTemplateCommand).build() {
4177
+ static {
4178
+ __name(this, "BatchGetCollaborationAnalysisTemplateCommand");
4179
+ }
4114
4180
  };
4115
- __name(_BatchGetCollaborationAnalysisTemplateCommand, "BatchGetCollaborationAnalysisTemplateCommand");
4116
- var BatchGetCollaborationAnalysisTemplateCommand = _BatchGetCollaborationAnalysisTemplateCommand;
4117
4181
 
4118
4182
  // src/commands/BatchGetSchemaAnalysisRuleCommand.ts
4119
4183
 
4120
4184
 
4121
4185
 
4122
- var _BatchGetSchemaAnalysisRuleCommand = class _BatchGetSchemaAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4186
+ var BatchGetSchemaAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4123
4187
  return [
4124
4188
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4125
4189
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4126
4190
  ];
4127
4191
  }).s("AWSBastionControlPlaneServiceLambda", "BatchGetSchemaAnalysisRule", {}).n("CleanRoomsClient", "BatchGetSchemaAnalysisRuleCommand").f(void 0, void 0).ser(se_BatchGetSchemaAnalysisRuleCommand).de(de_BatchGetSchemaAnalysisRuleCommand).build() {
4192
+ static {
4193
+ __name(this, "BatchGetSchemaAnalysisRuleCommand");
4194
+ }
4128
4195
  };
4129
- __name(_BatchGetSchemaAnalysisRuleCommand, "BatchGetSchemaAnalysisRuleCommand");
4130
- var BatchGetSchemaAnalysisRuleCommand = _BatchGetSchemaAnalysisRuleCommand;
4131
4196
 
4132
4197
  // src/commands/BatchGetSchemaCommand.ts
4133
4198
 
4134
4199
 
4135
4200
 
4136
- var _BatchGetSchemaCommand = class _BatchGetSchemaCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4201
+ var BatchGetSchemaCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4137
4202
  return [
4138
4203
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4139
4204
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4140
4205
  ];
4141
4206
  }).s("AWSBastionControlPlaneServiceLambda", "BatchGetSchema", {}).n("CleanRoomsClient", "BatchGetSchemaCommand").f(void 0, void 0).ser(se_BatchGetSchemaCommand).de(de_BatchGetSchemaCommand).build() {
4207
+ static {
4208
+ __name(this, "BatchGetSchemaCommand");
4209
+ }
4142
4210
  };
4143
- __name(_BatchGetSchemaCommand, "BatchGetSchemaCommand");
4144
- var BatchGetSchemaCommand = _BatchGetSchemaCommand;
4145
4211
 
4146
4212
  // src/commands/CreateAnalysisTemplateCommand.ts
4147
4213
 
4148
4214
 
4149
4215
 
4150
- var _CreateAnalysisTemplateCommand = class _CreateAnalysisTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4216
+ var CreateAnalysisTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4151
4217
  return [
4152
4218
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4153
4219
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4154
4220
  ];
4155
4221
  }).s("AWSBastionControlPlaneServiceLambda", "CreateAnalysisTemplate", {}).n("CleanRoomsClient", "CreateAnalysisTemplateCommand").f(CreateAnalysisTemplateInputFilterSensitiveLog, CreateAnalysisTemplateOutputFilterSensitiveLog).ser(se_CreateAnalysisTemplateCommand).de(de_CreateAnalysisTemplateCommand).build() {
4222
+ static {
4223
+ __name(this, "CreateAnalysisTemplateCommand");
4224
+ }
4156
4225
  };
4157
- __name(_CreateAnalysisTemplateCommand, "CreateAnalysisTemplateCommand");
4158
- var CreateAnalysisTemplateCommand = _CreateAnalysisTemplateCommand;
4159
4226
 
4160
4227
  // src/commands/CreateCollaborationCommand.ts
4161
4228
 
4162
4229
 
4163
4230
 
4164
- var _CreateCollaborationCommand = class _CreateCollaborationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4231
+ var CreateCollaborationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4165
4232
  return [
4166
4233
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4167
4234
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4168
4235
  ];
4169
4236
  }).s("AWSBastionControlPlaneServiceLambda", "CreateCollaboration", {}).n("CleanRoomsClient", "CreateCollaborationCommand").f(void 0, void 0).ser(se_CreateCollaborationCommand).de(de_CreateCollaborationCommand).build() {
4237
+ static {
4238
+ __name(this, "CreateCollaborationCommand");
4239
+ }
4170
4240
  };
4171
- __name(_CreateCollaborationCommand, "CreateCollaborationCommand");
4172
- var CreateCollaborationCommand = _CreateCollaborationCommand;
4173
4241
 
4174
4242
  // src/commands/CreateConfiguredAudienceModelAssociationCommand.ts
4175
4243
 
4176
4244
 
4177
4245
 
4178
- var _CreateConfiguredAudienceModelAssociationCommand = class _CreateConfiguredAudienceModelAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4246
+ var CreateConfiguredAudienceModelAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4179
4247
  return [
4180
4248
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4181
4249
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4182
4250
  ];
4183
4251
  }).s("AWSBastionControlPlaneServiceLambda", "CreateConfiguredAudienceModelAssociation", {}).n("CleanRoomsClient", "CreateConfiguredAudienceModelAssociationCommand").f(void 0, void 0).ser(se_CreateConfiguredAudienceModelAssociationCommand).de(de_CreateConfiguredAudienceModelAssociationCommand).build() {
4252
+ static {
4253
+ __name(this, "CreateConfiguredAudienceModelAssociationCommand");
4254
+ }
4184
4255
  };
4185
- __name(_CreateConfiguredAudienceModelAssociationCommand, "CreateConfiguredAudienceModelAssociationCommand");
4186
- var CreateConfiguredAudienceModelAssociationCommand = _CreateConfiguredAudienceModelAssociationCommand;
4187
4256
 
4188
4257
  // src/commands/CreateConfiguredTableAnalysisRuleCommand.ts
4189
4258
 
4190
4259
 
4191
4260
 
4192
- var _CreateConfiguredTableAnalysisRuleCommand = class _CreateConfiguredTableAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4261
+ var CreateConfiguredTableAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4193
4262
  return [
4194
4263
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4195
4264
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4196
4265
  ];
4197
4266
  }).s("AWSBastionControlPlaneServiceLambda", "CreateConfiguredTableAnalysisRule", {}).n("CleanRoomsClient", "CreateConfiguredTableAnalysisRuleCommand").f(void 0, void 0).ser(se_CreateConfiguredTableAnalysisRuleCommand).de(de_CreateConfiguredTableAnalysisRuleCommand).build() {
4267
+ static {
4268
+ __name(this, "CreateConfiguredTableAnalysisRuleCommand");
4269
+ }
4198
4270
  };
4199
- __name(_CreateConfiguredTableAnalysisRuleCommand, "CreateConfiguredTableAnalysisRuleCommand");
4200
- var CreateConfiguredTableAnalysisRuleCommand = _CreateConfiguredTableAnalysisRuleCommand;
4201
4271
 
4202
4272
  // src/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.ts
4203
4273
 
4204
4274
 
4205
4275
 
4206
- var _CreateConfiguredTableAssociationAnalysisRuleCommand = class _CreateConfiguredTableAssociationAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4276
+ var CreateConfiguredTableAssociationAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4207
4277
  return [
4208
4278
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4209
4279
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4210
4280
  ];
4211
4281
  }).s("AWSBastionControlPlaneServiceLambda", "CreateConfiguredTableAssociationAnalysisRule", {}).n("CleanRoomsClient", "CreateConfiguredTableAssociationAnalysisRuleCommand").f(void 0, void 0).ser(se_CreateConfiguredTableAssociationAnalysisRuleCommand).de(de_CreateConfiguredTableAssociationAnalysisRuleCommand).build() {
4282
+ static {
4283
+ __name(this, "CreateConfiguredTableAssociationAnalysisRuleCommand");
4284
+ }
4212
4285
  };
4213
- __name(_CreateConfiguredTableAssociationAnalysisRuleCommand, "CreateConfiguredTableAssociationAnalysisRuleCommand");
4214
- var CreateConfiguredTableAssociationAnalysisRuleCommand = _CreateConfiguredTableAssociationAnalysisRuleCommand;
4215
4286
 
4216
4287
  // src/commands/CreateConfiguredTableAssociationCommand.ts
4217
4288
 
4218
4289
 
4219
4290
 
4220
- var _CreateConfiguredTableAssociationCommand = class _CreateConfiguredTableAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4291
+ var CreateConfiguredTableAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4221
4292
  return [
4222
4293
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4223
4294
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4224
4295
  ];
4225
4296
  }).s("AWSBastionControlPlaneServiceLambda", "CreateConfiguredTableAssociation", {}).n("CleanRoomsClient", "CreateConfiguredTableAssociationCommand").f(void 0, void 0).ser(se_CreateConfiguredTableAssociationCommand).de(de_CreateConfiguredTableAssociationCommand).build() {
4297
+ static {
4298
+ __name(this, "CreateConfiguredTableAssociationCommand");
4299
+ }
4226
4300
  };
4227
- __name(_CreateConfiguredTableAssociationCommand, "CreateConfiguredTableAssociationCommand");
4228
- var CreateConfiguredTableAssociationCommand = _CreateConfiguredTableAssociationCommand;
4229
4301
 
4230
4302
  // src/commands/CreateConfiguredTableCommand.ts
4231
4303
 
4232
4304
 
4233
4305
 
4234
- var _CreateConfiguredTableCommand = class _CreateConfiguredTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4306
+ var CreateConfiguredTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4235
4307
  return [
4236
4308
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4237
4309
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4238
4310
  ];
4239
4311
  }).s("AWSBastionControlPlaneServiceLambda", "CreateConfiguredTable", {}).n("CleanRoomsClient", "CreateConfiguredTableCommand").f(void 0, void 0).ser(se_CreateConfiguredTableCommand).de(de_CreateConfiguredTableCommand).build() {
4312
+ static {
4313
+ __name(this, "CreateConfiguredTableCommand");
4314
+ }
4240
4315
  };
4241
- __name(_CreateConfiguredTableCommand, "CreateConfiguredTableCommand");
4242
- var CreateConfiguredTableCommand = _CreateConfiguredTableCommand;
4243
4316
 
4244
4317
  // src/commands/CreateIdMappingTableCommand.ts
4245
4318
 
4246
4319
 
4247
4320
 
4248
- var _CreateIdMappingTableCommand = class _CreateIdMappingTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4321
+ var CreateIdMappingTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4249
4322
  return [
4250
4323
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4251
4324
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4252
4325
  ];
4253
4326
  }).s("AWSBastionControlPlaneServiceLambda", "CreateIdMappingTable", {}).n("CleanRoomsClient", "CreateIdMappingTableCommand").f(void 0, void 0).ser(se_CreateIdMappingTableCommand).de(de_CreateIdMappingTableCommand).build() {
4327
+ static {
4328
+ __name(this, "CreateIdMappingTableCommand");
4329
+ }
4254
4330
  };
4255
- __name(_CreateIdMappingTableCommand, "CreateIdMappingTableCommand");
4256
- var CreateIdMappingTableCommand = _CreateIdMappingTableCommand;
4257
4331
 
4258
4332
  // src/commands/CreateIdNamespaceAssociationCommand.ts
4259
4333
 
4260
4334
 
4261
4335
 
4262
- var _CreateIdNamespaceAssociationCommand = class _CreateIdNamespaceAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4336
+ var CreateIdNamespaceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4263
4337
  return [
4264
4338
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4265
4339
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4266
4340
  ];
4267
4341
  }).s("AWSBastionControlPlaneServiceLambda", "CreateIdNamespaceAssociation", {}).n("CleanRoomsClient", "CreateIdNamespaceAssociationCommand").f(void 0, void 0).ser(se_CreateIdNamespaceAssociationCommand).de(de_CreateIdNamespaceAssociationCommand).build() {
4342
+ static {
4343
+ __name(this, "CreateIdNamespaceAssociationCommand");
4344
+ }
4268
4345
  };
4269
- __name(_CreateIdNamespaceAssociationCommand, "CreateIdNamespaceAssociationCommand");
4270
- var CreateIdNamespaceAssociationCommand = _CreateIdNamespaceAssociationCommand;
4271
4346
 
4272
4347
  // src/commands/CreateMembershipCommand.ts
4273
4348
 
4274
4349
 
4275
4350
 
4276
- var _CreateMembershipCommand = class _CreateMembershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4351
+ var CreateMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4277
4352
  return [
4278
4353
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4279
4354
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4280
4355
  ];
4281
4356
  }).s("AWSBastionControlPlaneServiceLambda", "CreateMembership", {}).n("CleanRoomsClient", "CreateMembershipCommand").f(void 0, void 0).ser(se_CreateMembershipCommand).de(de_CreateMembershipCommand).build() {
4357
+ static {
4358
+ __name(this, "CreateMembershipCommand");
4359
+ }
4282
4360
  };
4283
- __name(_CreateMembershipCommand, "CreateMembershipCommand");
4284
- var CreateMembershipCommand = _CreateMembershipCommand;
4285
4361
 
4286
4362
  // src/commands/CreatePrivacyBudgetTemplateCommand.ts
4287
4363
 
4288
4364
 
4289
4365
 
4290
- var _CreatePrivacyBudgetTemplateCommand = class _CreatePrivacyBudgetTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4366
+ var CreatePrivacyBudgetTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4291
4367
  return [
4292
4368
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4293
4369
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4294
4370
  ];
4295
4371
  }).s("AWSBastionControlPlaneServiceLambda", "CreatePrivacyBudgetTemplate", {}).n("CleanRoomsClient", "CreatePrivacyBudgetTemplateCommand").f(void 0, void 0).ser(se_CreatePrivacyBudgetTemplateCommand).de(de_CreatePrivacyBudgetTemplateCommand).build() {
4372
+ static {
4373
+ __name(this, "CreatePrivacyBudgetTemplateCommand");
4374
+ }
4296
4375
  };
4297
- __name(_CreatePrivacyBudgetTemplateCommand, "CreatePrivacyBudgetTemplateCommand");
4298
- var CreatePrivacyBudgetTemplateCommand = _CreatePrivacyBudgetTemplateCommand;
4299
4376
 
4300
4377
  // src/commands/DeleteAnalysisTemplateCommand.ts
4301
4378
 
4302
4379
 
4303
4380
 
4304
- var _DeleteAnalysisTemplateCommand = class _DeleteAnalysisTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4381
+ var DeleteAnalysisTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4305
4382
  return [
4306
4383
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4307
4384
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4308
4385
  ];
4309
4386
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteAnalysisTemplate", {}).n("CleanRoomsClient", "DeleteAnalysisTemplateCommand").f(void 0, void 0).ser(se_DeleteAnalysisTemplateCommand).de(de_DeleteAnalysisTemplateCommand).build() {
4387
+ static {
4388
+ __name(this, "DeleteAnalysisTemplateCommand");
4389
+ }
4310
4390
  };
4311
- __name(_DeleteAnalysisTemplateCommand, "DeleteAnalysisTemplateCommand");
4312
- var DeleteAnalysisTemplateCommand = _DeleteAnalysisTemplateCommand;
4313
4391
 
4314
4392
  // src/commands/DeleteCollaborationCommand.ts
4315
4393
 
4316
4394
 
4317
4395
 
4318
- var _DeleteCollaborationCommand = class _DeleteCollaborationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4396
+ var DeleteCollaborationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4319
4397
  return [
4320
4398
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4321
4399
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4322
4400
  ];
4323
4401
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteCollaboration", {}).n("CleanRoomsClient", "DeleteCollaborationCommand").f(void 0, void 0).ser(se_DeleteCollaborationCommand).de(de_DeleteCollaborationCommand).build() {
4402
+ static {
4403
+ __name(this, "DeleteCollaborationCommand");
4404
+ }
4324
4405
  };
4325
- __name(_DeleteCollaborationCommand, "DeleteCollaborationCommand");
4326
- var DeleteCollaborationCommand = _DeleteCollaborationCommand;
4327
4406
 
4328
4407
  // src/commands/DeleteConfiguredAudienceModelAssociationCommand.ts
4329
4408
 
4330
4409
 
4331
4410
 
4332
- var _DeleteConfiguredAudienceModelAssociationCommand = class _DeleteConfiguredAudienceModelAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4411
+ var DeleteConfiguredAudienceModelAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4333
4412
  return [
4334
4413
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4335
4414
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4336
4415
  ];
4337
4416
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteConfiguredAudienceModelAssociation", {}).n("CleanRoomsClient", "DeleteConfiguredAudienceModelAssociationCommand").f(void 0, void 0).ser(se_DeleteConfiguredAudienceModelAssociationCommand).de(de_DeleteConfiguredAudienceModelAssociationCommand).build() {
4417
+ static {
4418
+ __name(this, "DeleteConfiguredAudienceModelAssociationCommand");
4419
+ }
4338
4420
  };
4339
- __name(_DeleteConfiguredAudienceModelAssociationCommand, "DeleteConfiguredAudienceModelAssociationCommand");
4340
- var DeleteConfiguredAudienceModelAssociationCommand = _DeleteConfiguredAudienceModelAssociationCommand;
4341
4421
 
4342
4422
  // src/commands/DeleteConfiguredTableAnalysisRuleCommand.ts
4343
4423
 
4344
4424
 
4345
4425
 
4346
- var _DeleteConfiguredTableAnalysisRuleCommand = class _DeleteConfiguredTableAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4426
+ var DeleteConfiguredTableAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4347
4427
  return [
4348
4428
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4349
4429
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4350
4430
  ];
4351
4431
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteConfiguredTableAnalysisRule", {}).n("CleanRoomsClient", "DeleteConfiguredTableAnalysisRuleCommand").f(void 0, void 0).ser(se_DeleteConfiguredTableAnalysisRuleCommand).de(de_DeleteConfiguredTableAnalysisRuleCommand).build() {
4432
+ static {
4433
+ __name(this, "DeleteConfiguredTableAnalysisRuleCommand");
4434
+ }
4352
4435
  };
4353
- __name(_DeleteConfiguredTableAnalysisRuleCommand, "DeleteConfiguredTableAnalysisRuleCommand");
4354
- var DeleteConfiguredTableAnalysisRuleCommand = _DeleteConfiguredTableAnalysisRuleCommand;
4355
4436
 
4356
4437
  // src/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.ts
4357
4438
 
4358
4439
 
4359
4440
 
4360
- var _DeleteConfiguredTableAssociationAnalysisRuleCommand = class _DeleteConfiguredTableAssociationAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4441
+ var DeleteConfiguredTableAssociationAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4361
4442
  return [
4362
4443
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4363
4444
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4364
4445
  ];
4365
4446
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteConfiguredTableAssociationAnalysisRule", {}).n("CleanRoomsClient", "DeleteConfiguredTableAssociationAnalysisRuleCommand").f(void 0, void 0).ser(se_DeleteConfiguredTableAssociationAnalysisRuleCommand).de(de_DeleteConfiguredTableAssociationAnalysisRuleCommand).build() {
4447
+ static {
4448
+ __name(this, "DeleteConfiguredTableAssociationAnalysisRuleCommand");
4449
+ }
4366
4450
  };
4367
- __name(_DeleteConfiguredTableAssociationAnalysisRuleCommand, "DeleteConfiguredTableAssociationAnalysisRuleCommand");
4368
- var DeleteConfiguredTableAssociationAnalysisRuleCommand = _DeleteConfiguredTableAssociationAnalysisRuleCommand;
4369
4451
 
4370
4452
  // src/commands/DeleteConfiguredTableAssociationCommand.ts
4371
4453
 
4372
4454
 
4373
4455
 
4374
- var _DeleteConfiguredTableAssociationCommand = class _DeleteConfiguredTableAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4456
+ var DeleteConfiguredTableAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4375
4457
  return [
4376
4458
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4377
4459
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4378
4460
  ];
4379
4461
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteConfiguredTableAssociation", {}).n("CleanRoomsClient", "DeleteConfiguredTableAssociationCommand").f(void 0, void 0).ser(se_DeleteConfiguredTableAssociationCommand).de(de_DeleteConfiguredTableAssociationCommand).build() {
4462
+ static {
4463
+ __name(this, "DeleteConfiguredTableAssociationCommand");
4464
+ }
4380
4465
  };
4381
- __name(_DeleteConfiguredTableAssociationCommand, "DeleteConfiguredTableAssociationCommand");
4382
- var DeleteConfiguredTableAssociationCommand = _DeleteConfiguredTableAssociationCommand;
4383
4466
 
4384
4467
  // src/commands/DeleteConfiguredTableCommand.ts
4385
4468
 
4386
4469
 
4387
4470
 
4388
- var _DeleteConfiguredTableCommand = class _DeleteConfiguredTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4471
+ var DeleteConfiguredTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4389
4472
  return [
4390
4473
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4391
4474
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4392
4475
  ];
4393
4476
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteConfiguredTable", {}).n("CleanRoomsClient", "DeleteConfiguredTableCommand").f(void 0, void 0).ser(se_DeleteConfiguredTableCommand).de(de_DeleteConfiguredTableCommand).build() {
4477
+ static {
4478
+ __name(this, "DeleteConfiguredTableCommand");
4479
+ }
4394
4480
  };
4395
- __name(_DeleteConfiguredTableCommand, "DeleteConfiguredTableCommand");
4396
- var DeleteConfiguredTableCommand = _DeleteConfiguredTableCommand;
4397
4481
 
4398
4482
  // src/commands/DeleteIdMappingTableCommand.ts
4399
4483
 
4400
4484
 
4401
4485
 
4402
- var _DeleteIdMappingTableCommand = class _DeleteIdMappingTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4486
+ var DeleteIdMappingTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4403
4487
  return [
4404
4488
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4405
4489
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4406
4490
  ];
4407
4491
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteIdMappingTable", {}).n("CleanRoomsClient", "DeleteIdMappingTableCommand").f(void 0, void 0).ser(se_DeleteIdMappingTableCommand).de(de_DeleteIdMappingTableCommand).build() {
4492
+ static {
4493
+ __name(this, "DeleteIdMappingTableCommand");
4494
+ }
4408
4495
  };
4409
- __name(_DeleteIdMappingTableCommand, "DeleteIdMappingTableCommand");
4410
- var DeleteIdMappingTableCommand = _DeleteIdMappingTableCommand;
4411
4496
 
4412
4497
  // src/commands/DeleteIdNamespaceAssociationCommand.ts
4413
4498
 
4414
4499
 
4415
4500
 
4416
- var _DeleteIdNamespaceAssociationCommand = class _DeleteIdNamespaceAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4501
+ var DeleteIdNamespaceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4417
4502
  return [
4418
4503
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4419
4504
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4420
4505
  ];
4421
4506
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteIdNamespaceAssociation", {}).n("CleanRoomsClient", "DeleteIdNamespaceAssociationCommand").f(void 0, void 0).ser(se_DeleteIdNamespaceAssociationCommand).de(de_DeleteIdNamespaceAssociationCommand).build() {
4507
+ static {
4508
+ __name(this, "DeleteIdNamespaceAssociationCommand");
4509
+ }
4422
4510
  };
4423
- __name(_DeleteIdNamespaceAssociationCommand, "DeleteIdNamespaceAssociationCommand");
4424
- var DeleteIdNamespaceAssociationCommand = _DeleteIdNamespaceAssociationCommand;
4425
4511
 
4426
4512
  // src/commands/DeleteMemberCommand.ts
4427
4513
 
4428
4514
 
4429
4515
 
4430
- var _DeleteMemberCommand = class _DeleteMemberCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4516
+ var DeleteMemberCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4431
4517
  return [
4432
4518
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4433
4519
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4434
4520
  ];
4435
4521
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteMember", {}).n("CleanRoomsClient", "DeleteMemberCommand").f(void 0, void 0).ser(se_DeleteMemberCommand).de(de_DeleteMemberCommand).build() {
4522
+ static {
4523
+ __name(this, "DeleteMemberCommand");
4524
+ }
4436
4525
  };
4437
- __name(_DeleteMemberCommand, "DeleteMemberCommand");
4438
- var DeleteMemberCommand = _DeleteMemberCommand;
4439
4526
 
4440
4527
  // src/commands/DeleteMembershipCommand.ts
4441
4528
 
4442
4529
 
4443
4530
 
4444
- var _DeleteMembershipCommand = class _DeleteMembershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4531
+ var DeleteMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4445
4532
  return [
4446
4533
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4447
4534
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4448
4535
  ];
4449
4536
  }).s("AWSBastionControlPlaneServiceLambda", "DeleteMembership", {}).n("CleanRoomsClient", "DeleteMembershipCommand").f(void 0, void 0).ser(se_DeleteMembershipCommand).de(de_DeleteMembershipCommand).build() {
4537
+ static {
4538
+ __name(this, "DeleteMembershipCommand");
4539
+ }
4450
4540
  };
4451
- __name(_DeleteMembershipCommand, "DeleteMembershipCommand");
4452
- var DeleteMembershipCommand = _DeleteMembershipCommand;
4453
4541
 
4454
4542
  // src/commands/DeletePrivacyBudgetTemplateCommand.ts
4455
4543
 
4456
4544
 
4457
4545
 
4458
- var _DeletePrivacyBudgetTemplateCommand = class _DeletePrivacyBudgetTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4546
+ var DeletePrivacyBudgetTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4459
4547
  return [
4460
4548
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4461
4549
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4462
4550
  ];
4463
4551
  }).s("AWSBastionControlPlaneServiceLambda", "DeletePrivacyBudgetTemplate", {}).n("CleanRoomsClient", "DeletePrivacyBudgetTemplateCommand").f(void 0, void 0).ser(se_DeletePrivacyBudgetTemplateCommand).de(de_DeletePrivacyBudgetTemplateCommand).build() {
4552
+ static {
4553
+ __name(this, "DeletePrivacyBudgetTemplateCommand");
4554
+ }
4464
4555
  };
4465
- __name(_DeletePrivacyBudgetTemplateCommand, "DeletePrivacyBudgetTemplateCommand");
4466
- var DeletePrivacyBudgetTemplateCommand = _DeletePrivacyBudgetTemplateCommand;
4467
4556
 
4468
4557
  // src/commands/GetAnalysisTemplateCommand.ts
4469
4558
 
4470
4559
 
4471
4560
 
4472
- var _GetAnalysisTemplateCommand = class _GetAnalysisTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4561
+ var GetAnalysisTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4473
4562
  return [
4474
4563
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4475
4564
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4476
4565
  ];
4477
4566
  }).s("AWSBastionControlPlaneServiceLambda", "GetAnalysisTemplate", {}).n("CleanRoomsClient", "GetAnalysisTemplateCommand").f(void 0, GetAnalysisTemplateOutputFilterSensitiveLog).ser(se_GetAnalysisTemplateCommand).de(de_GetAnalysisTemplateCommand).build() {
4567
+ static {
4568
+ __name(this, "GetAnalysisTemplateCommand");
4569
+ }
4478
4570
  };
4479
- __name(_GetAnalysisTemplateCommand, "GetAnalysisTemplateCommand");
4480
- var GetAnalysisTemplateCommand = _GetAnalysisTemplateCommand;
4481
4571
 
4482
4572
  // src/commands/GetCollaborationAnalysisTemplateCommand.ts
4483
4573
 
4484
4574
 
4485
4575
 
4486
- var _GetCollaborationAnalysisTemplateCommand = class _GetCollaborationAnalysisTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4576
+ var GetCollaborationAnalysisTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4487
4577
  return [
4488
4578
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4489
4579
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4490
4580
  ];
4491
4581
  }).s("AWSBastionControlPlaneServiceLambda", "GetCollaborationAnalysisTemplate", {}).n("CleanRoomsClient", "GetCollaborationAnalysisTemplateCommand").f(void 0, GetCollaborationAnalysisTemplateOutputFilterSensitiveLog).ser(se_GetCollaborationAnalysisTemplateCommand).de(de_GetCollaborationAnalysisTemplateCommand).build() {
4582
+ static {
4583
+ __name(this, "GetCollaborationAnalysisTemplateCommand");
4584
+ }
4492
4585
  };
4493
- __name(_GetCollaborationAnalysisTemplateCommand, "GetCollaborationAnalysisTemplateCommand");
4494
- var GetCollaborationAnalysisTemplateCommand = _GetCollaborationAnalysisTemplateCommand;
4495
4586
 
4496
4587
  // src/commands/GetCollaborationCommand.ts
4497
4588
 
4498
4589
 
4499
4590
 
4500
- var _GetCollaborationCommand = class _GetCollaborationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4591
+ var GetCollaborationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4501
4592
  return [
4502
4593
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4503
4594
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4504
4595
  ];
4505
4596
  }).s("AWSBastionControlPlaneServiceLambda", "GetCollaboration", {}).n("CleanRoomsClient", "GetCollaborationCommand").f(void 0, void 0).ser(se_GetCollaborationCommand).de(de_GetCollaborationCommand).build() {
4597
+ static {
4598
+ __name(this, "GetCollaborationCommand");
4599
+ }
4506
4600
  };
4507
- __name(_GetCollaborationCommand, "GetCollaborationCommand");
4508
- var GetCollaborationCommand = _GetCollaborationCommand;
4509
4601
 
4510
4602
  // src/commands/GetCollaborationConfiguredAudienceModelAssociationCommand.ts
4511
4603
 
4512
4604
 
4513
4605
 
4514
- var _GetCollaborationConfiguredAudienceModelAssociationCommand = class _GetCollaborationConfiguredAudienceModelAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4606
+ var GetCollaborationConfiguredAudienceModelAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4515
4607
  return [
4516
4608
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4517
4609
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4518
4610
  ];
4519
4611
  }).s("AWSBastionControlPlaneServiceLambda", "GetCollaborationConfiguredAudienceModelAssociation", {}).n("CleanRoomsClient", "GetCollaborationConfiguredAudienceModelAssociationCommand").f(void 0, void 0).ser(se_GetCollaborationConfiguredAudienceModelAssociationCommand).de(de_GetCollaborationConfiguredAudienceModelAssociationCommand).build() {
4612
+ static {
4613
+ __name(this, "GetCollaborationConfiguredAudienceModelAssociationCommand");
4614
+ }
4520
4615
  };
4521
- __name(_GetCollaborationConfiguredAudienceModelAssociationCommand, "GetCollaborationConfiguredAudienceModelAssociationCommand");
4522
- var GetCollaborationConfiguredAudienceModelAssociationCommand = _GetCollaborationConfiguredAudienceModelAssociationCommand;
4523
4616
 
4524
4617
  // src/commands/GetCollaborationIdNamespaceAssociationCommand.ts
4525
4618
 
4526
4619
 
4527
4620
 
4528
- var _GetCollaborationIdNamespaceAssociationCommand = class _GetCollaborationIdNamespaceAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4621
+ var GetCollaborationIdNamespaceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4529
4622
  return [
4530
4623
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4531
4624
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4532
4625
  ];
4533
4626
  }).s("AWSBastionControlPlaneServiceLambda", "GetCollaborationIdNamespaceAssociation", {}).n("CleanRoomsClient", "GetCollaborationIdNamespaceAssociationCommand").f(void 0, void 0).ser(se_GetCollaborationIdNamespaceAssociationCommand).de(de_GetCollaborationIdNamespaceAssociationCommand).build() {
4627
+ static {
4628
+ __name(this, "GetCollaborationIdNamespaceAssociationCommand");
4629
+ }
4534
4630
  };
4535
- __name(_GetCollaborationIdNamespaceAssociationCommand, "GetCollaborationIdNamespaceAssociationCommand");
4536
- var GetCollaborationIdNamespaceAssociationCommand = _GetCollaborationIdNamespaceAssociationCommand;
4537
4631
 
4538
4632
  // src/commands/GetCollaborationPrivacyBudgetTemplateCommand.ts
4539
4633
 
4540
4634
 
4541
4635
 
4542
- var _GetCollaborationPrivacyBudgetTemplateCommand = class _GetCollaborationPrivacyBudgetTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4636
+ var GetCollaborationPrivacyBudgetTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4543
4637
  return [
4544
4638
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4545
4639
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4546
4640
  ];
4547
4641
  }).s("AWSBastionControlPlaneServiceLambda", "GetCollaborationPrivacyBudgetTemplate", {}).n("CleanRoomsClient", "GetCollaborationPrivacyBudgetTemplateCommand").f(void 0, void 0).ser(se_GetCollaborationPrivacyBudgetTemplateCommand).de(de_GetCollaborationPrivacyBudgetTemplateCommand).build() {
4642
+ static {
4643
+ __name(this, "GetCollaborationPrivacyBudgetTemplateCommand");
4644
+ }
4548
4645
  };
4549
- __name(_GetCollaborationPrivacyBudgetTemplateCommand, "GetCollaborationPrivacyBudgetTemplateCommand");
4550
- var GetCollaborationPrivacyBudgetTemplateCommand = _GetCollaborationPrivacyBudgetTemplateCommand;
4551
4646
 
4552
4647
  // src/commands/GetConfiguredAudienceModelAssociationCommand.ts
4553
4648
 
4554
4649
 
4555
4650
 
4556
- var _GetConfiguredAudienceModelAssociationCommand = class _GetConfiguredAudienceModelAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4651
+ var GetConfiguredAudienceModelAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4557
4652
  return [
4558
4653
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4559
4654
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4560
4655
  ];
4561
4656
  }).s("AWSBastionControlPlaneServiceLambda", "GetConfiguredAudienceModelAssociation", {}).n("CleanRoomsClient", "GetConfiguredAudienceModelAssociationCommand").f(void 0, void 0).ser(se_GetConfiguredAudienceModelAssociationCommand).de(de_GetConfiguredAudienceModelAssociationCommand).build() {
4657
+ static {
4658
+ __name(this, "GetConfiguredAudienceModelAssociationCommand");
4659
+ }
4562
4660
  };
4563
- __name(_GetConfiguredAudienceModelAssociationCommand, "GetConfiguredAudienceModelAssociationCommand");
4564
- var GetConfiguredAudienceModelAssociationCommand = _GetConfiguredAudienceModelAssociationCommand;
4565
4661
 
4566
4662
  // src/commands/GetConfiguredTableAnalysisRuleCommand.ts
4567
4663
 
4568
4664
 
4569
4665
 
4570
- var _GetConfiguredTableAnalysisRuleCommand = class _GetConfiguredTableAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4666
+ var GetConfiguredTableAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4571
4667
  return [
4572
4668
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4573
4669
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4574
4670
  ];
4575
4671
  }).s("AWSBastionControlPlaneServiceLambda", "GetConfiguredTableAnalysisRule", {}).n("CleanRoomsClient", "GetConfiguredTableAnalysisRuleCommand").f(void 0, void 0).ser(se_GetConfiguredTableAnalysisRuleCommand).de(de_GetConfiguredTableAnalysisRuleCommand).build() {
4672
+ static {
4673
+ __name(this, "GetConfiguredTableAnalysisRuleCommand");
4674
+ }
4576
4675
  };
4577
- __name(_GetConfiguredTableAnalysisRuleCommand, "GetConfiguredTableAnalysisRuleCommand");
4578
- var GetConfiguredTableAnalysisRuleCommand = _GetConfiguredTableAnalysisRuleCommand;
4579
4676
 
4580
4677
  // src/commands/GetConfiguredTableAssociationAnalysisRuleCommand.ts
4581
4678
 
4582
4679
 
4583
4680
 
4584
- var _GetConfiguredTableAssociationAnalysisRuleCommand = class _GetConfiguredTableAssociationAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4681
+ var GetConfiguredTableAssociationAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4585
4682
  return [
4586
4683
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4587
4684
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4588
4685
  ];
4589
4686
  }).s("AWSBastionControlPlaneServiceLambda", "GetConfiguredTableAssociationAnalysisRule", {}).n("CleanRoomsClient", "GetConfiguredTableAssociationAnalysisRuleCommand").f(void 0, void 0).ser(se_GetConfiguredTableAssociationAnalysisRuleCommand).de(de_GetConfiguredTableAssociationAnalysisRuleCommand).build() {
4687
+ static {
4688
+ __name(this, "GetConfiguredTableAssociationAnalysisRuleCommand");
4689
+ }
4590
4690
  };
4591
- __name(_GetConfiguredTableAssociationAnalysisRuleCommand, "GetConfiguredTableAssociationAnalysisRuleCommand");
4592
- var GetConfiguredTableAssociationAnalysisRuleCommand = _GetConfiguredTableAssociationAnalysisRuleCommand;
4593
4691
 
4594
4692
  // src/commands/GetConfiguredTableAssociationCommand.ts
4595
4693
 
4596
4694
 
4597
4695
 
4598
- var _GetConfiguredTableAssociationCommand = class _GetConfiguredTableAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4696
+ var GetConfiguredTableAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4599
4697
  return [
4600
4698
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4601
4699
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4602
4700
  ];
4603
4701
  }).s("AWSBastionControlPlaneServiceLambda", "GetConfiguredTableAssociation", {}).n("CleanRoomsClient", "GetConfiguredTableAssociationCommand").f(void 0, void 0).ser(se_GetConfiguredTableAssociationCommand).de(de_GetConfiguredTableAssociationCommand).build() {
4702
+ static {
4703
+ __name(this, "GetConfiguredTableAssociationCommand");
4704
+ }
4604
4705
  };
4605
- __name(_GetConfiguredTableAssociationCommand, "GetConfiguredTableAssociationCommand");
4606
- var GetConfiguredTableAssociationCommand = _GetConfiguredTableAssociationCommand;
4607
4706
 
4608
4707
  // src/commands/GetConfiguredTableCommand.ts
4609
4708
 
4610
4709
 
4611
4710
 
4612
- var _GetConfiguredTableCommand = class _GetConfiguredTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4711
+ var GetConfiguredTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4613
4712
  return [
4614
4713
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4615
4714
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4616
4715
  ];
4617
4716
  }).s("AWSBastionControlPlaneServiceLambda", "GetConfiguredTable", {}).n("CleanRoomsClient", "GetConfiguredTableCommand").f(void 0, void 0).ser(se_GetConfiguredTableCommand).de(de_GetConfiguredTableCommand).build() {
4717
+ static {
4718
+ __name(this, "GetConfiguredTableCommand");
4719
+ }
4618
4720
  };
4619
- __name(_GetConfiguredTableCommand, "GetConfiguredTableCommand");
4620
- var GetConfiguredTableCommand = _GetConfiguredTableCommand;
4621
4721
 
4622
4722
  // src/commands/GetIdMappingTableCommand.ts
4623
4723
 
4624
4724
 
4625
4725
 
4626
- var _GetIdMappingTableCommand = class _GetIdMappingTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4726
+ var GetIdMappingTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4627
4727
  return [
4628
4728
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4629
4729
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4630
4730
  ];
4631
4731
  }).s("AWSBastionControlPlaneServiceLambda", "GetIdMappingTable", {}).n("CleanRoomsClient", "GetIdMappingTableCommand").f(void 0, void 0).ser(se_GetIdMappingTableCommand).de(de_GetIdMappingTableCommand).build() {
4732
+ static {
4733
+ __name(this, "GetIdMappingTableCommand");
4734
+ }
4632
4735
  };
4633
- __name(_GetIdMappingTableCommand, "GetIdMappingTableCommand");
4634
- var GetIdMappingTableCommand = _GetIdMappingTableCommand;
4635
4736
 
4636
4737
  // src/commands/GetIdNamespaceAssociationCommand.ts
4637
4738
 
4638
4739
 
4639
4740
 
4640
- var _GetIdNamespaceAssociationCommand = class _GetIdNamespaceAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4741
+ var GetIdNamespaceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4641
4742
  return [
4642
4743
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4643
4744
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4644
4745
  ];
4645
4746
  }).s("AWSBastionControlPlaneServiceLambda", "GetIdNamespaceAssociation", {}).n("CleanRoomsClient", "GetIdNamespaceAssociationCommand").f(void 0, void 0).ser(se_GetIdNamespaceAssociationCommand).de(de_GetIdNamespaceAssociationCommand).build() {
4747
+ static {
4748
+ __name(this, "GetIdNamespaceAssociationCommand");
4749
+ }
4646
4750
  };
4647
- __name(_GetIdNamespaceAssociationCommand, "GetIdNamespaceAssociationCommand");
4648
- var GetIdNamespaceAssociationCommand = _GetIdNamespaceAssociationCommand;
4649
4751
 
4650
4752
  // src/commands/GetMembershipCommand.ts
4651
4753
 
4652
4754
 
4653
4755
 
4654
- var _GetMembershipCommand = class _GetMembershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4756
+ var GetMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4655
4757
  return [
4656
4758
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4657
4759
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4658
4760
  ];
4659
4761
  }).s("AWSBastionControlPlaneServiceLambda", "GetMembership", {}).n("CleanRoomsClient", "GetMembershipCommand").f(void 0, void 0).ser(se_GetMembershipCommand).de(de_GetMembershipCommand).build() {
4762
+ static {
4763
+ __name(this, "GetMembershipCommand");
4764
+ }
4660
4765
  };
4661
- __name(_GetMembershipCommand, "GetMembershipCommand");
4662
- var GetMembershipCommand = _GetMembershipCommand;
4663
4766
 
4664
4767
  // src/commands/GetPrivacyBudgetTemplateCommand.ts
4665
4768
 
4666
4769
 
4667
4770
 
4668
- var _GetPrivacyBudgetTemplateCommand = class _GetPrivacyBudgetTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4771
+ var GetPrivacyBudgetTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4669
4772
  return [
4670
4773
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4671
4774
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4672
4775
  ];
4673
4776
  }).s("AWSBastionControlPlaneServiceLambda", "GetPrivacyBudgetTemplate", {}).n("CleanRoomsClient", "GetPrivacyBudgetTemplateCommand").f(void 0, void 0).ser(se_GetPrivacyBudgetTemplateCommand).de(de_GetPrivacyBudgetTemplateCommand).build() {
4777
+ static {
4778
+ __name(this, "GetPrivacyBudgetTemplateCommand");
4779
+ }
4674
4780
  };
4675
- __name(_GetPrivacyBudgetTemplateCommand, "GetPrivacyBudgetTemplateCommand");
4676
- var GetPrivacyBudgetTemplateCommand = _GetPrivacyBudgetTemplateCommand;
4677
4781
 
4678
4782
  // src/commands/GetProtectedQueryCommand.ts
4679
4783
 
4680
4784
 
4681
4785
 
4682
- var _GetProtectedQueryCommand = class _GetProtectedQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4786
+ var GetProtectedQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4683
4787
  return [
4684
4788
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4685
4789
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4686
4790
  ];
4687
4791
  }).s("AWSBastionControlPlaneServiceLambda", "GetProtectedQuery", {}).n("CleanRoomsClient", "GetProtectedQueryCommand").f(void 0, GetProtectedQueryOutputFilterSensitiveLog).ser(se_GetProtectedQueryCommand).de(de_GetProtectedQueryCommand).build() {
4792
+ static {
4793
+ __name(this, "GetProtectedQueryCommand");
4794
+ }
4688
4795
  };
4689
- __name(_GetProtectedQueryCommand, "GetProtectedQueryCommand");
4690
- var GetProtectedQueryCommand = _GetProtectedQueryCommand;
4691
4796
 
4692
4797
  // src/commands/GetSchemaAnalysisRuleCommand.ts
4693
4798
 
4694
4799
 
4695
4800
 
4696
- var _GetSchemaAnalysisRuleCommand = class _GetSchemaAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4801
+ var GetSchemaAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4697
4802
  return [
4698
4803
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4699
4804
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4700
4805
  ];
4701
4806
  }).s("AWSBastionControlPlaneServiceLambda", "GetSchemaAnalysisRule", {}).n("CleanRoomsClient", "GetSchemaAnalysisRuleCommand").f(void 0, void 0).ser(se_GetSchemaAnalysisRuleCommand).de(de_GetSchemaAnalysisRuleCommand).build() {
4807
+ static {
4808
+ __name(this, "GetSchemaAnalysisRuleCommand");
4809
+ }
4702
4810
  };
4703
- __name(_GetSchemaAnalysisRuleCommand, "GetSchemaAnalysisRuleCommand");
4704
- var GetSchemaAnalysisRuleCommand = _GetSchemaAnalysisRuleCommand;
4705
4811
 
4706
4812
  // src/commands/GetSchemaCommand.ts
4707
4813
 
4708
4814
 
4709
4815
 
4710
- var _GetSchemaCommand = class _GetSchemaCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4816
+ var GetSchemaCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4711
4817
  return [
4712
4818
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4713
4819
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4714
4820
  ];
4715
4821
  }).s("AWSBastionControlPlaneServiceLambda", "GetSchema", {}).n("CleanRoomsClient", "GetSchemaCommand").f(void 0, void 0).ser(se_GetSchemaCommand).de(de_GetSchemaCommand).build() {
4822
+ static {
4823
+ __name(this, "GetSchemaCommand");
4824
+ }
4716
4825
  };
4717
- __name(_GetSchemaCommand, "GetSchemaCommand");
4718
- var GetSchemaCommand = _GetSchemaCommand;
4719
4826
 
4720
4827
  // src/commands/ListAnalysisTemplatesCommand.ts
4721
4828
 
4722
4829
 
4723
4830
 
4724
- var _ListAnalysisTemplatesCommand = class _ListAnalysisTemplatesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4831
+ var ListAnalysisTemplatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4725
4832
  return [
4726
4833
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4727
4834
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4728
4835
  ];
4729
4836
  }).s("AWSBastionControlPlaneServiceLambda", "ListAnalysisTemplates", {}).n("CleanRoomsClient", "ListAnalysisTemplatesCommand").f(void 0, void 0).ser(se_ListAnalysisTemplatesCommand).de(de_ListAnalysisTemplatesCommand).build() {
4837
+ static {
4838
+ __name(this, "ListAnalysisTemplatesCommand");
4839
+ }
4730
4840
  };
4731
- __name(_ListAnalysisTemplatesCommand, "ListAnalysisTemplatesCommand");
4732
- var ListAnalysisTemplatesCommand = _ListAnalysisTemplatesCommand;
4733
4841
 
4734
4842
  // src/commands/ListCollaborationAnalysisTemplatesCommand.ts
4735
4843
 
4736
4844
 
4737
4845
 
4738
- var _ListCollaborationAnalysisTemplatesCommand = class _ListCollaborationAnalysisTemplatesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4846
+ var ListCollaborationAnalysisTemplatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4739
4847
  return [
4740
4848
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4741
4849
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4742
4850
  ];
4743
4851
  }).s("AWSBastionControlPlaneServiceLambda", "ListCollaborationAnalysisTemplates", {}).n("CleanRoomsClient", "ListCollaborationAnalysisTemplatesCommand").f(void 0, void 0).ser(se_ListCollaborationAnalysisTemplatesCommand).de(de_ListCollaborationAnalysisTemplatesCommand).build() {
4852
+ static {
4853
+ __name(this, "ListCollaborationAnalysisTemplatesCommand");
4854
+ }
4744
4855
  };
4745
- __name(_ListCollaborationAnalysisTemplatesCommand, "ListCollaborationAnalysisTemplatesCommand");
4746
- var ListCollaborationAnalysisTemplatesCommand = _ListCollaborationAnalysisTemplatesCommand;
4747
4856
 
4748
4857
  // src/commands/ListCollaborationConfiguredAudienceModelAssociationsCommand.ts
4749
4858
 
4750
4859
 
4751
4860
 
4752
- var _ListCollaborationConfiguredAudienceModelAssociationsCommand = class _ListCollaborationConfiguredAudienceModelAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4861
+ var ListCollaborationConfiguredAudienceModelAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4753
4862
  return [
4754
4863
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4755
4864
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4756
4865
  ];
4757
4866
  }).s("AWSBastionControlPlaneServiceLambda", "ListCollaborationConfiguredAudienceModelAssociations", {}).n("CleanRoomsClient", "ListCollaborationConfiguredAudienceModelAssociationsCommand").f(void 0, void 0).ser(se_ListCollaborationConfiguredAudienceModelAssociationsCommand).de(de_ListCollaborationConfiguredAudienceModelAssociationsCommand).build() {
4867
+ static {
4868
+ __name(this, "ListCollaborationConfiguredAudienceModelAssociationsCommand");
4869
+ }
4758
4870
  };
4759
- __name(_ListCollaborationConfiguredAudienceModelAssociationsCommand, "ListCollaborationConfiguredAudienceModelAssociationsCommand");
4760
- var ListCollaborationConfiguredAudienceModelAssociationsCommand = _ListCollaborationConfiguredAudienceModelAssociationsCommand;
4761
4871
 
4762
4872
  // src/commands/ListCollaborationIdNamespaceAssociationsCommand.ts
4763
4873
 
4764
4874
 
4765
4875
 
4766
- var _ListCollaborationIdNamespaceAssociationsCommand = class _ListCollaborationIdNamespaceAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4876
+ var ListCollaborationIdNamespaceAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4767
4877
  return [
4768
4878
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4769
4879
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4770
4880
  ];
4771
4881
  }).s("AWSBastionControlPlaneServiceLambda", "ListCollaborationIdNamespaceAssociations", {}).n("CleanRoomsClient", "ListCollaborationIdNamespaceAssociationsCommand").f(void 0, void 0).ser(se_ListCollaborationIdNamespaceAssociationsCommand).de(de_ListCollaborationIdNamespaceAssociationsCommand).build() {
4882
+ static {
4883
+ __name(this, "ListCollaborationIdNamespaceAssociationsCommand");
4884
+ }
4772
4885
  };
4773
- __name(_ListCollaborationIdNamespaceAssociationsCommand, "ListCollaborationIdNamespaceAssociationsCommand");
4774
- var ListCollaborationIdNamespaceAssociationsCommand = _ListCollaborationIdNamespaceAssociationsCommand;
4775
4886
 
4776
4887
  // src/commands/ListCollaborationPrivacyBudgetsCommand.ts
4777
4888
 
4778
4889
 
4779
4890
 
4780
- var _ListCollaborationPrivacyBudgetsCommand = class _ListCollaborationPrivacyBudgetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4891
+ var ListCollaborationPrivacyBudgetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4781
4892
  return [
4782
4893
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4783
4894
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4784
4895
  ];
4785
4896
  }).s("AWSBastionControlPlaneServiceLambda", "ListCollaborationPrivacyBudgets", {}).n("CleanRoomsClient", "ListCollaborationPrivacyBudgetsCommand").f(void 0, void 0).ser(se_ListCollaborationPrivacyBudgetsCommand).de(de_ListCollaborationPrivacyBudgetsCommand).build() {
4897
+ static {
4898
+ __name(this, "ListCollaborationPrivacyBudgetsCommand");
4899
+ }
4786
4900
  };
4787
- __name(_ListCollaborationPrivacyBudgetsCommand, "ListCollaborationPrivacyBudgetsCommand");
4788
- var ListCollaborationPrivacyBudgetsCommand = _ListCollaborationPrivacyBudgetsCommand;
4789
4901
 
4790
4902
  // src/commands/ListCollaborationPrivacyBudgetTemplatesCommand.ts
4791
4903
 
4792
4904
 
4793
4905
 
4794
- var _ListCollaborationPrivacyBudgetTemplatesCommand = class _ListCollaborationPrivacyBudgetTemplatesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4906
+ var ListCollaborationPrivacyBudgetTemplatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4795
4907
  return [
4796
4908
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4797
4909
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4798
4910
  ];
4799
4911
  }).s("AWSBastionControlPlaneServiceLambda", "ListCollaborationPrivacyBudgetTemplates", {}).n("CleanRoomsClient", "ListCollaborationPrivacyBudgetTemplatesCommand").f(void 0, void 0).ser(se_ListCollaborationPrivacyBudgetTemplatesCommand).de(de_ListCollaborationPrivacyBudgetTemplatesCommand).build() {
4912
+ static {
4913
+ __name(this, "ListCollaborationPrivacyBudgetTemplatesCommand");
4914
+ }
4800
4915
  };
4801
- __name(_ListCollaborationPrivacyBudgetTemplatesCommand, "ListCollaborationPrivacyBudgetTemplatesCommand");
4802
- var ListCollaborationPrivacyBudgetTemplatesCommand = _ListCollaborationPrivacyBudgetTemplatesCommand;
4803
4916
 
4804
4917
  // src/commands/ListCollaborationsCommand.ts
4805
4918
 
4806
4919
 
4807
4920
 
4808
- var _ListCollaborationsCommand = class _ListCollaborationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4921
+ var ListCollaborationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4809
4922
  return [
4810
4923
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4811
4924
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4812
4925
  ];
4813
4926
  }).s("AWSBastionControlPlaneServiceLambda", "ListCollaborations", {}).n("CleanRoomsClient", "ListCollaborationsCommand").f(void 0, void 0).ser(se_ListCollaborationsCommand).de(de_ListCollaborationsCommand).build() {
4927
+ static {
4928
+ __name(this, "ListCollaborationsCommand");
4929
+ }
4814
4930
  };
4815
- __name(_ListCollaborationsCommand, "ListCollaborationsCommand");
4816
- var ListCollaborationsCommand = _ListCollaborationsCommand;
4817
4931
 
4818
4932
  // src/commands/ListConfiguredAudienceModelAssociationsCommand.ts
4819
4933
 
4820
4934
 
4821
4935
 
4822
- var _ListConfiguredAudienceModelAssociationsCommand = class _ListConfiguredAudienceModelAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4936
+ var ListConfiguredAudienceModelAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4823
4937
  return [
4824
4938
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4825
4939
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4826
4940
  ];
4827
4941
  }).s("AWSBastionControlPlaneServiceLambda", "ListConfiguredAudienceModelAssociations", {}).n("CleanRoomsClient", "ListConfiguredAudienceModelAssociationsCommand").f(void 0, void 0).ser(se_ListConfiguredAudienceModelAssociationsCommand).de(de_ListConfiguredAudienceModelAssociationsCommand).build() {
4942
+ static {
4943
+ __name(this, "ListConfiguredAudienceModelAssociationsCommand");
4944
+ }
4828
4945
  };
4829
- __name(_ListConfiguredAudienceModelAssociationsCommand, "ListConfiguredAudienceModelAssociationsCommand");
4830
- var ListConfiguredAudienceModelAssociationsCommand = _ListConfiguredAudienceModelAssociationsCommand;
4831
4946
 
4832
4947
  // src/commands/ListConfiguredTableAssociationsCommand.ts
4833
4948
 
4834
4949
 
4835
4950
 
4836
- var _ListConfiguredTableAssociationsCommand = class _ListConfiguredTableAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4951
+ var ListConfiguredTableAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4837
4952
  return [
4838
4953
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4839
4954
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4840
4955
  ];
4841
4956
  }).s("AWSBastionControlPlaneServiceLambda", "ListConfiguredTableAssociations", {}).n("CleanRoomsClient", "ListConfiguredTableAssociationsCommand").f(void 0, void 0).ser(se_ListConfiguredTableAssociationsCommand).de(de_ListConfiguredTableAssociationsCommand).build() {
4957
+ static {
4958
+ __name(this, "ListConfiguredTableAssociationsCommand");
4959
+ }
4842
4960
  };
4843
- __name(_ListConfiguredTableAssociationsCommand, "ListConfiguredTableAssociationsCommand");
4844
- var ListConfiguredTableAssociationsCommand = _ListConfiguredTableAssociationsCommand;
4845
4961
 
4846
4962
  // src/commands/ListConfiguredTablesCommand.ts
4847
4963
 
4848
4964
 
4849
4965
 
4850
- var _ListConfiguredTablesCommand = class _ListConfiguredTablesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4966
+ var ListConfiguredTablesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4851
4967
  return [
4852
4968
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4853
4969
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4854
4970
  ];
4855
4971
  }).s("AWSBastionControlPlaneServiceLambda", "ListConfiguredTables", {}).n("CleanRoomsClient", "ListConfiguredTablesCommand").f(void 0, void 0).ser(se_ListConfiguredTablesCommand).de(de_ListConfiguredTablesCommand).build() {
4972
+ static {
4973
+ __name(this, "ListConfiguredTablesCommand");
4974
+ }
4856
4975
  };
4857
- __name(_ListConfiguredTablesCommand, "ListConfiguredTablesCommand");
4858
- var ListConfiguredTablesCommand = _ListConfiguredTablesCommand;
4859
4976
 
4860
4977
  // src/commands/ListIdMappingTablesCommand.ts
4861
4978
 
4862
4979
 
4863
4980
 
4864
- var _ListIdMappingTablesCommand = class _ListIdMappingTablesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4981
+ var ListIdMappingTablesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4865
4982
  return [
4866
4983
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4867
4984
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4868
4985
  ];
4869
4986
  }).s("AWSBastionControlPlaneServiceLambda", "ListIdMappingTables", {}).n("CleanRoomsClient", "ListIdMappingTablesCommand").f(void 0, void 0).ser(se_ListIdMappingTablesCommand).de(de_ListIdMappingTablesCommand).build() {
4987
+ static {
4988
+ __name(this, "ListIdMappingTablesCommand");
4989
+ }
4870
4990
  };
4871
- __name(_ListIdMappingTablesCommand, "ListIdMappingTablesCommand");
4872
- var ListIdMappingTablesCommand = _ListIdMappingTablesCommand;
4873
4991
 
4874
4992
  // src/commands/ListIdNamespaceAssociationsCommand.ts
4875
4993
 
4876
4994
 
4877
4995
 
4878
- var _ListIdNamespaceAssociationsCommand = class _ListIdNamespaceAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4996
+ var ListIdNamespaceAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4879
4997
  return [
4880
4998
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4881
4999
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4882
5000
  ];
4883
5001
  }).s("AWSBastionControlPlaneServiceLambda", "ListIdNamespaceAssociations", {}).n("CleanRoomsClient", "ListIdNamespaceAssociationsCommand").f(void 0, void 0).ser(se_ListIdNamespaceAssociationsCommand).de(de_ListIdNamespaceAssociationsCommand).build() {
5002
+ static {
5003
+ __name(this, "ListIdNamespaceAssociationsCommand");
5004
+ }
4884
5005
  };
4885
- __name(_ListIdNamespaceAssociationsCommand, "ListIdNamespaceAssociationsCommand");
4886
- var ListIdNamespaceAssociationsCommand = _ListIdNamespaceAssociationsCommand;
4887
5006
 
4888
5007
  // src/commands/ListMembersCommand.ts
4889
5008
 
4890
5009
 
4891
5010
 
4892
- var _ListMembersCommand = class _ListMembersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5011
+ var ListMembersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4893
5012
  return [
4894
5013
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4895
5014
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4896
5015
  ];
4897
5016
  }).s("AWSBastionControlPlaneServiceLambda", "ListMembers", {}).n("CleanRoomsClient", "ListMembersCommand").f(void 0, void 0).ser(se_ListMembersCommand).de(de_ListMembersCommand).build() {
5017
+ static {
5018
+ __name(this, "ListMembersCommand");
5019
+ }
4898
5020
  };
4899
- __name(_ListMembersCommand, "ListMembersCommand");
4900
- var ListMembersCommand = _ListMembersCommand;
4901
5021
 
4902
5022
  // src/commands/ListMembershipsCommand.ts
4903
5023
 
4904
5024
 
4905
5025
 
4906
- var _ListMembershipsCommand = class _ListMembershipsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5026
+ var ListMembershipsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4907
5027
  return [
4908
5028
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4909
5029
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4910
5030
  ];
4911
5031
  }).s("AWSBastionControlPlaneServiceLambda", "ListMemberships", {}).n("CleanRoomsClient", "ListMembershipsCommand").f(void 0, void 0).ser(se_ListMembershipsCommand).de(de_ListMembershipsCommand).build() {
5032
+ static {
5033
+ __name(this, "ListMembershipsCommand");
5034
+ }
4912
5035
  };
4913
- __name(_ListMembershipsCommand, "ListMembershipsCommand");
4914
- var ListMembershipsCommand = _ListMembershipsCommand;
4915
5036
 
4916
5037
  // src/commands/ListPrivacyBudgetsCommand.ts
4917
5038
 
4918
5039
 
4919
5040
 
4920
- var _ListPrivacyBudgetsCommand = class _ListPrivacyBudgetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5041
+ var ListPrivacyBudgetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4921
5042
  return [
4922
5043
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4923
5044
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4924
5045
  ];
4925
5046
  }).s("AWSBastionControlPlaneServiceLambda", "ListPrivacyBudgets", {}).n("CleanRoomsClient", "ListPrivacyBudgetsCommand").f(void 0, void 0).ser(se_ListPrivacyBudgetsCommand).de(de_ListPrivacyBudgetsCommand).build() {
5047
+ static {
5048
+ __name(this, "ListPrivacyBudgetsCommand");
5049
+ }
4926
5050
  };
4927
- __name(_ListPrivacyBudgetsCommand, "ListPrivacyBudgetsCommand");
4928
- var ListPrivacyBudgetsCommand = _ListPrivacyBudgetsCommand;
4929
5051
 
4930
5052
  // src/commands/ListPrivacyBudgetTemplatesCommand.ts
4931
5053
 
4932
5054
 
4933
5055
 
4934
- var _ListPrivacyBudgetTemplatesCommand = class _ListPrivacyBudgetTemplatesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5056
+ var ListPrivacyBudgetTemplatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4935
5057
  return [
4936
5058
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4937
5059
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4938
5060
  ];
4939
5061
  }).s("AWSBastionControlPlaneServiceLambda", "ListPrivacyBudgetTemplates", {}).n("CleanRoomsClient", "ListPrivacyBudgetTemplatesCommand").f(void 0, void 0).ser(se_ListPrivacyBudgetTemplatesCommand).de(de_ListPrivacyBudgetTemplatesCommand).build() {
5062
+ static {
5063
+ __name(this, "ListPrivacyBudgetTemplatesCommand");
5064
+ }
4940
5065
  };
4941
- __name(_ListPrivacyBudgetTemplatesCommand, "ListPrivacyBudgetTemplatesCommand");
4942
- var ListPrivacyBudgetTemplatesCommand = _ListPrivacyBudgetTemplatesCommand;
4943
5066
 
4944
5067
  // src/commands/ListProtectedQueriesCommand.ts
4945
5068
 
4946
5069
 
4947
5070
 
4948
- var _ListProtectedQueriesCommand = class _ListProtectedQueriesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5071
+ var ListProtectedQueriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4949
5072
  return [
4950
5073
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4951
5074
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4952
5075
  ];
4953
5076
  }).s("AWSBastionControlPlaneServiceLambda", "ListProtectedQueries", {}).n("CleanRoomsClient", "ListProtectedQueriesCommand").f(void 0, void 0).ser(se_ListProtectedQueriesCommand).de(de_ListProtectedQueriesCommand).build() {
5077
+ static {
5078
+ __name(this, "ListProtectedQueriesCommand");
5079
+ }
4954
5080
  };
4955
- __name(_ListProtectedQueriesCommand, "ListProtectedQueriesCommand");
4956
- var ListProtectedQueriesCommand = _ListProtectedQueriesCommand;
4957
5081
 
4958
5082
  // src/commands/ListSchemasCommand.ts
4959
5083
 
4960
5084
 
4961
5085
 
4962
- var _ListSchemasCommand = class _ListSchemasCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5086
+ var ListSchemasCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4963
5087
  return [
4964
5088
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4965
5089
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4966
5090
  ];
4967
5091
  }).s("AWSBastionControlPlaneServiceLambda", "ListSchemas", {}).n("CleanRoomsClient", "ListSchemasCommand").f(void 0, void 0).ser(se_ListSchemasCommand).de(de_ListSchemasCommand).build() {
5092
+ static {
5093
+ __name(this, "ListSchemasCommand");
5094
+ }
4968
5095
  };
4969
- __name(_ListSchemasCommand, "ListSchemasCommand");
4970
- var ListSchemasCommand = _ListSchemasCommand;
4971
5096
 
4972
5097
  // src/commands/ListTagsForResourceCommand.ts
4973
5098
 
4974
5099
 
4975
5100
 
4976
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5101
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4977
5102
  return [
4978
5103
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4979
5104
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4980
5105
  ];
4981
5106
  }).s("AWSBastionControlPlaneServiceLambda", "ListTagsForResource", {}).n("CleanRoomsClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
5107
+ static {
5108
+ __name(this, "ListTagsForResourceCommand");
5109
+ }
4982
5110
  };
4983
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
4984
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
4985
5111
 
4986
5112
  // src/commands/PopulateIdMappingTableCommand.ts
4987
5113
 
4988
5114
 
4989
5115
 
4990
- var _PopulateIdMappingTableCommand = class _PopulateIdMappingTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5116
+ var PopulateIdMappingTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4991
5117
  return [
4992
5118
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4993
5119
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4994
5120
  ];
4995
5121
  }).s("AWSBastionControlPlaneServiceLambda", "PopulateIdMappingTable", {}).n("CleanRoomsClient", "PopulateIdMappingTableCommand").f(void 0, void 0).ser(se_PopulateIdMappingTableCommand).de(de_PopulateIdMappingTableCommand).build() {
5122
+ static {
5123
+ __name(this, "PopulateIdMappingTableCommand");
5124
+ }
4996
5125
  };
4997
- __name(_PopulateIdMappingTableCommand, "PopulateIdMappingTableCommand");
4998
- var PopulateIdMappingTableCommand = _PopulateIdMappingTableCommand;
4999
5126
 
5000
5127
  // src/commands/PreviewPrivacyImpactCommand.ts
5001
5128
 
5002
5129
 
5003
5130
 
5004
- var _PreviewPrivacyImpactCommand = class _PreviewPrivacyImpactCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5131
+ var PreviewPrivacyImpactCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5005
5132
  return [
5006
5133
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5007
5134
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5008
5135
  ];
5009
5136
  }).s("AWSBastionControlPlaneServiceLambda", "PreviewPrivacyImpact", {}).n("CleanRoomsClient", "PreviewPrivacyImpactCommand").f(void 0, void 0).ser(se_PreviewPrivacyImpactCommand).de(de_PreviewPrivacyImpactCommand).build() {
5137
+ static {
5138
+ __name(this, "PreviewPrivacyImpactCommand");
5139
+ }
5010
5140
  };
5011
- __name(_PreviewPrivacyImpactCommand, "PreviewPrivacyImpactCommand");
5012
- var PreviewPrivacyImpactCommand = _PreviewPrivacyImpactCommand;
5013
5141
 
5014
5142
  // src/commands/StartProtectedQueryCommand.ts
5015
5143
 
@@ -5072,211 +5200,226 @@ var UpdateProtectedQueryOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj)
5072
5200
  }), "UpdateProtectedQueryOutputFilterSensitiveLog");
5073
5201
 
5074
5202
  // src/commands/StartProtectedQueryCommand.ts
5075
- var _StartProtectedQueryCommand = class _StartProtectedQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5203
+ var StartProtectedQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5076
5204
  return [
5077
5205
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5078
5206
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5079
5207
  ];
5080
5208
  }).s("AWSBastionControlPlaneServiceLambda", "StartProtectedQuery", {}).n("CleanRoomsClient", "StartProtectedQueryCommand").f(StartProtectedQueryInputFilterSensitiveLog, StartProtectedQueryOutputFilterSensitiveLog).ser(se_StartProtectedQueryCommand).de(de_StartProtectedQueryCommand).build() {
5209
+ static {
5210
+ __name(this, "StartProtectedQueryCommand");
5211
+ }
5081
5212
  };
5082
- __name(_StartProtectedQueryCommand, "StartProtectedQueryCommand");
5083
- var StartProtectedQueryCommand = _StartProtectedQueryCommand;
5084
5213
 
5085
5214
  // src/commands/TagResourceCommand.ts
5086
5215
 
5087
5216
 
5088
5217
 
5089
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5218
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5090
5219
  return [
5091
5220
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5092
5221
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5093
5222
  ];
5094
5223
  }).s("AWSBastionControlPlaneServiceLambda", "TagResource", {}).n("CleanRoomsClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
5224
+ static {
5225
+ __name(this, "TagResourceCommand");
5226
+ }
5095
5227
  };
5096
- __name(_TagResourceCommand, "TagResourceCommand");
5097
- var TagResourceCommand = _TagResourceCommand;
5098
5228
 
5099
5229
  // src/commands/UntagResourceCommand.ts
5100
5230
 
5101
5231
 
5102
5232
 
5103
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5233
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5104
5234
  return [
5105
5235
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5106
5236
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5107
5237
  ];
5108
5238
  }).s("AWSBastionControlPlaneServiceLambda", "UntagResource", {}).n("CleanRoomsClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
5239
+ static {
5240
+ __name(this, "UntagResourceCommand");
5241
+ }
5109
5242
  };
5110
- __name(_UntagResourceCommand, "UntagResourceCommand");
5111
- var UntagResourceCommand = _UntagResourceCommand;
5112
5243
 
5113
5244
  // src/commands/UpdateAnalysisTemplateCommand.ts
5114
5245
 
5115
5246
 
5116
5247
 
5117
- var _UpdateAnalysisTemplateCommand = class _UpdateAnalysisTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5248
+ var UpdateAnalysisTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5118
5249
  return [
5119
5250
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5120
5251
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5121
5252
  ];
5122
5253
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateAnalysisTemplate", {}).n("CleanRoomsClient", "UpdateAnalysisTemplateCommand").f(void 0, UpdateAnalysisTemplateOutputFilterSensitiveLog).ser(se_UpdateAnalysisTemplateCommand).de(de_UpdateAnalysisTemplateCommand).build() {
5254
+ static {
5255
+ __name(this, "UpdateAnalysisTemplateCommand");
5256
+ }
5123
5257
  };
5124
- __name(_UpdateAnalysisTemplateCommand, "UpdateAnalysisTemplateCommand");
5125
- var UpdateAnalysisTemplateCommand = _UpdateAnalysisTemplateCommand;
5126
5258
 
5127
5259
  // src/commands/UpdateCollaborationCommand.ts
5128
5260
 
5129
5261
 
5130
5262
 
5131
- var _UpdateCollaborationCommand = class _UpdateCollaborationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5263
+ var UpdateCollaborationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5132
5264
  return [
5133
5265
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5134
5266
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5135
5267
  ];
5136
5268
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateCollaboration", {}).n("CleanRoomsClient", "UpdateCollaborationCommand").f(void 0, void 0).ser(se_UpdateCollaborationCommand).de(de_UpdateCollaborationCommand).build() {
5269
+ static {
5270
+ __name(this, "UpdateCollaborationCommand");
5271
+ }
5137
5272
  };
5138
- __name(_UpdateCollaborationCommand, "UpdateCollaborationCommand");
5139
- var UpdateCollaborationCommand = _UpdateCollaborationCommand;
5140
5273
 
5141
5274
  // src/commands/UpdateConfiguredAudienceModelAssociationCommand.ts
5142
5275
 
5143
5276
 
5144
5277
 
5145
- var _UpdateConfiguredAudienceModelAssociationCommand = class _UpdateConfiguredAudienceModelAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5278
+ var UpdateConfiguredAudienceModelAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5146
5279
  return [
5147
5280
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5148
5281
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5149
5282
  ];
5150
5283
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateConfiguredAudienceModelAssociation", {}).n("CleanRoomsClient", "UpdateConfiguredAudienceModelAssociationCommand").f(void 0, void 0).ser(se_UpdateConfiguredAudienceModelAssociationCommand).de(de_UpdateConfiguredAudienceModelAssociationCommand).build() {
5284
+ static {
5285
+ __name(this, "UpdateConfiguredAudienceModelAssociationCommand");
5286
+ }
5151
5287
  };
5152
- __name(_UpdateConfiguredAudienceModelAssociationCommand, "UpdateConfiguredAudienceModelAssociationCommand");
5153
- var UpdateConfiguredAudienceModelAssociationCommand = _UpdateConfiguredAudienceModelAssociationCommand;
5154
5288
 
5155
5289
  // src/commands/UpdateConfiguredTableAnalysisRuleCommand.ts
5156
5290
 
5157
5291
 
5158
5292
 
5159
- var _UpdateConfiguredTableAnalysisRuleCommand = class _UpdateConfiguredTableAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5293
+ var UpdateConfiguredTableAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5160
5294
  return [
5161
5295
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5162
5296
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5163
5297
  ];
5164
5298
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateConfiguredTableAnalysisRule", {}).n("CleanRoomsClient", "UpdateConfiguredTableAnalysisRuleCommand").f(void 0, void 0).ser(se_UpdateConfiguredTableAnalysisRuleCommand).de(de_UpdateConfiguredTableAnalysisRuleCommand).build() {
5299
+ static {
5300
+ __name(this, "UpdateConfiguredTableAnalysisRuleCommand");
5301
+ }
5165
5302
  };
5166
- __name(_UpdateConfiguredTableAnalysisRuleCommand, "UpdateConfiguredTableAnalysisRuleCommand");
5167
- var UpdateConfiguredTableAnalysisRuleCommand = _UpdateConfiguredTableAnalysisRuleCommand;
5168
5303
 
5169
5304
  // src/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.ts
5170
5305
 
5171
5306
 
5172
5307
 
5173
- var _UpdateConfiguredTableAssociationAnalysisRuleCommand = class _UpdateConfiguredTableAssociationAnalysisRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5308
+ var UpdateConfiguredTableAssociationAnalysisRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5174
5309
  return [
5175
5310
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5176
5311
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5177
5312
  ];
5178
5313
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateConfiguredTableAssociationAnalysisRule", {}).n("CleanRoomsClient", "UpdateConfiguredTableAssociationAnalysisRuleCommand").f(void 0, void 0).ser(se_UpdateConfiguredTableAssociationAnalysisRuleCommand).de(de_UpdateConfiguredTableAssociationAnalysisRuleCommand).build() {
5314
+ static {
5315
+ __name(this, "UpdateConfiguredTableAssociationAnalysisRuleCommand");
5316
+ }
5179
5317
  };
5180
- __name(_UpdateConfiguredTableAssociationAnalysisRuleCommand, "UpdateConfiguredTableAssociationAnalysisRuleCommand");
5181
- var UpdateConfiguredTableAssociationAnalysisRuleCommand = _UpdateConfiguredTableAssociationAnalysisRuleCommand;
5182
5318
 
5183
5319
  // src/commands/UpdateConfiguredTableAssociationCommand.ts
5184
5320
 
5185
5321
 
5186
5322
 
5187
- var _UpdateConfiguredTableAssociationCommand = class _UpdateConfiguredTableAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5323
+ var UpdateConfiguredTableAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5188
5324
  return [
5189
5325
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5190
5326
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5191
5327
  ];
5192
5328
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateConfiguredTableAssociation", {}).n("CleanRoomsClient", "UpdateConfiguredTableAssociationCommand").f(void 0, void 0).ser(se_UpdateConfiguredTableAssociationCommand).de(de_UpdateConfiguredTableAssociationCommand).build() {
5329
+ static {
5330
+ __name(this, "UpdateConfiguredTableAssociationCommand");
5331
+ }
5193
5332
  };
5194
- __name(_UpdateConfiguredTableAssociationCommand, "UpdateConfiguredTableAssociationCommand");
5195
- var UpdateConfiguredTableAssociationCommand = _UpdateConfiguredTableAssociationCommand;
5196
5333
 
5197
5334
  // src/commands/UpdateConfiguredTableCommand.ts
5198
5335
 
5199
5336
 
5200
5337
 
5201
- var _UpdateConfiguredTableCommand = class _UpdateConfiguredTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5338
+ var UpdateConfiguredTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5202
5339
  return [
5203
5340
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5204
5341
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5205
5342
  ];
5206
5343
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateConfiguredTable", {}).n("CleanRoomsClient", "UpdateConfiguredTableCommand").f(void 0, void 0).ser(se_UpdateConfiguredTableCommand).de(de_UpdateConfiguredTableCommand).build() {
5344
+ static {
5345
+ __name(this, "UpdateConfiguredTableCommand");
5346
+ }
5207
5347
  };
5208
- __name(_UpdateConfiguredTableCommand, "UpdateConfiguredTableCommand");
5209
- var UpdateConfiguredTableCommand = _UpdateConfiguredTableCommand;
5210
5348
 
5211
5349
  // src/commands/UpdateIdMappingTableCommand.ts
5212
5350
 
5213
5351
 
5214
5352
 
5215
- var _UpdateIdMappingTableCommand = class _UpdateIdMappingTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5353
+ var UpdateIdMappingTableCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5216
5354
  return [
5217
5355
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5218
5356
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5219
5357
  ];
5220
5358
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateIdMappingTable", {}).n("CleanRoomsClient", "UpdateIdMappingTableCommand").f(void 0, void 0).ser(se_UpdateIdMappingTableCommand).de(de_UpdateIdMappingTableCommand).build() {
5359
+ static {
5360
+ __name(this, "UpdateIdMappingTableCommand");
5361
+ }
5221
5362
  };
5222
- __name(_UpdateIdMappingTableCommand, "UpdateIdMappingTableCommand");
5223
- var UpdateIdMappingTableCommand = _UpdateIdMappingTableCommand;
5224
5363
 
5225
5364
  // src/commands/UpdateIdNamespaceAssociationCommand.ts
5226
5365
 
5227
5366
 
5228
5367
 
5229
- var _UpdateIdNamespaceAssociationCommand = class _UpdateIdNamespaceAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5368
+ var UpdateIdNamespaceAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5230
5369
  return [
5231
5370
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5232
5371
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5233
5372
  ];
5234
5373
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateIdNamespaceAssociation", {}).n("CleanRoomsClient", "UpdateIdNamespaceAssociationCommand").f(void 0, void 0).ser(se_UpdateIdNamespaceAssociationCommand).de(de_UpdateIdNamespaceAssociationCommand).build() {
5374
+ static {
5375
+ __name(this, "UpdateIdNamespaceAssociationCommand");
5376
+ }
5235
5377
  };
5236
- __name(_UpdateIdNamespaceAssociationCommand, "UpdateIdNamespaceAssociationCommand");
5237
- var UpdateIdNamespaceAssociationCommand = _UpdateIdNamespaceAssociationCommand;
5238
5378
 
5239
5379
  // src/commands/UpdateMembershipCommand.ts
5240
5380
 
5241
5381
 
5242
5382
 
5243
- var _UpdateMembershipCommand = class _UpdateMembershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5383
+ var UpdateMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5244
5384
  return [
5245
5385
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5246
5386
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5247
5387
  ];
5248
5388
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateMembership", {}).n("CleanRoomsClient", "UpdateMembershipCommand").f(void 0, void 0).ser(se_UpdateMembershipCommand).de(de_UpdateMembershipCommand).build() {
5389
+ static {
5390
+ __name(this, "UpdateMembershipCommand");
5391
+ }
5249
5392
  };
5250
- __name(_UpdateMembershipCommand, "UpdateMembershipCommand");
5251
- var UpdateMembershipCommand = _UpdateMembershipCommand;
5252
5393
 
5253
5394
  // src/commands/UpdatePrivacyBudgetTemplateCommand.ts
5254
5395
 
5255
5396
 
5256
5397
 
5257
- var _UpdatePrivacyBudgetTemplateCommand = class _UpdatePrivacyBudgetTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5398
+ var UpdatePrivacyBudgetTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5258
5399
  return [
5259
5400
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5260
5401
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5261
5402
  ];
5262
5403
  }).s("AWSBastionControlPlaneServiceLambda", "UpdatePrivacyBudgetTemplate", {}).n("CleanRoomsClient", "UpdatePrivacyBudgetTemplateCommand").f(void 0, void 0).ser(se_UpdatePrivacyBudgetTemplateCommand).de(de_UpdatePrivacyBudgetTemplateCommand).build() {
5404
+ static {
5405
+ __name(this, "UpdatePrivacyBudgetTemplateCommand");
5406
+ }
5263
5407
  };
5264
- __name(_UpdatePrivacyBudgetTemplateCommand, "UpdatePrivacyBudgetTemplateCommand");
5265
- var UpdatePrivacyBudgetTemplateCommand = _UpdatePrivacyBudgetTemplateCommand;
5266
5408
 
5267
5409
  // src/commands/UpdateProtectedQueryCommand.ts
5268
5410
 
5269
5411
 
5270
5412
 
5271
- var _UpdateProtectedQueryCommand = class _UpdateProtectedQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5413
+ var UpdateProtectedQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
5272
5414
  return [
5273
5415
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5274
5416
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5275
5417
  ];
5276
5418
  }).s("AWSBastionControlPlaneServiceLambda", "UpdateProtectedQuery", {}).n("CleanRoomsClient", "UpdateProtectedQueryCommand").f(void 0, UpdateProtectedQueryOutputFilterSensitiveLog).ser(se_UpdateProtectedQueryCommand).de(de_UpdateProtectedQueryCommand).build() {
5419
+ static {
5420
+ __name(this, "UpdateProtectedQueryCommand");
5421
+ }
5277
5422
  };
5278
- __name(_UpdateProtectedQueryCommand, "UpdateProtectedQueryCommand");
5279
- var UpdateProtectedQueryCommand = _UpdateProtectedQueryCommand;
5280
5423
 
5281
5424
  // src/CleanRooms.ts
5282
5425
  var commands = {
@@ -5361,10 +5504,11 @@ var commands = {
5361
5504
  UpdatePrivacyBudgetTemplateCommand,
5362
5505
  UpdateProtectedQueryCommand
5363
5506
  };
5364
- var _CleanRooms = class _CleanRooms extends CleanRoomsClient {
5507
+ var CleanRooms = class extends CleanRoomsClient {
5508
+ static {
5509
+ __name(this, "CleanRooms");
5510
+ }
5365
5511
  };
5366
- __name(_CleanRooms, "CleanRooms");
5367
- var CleanRooms = _CleanRooms;
5368
5512
  (0, import_smithy_client.createAggregatedClient)(commands, CleanRooms);
5369
5513
 
5370
5514
  // src/pagination/ListAnalysisTemplatesPaginator.ts