@aws-sdk/client-macie2 3.721.0 → 3.726.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 +389 -293
- package/dist-es/Macie2Client.js +1 -0
- package/dist-es/models/models_0.js +16 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -292,7 +292,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
292
292
|
}, "resolveRuntimeExtensions");
|
|
293
293
|
|
|
294
294
|
// src/Macie2Client.ts
|
|
295
|
-
var
|
|
295
|
+
var Macie2Client = class extends import_smithy_client.Client {
|
|
296
|
+
static {
|
|
297
|
+
__name(this, "Macie2Client");
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* The resolved configuration of Macie2Client class. This is resolved and normalized from the {@link Macie2ClientConfig | constructor configuration interface}.
|
|
301
|
+
*/
|
|
302
|
+
config;
|
|
296
303
|
constructor(...[configuration]) {
|
|
297
304
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
298
305
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -302,7 +309,7 @@ var _Macie2Client = class _Macie2Client extends import_smithy_client.Client {
|
|
|
302
309
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
303
310
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
304
311
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
305
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
312
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
306
313
|
super(_config_8);
|
|
307
314
|
this.config = _config_8;
|
|
308
315
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -330,8 +337,6 @@ var _Macie2Client = class _Macie2Client extends import_smithy_client.Client {
|
|
|
330
337
|
super.destroy();
|
|
331
338
|
}
|
|
332
339
|
};
|
|
333
|
-
__name(_Macie2Client, "Macie2Client");
|
|
334
|
-
var Macie2Client = _Macie2Client;
|
|
335
340
|
|
|
336
341
|
// src/Macie2.ts
|
|
337
342
|
|
|
@@ -349,7 +354,10 @@ var import_uuid = require("uuid");
|
|
|
349
354
|
|
|
350
355
|
// src/models/Macie2ServiceException.ts
|
|
351
356
|
|
|
352
|
-
var
|
|
357
|
+
var Macie2ServiceException = class _Macie2ServiceException extends import_smithy_client.ServiceException {
|
|
358
|
+
static {
|
|
359
|
+
__name(this, "Macie2ServiceException");
|
|
360
|
+
}
|
|
353
361
|
/**
|
|
354
362
|
* @internal
|
|
355
363
|
*/
|
|
@@ -358,8 +366,6 @@ var _Macie2ServiceException = class _Macie2ServiceException extends import_smith
|
|
|
358
366
|
Object.setPrototypeOf(this, _Macie2ServiceException.prototype);
|
|
359
367
|
}
|
|
360
368
|
};
|
|
361
|
-
__name(_Macie2ServiceException, "Macie2ServiceException");
|
|
362
|
-
var Macie2ServiceException = _Macie2ServiceException;
|
|
363
369
|
|
|
364
370
|
// src/models/models_0.ts
|
|
365
371
|
var AdminStatus = {
|
|
@@ -597,7 +603,12 @@ var UsageStatisticsFilterKey = {
|
|
|
597
603
|
serviceLimit: "serviceLimit",
|
|
598
604
|
total: "total"
|
|
599
605
|
};
|
|
600
|
-
var
|
|
606
|
+
var AccessDeniedException = class _AccessDeniedException extends Macie2ServiceException {
|
|
607
|
+
static {
|
|
608
|
+
__name(this, "AccessDeniedException");
|
|
609
|
+
}
|
|
610
|
+
name = "AccessDeniedException";
|
|
611
|
+
$fault = "client";
|
|
601
612
|
/**
|
|
602
613
|
* @internal
|
|
603
614
|
*/
|
|
@@ -607,14 +618,15 @@ var _AccessDeniedException = class _AccessDeniedException extends Macie2ServiceE
|
|
|
607
618
|
$fault: "client",
|
|
608
619
|
...opts
|
|
609
620
|
});
|
|
610
|
-
this.name = "AccessDeniedException";
|
|
611
|
-
this.$fault = "client";
|
|
612
621
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
613
622
|
}
|
|
614
623
|
};
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
624
|
+
var ConflictException = class _ConflictException extends Macie2ServiceException {
|
|
625
|
+
static {
|
|
626
|
+
__name(this, "ConflictException");
|
|
627
|
+
}
|
|
628
|
+
name = "ConflictException";
|
|
629
|
+
$fault = "client";
|
|
618
630
|
/**
|
|
619
631
|
* @internal
|
|
620
632
|
*/
|
|
@@ -624,14 +636,15 @@ var _ConflictException = class _ConflictException extends Macie2ServiceException
|
|
|
624
636
|
$fault: "client",
|
|
625
637
|
...opts
|
|
626
638
|
});
|
|
627
|
-
this.name = "ConflictException";
|
|
628
|
-
this.$fault = "client";
|
|
629
639
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
630
640
|
}
|
|
631
641
|
};
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
642
|
+
var InternalServerException = class _InternalServerException extends Macie2ServiceException {
|
|
643
|
+
static {
|
|
644
|
+
__name(this, "InternalServerException");
|
|
645
|
+
}
|
|
646
|
+
name = "InternalServerException";
|
|
647
|
+
$fault = "server";
|
|
635
648
|
/**
|
|
636
649
|
* @internal
|
|
637
650
|
*/
|
|
@@ -641,14 +654,15 @@ var _InternalServerException = class _InternalServerException extends Macie2Serv
|
|
|
641
654
|
$fault: "server",
|
|
642
655
|
...opts
|
|
643
656
|
});
|
|
644
|
-
this.name = "InternalServerException";
|
|
645
|
-
this.$fault = "server";
|
|
646
657
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
647
658
|
}
|
|
648
659
|
};
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
660
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends Macie2ServiceException {
|
|
661
|
+
static {
|
|
662
|
+
__name(this, "ResourceNotFoundException");
|
|
663
|
+
}
|
|
664
|
+
name = "ResourceNotFoundException";
|
|
665
|
+
$fault = "client";
|
|
652
666
|
/**
|
|
653
667
|
* @internal
|
|
654
668
|
*/
|
|
@@ -658,14 +672,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Macie2
|
|
|
658
672
|
$fault: "client",
|
|
659
673
|
...opts
|
|
660
674
|
});
|
|
661
|
-
this.name = "ResourceNotFoundException";
|
|
662
|
-
this.$fault = "client";
|
|
663
675
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
664
676
|
}
|
|
665
677
|
};
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
678
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends Macie2ServiceException {
|
|
679
|
+
static {
|
|
680
|
+
__name(this, "ServiceQuotaExceededException");
|
|
681
|
+
}
|
|
682
|
+
name = "ServiceQuotaExceededException";
|
|
683
|
+
$fault = "client";
|
|
669
684
|
/**
|
|
670
685
|
* @internal
|
|
671
686
|
*/
|
|
@@ -675,14 +690,15 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
675
690
|
$fault: "client",
|
|
676
691
|
...opts
|
|
677
692
|
});
|
|
678
|
-
this.name = "ServiceQuotaExceededException";
|
|
679
|
-
this.$fault = "client";
|
|
680
693
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
681
694
|
}
|
|
682
695
|
};
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
696
|
+
var ThrottlingException = class _ThrottlingException extends Macie2ServiceException {
|
|
697
|
+
static {
|
|
698
|
+
__name(this, "ThrottlingException");
|
|
699
|
+
}
|
|
700
|
+
name = "ThrottlingException";
|
|
701
|
+
$fault = "client";
|
|
686
702
|
/**
|
|
687
703
|
* @internal
|
|
688
704
|
*/
|
|
@@ -692,14 +708,15 @@ var _ThrottlingException = class _ThrottlingException extends Macie2ServiceExcep
|
|
|
692
708
|
$fault: "client",
|
|
693
709
|
...opts
|
|
694
710
|
});
|
|
695
|
-
this.name = "ThrottlingException";
|
|
696
|
-
this.$fault = "client";
|
|
697
711
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
698
712
|
}
|
|
699
713
|
};
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
714
|
+
var ValidationException = class _ValidationException extends Macie2ServiceException {
|
|
715
|
+
static {
|
|
716
|
+
__name(this, "ValidationException");
|
|
717
|
+
}
|
|
718
|
+
name = "ValidationException";
|
|
719
|
+
$fault = "client";
|
|
703
720
|
/**
|
|
704
721
|
* @internal
|
|
705
722
|
*/
|
|
@@ -709,13 +726,9 @@ var _ValidationException = class _ValidationException extends Macie2ServiceExcep
|
|
|
709
726
|
$fault: "client",
|
|
710
727
|
...opts
|
|
711
728
|
});
|
|
712
|
-
this.name = "ValidationException";
|
|
713
|
-
this.$fault = "client";
|
|
714
729
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
715
730
|
}
|
|
716
731
|
};
|
|
717
|
-
__name(_ValidationException, "ValidationException");
|
|
718
|
-
var ValidationException = _ValidationException;
|
|
719
732
|
var AllowListStatusCode = {
|
|
720
733
|
OK: "OK",
|
|
721
734
|
S3_OBJECT_ACCESS_DENIED: "S3_OBJECT_ACCESS_DENIED",
|
|
@@ -801,7 +814,12 @@ var RevealRequestStatus = {
|
|
|
801
814
|
PROCESSING: "PROCESSING",
|
|
802
815
|
SUCCESS: "SUCCESS"
|
|
803
816
|
};
|
|
804
|
-
var
|
|
817
|
+
var UnprocessableEntityException = class _UnprocessableEntityException extends Macie2ServiceException {
|
|
818
|
+
static {
|
|
819
|
+
__name(this, "UnprocessableEntityException");
|
|
820
|
+
}
|
|
821
|
+
name = "UnprocessableEntityException";
|
|
822
|
+
$fault = "client";
|
|
805
823
|
/**
|
|
806
824
|
* @internal
|
|
807
825
|
*/
|
|
@@ -811,13 +829,9 @@ var _UnprocessableEntityException = class _UnprocessableEntityException extends
|
|
|
811
829
|
$fault: "client",
|
|
812
830
|
...opts
|
|
813
831
|
});
|
|
814
|
-
this.name = "UnprocessableEntityException";
|
|
815
|
-
this.$fault = "client";
|
|
816
832
|
Object.setPrototypeOf(this, _UnprocessableEntityException.prototype);
|
|
817
833
|
}
|
|
818
834
|
};
|
|
819
|
-
__name(_UnprocessableEntityException, "UnprocessableEntityException");
|
|
820
|
-
var UnprocessableEntityException = _UnprocessableEntityException;
|
|
821
835
|
var UsageStatisticsSortKey = {
|
|
822
836
|
accountId: "accountId",
|
|
823
837
|
freeTrialStartDate: "freeTrialStartDate",
|
|
@@ -4829,1135 +4843,1216 @@ var _tK = "tagKeys";
|
|
|
4829
4843
|
var _tR = "timeRange";
|
|
4830
4844
|
|
|
4831
4845
|
// src/commands/AcceptInvitationCommand.ts
|
|
4832
|
-
var
|
|
4846
|
+
var AcceptInvitationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4833
4847
|
return [
|
|
4834
4848
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4835
4849
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4836
4850
|
];
|
|
4837
4851
|
}).s("Macie2", "AcceptInvitation", {}).n("Macie2Client", "AcceptInvitationCommand").f(void 0, void 0).ser(se_AcceptInvitationCommand).de(de_AcceptInvitationCommand).build() {
|
|
4852
|
+
static {
|
|
4853
|
+
__name(this, "AcceptInvitationCommand");
|
|
4854
|
+
}
|
|
4838
4855
|
};
|
|
4839
|
-
__name(_AcceptInvitationCommand, "AcceptInvitationCommand");
|
|
4840
|
-
var AcceptInvitationCommand = _AcceptInvitationCommand;
|
|
4841
4856
|
|
|
4842
4857
|
// src/commands/BatchGetCustomDataIdentifiersCommand.ts
|
|
4843
4858
|
|
|
4844
4859
|
|
|
4845
4860
|
|
|
4846
|
-
var
|
|
4861
|
+
var BatchGetCustomDataIdentifiersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4847
4862
|
return [
|
|
4848
4863
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4849
4864
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4850
4865
|
];
|
|
4851
4866
|
}).s("Macie2", "BatchGetCustomDataIdentifiers", {}).n("Macie2Client", "BatchGetCustomDataIdentifiersCommand").f(void 0, void 0).ser(se_BatchGetCustomDataIdentifiersCommand).de(de_BatchGetCustomDataIdentifiersCommand).build() {
|
|
4867
|
+
static {
|
|
4868
|
+
__name(this, "BatchGetCustomDataIdentifiersCommand");
|
|
4869
|
+
}
|
|
4852
4870
|
};
|
|
4853
|
-
__name(_BatchGetCustomDataIdentifiersCommand, "BatchGetCustomDataIdentifiersCommand");
|
|
4854
|
-
var BatchGetCustomDataIdentifiersCommand = _BatchGetCustomDataIdentifiersCommand;
|
|
4855
4871
|
|
|
4856
4872
|
// src/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.ts
|
|
4857
4873
|
|
|
4858
4874
|
|
|
4859
4875
|
|
|
4860
|
-
var
|
|
4876
|
+
var BatchUpdateAutomatedDiscoveryAccountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4861
4877
|
return [
|
|
4862
4878
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4863
4879
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4864
4880
|
];
|
|
4865
4881
|
}).s("Macie2", "BatchUpdateAutomatedDiscoveryAccounts", {}).n("Macie2Client", "BatchUpdateAutomatedDiscoveryAccountsCommand").f(void 0, void 0).ser(se_BatchUpdateAutomatedDiscoveryAccountsCommand).de(de_BatchUpdateAutomatedDiscoveryAccountsCommand).build() {
|
|
4882
|
+
static {
|
|
4883
|
+
__name(this, "BatchUpdateAutomatedDiscoveryAccountsCommand");
|
|
4884
|
+
}
|
|
4866
4885
|
};
|
|
4867
|
-
__name(_BatchUpdateAutomatedDiscoveryAccountsCommand, "BatchUpdateAutomatedDiscoveryAccountsCommand");
|
|
4868
|
-
var BatchUpdateAutomatedDiscoveryAccountsCommand = _BatchUpdateAutomatedDiscoveryAccountsCommand;
|
|
4869
4886
|
|
|
4870
4887
|
// src/commands/CreateAllowListCommand.ts
|
|
4871
4888
|
|
|
4872
4889
|
|
|
4873
4890
|
|
|
4874
|
-
var
|
|
4891
|
+
var CreateAllowListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4875
4892
|
return [
|
|
4876
4893
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4877
4894
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4878
4895
|
];
|
|
4879
4896
|
}).s("Macie2", "CreateAllowList", {}).n("Macie2Client", "CreateAllowListCommand").f(void 0, void 0).ser(se_CreateAllowListCommand).de(de_CreateAllowListCommand).build() {
|
|
4897
|
+
static {
|
|
4898
|
+
__name(this, "CreateAllowListCommand");
|
|
4899
|
+
}
|
|
4880
4900
|
};
|
|
4881
|
-
__name(_CreateAllowListCommand, "CreateAllowListCommand");
|
|
4882
|
-
var CreateAllowListCommand = _CreateAllowListCommand;
|
|
4883
4901
|
|
|
4884
4902
|
// src/commands/CreateClassificationJobCommand.ts
|
|
4885
4903
|
|
|
4886
4904
|
|
|
4887
4905
|
|
|
4888
|
-
var
|
|
4906
|
+
var CreateClassificationJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4889
4907
|
return [
|
|
4890
4908
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4891
4909
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4892
4910
|
];
|
|
4893
4911
|
}).s("Macie2", "CreateClassificationJob", {}).n("Macie2Client", "CreateClassificationJobCommand").f(void 0, void 0).ser(se_CreateClassificationJobCommand).de(de_CreateClassificationJobCommand).build() {
|
|
4912
|
+
static {
|
|
4913
|
+
__name(this, "CreateClassificationJobCommand");
|
|
4914
|
+
}
|
|
4894
4915
|
};
|
|
4895
|
-
__name(_CreateClassificationJobCommand, "CreateClassificationJobCommand");
|
|
4896
|
-
var CreateClassificationJobCommand = _CreateClassificationJobCommand;
|
|
4897
4916
|
|
|
4898
4917
|
// src/commands/CreateCustomDataIdentifierCommand.ts
|
|
4899
4918
|
|
|
4900
4919
|
|
|
4901
4920
|
|
|
4902
|
-
var
|
|
4921
|
+
var CreateCustomDataIdentifierCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4903
4922
|
return [
|
|
4904
4923
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4905
4924
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4906
4925
|
];
|
|
4907
4926
|
}).s("Macie2", "CreateCustomDataIdentifier", {}).n("Macie2Client", "CreateCustomDataIdentifierCommand").f(void 0, void 0).ser(se_CreateCustomDataIdentifierCommand).de(de_CreateCustomDataIdentifierCommand).build() {
|
|
4927
|
+
static {
|
|
4928
|
+
__name(this, "CreateCustomDataIdentifierCommand");
|
|
4929
|
+
}
|
|
4908
4930
|
};
|
|
4909
|
-
__name(_CreateCustomDataIdentifierCommand, "CreateCustomDataIdentifierCommand");
|
|
4910
|
-
var CreateCustomDataIdentifierCommand = _CreateCustomDataIdentifierCommand;
|
|
4911
4931
|
|
|
4912
4932
|
// src/commands/CreateFindingsFilterCommand.ts
|
|
4913
4933
|
|
|
4914
4934
|
|
|
4915
4935
|
|
|
4916
|
-
var
|
|
4936
|
+
var CreateFindingsFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4917
4937
|
return [
|
|
4918
4938
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4919
4939
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4920
4940
|
];
|
|
4921
4941
|
}).s("Macie2", "CreateFindingsFilter", {}).n("Macie2Client", "CreateFindingsFilterCommand").f(void 0, void 0).ser(se_CreateFindingsFilterCommand).de(de_CreateFindingsFilterCommand).build() {
|
|
4942
|
+
static {
|
|
4943
|
+
__name(this, "CreateFindingsFilterCommand");
|
|
4944
|
+
}
|
|
4922
4945
|
};
|
|
4923
|
-
__name(_CreateFindingsFilterCommand, "CreateFindingsFilterCommand");
|
|
4924
|
-
var CreateFindingsFilterCommand = _CreateFindingsFilterCommand;
|
|
4925
4946
|
|
|
4926
4947
|
// src/commands/CreateInvitationsCommand.ts
|
|
4927
4948
|
|
|
4928
4949
|
|
|
4929
4950
|
|
|
4930
|
-
var
|
|
4951
|
+
var CreateInvitationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4931
4952
|
return [
|
|
4932
4953
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4933
4954
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4934
4955
|
];
|
|
4935
4956
|
}).s("Macie2", "CreateInvitations", {}).n("Macie2Client", "CreateInvitationsCommand").f(void 0, void 0).ser(se_CreateInvitationsCommand).de(de_CreateInvitationsCommand).build() {
|
|
4957
|
+
static {
|
|
4958
|
+
__name(this, "CreateInvitationsCommand");
|
|
4959
|
+
}
|
|
4936
4960
|
};
|
|
4937
|
-
__name(_CreateInvitationsCommand, "CreateInvitationsCommand");
|
|
4938
|
-
var CreateInvitationsCommand = _CreateInvitationsCommand;
|
|
4939
4961
|
|
|
4940
4962
|
// src/commands/CreateMemberCommand.ts
|
|
4941
4963
|
|
|
4942
4964
|
|
|
4943
4965
|
|
|
4944
|
-
var
|
|
4966
|
+
var CreateMemberCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4945
4967
|
return [
|
|
4946
4968
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4947
4969
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4948
4970
|
];
|
|
4949
4971
|
}).s("Macie2", "CreateMember", {}).n("Macie2Client", "CreateMemberCommand").f(void 0, void 0).ser(se_CreateMemberCommand).de(de_CreateMemberCommand).build() {
|
|
4972
|
+
static {
|
|
4973
|
+
__name(this, "CreateMemberCommand");
|
|
4974
|
+
}
|
|
4950
4975
|
};
|
|
4951
|
-
__name(_CreateMemberCommand, "CreateMemberCommand");
|
|
4952
|
-
var CreateMemberCommand = _CreateMemberCommand;
|
|
4953
4976
|
|
|
4954
4977
|
// src/commands/CreateSampleFindingsCommand.ts
|
|
4955
4978
|
|
|
4956
4979
|
|
|
4957
4980
|
|
|
4958
|
-
var
|
|
4981
|
+
var CreateSampleFindingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4959
4982
|
return [
|
|
4960
4983
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4961
4984
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4962
4985
|
];
|
|
4963
4986
|
}).s("Macie2", "CreateSampleFindings", {}).n("Macie2Client", "CreateSampleFindingsCommand").f(void 0, void 0).ser(se_CreateSampleFindingsCommand).de(de_CreateSampleFindingsCommand).build() {
|
|
4987
|
+
static {
|
|
4988
|
+
__name(this, "CreateSampleFindingsCommand");
|
|
4989
|
+
}
|
|
4964
4990
|
};
|
|
4965
|
-
__name(_CreateSampleFindingsCommand, "CreateSampleFindingsCommand");
|
|
4966
|
-
var CreateSampleFindingsCommand = _CreateSampleFindingsCommand;
|
|
4967
4991
|
|
|
4968
4992
|
// src/commands/DeclineInvitationsCommand.ts
|
|
4969
4993
|
|
|
4970
4994
|
|
|
4971
4995
|
|
|
4972
|
-
var
|
|
4996
|
+
var DeclineInvitationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4973
4997
|
return [
|
|
4974
4998
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4975
4999
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4976
5000
|
];
|
|
4977
5001
|
}).s("Macie2", "DeclineInvitations", {}).n("Macie2Client", "DeclineInvitationsCommand").f(void 0, void 0).ser(se_DeclineInvitationsCommand).de(de_DeclineInvitationsCommand).build() {
|
|
5002
|
+
static {
|
|
5003
|
+
__name(this, "DeclineInvitationsCommand");
|
|
5004
|
+
}
|
|
4978
5005
|
};
|
|
4979
|
-
__name(_DeclineInvitationsCommand, "DeclineInvitationsCommand");
|
|
4980
|
-
var DeclineInvitationsCommand = _DeclineInvitationsCommand;
|
|
4981
5006
|
|
|
4982
5007
|
// src/commands/DeleteAllowListCommand.ts
|
|
4983
5008
|
|
|
4984
5009
|
|
|
4985
5010
|
|
|
4986
|
-
var
|
|
5011
|
+
var DeleteAllowListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4987
5012
|
return [
|
|
4988
5013
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4989
5014
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4990
5015
|
];
|
|
4991
5016
|
}).s("Macie2", "DeleteAllowList", {}).n("Macie2Client", "DeleteAllowListCommand").f(void 0, void 0).ser(se_DeleteAllowListCommand).de(de_DeleteAllowListCommand).build() {
|
|
5017
|
+
static {
|
|
5018
|
+
__name(this, "DeleteAllowListCommand");
|
|
5019
|
+
}
|
|
4992
5020
|
};
|
|
4993
|
-
__name(_DeleteAllowListCommand, "DeleteAllowListCommand");
|
|
4994
|
-
var DeleteAllowListCommand = _DeleteAllowListCommand;
|
|
4995
5021
|
|
|
4996
5022
|
// src/commands/DeleteCustomDataIdentifierCommand.ts
|
|
4997
5023
|
|
|
4998
5024
|
|
|
4999
5025
|
|
|
5000
|
-
var
|
|
5026
|
+
var DeleteCustomDataIdentifierCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5001
5027
|
return [
|
|
5002
5028
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5003
5029
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5004
5030
|
];
|
|
5005
5031
|
}).s("Macie2", "DeleteCustomDataIdentifier", {}).n("Macie2Client", "DeleteCustomDataIdentifierCommand").f(void 0, void 0).ser(se_DeleteCustomDataIdentifierCommand).de(de_DeleteCustomDataIdentifierCommand).build() {
|
|
5032
|
+
static {
|
|
5033
|
+
__name(this, "DeleteCustomDataIdentifierCommand");
|
|
5034
|
+
}
|
|
5006
5035
|
};
|
|
5007
|
-
__name(_DeleteCustomDataIdentifierCommand, "DeleteCustomDataIdentifierCommand");
|
|
5008
|
-
var DeleteCustomDataIdentifierCommand = _DeleteCustomDataIdentifierCommand;
|
|
5009
5036
|
|
|
5010
5037
|
// src/commands/DeleteFindingsFilterCommand.ts
|
|
5011
5038
|
|
|
5012
5039
|
|
|
5013
5040
|
|
|
5014
|
-
var
|
|
5041
|
+
var DeleteFindingsFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5015
5042
|
return [
|
|
5016
5043
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5017
5044
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5018
5045
|
];
|
|
5019
5046
|
}).s("Macie2", "DeleteFindingsFilter", {}).n("Macie2Client", "DeleteFindingsFilterCommand").f(void 0, void 0).ser(se_DeleteFindingsFilterCommand).de(de_DeleteFindingsFilterCommand).build() {
|
|
5047
|
+
static {
|
|
5048
|
+
__name(this, "DeleteFindingsFilterCommand");
|
|
5049
|
+
}
|
|
5020
5050
|
};
|
|
5021
|
-
__name(_DeleteFindingsFilterCommand, "DeleteFindingsFilterCommand");
|
|
5022
|
-
var DeleteFindingsFilterCommand = _DeleteFindingsFilterCommand;
|
|
5023
5051
|
|
|
5024
5052
|
// src/commands/DeleteInvitationsCommand.ts
|
|
5025
5053
|
|
|
5026
5054
|
|
|
5027
5055
|
|
|
5028
|
-
var
|
|
5056
|
+
var DeleteInvitationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5029
5057
|
return [
|
|
5030
5058
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5031
5059
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5032
5060
|
];
|
|
5033
5061
|
}).s("Macie2", "DeleteInvitations", {}).n("Macie2Client", "DeleteInvitationsCommand").f(void 0, void 0).ser(se_DeleteInvitationsCommand).de(de_DeleteInvitationsCommand).build() {
|
|
5062
|
+
static {
|
|
5063
|
+
__name(this, "DeleteInvitationsCommand");
|
|
5064
|
+
}
|
|
5034
5065
|
};
|
|
5035
|
-
__name(_DeleteInvitationsCommand, "DeleteInvitationsCommand");
|
|
5036
|
-
var DeleteInvitationsCommand = _DeleteInvitationsCommand;
|
|
5037
5066
|
|
|
5038
5067
|
// src/commands/DeleteMemberCommand.ts
|
|
5039
5068
|
|
|
5040
5069
|
|
|
5041
5070
|
|
|
5042
|
-
var
|
|
5071
|
+
var DeleteMemberCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5043
5072
|
return [
|
|
5044
5073
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5045
5074
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5046
5075
|
];
|
|
5047
5076
|
}).s("Macie2", "DeleteMember", {}).n("Macie2Client", "DeleteMemberCommand").f(void 0, void 0).ser(se_DeleteMemberCommand).de(de_DeleteMemberCommand).build() {
|
|
5077
|
+
static {
|
|
5078
|
+
__name(this, "DeleteMemberCommand");
|
|
5079
|
+
}
|
|
5048
5080
|
};
|
|
5049
|
-
__name(_DeleteMemberCommand, "DeleteMemberCommand");
|
|
5050
|
-
var DeleteMemberCommand = _DeleteMemberCommand;
|
|
5051
5081
|
|
|
5052
5082
|
// src/commands/DescribeBucketsCommand.ts
|
|
5053
5083
|
|
|
5054
5084
|
|
|
5055
5085
|
|
|
5056
|
-
var
|
|
5086
|
+
var DescribeBucketsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5057
5087
|
return [
|
|
5058
5088
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5059
5089
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5060
5090
|
];
|
|
5061
5091
|
}).s("Macie2", "DescribeBuckets", {}).n("Macie2Client", "DescribeBucketsCommand").f(void 0, void 0).ser(se_DescribeBucketsCommand).de(de_DescribeBucketsCommand).build() {
|
|
5092
|
+
static {
|
|
5093
|
+
__name(this, "DescribeBucketsCommand");
|
|
5094
|
+
}
|
|
5062
5095
|
};
|
|
5063
|
-
__name(_DescribeBucketsCommand, "DescribeBucketsCommand");
|
|
5064
|
-
var DescribeBucketsCommand = _DescribeBucketsCommand;
|
|
5065
5096
|
|
|
5066
5097
|
// src/commands/DescribeClassificationJobCommand.ts
|
|
5067
5098
|
|
|
5068
5099
|
|
|
5069
5100
|
|
|
5070
|
-
var
|
|
5101
|
+
var DescribeClassificationJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5071
5102
|
return [
|
|
5072
5103
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5073
5104
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5074
5105
|
];
|
|
5075
5106
|
}).s("Macie2", "DescribeClassificationJob", {}).n("Macie2Client", "DescribeClassificationJobCommand").f(void 0, void 0).ser(se_DescribeClassificationJobCommand).de(de_DescribeClassificationJobCommand).build() {
|
|
5107
|
+
static {
|
|
5108
|
+
__name(this, "DescribeClassificationJobCommand");
|
|
5109
|
+
}
|
|
5076
5110
|
};
|
|
5077
|
-
__name(_DescribeClassificationJobCommand, "DescribeClassificationJobCommand");
|
|
5078
|
-
var DescribeClassificationJobCommand = _DescribeClassificationJobCommand;
|
|
5079
5111
|
|
|
5080
5112
|
// src/commands/DescribeOrganizationConfigurationCommand.ts
|
|
5081
5113
|
|
|
5082
5114
|
|
|
5083
5115
|
|
|
5084
|
-
var
|
|
5116
|
+
var DescribeOrganizationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5085
5117
|
return [
|
|
5086
5118
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5087
5119
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5088
5120
|
];
|
|
5089
5121
|
}).s("Macie2", "DescribeOrganizationConfiguration", {}).n("Macie2Client", "DescribeOrganizationConfigurationCommand").f(void 0, void 0).ser(se_DescribeOrganizationConfigurationCommand).de(de_DescribeOrganizationConfigurationCommand).build() {
|
|
5122
|
+
static {
|
|
5123
|
+
__name(this, "DescribeOrganizationConfigurationCommand");
|
|
5124
|
+
}
|
|
5090
5125
|
};
|
|
5091
|
-
__name(_DescribeOrganizationConfigurationCommand, "DescribeOrganizationConfigurationCommand");
|
|
5092
|
-
var DescribeOrganizationConfigurationCommand = _DescribeOrganizationConfigurationCommand;
|
|
5093
5126
|
|
|
5094
5127
|
// src/commands/DisableMacieCommand.ts
|
|
5095
5128
|
|
|
5096
5129
|
|
|
5097
5130
|
|
|
5098
|
-
var
|
|
5131
|
+
var DisableMacieCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5099
5132
|
return [
|
|
5100
5133
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5101
5134
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5102
5135
|
];
|
|
5103
5136
|
}).s("Macie2", "DisableMacie", {}).n("Macie2Client", "DisableMacieCommand").f(void 0, void 0).ser(se_DisableMacieCommand).de(de_DisableMacieCommand).build() {
|
|
5137
|
+
static {
|
|
5138
|
+
__name(this, "DisableMacieCommand");
|
|
5139
|
+
}
|
|
5104
5140
|
};
|
|
5105
|
-
__name(_DisableMacieCommand, "DisableMacieCommand");
|
|
5106
|
-
var DisableMacieCommand = _DisableMacieCommand;
|
|
5107
5141
|
|
|
5108
5142
|
// src/commands/DisableOrganizationAdminAccountCommand.ts
|
|
5109
5143
|
|
|
5110
5144
|
|
|
5111
5145
|
|
|
5112
|
-
var
|
|
5146
|
+
var DisableOrganizationAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5113
5147
|
return [
|
|
5114
5148
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5115
5149
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5116
5150
|
];
|
|
5117
5151
|
}).s("Macie2", "DisableOrganizationAdminAccount", {}).n("Macie2Client", "DisableOrganizationAdminAccountCommand").f(void 0, void 0).ser(se_DisableOrganizationAdminAccountCommand).de(de_DisableOrganizationAdminAccountCommand).build() {
|
|
5152
|
+
static {
|
|
5153
|
+
__name(this, "DisableOrganizationAdminAccountCommand");
|
|
5154
|
+
}
|
|
5118
5155
|
};
|
|
5119
|
-
__name(_DisableOrganizationAdminAccountCommand, "DisableOrganizationAdminAccountCommand");
|
|
5120
|
-
var DisableOrganizationAdminAccountCommand = _DisableOrganizationAdminAccountCommand;
|
|
5121
5156
|
|
|
5122
5157
|
// src/commands/DisassociateFromAdministratorAccountCommand.ts
|
|
5123
5158
|
|
|
5124
5159
|
|
|
5125
5160
|
|
|
5126
|
-
var
|
|
5161
|
+
var DisassociateFromAdministratorAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5127
5162
|
return [
|
|
5128
5163
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5129
5164
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5130
5165
|
];
|
|
5131
5166
|
}).s("Macie2", "DisassociateFromAdministratorAccount", {}).n("Macie2Client", "DisassociateFromAdministratorAccountCommand").f(void 0, void 0).ser(se_DisassociateFromAdministratorAccountCommand).de(de_DisassociateFromAdministratorAccountCommand).build() {
|
|
5167
|
+
static {
|
|
5168
|
+
__name(this, "DisassociateFromAdministratorAccountCommand");
|
|
5169
|
+
}
|
|
5132
5170
|
};
|
|
5133
|
-
__name(_DisassociateFromAdministratorAccountCommand, "DisassociateFromAdministratorAccountCommand");
|
|
5134
|
-
var DisassociateFromAdministratorAccountCommand = _DisassociateFromAdministratorAccountCommand;
|
|
5135
5171
|
|
|
5136
5172
|
// src/commands/DisassociateFromMasterAccountCommand.ts
|
|
5137
5173
|
|
|
5138
5174
|
|
|
5139
5175
|
|
|
5140
|
-
var
|
|
5176
|
+
var DisassociateFromMasterAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5141
5177
|
return [
|
|
5142
5178
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5143
5179
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5144
5180
|
];
|
|
5145
5181
|
}).s("Macie2", "DisassociateFromMasterAccount", {}).n("Macie2Client", "DisassociateFromMasterAccountCommand").f(void 0, void 0).ser(se_DisassociateFromMasterAccountCommand).de(de_DisassociateFromMasterAccountCommand).build() {
|
|
5182
|
+
static {
|
|
5183
|
+
__name(this, "DisassociateFromMasterAccountCommand");
|
|
5184
|
+
}
|
|
5146
5185
|
};
|
|
5147
|
-
__name(_DisassociateFromMasterAccountCommand, "DisassociateFromMasterAccountCommand");
|
|
5148
|
-
var DisassociateFromMasterAccountCommand = _DisassociateFromMasterAccountCommand;
|
|
5149
5186
|
|
|
5150
5187
|
// src/commands/DisassociateMemberCommand.ts
|
|
5151
5188
|
|
|
5152
5189
|
|
|
5153
5190
|
|
|
5154
|
-
var
|
|
5191
|
+
var DisassociateMemberCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5155
5192
|
return [
|
|
5156
5193
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5157
5194
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5158
5195
|
];
|
|
5159
5196
|
}).s("Macie2", "DisassociateMember", {}).n("Macie2Client", "DisassociateMemberCommand").f(void 0, void 0).ser(se_DisassociateMemberCommand).de(de_DisassociateMemberCommand).build() {
|
|
5197
|
+
static {
|
|
5198
|
+
__name(this, "DisassociateMemberCommand");
|
|
5199
|
+
}
|
|
5160
5200
|
};
|
|
5161
|
-
__name(_DisassociateMemberCommand, "DisassociateMemberCommand");
|
|
5162
|
-
var DisassociateMemberCommand = _DisassociateMemberCommand;
|
|
5163
5201
|
|
|
5164
5202
|
// src/commands/EnableMacieCommand.ts
|
|
5165
5203
|
|
|
5166
5204
|
|
|
5167
5205
|
|
|
5168
|
-
var
|
|
5206
|
+
var EnableMacieCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5169
5207
|
return [
|
|
5170
5208
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5171
5209
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5172
5210
|
];
|
|
5173
5211
|
}).s("Macie2", "EnableMacie", {}).n("Macie2Client", "EnableMacieCommand").f(void 0, void 0).ser(se_EnableMacieCommand).de(de_EnableMacieCommand).build() {
|
|
5212
|
+
static {
|
|
5213
|
+
__name(this, "EnableMacieCommand");
|
|
5214
|
+
}
|
|
5174
5215
|
};
|
|
5175
|
-
__name(_EnableMacieCommand, "EnableMacieCommand");
|
|
5176
|
-
var EnableMacieCommand = _EnableMacieCommand;
|
|
5177
5216
|
|
|
5178
5217
|
// src/commands/EnableOrganizationAdminAccountCommand.ts
|
|
5179
5218
|
|
|
5180
5219
|
|
|
5181
5220
|
|
|
5182
|
-
var
|
|
5221
|
+
var EnableOrganizationAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5183
5222
|
return [
|
|
5184
5223
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5185
5224
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5186
5225
|
];
|
|
5187
5226
|
}).s("Macie2", "EnableOrganizationAdminAccount", {}).n("Macie2Client", "EnableOrganizationAdminAccountCommand").f(void 0, void 0).ser(se_EnableOrganizationAdminAccountCommand).de(de_EnableOrganizationAdminAccountCommand).build() {
|
|
5227
|
+
static {
|
|
5228
|
+
__name(this, "EnableOrganizationAdminAccountCommand");
|
|
5229
|
+
}
|
|
5188
5230
|
};
|
|
5189
|
-
__name(_EnableOrganizationAdminAccountCommand, "EnableOrganizationAdminAccountCommand");
|
|
5190
|
-
var EnableOrganizationAdminAccountCommand = _EnableOrganizationAdminAccountCommand;
|
|
5191
5231
|
|
|
5192
5232
|
// src/commands/GetAdministratorAccountCommand.ts
|
|
5193
5233
|
|
|
5194
5234
|
|
|
5195
5235
|
|
|
5196
|
-
var
|
|
5236
|
+
var GetAdministratorAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5197
5237
|
return [
|
|
5198
5238
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5199
5239
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5200
5240
|
];
|
|
5201
5241
|
}).s("Macie2", "GetAdministratorAccount", {}).n("Macie2Client", "GetAdministratorAccountCommand").f(void 0, void 0).ser(se_GetAdministratorAccountCommand).de(de_GetAdministratorAccountCommand).build() {
|
|
5242
|
+
static {
|
|
5243
|
+
__name(this, "GetAdministratorAccountCommand");
|
|
5244
|
+
}
|
|
5202
5245
|
};
|
|
5203
|
-
__name(_GetAdministratorAccountCommand, "GetAdministratorAccountCommand");
|
|
5204
|
-
var GetAdministratorAccountCommand = _GetAdministratorAccountCommand;
|
|
5205
5246
|
|
|
5206
5247
|
// src/commands/GetAllowListCommand.ts
|
|
5207
5248
|
|
|
5208
5249
|
|
|
5209
5250
|
|
|
5210
|
-
var
|
|
5251
|
+
var GetAllowListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5211
5252
|
return [
|
|
5212
5253
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5213
5254
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5214
5255
|
];
|
|
5215
5256
|
}).s("Macie2", "GetAllowList", {}).n("Macie2Client", "GetAllowListCommand").f(void 0, void 0).ser(se_GetAllowListCommand).de(de_GetAllowListCommand).build() {
|
|
5257
|
+
static {
|
|
5258
|
+
__name(this, "GetAllowListCommand");
|
|
5259
|
+
}
|
|
5216
5260
|
};
|
|
5217
|
-
__name(_GetAllowListCommand, "GetAllowListCommand");
|
|
5218
|
-
var GetAllowListCommand = _GetAllowListCommand;
|
|
5219
5261
|
|
|
5220
5262
|
// src/commands/GetAutomatedDiscoveryConfigurationCommand.ts
|
|
5221
5263
|
|
|
5222
5264
|
|
|
5223
5265
|
|
|
5224
|
-
var
|
|
5266
|
+
var GetAutomatedDiscoveryConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5225
5267
|
return [
|
|
5226
5268
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5227
5269
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5228
5270
|
];
|
|
5229
5271
|
}).s("Macie2", "GetAutomatedDiscoveryConfiguration", {}).n("Macie2Client", "GetAutomatedDiscoveryConfigurationCommand").f(void 0, void 0).ser(se_GetAutomatedDiscoveryConfigurationCommand).de(de_GetAutomatedDiscoveryConfigurationCommand).build() {
|
|
5272
|
+
static {
|
|
5273
|
+
__name(this, "GetAutomatedDiscoveryConfigurationCommand");
|
|
5274
|
+
}
|
|
5230
5275
|
};
|
|
5231
|
-
__name(_GetAutomatedDiscoveryConfigurationCommand, "GetAutomatedDiscoveryConfigurationCommand");
|
|
5232
|
-
var GetAutomatedDiscoveryConfigurationCommand = _GetAutomatedDiscoveryConfigurationCommand;
|
|
5233
5276
|
|
|
5234
5277
|
// src/commands/GetBucketStatisticsCommand.ts
|
|
5235
5278
|
|
|
5236
5279
|
|
|
5237
5280
|
|
|
5238
|
-
var
|
|
5281
|
+
var GetBucketStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5239
5282
|
return [
|
|
5240
5283
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5241
5284
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5242
5285
|
];
|
|
5243
5286
|
}).s("Macie2", "GetBucketStatistics", {}).n("Macie2Client", "GetBucketStatisticsCommand").f(void 0, void 0).ser(se_GetBucketStatisticsCommand).de(de_GetBucketStatisticsCommand).build() {
|
|
5287
|
+
static {
|
|
5288
|
+
__name(this, "GetBucketStatisticsCommand");
|
|
5289
|
+
}
|
|
5244
5290
|
};
|
|
5245
|
-
__name(_GetBucketStatisticsCommand, "GetBucketStatisticsCommand");
|
|
5246
|
-
var GetBucketStatisticsCommand = _GetBucketStatisticsCommand;
|
|
5247
5291
|
|
|
5248
5292
|
// src/commands/GetClassificationExportConfigurationCommand.ts
|
|
5249
5293
|
|
|
5250
5294
|
|
|
5251
5295
|
|
|
5252
|
-
var
|
|
5296
|
+
var GetClassificationExportConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5253
5297
|
return [
|
|
5254
5298
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5255
5299
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5256
5300
|
];
|
|
5257
5301
|
}).s("Macie2", "GetClassificationExportConfiguration", {}).n("Macie2Client", "GetClassificationExportConfigurationCommand").f(void 0, void 0).ser(se_GetClassificationExportConfigurationCommand).de(de_GetClassificationExportConfigurationCommand).build() {
|
|
5302
|
+
static {
|
|
5303
|
+
__name(this, "GetClassificationExportConfigurationCommand");
|
|
5304
|
+
}
|
|
5258
5305
|
};
|
|
5259
|
-
__name(_GetClassificationExportConfigurationCommand, "GetClassificationExportConfigurationCommand");
|
|
5260
|
-
var GetClassificationExportConfigurationCommand = _GetClassificationExportConfigurationCommand;
|
|
5261
5306
|
|
|
5262
5307
|
// src/commands/GetClassificationScopeCommand.ts
|
|
5263
5308
|
|
|
5264
5309
|
|
|
5265
5310
|
|
|
5266
|
-
var
|
|
5311
|
+
var GetClassificationScopeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5267
5312
|
return [
|
|
5268
5313
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5269
5314
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5270
5315
|
];
|
|
5271
5316
|
}).s("Macie2", "GetClassificationScope", {}).n("Macie2Client", "GetClassificationScopeCommand").f(void 0, void 0).ser(se_GetClassificationScopeCommand).de(de_GetClassificationScopeCommand).build() {
|
|
5317
|
+
static {
|
|
5318
|
+
__name(this, "GetClassificationScopeCommand");
|
|
5319
|
+
}
|
|
5272
5320
|
};
|
|
5273
|
-
__name(_GetClassificationScopeCommand, "GetClassificationScopeCommand");
|
|
5274
|
-
var GetClassificationScopeCommand = _GetClassificationScopeCommand;
|
|
5275
5321
|
|
|
5276
5322
|
// src/commands/GetCustomDataIdentifierCommand.ts
|
|
5277
5323
|
|
|
5278
5324
|
|
|
5279
5325
|
|
|
5280
|
-
var
|
|
5326
|
+
var GetCustomDataIdentifierCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5281
5327
|
return [
|
|
5282
5328
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5283
5329
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5284
5330
|
];
|
|
5285
5331
|
}).s("Macie2", "GetCustomDataIdentifier", {}).n("Macie2Client", "GetCustomDataIdentifierCommand").f(void 0, void 0).ser(se_GetCustomDataIdentifierCommand).de(de_GetCustomDataIdentifierCommand).build() {
|
|
5332
|
+
static {
|
|
5333
|
+
__name(this, "GetCustomDataIdentifierCommand");
|
|
5334
|
+
}
|
|
5286
5335
|
};
|
|
5287
|
-
__name(_GetCustomDataIdentifierCommand, "GetCustomDataIdentifierCommand");
|
|
5288
|
-
var GetCustomDataIdentifierCommand = _GetCustomDataIdentifierCommand;
|
|
5289
5336
|
|
|
5290
5337
|
// src/commands/GetFindingsCommand.ts
|
|
5291
5338
|
|
|
5292
5339
|
|
|
5293
5340
|
|
|
5294
|
-
var
|
|
5341
|
+
var GetFindingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5295
5342
|
return [
|
|
5296
5343
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5297
5344
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5298
5345
|
];
|
|
5299
5346
|
}).s("Macie2", "GetFindings", {}).n("Macie2Client", "GetFindingsCommand").f(void 0, void 0).ser(se_GetFindingsCommand).de(de_GetFindingsCommand).build() {
|
|
5347
|
+
static {
|
|
5348
|
+
__name(this, "GetFindingsCommand");
|
|
5349
|
+
}
|
|
5300
5350
|
};
|
|
5301
|
-
__name(_GetFindingsCommand, "GetFindingsCommand");
|
|
5302
|
-
var GetFindingsCommand = _GetFindingsCommand;
|
|
5303
5351
|
|
|
5304
5352
|
// src/commands/GetFindingsFilterCommand.ts
|
|
5305
5353
|
|
|
5306
5354
|
|
|
5307
5355
|
|
|
5308
|
-
var
|
|
5356
|
+
var GetFindingsFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5309
5357
|
return [
|
|
5310
5358
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5311
5359
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5312
5360
|
];
|
|
5313
5361
|
}).s("Macie2", "GetFindingsFilter", {}).n("Macie2Client", "GetFindingsFilterCommand").f(void 0, void 0).ser(se_GetFindingsFilterCommand).de(de_GetFindingsFilterCommand).build() {
|
|
5362
|
+
static {
|
|
5363
|
+
__name(this, "GetFindingsFilterCommand");
|
|
5364
|
+
}
|
|
5314
5365
|
};
|
|
5315
|
-
__name(_GetFindingsFilterCommand, "GetFindingsFilterCommand");
|
|
5316
|
-
var GetFindingsFilterCommand = _GetFindingsFilterCommand;
|
|
5317
5366
|
|
|
5318
5367
|
// src/commands/GetFindingsPublicationConfigurationCommand.ts
|
|
5319
5368
|
|
|
5320
5369
|
|
|
5321
5370
|
|
|
5322
|
-
var
|
|
5371
|
+
var GetFindingsPublicationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5323
5372
|
return [
|
|
5324
5373
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5325
5374
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5326
5375
|
];
|
|
5327
5376
|
}).s("Macie2", "GetFindingsPublicationConfiguration", {}).n("Macie2Client", "GetFindingsPublicationConfigurationCommand").f(void 0, void 0).ser(se_GetFindingsPublicationConfigurationCommand).de(de_GetFindingsPublicationConfigurationCommand).build() {
|
|
5377
|
+
static {
|
|
5378
|
+
__name(this, "GetFindingsPublicationConfigurationCommand");
|
|
5379
|
+
}
|
|
5328
5380
|
};
|
|
5329
|
-
__name(_GetFindingsPublicationConfigurationCommand, "GetFindingsPublicationConfigurationCommand");
|
|
5330
|
-
var GetFindingsPublicationConfigurationCommand = _GetFindingsPublicationConfigurationCommand;
|
|
5331
5381
|
|
|
5332
5382
|
// src/commands/GetFindingStatisticsCommand.ts
|
|
5333
5383
|
|
|
5334
5384
|
|
|
5335
5385
|
|
|
5336
|
-
var
|
|
5386
|
+
var GetFindingStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5337
5387
|
return [
|
|
5338
5388
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5339
5389
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5340
5390
|
];
|
|
5341
5391
|
}).s("Macie2", "GetFindingStatistics", {}).n("Macie2Client", "GetFindingStatisticsCommand").f(void 0, void 0).ser(se_GetFindingStatisticsCommand).de(de_GetFindingStatisticsCommand).build() {
|
|
5392
|
+
static {
|
|
5393
|
+
__name(this, "GetFindingStatisticsCommand");
|
|
5394
|
+
}
|
|
5342
5395
|
};
|
|
5343
|
-
__name(_GetFindingStatisticsCommand, "GetFindingStatisticsCommand");
|
|
5344
|
-
var GetFindingStatisticsCommand = _GetFindingStatisticsCommand;
|
|
5345
5396
|
|
|
5346
5397
|
// src/commands/GetInvitationsCountCommand.ts
|
|
5347
5398
|
|
|
5348
5399
|
|
|
5349
5400
|
|
|
5350
|
-
var
|
|
5401
|
+
var GetInvitationsCountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5351
5402
|
return [
|
|
5352
5403
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5353
5404
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5354
5405
|
];
|
|
5355
5406
|
}).s("Macie2", "GetInvitationsCount", {}).n("Macie2Client", "GetInvitationsCountCommand").f(void 0, void 0).ser(se_GetInvitationsCountCommand).de(de_GetInvitationsCountCommand).build() {
|
|
5407
|
+
static {
|
|
5408
|
+
__name(this, "GetInvitationsCountCommand");
|
|
5409
|
+
}
|
|
5356
5410
|
};
|
|
5357
|
-
__name(_GetInvitationsCountCommand, "GetInvitationsCountCommand");
|
|
5358
|
-
var GetInvitationsCountCommand = _GetInvitationsCountCommand;
|
|
5359
5411
|
|
|
5360
5412
|
// src/commands/GetMacieSessionCommand.ts
|
|
5361
5413
|
|
|
5362
5414
|
|
|
5363
5415
|
|
|
5364
|
-
var
|
|
5416
|
+
var GetMacieSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5365
5417
|
return [
|
|
5366
5418
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5367
5419
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5368
5420
|
];
|
|
5369
5421
|
}).s("Macie2", "GetMacieSession", {}).n("Macie2Client", "GetMacieSessionCommand").f(void 0, void 0).ser(se_GetMacieSessionCommand).de(de_GetMacieSessionCommand).build() {
|
|
5422
|
+
static {
|
|
5423
|
+
__name(this, "GetMacieSessionCommand");
|
|
5424
|
+
}
|
|
5370
5425
|
};
|
|
5371
|
-
__name(_GetMacieSessionCommand, "GetMacieSessionCommand");
|
|
5372
|
-
var GetMacieSessionCommand = _GetMacieSessionCommand;
|
|
5373
5426
|
|
|
5374
5427
|
// src/commands/GetMasterAccountCommand.ts
|
|
5375
5428
|
|
|
5376
5429
|
|
|
5377
5430
|
|
|
5378
|
-
var
|
|
5431
|
+
var GetMasterAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5379
5432
|
return [
|
|
5380
5433
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5381
5434
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5382
5435
|
];
|
|
5383
5436
|
}).s("Macie2", "GetMasterAccount", {}).n("Macie2Client", "GetMasterAccountCommand").f(void 0, void 0).ser(se_GetMasterAccountCommand).de(de_GetMasterAccountCommand).build() {
|
|
5437
|
+
static {
|
|
5438
|
+
__name(this, "GetMasterAccountCommand");
|
|
5439
|
+
}
|
|
5384
5440
|
};
|
|
5385
|
-
__name(_GetMasterAccountCommand, "GetMasterAccountCommand");
|
|
5386
|
-
var GetMasterAccountCommand = _GetMasterAccountCommand;
|
|
5387
5441
|
|
|
5388
5442
|
// src/commands/GetMemberCommand.ts
|
|
5389
5443
|
|
|
5390
5444
|
|
|
5391
5445
|
|
|
5392
|
-
var
|
|
5446
|
+
var GetMemberCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5393
5447
|
return [
|
|
5394
5448
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5395
5449
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5396
5450
|
];
|
|
5397
5451
|
}).s("Macie2", "GetMember", {}).n("Macie2Client", "GetMemberCommand").f(void 0, void 0).ser(se_GetMemberCommand).de(de_GetMemberCommand).build() {
|
|
5452
|
+
static {
|
|
5453
|
+
__name(this, "GetMemberCommand");
|
|
5454
|
+
}
|
|
5398
5455
|
};
|
|
5399
|
-
__name(_GetMemberCommand, "GetMemberCommand");
|
|
5400
|
-
var GetMemberCommand = _GetMemberCommand;
|
|
5401
5456
|
|
|
5402
5457
|
// src/commands/GetResourceProfileCommand.ts
|
|
5403
5458
|
|
|
5404
5459
|
|
|
5405
5460
|
|
|
5406
|
-
var
|
|
5461
|
+
var GetResourceProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5407
5462
|
return [
|
|
5408
5463
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5409
5464
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5410
5465
|
];
|
|
5411
5466
|
}).s("Macie2", "GetResourceProfile", {}).n("Macie2Client", "GetResourceProfileCommand").f(void 0, void 0).ser(se_GetResourceProfileCommand).de(de_GetResourceProfileCommand).build() {
|
|
5467
|
+
static {
|
|
5468
|
+
__name(this, "GetResourceProfileCommand");
|
|
5469
|
+
}
|
|
5412
5470
|
};
|
|
5413
|
-
__name(_GetResourceProfileCommand, "GetResourceProfileCommand");
|
|
5414
|
-
var GetResourceProfileCommand = _GetResourceProfileCommand;
|
|
5415
5471
|
|
|
5416
5472
|
// src/commands/GetRevealConfigurationCommand.ts
|
|
5417
5473
|
|
|
5418
5474
|
|
|
5419
5475
|
|
|
5420
|
-
var
|
|
5476
|
+
var GetRevealConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5421
5477
|
return [
|
|
5422
5478
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5423
5479
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5424
5480
|
];
|
|
5425
5481
|
}).s("Macie2", "GetRevealConfiguration", {}).n("Macie2Client", "GetRevealConfigurationCommand").f(void 0, void 0).ser(se_GetRevealConfigurationCommand).de(de_GetRevealConfigurationCommand).build() {
|
|
5482
|
+
static {
|
|
5483
|
+
__name(this, "GetRevealConfigurationCommand");
|
|
5484
|
+
}
|
|
5426
5485
|
};
|
|
5427
|
-
__name(_GetRevealConfigurationCommand, "GetRevealConfigurationCommand");
|
|
5428
|
-
var GetRevealConfigurationCommand = _GetRevealConfigurationCommand;
|
|
5429
5486
|
|
|
5430
5487
|
// src/commands/GetSensitiveDataOccurrencesAvailabilityCommand.ts
|
|
5431
5488
|
|
|
5432
5489
|
|
|
5433
5490
|
|
|
5434
|
-
var
|
|
5491
|
+
var GetSensitiveDataOccurrencesAvailabilityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5435
5492
|
return [
|
|
5436
5493
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5437
5494
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5438
5495
|
];
|
|
5439
5496
|
}).s("Macie2", "GetSensitiveDataOccurrencesAvailability", {}).n("Macie2Client", "GetSensitiveDataOccurrencesAvailabilityCommand").f(void 0, void 0).ser(se_GetSensitiveDataOccurrencesAvailabilityCommand).de(de_GetSensitiveDataOccurrencesAvailabilityCommand).build() {
|
|
5497
|
+
static {
|
|
5498
|
+
__name(this, "GetSensitiveDataOccurrencesAvailabilityCommand");
|
|
5499
|
+
}
|
|
5440
5500
|
};
|
|
5441
|
-
__name(_GetSensitiveDataOccurrencesAvailabilityCommand, "GetSensitiveDataOccurrencesAvailabilityCommand");
|
|
5442
|
-
var GetSensitiveDataOccurrencesAvailabilityCommand = _GetSensitiveDataOccurrencesAvailabilityCommand;
|
|
5443
5501
|
|
|
5444
5502
|
// src/commands/GetSensitiveDataOccurrencesCommand.ts
|
|
5445
5503
|
|
|
5446
5504
|
|
|
5447
5505
|
|
|
5448
|
-
var
|
|
5506
|
+
var GetSensitiveDataOccurrencesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5449
5507
|
return [
|
|
5450
5508
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5451
5509
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5452
5510
|
];
|
|
5453
5511
|
}).s("Macie2", "GetSensitiveDataOccurrences", {}).n("Macie2Client", "GetSensitiveDataOccurrencesCommand").f(void 0, void 0).ser(se_GetSensitiveDataOccurrencesCommand).de(de_GetSensitiveDataOccurrencesCommand).build() {
|
|
5512
|
+
static {
|
|
5513
|
+
__name(this, "GetSensitiveDataOccurrencesCommand");
|
|
5514
|
+
}
|
|
5454
5515
|
};
|
|
5455
|
-
__name(_GetSensitiveDataOccurrencesCommand, "GetSensitiveDataOccurrencesCommand");
|
|
5456
|
-
var GetSensitiveDataOccurrencesCommand = _GetSensitiveDataOccurrencesCommand;
|
|
5457
5516
|
|
|
5458
5517
|
// src/commands/GetSensitivityInspectionTemplateCommand.ts
|
|
5459
5518
|
|
|
5460
5519
|
|
|
5461
5520
|
|
|
5462
|
-
var
|
|
5521
|
+
var GetSensitivityInspectionTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5463
5522
|
return [
|
|
5464
5523
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5465
5524
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5466
5525
|
];
|
|
5467
5526
|
}).s("Macie2", "GetSensitivityInspectionTemplate", {}).n("Macie2Client", "GetSensitivityInspectionTemplateCommand").f(void 0, void 0).ser(se_GetSensitivityInspectionTemplateCommand).de(de_GetSensitivityInspectionTemplateCommand).build() {
|
|
5527
|
+
static {
|
|
5528
|
+
__name(this, "GetSensitivityInspectionTemplateCommand");
|
|
5529
|
+
}
|
|
5468
5530
|
};
|
|
5469
|
-
__name(_GetSensitivityInspectionTemplateCommand, "GetSensitivityInspectionTemplateCommand");
|
|
5470
|
-
var GetSensitivityInspectionTemplateCommand = _GetSensitivityInspectionTemplateCommand;
|
|
5471
5531
|
|
|
5472
5532
|
// src/commands/GetUsageStatisticsCommand.ts
|
|
5473
5533
|
|
|
5474
5534
|
|
|
5475
5535
|
|
|
5476
|
-
var
|
|
5536
|
+
var GetUsageStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5477
5537
|
return [
|
|
5478
5538
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5479
5539
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5480
5540
|
];
|
|
5481
5541
|
}).s("Macie2", "GetUsageStatistics", {}).n("Macie2Client", "GetUsageStatisticsCommand").f(void 0, void 0).ser(se_GetUsageStatisticsCommand).de(de_GetUsageStatisticsCommand).build() {
|
|
5542
|
+
static {
|
|
5543
|
+
__name(this, "GetUsageStatisticsCommand");
|
|
5544
|
+
}
|
|
5482
5545
|
};
|
|
5483
|
-
__name(_GetUsageStatisticsCommand, "GetUsageStatisticsCommand");
|
|
5484
|
-
var GetUsageStatisticsCommand = _GetUsageStatisticsCommand;
|
|
5485
5546
|
|
|
5486
5547
|
// src/commands/GetUsageTotalsCommand.ts
|
|
5487
5548
|
|
|
5488
5549
|
|
|
5489
5550
|
|
|
5490
|
-
var
|
|
5551
|
+
var GetUsageTotalsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5491
5552
|
return [
|
|
5492
5553
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5493
5554
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5494
5555
|
];
|
|
5495
5556
|
}).s("Macie2", "GetUsageTotals", {}).n("Macie2Client", "GetUsageTotalsCommand").f(void 0, void 0).ser(se_GetUsageTotalsCommand).de(de_GetUsageTotalsCommand).build() {
|
|
5557
|
+
static {
|
|
5558
|
+
__name(this, "GetUsageTotalsCommand");
|
|
5559
|
+
}
|
|
5496
5560
|
};
|
|
5497
|
-
__name(_GetUsageTotalsCommand, "GetUsageTotalsCommand");
|
|
5498
|
-
var GetUsageTotalsCommand = _GetUsageTotalsCommand;
|
|
5499
5561
|
|
|
5500
5562
|
// src/commands/ListAllowListsCommand.ts
|
|
5501
5563
|
|
|
5502
5564
|
|
|
5503
5565
|
|
|
5504
|
-
var
|
|
5566
|
+
var ListAllowListsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5505
5567
|
return [
|
|
5506
5568
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5507
5569
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5508
5570
|
];
|
|
5509
5571
|
}).s("Macie2", "ListAllowLists", {}).n("Macie2Client", "ListAllowListsCommand").f(void 0, void 0).ser(se_ListAllowListsCommand).de(de_ListAllowListsCommand).build() {
|
|
5572
|
+
static {
|
|
5573
|
+
__name(this, "ListAllowListsCommand");
|
|
5574
|
+
}
|
|
5510
5575
|
};
|
|
5511
|
-
__name(_ListAllowListsCommand, "ListAllowListsCommand");
|
|
5512
|
-
var ListAllowListsCommand = _ListAllowListsCommand;
|
|
5513
5576
|
|
|
5514
5577
|
// src/commands/ListAutomatedDiscoveryAccountsCommand.ts
|
|
5515
5578
|
|
|
5516
5579
|
|
|
5517
5580
|
|
|
5518
|
-
var
|
|
5581
|
+
var ListAutomatedDiscoveryAccountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5519
5582
|
return [
|
|
5520
5583
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5521
5584
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5522
5585
|
];
|
|
5523
5586
|
}).s("Macie2", "ListAutomatedDiscoveryAccounts", {}).n("Macie2Client", "ListAutomatedDiscoveryAccountsCommand").f(void 0, void 0).ser(se_ListAutomatedDiscoveryAccountsCommand).de(de_ListAutomatedDiscoveryAccountsCommand).build() {
|
|
5587
|
+
static {
|
|
5588
|
+
__name(this, "ListAutomatedDiscoveryAccountsCommand");
|
|
5589
|
+
}
|
|
5524
5590
|
};
|
|
5525
|
-
__name(_ListAutomatedDiscoveryAccountsCommand, "ListAutomatedDiscoveryAccountsCommand");
|
|
5526
|
-
var ListAutomatedDiscoveryAccountsCommand = _ListAutomatedDiscoveryAccountsCommand;
|
|
5527
5591
|
|
|
5528
5592
|
// src/commands/ListClassificationJobsCommand.ts
|
|
5529
5593
|
|
|
5530
5594
|
|
|
5531
5595
|
|
|
5532
|
-
var
|
|
5596
|
+
var ListClassificationJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5533
5597
|
return [
|
|
5534
5598
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5535
5599
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5536
5600
|
];
|
|
5537
5601
|
}).s("Macie2", "ListClassificationJobs", {}).n("Macie2Client", "ListClassificationJobsCommand").f(void 0, void 0).ser(se_ListClassificationJobsCommand).de(de_ListClassificationJobsCommand).build() {
|
|
5602
|
+
static {
|
|
5603
|
+
__name(this, "ListClassificationJobsCommand");
|
|
5604
|
+
}
|
|
5538
5605
|
};
|
|
5539
|
-
__name(_ListClassificationJobsCommand, "ListClassificationJobsCommand");
|
|
5540
|
-
var ListClassificationJobsCommand = _ListClassificationJobsCommand;
|
|
5541
5606
|
|
|
5542
5607
|
// src/commands/ListClassificationScopesCommand.ts
|
|
5543
5608
|
|
|
5544
5609
|
|
|
5545
5610
|
|
|
5546
|
-
var
|
|
5611
|
+
var ListClassificationScopesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5547
5612
|
return [
|
|
5548
5613
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5549
5614
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5550
5615
|
];
|
|
5551
5616
|
}).s("Macie2", "ListClassificationScopes", {}).n("Macie2Client", "ListClassificationScopesCommand").f(void 0, void 0).ser(se_ListClassificationScopesCommand).de(de_ListClassificationScopesCommand).build() {
|
|
5617
|
+
static {
|
|
5618
|
+
__name(this, "ListClassificationScopesCommand");
|
|
5619
|
+
}
|
|
5552
5620
|
};
|
|
5553
|
-
__name(_ListClassificationScopesCommand, "ListClassificationScopesCommand");
|
|
5554
|
-
var ListClassificationScopesCommand = _ListClassificationScopesCommand;
|
|
5555
5621
|
|
|
5556
5622
|
// src/commands/ListCustomDataIdentifiersCommand.ts
|
|
5557
5623
|
|
|
5558
5624
|
|
|
5559
5625
|
|
|
5560
|
-
var
|
|
5626
|
+
var ListCustomDataIdentifiersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5561
5627
|
return [
|
|
5562
5628
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5563
5629
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5564
5630
|
];
|
|
5565
5631
|
}).s("Macie2", "ListCustomDataIdentifiers", {}).n("Macie2Client", "ListCustomDataIdentifiersCommand").f(void 0, void 0).ser(se_ListCustomDataIdentifiersCommand).de(de_ListCustomDataIdentifiersCommand).build() {
|
|
5632
|
+
static {
|
|
5633
|
+
__name(this, "ListCustomDataIdentifiersCommand");
|
|
5634
|
+
}
|
|
5566
5635
|
};
|
|
5567
|
-
__name(_ListCustomDataIdentifiersCommand, "ListCustomDataIdentifiersCommand");
|
|
5568
|
-
var ListCustomDataIdentifiersCommand = _ListCustomDataIdentifiersCommand;
|
|
5569
5636
|
|
|
5570
5637
|
// src/commands/ListFindingsCommand.ts
|
|
5571
5638
|
|
|
5572
5639
|
|
|
5573
5640
|
|
|
5574
|
-
var
|
|
5641
|
+
var ListFindingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5575
5642
|
return [
|
|
5576
5643
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5577
5644
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5578
5645
|
];
|
|
5579
5646
|
}).s("Macie2", "ListFindings", {}).n("Macie2Client", "ListFindingsCommand").f(void 0, void 0).ser(se_ListFindingsCommand).de(de_ListFindingsCommand).build() {
|
|
5647
|
+
static {
|
|
5648
|
+
__name(this, "ListFindingsCommand");
|
|
5649
|
+
}
|
|
5580
5650
|
};
|
|
5581
|
-
__name(_ListFindingsCommand, "ListFindingsCommand");
|
|
5582
|
-
var ListFindingsCommand = _ListFindingsCommand;
|
|
5583
5651
|
|
|
5584
5652
|
// src/commands/ListFindingsFiltersCommand.ts
|
|
5585
5653
|
|
|
5586
5654
|
|
|
5587
5655
|
|
|
5588
|
-
var
|
|
5656
|
+
var ListFindingsFiltersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5589
5657
|
return [
|
|
5590
5658
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5591
5659
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5592
5660
|
];
|
|
5593
5661
|
}).s("Macie2", "ListFindingsFilters", {}).n("Macie2Client", "ListFindingsFiltersCommand").f(void 0, void 0).ser(se_ListFindingsFiltersCommand).de(de_ListFindingsFiltersCommand).build() {
|
|
5662
|
+
static {
|
|
5663
|
+
__name(this, "ListFindingsFiltersCommand");
|
|
5664
|
+
}
|
|
5594
5665
|
};
|
|
5595
|
-
__name(_ListFindingsFiltersCommand, "ListFindingsFiltersCommand");
|
|
5596
|
-
var ListFindingsFiltersCommand = _ListFindingsFiltersCommand;
|
|
5597
5666
|
|
|
5598
5667
|
// src/commands/ListInvitationsCommand.ts
|
|
5599
5668
|
|
|
5600
5669
|
|
|
5601
5670
|
|
|
5602
|
-
var
|
|
5671
|
+
var ListInvitationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5603
5672
|
return [
|
|
5604
5673
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5605
5674
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5606
5675
|
];
|
|
5607
5676
|
}).s("Macie2", "ListInvitations", {}).n("Macie2Client", "ListInvitationsCommand").f(void 0, void 0).ser(se_ListInvitationsCommand).de(de_ListInvitationsCommand).build() {
|
|
5677
|
+
static {
|
|
5678
|
+
__name(this, "ListInvitationsCommand");
|
|
5679
|
+
}
|
|
5608
5680
|
};
|
|
5609
|
-
__name(_ListInvitationsCommand, "ListInvitationsCommand");
|
|
5610
|
-
var ListInvitationsCommand = _ListInvitationsCommand;
|
|
5611
5681
|
|
|
5612
5682
|
// src/commands/ListManagedDataIdentifiersCommand.ts
|
|
5613
5683
|
|
|
5614
5684
|
|
|
5615
5685
|
|
|
5616
|
-
var
|
|
5686
|
+
var ListManagedDataIdentifiersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5617
5687
|
return [
|
|
5618
5688
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5619
5689
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5620
5690
|
];
|
|
5621
5691
|
}).s("Macie2", "ListManagedDataIdentifiers", {}).n("Macie2Client", "ListManagedDataIdentifiersCommand").f(void 0, void 0).ser(se_ListManagedDataIdentifiersCommand).de(de_ListManagedDataIdentifiersCommand).build() {
|
|
5692
|
+
static {
|
|
5693
|
+
__name(this, "ListManagedDataIdentifiersCommand");
|
|
5694
|
+
}
|
|
5622
5695
|
};
|
|
5623
|
-
__name(_ListManagedDataIdentifiersCommand, "ListManagedDataIdentifiersCommand");
|
|
5624
|
-
var ListManagedDataIdentifiersCommand = _ListManagedDataIdentifiersCommand;
|
|
5625
5696
|
|
|
5626
5697
|
// src/commands/ListMembersCommand.ts
|
|
5627
5698
|
|
|
5628
5699
|
|
|
5629
5700
|
|
|
5630
|
-
var
|
|
5701
|
+
var ListMembersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5631
5702
|
return [
|
|
5632
5703
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5633
5704
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5634
5705
|
];
|
|
5635
5706
|
}).s("Macie2", "ListMembers", {}).n("Macie2Client", "ListMembersCommand").f(void 0, void 0).ser(se_ListMembersCommand).de(de_ListMembersCommand).build() {
|
|
5707
|
+
static {
|
|
5708
|
+
__name(this, "ListMembersCommand");
|
|
5709
|
+
}
|
|
5636
5710
|
};
|
|
5637
|
-
__name(_ListMembersCommand, "ListMembersCommand");
|
|
5638
|
-
var ListMembersCommand = _ListMembersCommand;
|
|
5639
5711
|
|
|
5640
5712
|
// src/commands/ListOrganizationAdminAccountsCommand.ts
|
|
5641
5713
|
|
|
5642
5714
|
|
|
5643
5715
|
|
|
5644
|
-
var
|
|
5716
|
+
var ListOrganizationAdminAccountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5645
5717
|
return [
|
|
5646
5718
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5647
5719
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5648
5720
|
];
|
|
5649
5721
|
}).s("Macie2", "ListOrganizationAdminAccounts", {}).n("Macie2Client", "ListOrganizationAdminAccountsCommand").f(void 0, void 0).ser(se_ListOrganizationAdminAccountsCommand).de(de_ListOrganizationAdminAccountsCommand).build() {
|
|
5722
|
+
static {
|
|
5723
|
+
__name(this, "ListOrganizationAdminAccountsCommand");
|
|
5724
|
+
}
|
|
5650
5725
|
};
|
|
5651
|
-
__name(_ListOrganizationAdminAccountsCommand, "ListOrganizationAdminAccountsCommand");
|
|
5652
|
-
var ListOrganizationAdminAccountsCommand = _ListOrganizationAdminAccountsCommand;
|
|
5653
5726
|
|
|
5654
5727
|
// src/commands/ListResourceProfileArtifactsCommand.ts
|
|
5655
5728
|
|
|
5656
5729
|
|
|
5657
5730
|
|
|
5658
|
-
var
|
|
5731
|
+
var ListResourceProfileArtifactsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5659
5732
|
return [
|
|
5660
5733
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5661
5734
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5662
5735
|
];
|
|
5663
5736
|
}).s("Macie2", "ListResourceProfileArtifacts", {}).n("Macie2Client", "ListResourceProfileArtifactsCommand").f(void 0, void 0).ser(se_ListResourceProfileArtifactsCommand).de(de_ListResourceProfileArtifactsCommand).build() {
|
|
5737
|
+
static {
|
|
5738
|
+
__name(this, "ListResourceProfileArtifactsCommand");
|
|
5739
|
+
}
|
|
5664
5740
|
};
|
|
5665
|
-
__name(_ListResourceProfileArtifactsCommand, "ListResourceProfileArtifactsCommand");
|
|
5666
|
-
var ListResourceProfileArtifactsCommand = _ListResourceProfileArtifactsCommand;
|
|
5667
5741
|
|
|
5668
5742
|
// src/commands/ListResourceProfileDetectionsCommand.ts
|
|
5669
5743
|
|
|
5670
5744
|
|
|
5671
5745
|
|
|
5672
|
-
var
|
|
5746
|
+
var ListResourceProfileDetectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5673
5747
|
return [
|
|
5674
5748
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5675
5749
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5676
5750
|
];
|
|
5677
5751
|
}).s("Macie2", "ListResourceProfileDetections", {}).n("Macie2Client", "ListResourceProfileDetectionsCommand").f(void 0, void 0).ser(se_ListResourceProfileDetectionsCommand).de(de_ListResourceProfileDetectionsCommand).build() {
|
|
5752
|
+
static {
|
|
5753
|
+
__name(this, "ListResourceProfileDetectionsCommand");
|
|
5754
|
+
}
|
|
5678
5755
|
};
|
|
5679
|
-
__name(_ListResourceProfileDetectionsCommand, "ListResourceProfileDetectionsCommand");
|
|
5680
|
-
var ListResourceProfileDetectionsCommand = _ListResourceProfileDetectionsCommand;
|
|
5681
5756
|
|
|
5682
5757
|
// src/commands/ListSensitivityInspectionTemplatesCommand.ts
|
|
5683
5758
|
|
|
5684
5759
|
|
|
5685
5760
|
|
|
5686
|
-
var
|
|
5761
|
+
var ListSensitivityInspectionTemplatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5687
5762
|
return [
|
|
5688
5763
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5689
5764
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5690
5765
|
];
|
|
5691
5766
|
}).s("Macie2", "ListSensitivityInspectionTemplates", {}).n("Macie2Client", "ListSensitivityInspectionTemplatesCommand").f(void 0, void 0).ser(se_ListSensitivityInspectionTemplatesCommand).de(de_ListSensitivityInspectionTemplatesCommand).build() {
|
|
5767
|
+
static {
|
|
5768
|
+
__name(this, "ListSensitivityInspectionTemplatesCommand");
|
|
5769
|
+
}
|
|
5692
5770
|
};
|
|
5693
|
-
__name(_ListSensitivityInspectionTemplatesCommand, "ListSensitivityInspectionTemplatesCommand");
|
|
5694
|
-
var ListSensitivityInspectionTemplatesCommand = _ListSensitivityInspectionTemplatesCommand;
|
|
5695
5771
|
|
|
5696
5772
|
// src/commands/ListTagsForResourceCommand.ts
|
|
5697
5773
|
|
|
5698
5774
|
|
|
5699
5775
|
|
|
5700
|
-
var
|
|
5776
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5701
5777
|
return [
|
|
5702
5778
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5703
5779
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5704
5780
|
];
|
|
5705
5781
|
}).s("Macie2", "ListTagsForResource", {}).n("Macie2Client", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
5782
|
+
static {
|
|
5783
|
+
__name(this, "ListTagsForResourceCommand");
|
|
5784
|
+
}
|
|
5706
5785
|
};
|
|
5707
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
5708
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
5709
5786
|
|
|
5710
5787
|
// src/commands/PutClassificationExportConfigurationCommand.ts
|
|
5711
5788
|
|
|
5712
5789
|
|
|
5713
5790
|
|
|
5714
|
-
var
|
|
5791
|
+
var PutClassificationExportConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5715
5792
|
return [
|
|
5716
5793
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5717
5794
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5718
5795
|
];
|
|
5719
5796
|
}).s("Macie2", "PutClassificationExportConfiguration", {}).n("Macie2Client", "PutClassificationExportConfigurationCommand").f(void 0, void 0).ser(se_PutClassificationExportConfigurationCommand).de(de_PutClassificationExportConfigurationCommand).build() {
|
|
5797
|
+
static {
|
|
5798
|
+
__name(this, "PutClassificationExportConfigurationCommand");
|
|
5799
|
+
}
|
|
5720
5800
|
};
|
|
5721
|
-
__name(_PutClassificationExportConfigurationCommand, "PutClassificationExportConfigurationCommand");
|
|
5722
|
-
var PutClassificationExportConfigurationCommand = _PutClassificationExportConfigurationCommand;
|
|
5723
5801
|
|
|
5724
5802
|
// src/commands/PutFindingsPublicationConfigurationCommand.ts
|
|
5725
5803
|
|
|
5726
5804
|
|
|
5727
5805
|
|
|
5728
|
-
var
|
|
5806
|
+
var PutFindingsPublicationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5729
5807
|
return [
|
|
5730
5808
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5731
5809
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5732
5810
|
];
|
|
5733
5811
|
}).s("Macie2", "PutFindingsPublicationConfiguration", {}).n("Macie2Client", "PutFindingsPublicationConfigurationCommand").f(void 0, void 0).ser(se_PutFindingsPublicationConfigurationCommand).de(de_PutFindingsPublicationConfigurationCommand).build() {
|
|
5812
|
+
static {
|
|
5813
|
+
__name(this, "PutFindingsPublicationConfigurationCommand");
|
|
5814
|
+
}
|
|
5734
5815
|
};
|
|
5735
|
-
__name(_PutFindingsPublicationConfigurationCommand, "PutFindingsPublicationConfigurationCommand");
|
|
5736
|
-
var PutFindingsPublicationConfigurationCommand = _PutFindingsPublicationConfigurationCommand;
|
|
5737
5816
|
|
|
5738
5817
|
// src/commands/SearchResourcesCommand.ts
|
|
5739
5818
|
|
|
5740
5819
|
|
|
5741
5820
|
|
|
5742
|
-
var
|
|
5821
|
+
var SearchResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5743
5822
|
return [
|
|
5744
5823
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5745
5824
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5746
5825
|
];
|
|
5747
5826
|
}).s("Macie2", "SearchResources", {}).n("Macie2Client", "SearchResourcesCommand").f(void 0, void 0).ser(se_SearchResourcesCommand).de(de_SearchResourcesCommand).build() {
|
|
5827
|
+
static {
|
|
5828
|
+
__name(this, "SearchResourcesCommand");
|
|
5829
|
+
}
|
|
5748
5830
|
};
|
|
5749
|
-
__name(_SearchResourcesCommand, "SearchResourcesCommand");
|
|
5750
|
-
var SearchResourcesCommand = _SearchResourcesCommand;
|
|
5751
5831
|
|
|
5752
5832
|
// src/commands/TagResourceCommand.ts
|
|
5753
5833
|
|
|
5754
5834
|
|
|
5755
5835
|
|
|
5756
|
-
var
|
|
5836
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5757
5837
|
return [
|
|
5758
5838
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5759
5839
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5760
5840
|
];
|
|
5761
5841
|
}).s("Macie2", "TagResource", {}).n("Macie2Client", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
5842
|
+
static {
|
|
5843
|
+
__name(this, "TagResourceCommand");
|
|
5844
|
+
}
|
|
5762
5845
|
};
|
|
5763
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
5764
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
5765
5846
|
|
|
5766
5847
|
// src/commands/TestCustomDataIdentifierCommand.ts
|
|
5767
5848
|
|
|
5768
5849
|
|
|
5769
5850
|
|
|
5770
|
-
var
|
|
5851
|
+
var TestCustomDataIdentifierCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5771
5852
|
return [
|
|
5772
5853
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5773
5854
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5774
5855
|
];
|
|
5775
5856
|
}).s("Macie2", "TestCustomDataIdentifier", {}).n("Macie2Client", "TestCustomDataIdentifierCommand").f(void 0, void 0).ser(se_TestCustomDataIdentifierCommand).de(de_TestCustomDataIdentifierCommand).build() {
|
|
5857
|
+
static {
|
|
5858
|
+
__name(this, "TestCustomDataIdentifierCommand");
|
|
5859
|
+
}
|
|
5776
5860
|
};
|
|
5777
|
-
__name(_TestCustomDataIdentifierCommand, "TestCustomDataIdentifierCommand");
|
|
5778
|
-
var TestCustomDataIdentifierCommand = _TestCustomDataIdentifierCommand;
|
|
5779
5861
|
|
|
5780
5862
|
// src/commands/UntagResourceCommand.ts
|
|
5781
5863
|
|
|
5782
5864
|
|
|
5783
5865
|
|
|
5784
|
-
var
|
|
5866
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5785
5867
|
return [
|
|
5786
5868
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5787
5869
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5788
5870
|
];
|
|
5789
5871
|
}).s("Macie2", "UntagResource", {}).n("Macie2Client", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
5872
|
+
static {
|
|
5873
|
+
__name(this, "UntagResourceCommand");
|
|
5874
|
+
}
|
|
5790
5875
|
};
|
|
5791
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
5792
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
5793
5876
|
|
|
5794
5877
|
// src/commands/UpdateAllowListCommand.ts
|
|
5795
5878
|
|
|
5796
5879
|
|
|
5797
5880
|
|
|
5798
|
-
var
|
|
5881
|
+
var UpdateAllowListCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5799
5882
|
return [
|
|
5800
5883
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5801
5884
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5802
5885
|
];
|
|
5803
5886
|
}).s("Macie2", "UpdateAllowList", {}).n("Macie2Client", "UpdateAllowListCommand").f(void 0, void 0).ser(se_UpdateAllowListCommand).de(de_UpdateAllowListCommand).build() {
|
|
5887
|
+
static {
|
|
5888
|
+
__name(this, "UpdateAllowListCommand");
|
|
5889
|
+
}
|
|
5804
5890
|
};
|
|
5805
|
-
__name(_UpdateAllowListCommand, "UpdateAllowListCommand");
|
|
5806
|
-
var UpdateAllowListCommand = _UpdateAllowListCommand;
|
|
5807
5891
|
|
|
5808
5892
|
// src/commands/UpdateAutomatedDiscoveryConfigurationCommand.ts
|
|
5809
5893
|
|
|
5810
5894
|
|
|
5811
5895
|
|
|
5812
|
-
var
|
|
5896
|
+
var UpdateAutomatedDiscoveryConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5813
5897
|
return [
|
|
5814
5898
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5815
5899
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5816
5900
|
];
|
|
5817
5901
|
}).s("Macie2", "UpdateAutomatedDiscoveryConfiguration", {}).n("Macie2Client", "UpdateAutomatedDiscoveryConfigurationCommand").f(void 0, void 0).ser(se_UpdateAutomatedDiscoveryConfigurationCommand).de(de_UpdateAutomatedDiscoveryConfigurationCommand).build() {
|
|
5902
|
+
static {
|
|
5903
|
+
__name(this, "UpdateAutomatedDiscoveryConfigurationCommand");
|
|
5904
|
+
}
|
|
5818
5905
|
};
|
|
5819
|
-
__name(_UpdateAutomatedDiscoveryConfigurationCommand, "UpdateAutomatedDiscoveryConfigurationCommand");
|
|
5820
|
-
var UpdateAutomatedDiscoveryConfigurationCommand = _UpdateAutomatedDiscoveryConfigurationCommand;
|
|
5821
5906
|
|
|
5822
5907
|
// src/commands/UpdateClassificationJobCommand.ts
|
|
5823
5908
|
|
|
5824
5909
|
|
|
5825
5910
|
|
|
5826
|
-
var
|
|
5911
|
+
var UpdateClassificationJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5827
5912
|
return [
|
|
5828
5913
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5829
5914
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5830
5915
|
];
|
|
5831
5916
|
}).s("Macie2", "UpdateClassificationJob", {}).n("Macie2Client", "UpdateClassificationJobCommand").f(void 0, void 0).ser(se_UpdateClassificationJobCommand).de(de_UpdateClassificationJobCommand).build() {
|
|
5917
|
+
static {
|
|
5918
|
+
__name(this, "UpdateClassificationJobCommand");
|
|
5919
|
+
}
|
|
5832
5920
|
};
|
|
5833
|
-
__name(_UpdateClassificationJobCommand, "UpdateClassificationJobCommand");
|
|
5834
|
-
var UpdateClassificationJobCommand = _UpdateClassificationJobCommand;
|
|
5835
5921
|
|
|
5836
5922
|
// src/commands/UpdateClassificationScopeCommand.ts
|
|
5837
5923
|
|
|
5838
5924
|
|
|
5839
5925
|
|
|
5840
|
-
var
|
|
5926
|
+
var UpdateClassificationScopeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5841
5927
|
return [
|
|
5842
5928
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5843
5929
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5844
5930
|
];
|
|
5845
5931
|
}).s("Macie2", "UpdateClassificationScope", {}).n("Macie2Client", "UpdateClassificationScopeCommand").f(void 0, void 0).ser(se_UpdateClassificationScopeCommand).de(de_UpdateClassificationScopeCommand).build() {
|
|
5932
|
+
static {
|
|
5933
|
+
__name(this, "UpdateClassificationScopeCommand");
|
|
5934
|
+
}
|
|
5846
5935
|
};
|
|
5847
|
-
__name(_UpdateClassificationScopeCommand, "UpdateClassificationScopeCommand");
|
|
5848
|
-
var UpdateClassificationScopeCommand = _UpdateClassificationScopeCommand;
|
|
5849
5936
|
|
|
5850
5937
|
// src/commands/UpdateFindingsFilterCommand.ts
|
|
5851
5938
|
|
|
5852
5939
|
|
|
5853
5940
|
|
|
5854
|
-
var
|
|
5941
|
+
var UpdateFindingsFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5855
5942
|
return [
|
|
5856
5943
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5857
5944
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5858
5945
|
];
|
|
5859
5946
|
}).s("Macie2", "UpdateFindingsFilter", {}).n("Macie2Client", "UpdateFindingsFilterCommand").f(void 0, void 0).ser(se_UpdateFindingsFilterCommand).de(de_UpdateFindingsFilterCommand).build() {
|
|
5947
|
+
static {
|
|
5948
|
+
__name(this, "UpdateFindingsFilterCommand");
|
|
5949
|
+
}
|
|
5860
5950
|
};
|
|
5861
|
-
__name(_UpdateFindingsFilterCommand, "UpdateFindingsFilterCommand");
|
|
5862
|
-
var UpdateFindingsFilterCommand = _UpdateFindingsFilterCommand;
|
|
5863
5951
|
|
|
5864
5952
|
// src/commands/UpdateMacieSessionCommand.ts
|
|
5865
5953
|
|
|
5866
5954
|
|
|
5867
5955
|
|
|
5868
|
-
var
|
|
5956
|
+
var UpdateMacieSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5869
5957
|
return [
|
|
5870
5958
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5871
5959
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5872
5960
|
];
|
|
5873
5961
|
}).s("Macie2", "UpdateMacieSession", {}).n("Macie2Client", "UpdateMacieSessionCommand").f(void 0, void 0).ser(se_UpdateMacieSessionCommand).de(de_UpdateMacieSessionCommand).build() {
|
|
5962
|
+
static {
|
|
5963
|
+
__name(this, "UpdateMacieSessionCommand");
|
|
5964
|
+
}
|
|
5874
5965
|
};
|
|
5875
|
-
__name(_UpdateMacieSessionCommand, "UpdateMacieSessionCommand");
|
|
5876
|
-
var UpdateMacieSessionCommand = _UpdateMacieSessionCommand;
|
|
5877
5966
|
|
|
5878
5967
|
// src/commands/UpdateMemberSessionCommand.ts
|
|
5879
5968
|
|
|
5880
5969
|
|
|
5881
5970
|
|
|
5882
|
-
var
|
|
5971
|
+
var UpdateMemberSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5883
5972
|
return [
|
|
5884
5973
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5885
5974
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5886
5975
|
];
|
|
5887
5976
|
}).s("Macie2", "UpdateMemberSession", {}).n("Macie2Client", "UpdateMemberSessionCommand").f(void 0, void 0).ser(se_UpdateMemberSessionCommand).de(de_UpdateMemberSessionCommand).build() {
|
|
5977
|
+
static {
|
|
5978
|
+
__name(this, "UpdateMemberSessionCommand");
|
|
5979
|
+
}
|
|
5888
5980
|
};
|
|
5889
|
-
__name(_UpdateMemberSessionCommand, "UpdateMemberSessionCommand");
|
|
5890
|
-
var UpdateMemberSessionCommand = _UpdateMemberSessionCommand;
|
|
5891
5981
|
|
|
5892
5982
|
// src/commands/UpdateOrganizationConfigurationCommand.ts
|
|
5893
5983
|
|
|
5894
5984
|
|
|
5895
5985
|
|
|
5896
|
-
var
|
|
5986
|
+
var UpdateOrganizationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5897
5987
|
return [
|
|
5898
5988
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5899
5989
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5900
5990
|
];
|
|
5901
5991
|
}).s("Macie2", "UpdateOrganizationConfiguration", {}).n("Macie2Client", "UpdateOrganizationConfigurationCommand").f(void 0, void 0).ser(se_UpdateOrganizationConfigurationCommand).de(de_UpdateOrganizationConfigurationCommand).build() {
|
|
5992
|
+
static {
|
|
5993
|
+
__name(this, "UpdateOrganizationConfigurationCommand");
|
|
5994
|
+
}
|
|
5902
5995
|
};
|
|
5903
|
-
__name(_UpdateOrganizationConfigurationCommand, "UpdateOrganizationConfigurationCommand");
|
|
5904
|
-
var UpdateOrganizationConfigurationCommand = _UpdateOrganizationConfigurationCommand;
|
|
5905
5996
|
|
|
5906
5997
|
// src/commands/UpdateResourceProfileCommand.ts
|
|
5907
5998
|
|
|
5908
5999
|
|
|
5909
6000
|
|
|
5910
|
-
var
|
|
6001
|
+
var UpdateResourceProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5911
6002
|
return [
|
|
5912
6003
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5913
6004
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5914
6005
|
];
|
|
5915
6006
|
}).s("Macie2", "UpdateResourceProfile", {}).n("Macie2Client", "UpdateResourceProfileCommand").f(void 0, void 0).ser(se_UpdateResourceProfileCommand).de(de_UpdateResourceProfileCommand).build() {
|
|
6007
|
+
static {
|
|
6008
|
+
__name(this, "UpdateResourceProfileCommand");
|
|
6009
|
+
}
|
|
5916
6010
|
};
|
|
5917
|
-
__name(_UpdateResourceProfileCommand, "UpdateResourceProfileCommand");
|
|
5918
|
-
var UpdateResourceProfileCommand = _UpdateResourceProfileCommand;
|
|
5919
6011
|
|
|
5920
6012
|
// src/commands/UpdateResourceProfileDetectionsCommand.ts
|
|
5921
6013
|
|
|
5922
6014
|
|
|
5923
6015
|
|
|
5924
|
-
var
|
|
6016
|
+
var UpdateResourceProfileDetectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5925
6017
|
return [
|
|
5926
6018
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5927
6019
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5928
6020
|
];
|
|
5929
6021
|
}).s("Macie2", "UpdateResourceProfileDetections", {}).n("Macie2Client", "UpdateResourceProfileDetectionsCommand").f(void 0, void 0).ser(se_UpdateResourceProfileDetectionsCommand).de(de_UpdateResourceProfileDetectionsCommand).build() {
|
|
6022
|
+
static {
|
|
6023
|
+
__name(this, "UpdateResourceProfileDetectionsCommand");
|
|
6024
|
+
}
|
|
5930
6025
|
};
|
|
5931
|
-
__name(_UpdateResourceProfileDetectionsCommand, "UpdateResourceProfileDetectionsCommand");
|
|
5932
|
-
var UpdateResourceProfileDetectionsCommand = _UpdateResourceProfileDetectionsCommand;
|
|
5933
6026
|
|
|
5934
6027
|
// src/commands/UpdateRevealConfigurationCommand.ts
|
|
5935
6028
|
|
|
5936
6029
|
|
|
5937
6030
|
|
|
5938
|
-
var
|
|
6031
|
+
var UpdateRevealConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5939
6032
|
return [
|
|
5940
6033
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5941
6034
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5942
6035
|
];
|
|
5943
6036
|
}).s("Macie2", "UpdateRevealConfiguration", {}).n("Macie2Client", "UpdateRevealConfigurationCommand").f(void 0, void 0).ser(se_UpdateRevealConfigurationCommand).de(de_UpdateRevealConfigurationCommand).build() {
|
|
6037
|
+
static {
|
|
6038
|
+
__name(this, "UpdateRevealConfigurationCommand");
|
|
6039
|
+
}
|
|
5944
6040
|
};
|
|
5945
|
-
__name(_UpdateRevealConfigurationCommand, "UpdateRevealConfigurationCommand");
|
|
5946
|
-
var UpdateRevealConfigurationCommand = _UpdateRevealConfigurationCommand;
|
|
5947
6041
|
|
|
5948
6042
|
// src/commands/UpdateSensitivityInspectionTemplateCommand.ts
|
|
5949
6043
|
|
|
5950
6044
|
|
|
5951
6045
|
|
|
5952
|
-
var
|
|
6046
|
+
var UpdateSensitivityInspectionTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5953
6047
|
return [
|
|
5954
6048
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5955
6049
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5956
6050
|
];
|
|
5957
6051
|
}).s("Macie2", "UpdateSensitivityInspectionTemplate", {}).n("Macie2Client", "UpdateSensitivityInspectionTemplateCommand").f(void 0, void 0).ser(se_UpdateSensitivityInspectionTemplateCommand).de(de_UpdateSensitivityInspectionTemplateCommand).build() {
|
|
6052
|
+
static {
|
|
6053
|
+
__name(this, "UpdateSensitivityInspectionTemplateCommand");
|
|
6054
|
+
}
|
|
5958
6055
|
};
|
|
5959
|
-
__name(_UpdateSensitivityInspectionTemplateCommand, "UpdateSensitivityInspectionTemplateCommand");
|
|
5960
|
-
var UpdateSensitivityInspectionTemplateCommand = _UpdateSensitivityInspectionTemplateCommand;
|
|
5961
6056
|
|
|
5962
6057
|
// src/Macie2.ts
|
|
5963
6058
|
var commands = {
|
|
@@ -6043,10 +6138,11 @@ var commands = {
|
|
|
6043
6138
|
UpdateRevealConfigurationCommand,
|
|
6044
6139
|
UpdateSensitivityInspectionTemplateCommand
|
|
6045
6140
|
};
|
|
6046
|
-
var
|
|
6141
|
+
var Macie2 = class extends Macie2Client {
|
|
6142
|
+
static {
|
|
6143
|
+
__name(this, "Macie2");
|
|
6144
|
+
}
|
|
6047
6145
|
};
|
|
6048
|
-
__name(_Macie2, "Macie2");
|
|
6049
|
-
var Macie2 = _Macie2;
|
|
6050
6146
|
(0, import_smithy_client.createAggregatedClient)(commands, Macie2);
|
|
6051
6147
|
|
|
6052
6148
|
// src/pagination/DescribeBucketsPaginator.ts
|