@aws-sdk/client-wafv2 3.716.0 → 3.723.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +384 -267
- package/dist-es/WAFV2Client.js +1 -0
- package/dist-es/models/models_0.js +59 -38
- 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 +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -226,7 +226,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
226
226
|
}, "resolveRuntimeExtensions");
|
|
227
227
|
|
|
228
228
|
// src/WAFV2Client.ts
|
|
229
|
-
var
|
|
229
|
+
var WAFV2Client = class extends import_smithy_client.Client {
|
|
230
|
+
static {
|
|
231
|
+
__name(this, "WAFV2Client");
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* The resolved configuration of WAFV2Client class. This is resolved and normalized from the {@link WAFV2ClientConfig | constructor configuration interface}.
|
|
235
|
+
*/
|
|
236
|
+
config;
|
|
230
237
|
constructor(...[configuration]) {
|
|
231
238
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
232
239
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -236,7 +243,7 @@ var _WAFV2Client = class _WAFV2Client extends import_smithy_client.Client {
|
|
|
236
243
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
237
244
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
238
245
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
239
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
246
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
240
247
|
super(_config_8);
|
|
241
248
|
this.config = _config_8;
|
|
242
249
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -264,8 +271,6 @@ var _WAFV2Client = class _WAFV2Client extends import_smithy_client.Client {
|
|
|
264
271
|
super.destroy();
|
|
265
272
|
}
|
|
266
273
|
};
|
|
267
|
-
__name(_WAFV2Client, "WAFV2Client");
|
|
268
|
-
var WAFV2Client = _WAFV2Client;
|
|
269
274
|
|
|
270
275
|
// src/WAFV2.ts
|
|
271
276
|
|
|
@@ -282,7 +287,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
282
287
|
|
|
283
288
|
// src/models/WAFV2ServiceException.ts
|
|
284
289
|
|
|
285
|
-
var
|
|
290
|
+
var WAFV2ServiceException = class _WAFV2ServiceException extends import_smithy_client.ServiceException {
|
|
291
|
+
static {
|
|
292
|
+
__name(this, "WAFV2ServiceException");
|
|
293
|
+
}
|
|
286
294
|
/**
|
|
287
295
|
* @internal
|
|
288
296
|
*/
|
|
@@ -291,8 +299,6 @@ var _WAFV2ServiceException = class _WAFV2ServiceException extends import_smithy_
|
|
|
291
299
|
Object.setPrototypeOf(this, _WAFV2ServiceException.prototype);
|
|
292
300
|
}
|
|
293
301
|
};
|
|
294
|
-
__name(_WAFV2ServiceException, "WAFV2ServiceException");
|
|
295
|
-
var WAFV2ServiceException = _WAFV2ServiceException;
|
|
296
302
|
|
|
297
303
|
// src/models/models_0.ts
|
|
298
304
|
var ActionValue = {
|
|
@@ -651,7 +657,13 @@ var AssociatedResourceType = {
|
|
|
651
657
|
COGNITO_USER_POOL: "COGNITO_USER_POOL",
|
|
652
658
|
VERIFIED_ACCESS_INSTANCE: "VERIFIED_ACCESS_INSTANCE"
|
|
653
659
|
};
|
|
654
|
-
var
|
|
660
|
+
var WAFInternalErrorException = class _WAFInternalErrorException extends WAFV2ServiceException {
|
|
661
|
+
static {
|
|
662
|
+
__name(this, "WAFInternalErrorException");
|
|
663
|
+
}
|
|
664
|
+
name = "WAFInternalErrorException";
|
|
665
|
+
$fault = "server";
|
|
666
|
+
Message;
|
|
655
667
|
/**
|
|
656
668
|
* @internal
|
|
657
669
|
*/
|
|
@@ -661,15 +673,17 @@ var _WAFInternalErrorException = class _WAFInternalErrorException extends WAFV2S
|
|
|
661
673
|
$fault: "server",
|
|
662
674
|
...opts
|
|
663
675
|
});
|
|
664
|
-
this.name = "WAFInternalErrorException";
|
|
665
|
-
this.$fault = "server";
|
|
666
676
|
Object.setPrototypeOf(this, _WAFInternalErrorException.prototype);
|
|
667
677
|
this.Message = opts.Message;
|
|
668
678
|
}
|
|
669
679
|
};
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
680
|
+
var WAFInvalidOperationException = class _WAFInvalidOperationException extends WAFV2ServiceException {
|
|
681
|
+
static {
|
|
682
|
+
__name(this, "WAFInvalidOperationException");
|
|
683
|
+
}
|
|
684
|
+
name = "WAFInvalidOperationException";
|
|
685
|
+
$fault = "client";
|
|
686
|
+
Message;
|
|
673
687
|
/**
|
|
674
688
|
* @internal
|
|
675
689
|
*/
|
|
@@ -679,14 +693,10 @@ var _WAFInvalidOperationException = class _WAFInvalidOperationException extends
|
|
|
679
693
|
$fault: "client",
|
|
680
694
|
...opts
|
|
681
695
|
});
|
|
682
|
-
this.name = "WAFInvalidOperationException";
|
|
683
|
-
this.$fault = "client";
|
|
684
696
|
Object.setPrototypeOf(this, _WAFInvalidOperationException.prototype);
|
|
685
697
|
this.Message = opts.Message;
|
|
686
698
|
}
|
|
687
699
|
};
|
|
688
|
-
__name(_WAFInvalidOperationException, "WAFInvalidOperationException");
|
|
689
|
-
var WAFInvalidOperationException = _WAFInvalidOperationException;
|
|
690
700
|
var ParameterExceptionField = {
|
|
691
701
|
ACP_RULE_SET_RESPONSE_INSPECTION: "ACP_RULE_SET_RESPONSE_INSPECTION",
|
|
692
702
|
AND_STATEMENT: "AND_STATEMENT",
|
|
@@ -759,7 +769,27 @@ var ParameterExceptionField = {
|
|
|
759
769
|
WEB_ACL: "WEB_ACL",
|
|
760
770
|
XSS_MATCH_STATEMENT: "XSS_MATCH_STATEMENT"
|
|
761
771
|
};
|
|
762
|
-
var
|
|
772
|
+
var WAFInvalidParameterException = class _WAFInvalidParameterException extends WAFV2ServiceException {
|
|
773
|
+
static {
|
|
774
|
+
__name(this, "WAFInvalidParameterException");
|
|
775
|
+
}
|
|
776
|
+
name = "WAFInvalidParameterException";
|
|
777
|
+
$fault = "client";
|
|
778
|
+
/**
|
|
779
|
+
* <p>The settings where the invalid parameter was found. </p>
|
|
780
|
+
* @public
|
|
781
|
+
*/
|
|
782
|
+
Field;
|
|
783
|
+
/**
|
|
784
|
+
* <p>The invalid parameter that resulted in the exception. </p>
|
|
785
|
+
* @public
|
|
786
|
+
*/
|
|
787
|
+
Parameter;
|
|
788
|
+
/**
|
|
789
|
+
* <p>Additional information about the exception.</p>
|
|
790
|
+
* @public
|
|
791
|
+
*/
|
|
792
|
+
Reason;
|
|
763
793
|
/**
|
|
764
794
|
* @internal
|
|
765
795
|
*/
|
|
@@ -769,17 +799,19 @@ var _WAFInvalidParameterException = class _WAFInvalidParameterException extends
|
|
|
769
799
|
$fault: "client",
|
|
770
800
|
...opts
|
|
771
801
|
});
|
|
772
|
-
this.name = "WAFInvalidParameterException";
|
|
773
|
-
this.$fault = "client";
|
|
774
802
|
Object.setPrototypeOf(this, _WAFInvalidParameterException.prototype);
|
|
775
803
|
this.Field = opts.Field;
|
|
776
804
|
this.Parameter = opts.Parameter;
|
|
777
805
|
this.Reason = opts.Reason;
|
|
778
806
|
}
|
|
779
807
|
};
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
808
|
+
var WAFNonexistentItemException = class _WAFNonexistentItemException extends WAFV2ServiceException {
|
|
809
|
+
static {
|
|
810
|
+
__name(this, "WAFNonexistentItemException");
|
|
811
|
+
}
|
|
812
|
+
name = "WAFNonexistentItemException";
|
|
813
|
+
$fault = "client";
|
|
814
|
+
Message;
|
|
783
815
|
/**
|
|
784
816
|
* @internal
|
|
785
817
|
*/
|
|
@@ -789,15 +821,17 @@ var _WAFNonexistentItemException = class _WAFNonexistentItemException extends WA
|
|
|
789
821
|
$fault: "client",
|
|
790
822
|
...opts
|
|
791
823
|
});
|
|
792
|
-
this.name = "WAFNonexistentItemException";
|
|
793
|
-
this.$fault = "client";
|
|
794
824
|
Object.setPrototypeOf(this, _WAFNonexistentItemException.prototype);
|
|
795
825
|
this.Message = opts.Message;
|
|
796
826
|
}
|
|
797
827
|
};
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
828
|
+
var WAFUnavailableEntityException = class _WAFUnavailableEntityException extends WAFV2ServiceException {
|
|
829
|
+
static {
|
|
830
|
+
__name(this, "WAFUnavailableEntityException");
|
|
831
|
+
}
|
|
832
|
+
name = "WAFUnavailableEntityException";
|
|
833
|
+
$fault = "client";
|
|
834
|
+
Message;
|
|
801
835
|
/**
|
|
802
836
|
* @internal
|
|
803
837
|
*/
|
|
@@ -807,14 +841,10 @@ var _WAFUnavailableEntityException = class _WAFUnavailableEntityException extend
|
|
|
807
841
|
$fault: "client",
|
|
808
842
|
...opts
|
|
809
843
|
});
|
|
810
|
-
this.name = "WAFUnavailableEntityException";
|
|
811
|
-
this.$fault = "client";
|
|
812
844
|
Object.setPrototypeOf(this, _WAFUnavailableEntityException.prototype);
|
|
813
845
|
this.Message = opts.Message;
|
|
814
846
|
}
|
|
815
847
|
};
|
|
816
|
-
__name(_WAFUnavailableEntityException, "WAFUnavailableEntityException");
|
|
817
|
-
var WAFUnavailableEntityException = _WAFUnavailableEntityException;
|
|
818
848
|
var SizeInspectionLimit = {
|
|
819
849
|
KB_16: "KB_16",
|
|
820
850
|
KB_32: "KB_32",
|
|
@@ -825,7 +855,13 @@ var Scope = {
|
|
|
825
855
|
CLOUDFRONT: "CLOUDFRONT",
|
|
826
856
|
REGIONAL: "REGIONAL"
|
|
827
857
|
};
|
|
828
|
-
var
|
|
858
|
+
var WAFExpiredManagedRuleGroupVersionException = class _WAFExpiredManagedRuleGroupVersionException extends WAFV2ServiceException {
|
|
859
|
+
static {
|
|
860
|
+
__name(this, "WAFExpiredManagedRuleGroupVersionException");
|
|
861
|
+
}
|
|
862
|
+
name = "WAFExpiredManagedRuleGroupVersionException";
|
|
863
|
+
$fault = "client";
|
|
864
|
+
Message;
|
|
829
865
|
/**
|
|
830
866
|
* @internal
|
|
831
867
|
*/
|
|
@@ -835,15 +871,17 @@ var _WAFExpiredManagedRuleGroupVersionException = class _WAFExpiredManagedRuleGr
|
|
|
835
871
|
$fault: "client",
|
|
836
872
|
...opts
|
|
837
873
|
});
|
|
838
|
-
this.name = "WAFExpiredManagedRuleGroupVersionException";
|
|
839
|
-
this.$fault = "client";
|
|
840
874
|
Object.setPrototypeOf(this, _WAFExpiredManagedRuleGroupVersionException.prototype);
|
|
841
875
|
this.Message = opts.Message;
|
|
842
876
|
}
|
|
843
877
|
};
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
878
|
+
var WAFInvalidResourceException = class _WAFInvalidResourceException extends WAFV2ServiceException {
|
|
879
|
+
static {
|
|
880
|
+
__name(this, "WAFInvalidResourceException");
|
|
881
|
+
}
|
|
882
|
+
name = "WAFInvalidResourceException";
|
|
883
|
+
$fault = "client";
|
|
884
|
+
Message;
|
|
847
885
|
/**
|
|
848
886
|
* @internal
|
|
849
887
|
*/
|
|
@@ -853,15 +891,22 @@ var _WAFInvalidResourceException = class _WAFInvalidResourceException extends WA
|
|
|
853
891
|
$fault: "client",
|
|
854
892
|
...opts
|
|
855
893
|
});
|
|
856
|
-
this.name = "WAFInvalidResourceException";
|
|
857
|
-
this.$fault = "client";
|
|
858
894
|
Object.setPrototypeOf(this, _WAFInvalidResourceException.prototype);
|
|
859
895
|
this.Message = opts.Message;
|
|
860
896
|
}
|
|
861
897
|
};
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
898
|
+
var WAFLimitsExceededException = class _WAFLimitsExceededException extends WAFV2ServiceException {
|
|
899
|
+
static {
|
|
900
|
+
__name(this, "WAFLimitsExceededException");
|
|
901
|
+
}
|
|
902
|
+
name = "WAFLimitsExceededException";
|
|
903
|
+
$fault = "client";
|
|
904
|
+
Message;
|
|
905
|
+
/**
|
|
906
|
+
* <p>Source type for the exception. </p>
|
|
907
|
+
* @public
|
|
908
|
+
*/
|
|
909
|
+
SourceType;
|
|
865
910
|
/**
|
|
866
911
|
* @internal
|
|
867
912
|
*/
|
|
@@ -871,16 +916,18 @@ var _WAFLimitsExceededException = class _WAFLimitsExceededException extends WAFV
|
|
|
871
916
|
$fault: "client",
|
|
872
917
|
...opts
|
|
873
918
|
});
|
|
874
|
-
this.name = "WAFLimitsExceededException";
|
|
875
|
-
this.$fault = "client";
|
|
876
919
|
Object.setPrototypeOf(this, _WAFLimitsExceededException.prototype);
|
|
877
920
|
this.Message = opts.Message;
|
|
878
921
|
this.SourceType = opts.SourceType;
|
|
879
922
|
}
|
|
880
923
|
};
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
924
|
+
var WAFSubscriptionNotFoundException = class _WAFSubscriptionNotFoundException extends WAFV2ServiceException {
|
|
925
|
+
static {
|
|
926
|
+
__name(this, "WAFSubscriptionNotFoundException");
|
|
927
|
+
}
|
|
928
|
+
name = "WAFSubscriptionNotFoundException";
|
|
929
|
+
$fault = "client";
|
|
930
|
+
Message;
|
|
884
931
|
/**
|
|
885
932
|
* @internal
|
|
886
933
|
*/
|
|
@@ -890,19 +937,21 @@ var _WAFSubscriptionNotFoundException = class _WAFSubscriptionNotFoundException
|
|
|
890
937
|
$fault: "client",
|
|
891
938
|
...opts
|
|
892
939
|
});
|
|
893
|
-
this.name = "WAFSubscriptionNotFoundException";
|
|
894
|
-
this.$fault = "client";
|
|
895
940
|
Object.setPrototypeOf(this, _WAFSubscriptionNotFoundException.prototype);
|
|
896
941
|
this.Message = opts.Message;
|
|
897
942
|
}
|
|
898
943
|
};
|
|
899
|
-
__name(_WAFSubscriptionNotFoundException, "WAFSubscriptionNotFoundException");
|
|
900
|
-
var WAFSubscriptionNotFoundException = _WAFSubscriptionNotFoundException;
|
|
901
944
|
var IPAddressVersion = {
|
|
902
945
|
IPV4: "IPV4",
|
|
903
946
|
IPV6: "IPV6"
|
|
904
947
|
};
|
|
905
|
-
var
|
|
948
|
+
var WAFDuplicateItemException = class _WAFDuplicateItemException extends WAFV2ServiceException {
|
|
949
|
+
static {
|
|
950
|
+
__name(this, "WAFDuplicateItemException");
|
|
951
|
+
}
|
|
952
|
+
name = "WAFDuplicateItemException";
|
|
953
|
+
$fault = "client";
|
|
954
|
+
Message;
|
|
906
955
|
/**
|
|
907
956
|
* @internal
|
|
908
957
|
*/
|
|
@@ -912,15 +961,17 @@ var _WAFDuplicateItemException = class _WAFDuplicateItemException extends WAFV2S
|
|
|
912
961
|
$fault: "client",
|
|
913
962
|
...opts
|
|
914
963
|
});
|
|
915
|
-
this.name = "WAFDuplicateItemException";
|
|
916
|
-
this.$fault = "client";
|
|
917
964
|
Object.setPrototypeOf(this, _WAFDuplicateItemException.prototype);
|
|
918
965
|
this.Message = opts.Message;
|
|
919
966
|
}
|
|
920
967
|
};
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
968
|
+
var WAFOptimisticLockException = class _WAFOptimisticLockException extends WAFV2ServiceException {
|
|
969
|
+
static {
|
|
970
|
+
__name(this, "WAFOptimisticLockException");
|
|
971
|
+
}
|
|
972
|
+
name = "WAFOptimisticLockException";
|
|
973
|
+
$fault = "client";
|
|
974
|
+
Message;
|
|
924
975
|
/**
|
|
925
976
|
* @internal
|
|
926
977
|
*/
|
|
@@ -930,15 +981,17 @@ var _WAFOptimisticLockException = class _WAFOptimisticLockException extends WAFV
|
|
|
930
981
|
$fault: "client",
|
|
931
982
|
...opts
|
|
932
983
|
});
|
|
933
|
-
this.name = "WAFOptimisticLockException";
|
|
934
|
-
this.$fault = "client";
|
|
935
984
|
Object.setPrototypeOf(this, _WAFOptimisticLockException.prototype);
|
|
936
985
|
this.Message = opts.Message;
|
|
937
986
|
}
|
|
938
987
|
};
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
988
|
+
var WAFTagOperationException = class _WAFTagOperationException extends WAFV2ServiceException {
|
|
989
|
+
static {
|
|
990
|
+
__name(this, "WAFTagOperationException");
|
|
991
|
+
}
|
|
992
|
+
name = "WAFTagOperationException";
|
|
993
|
+
$fault = "client";
|
|
994
|
+
Message;
|
|
942
995
|
/**
|
|
943
996
|
* @internal
|
|
944
997
|
*/
|
|
@@ -948,15 +1001,17 @@ var _WAFTagOperationException = class _WAFTagOperationException extends WAFV2Ser
|
|
|
948
1001
|
$fault: "client",
|
|
949
1002
|
...opts
|
|
950
1003
|
});
|
|
951
|
-
this.name = "WAFTagOperationException";
|
|
952
|
-
this.$fault = "client";
|
|
953
1004
|
Object.setPrototypeOf(this, _WAFTagOperationException.prototype);
|
|
954
1005
|
this.Message = opts.Message;
|
|
955
1006
|
}
|
|
956
1007
|
};
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
1008
|
+
var WAFTagOperationInternalErrorException = class _WAFTagOperationInternalErrorException extends WAFV2ServiceException {
|
|
1009
|
+
static {
|
|
1010
|
+
__name(this, "WAFTagOperationInternalErrorException");
|
|
1011
|
+
}
|
|
1012
|
+
name = "WAFTagOperationInternalErrorException";
|
|
1013
|
+
$fault = "server";
|
|
1014
|
+
Message;
|
|
960
1015
|
/**
|
|
961
1016
|
* @internal
|
|
962
1017
|
*/
|
|
@@ -966,20 +1021,22 @@ var _WAFTagOperationInternalErrorException = class _WAFTagOperationInternalError
|
|
|
966
1021
|
$fault: "server",
|
|
967
1022
|
...opts
|
|
968
1023
|
});
|
|
969
|
-
this.name = "WAFTagOperationInternalErrorException";
|
|
970
|
-
this.$fault = "server";
|
|
971
1024
|
Object.setPrototypeOf(this, _WAFTagOperationInternalErrorException.prototype);
|
|
972
1025
|
this.Message = opts.Message;
|
|
973
1026
|
}
|
|
974
1027
|
};
|
|
975
|
-
__name(_WAFTagOperationInternalErrorException, "WAFTagOperationInternalErrorException");
|
|
976
|
-
var WAFTagOperationInternalErrorException = _WAFTagOperationInternalErrorException;
|
|
977
1028
|
var ResponseContentType = {
|
|
978
1029
|
APPLICATION_JSON: "APPLICATION_JSON",
|
|
979
1030
|
TEXT_HTML: "TEXT_HTML",
|
|
980
1031
|
TEXT_PLAIN: "TEXT_PLAIN"
|
|
981
1032
|
};
|
|
982
|
-
var
|
|
1033
|
+
var WAFConfigurationWarningException = class _WAFConfigurationWarningException extends WAFV2ServiceException {
|
|
1034
|
+
static {
|
|
1035
|
+
__name(this, "WAFConfigurationWarningException");
|
|
1036
|
+
}
|
|
1037
|
+
name = "WAFConfigurationWarningException";
|
|
1038
|
+
$fault = "client";
|
|
1039
|
+
Message;
|
|
983
1040
|
/**
|
|
984
1041
|
* @internal
|
|
985
1042
|
*/
|
|
@@ -989,15 +1046,17 @@ var _WAFConfigurationWarningException = class _WAFConfigurationWarningException
|
|
|
989
1046
|
$fault: "client",
|
|
990
1047
|
...opts
|
|
991
1048
|
});
|
|
992
|
-
this.name = "WAFConfigurationWarningException";
|
|
993
|
-
this.$fault = "client";
|
|
994
1049
|
Object.setPrototypeOf(this, _WAFConfigurationWarningException.prototype);
|
|
995
1050
|
this.Message = opts.Message;
|
|
996
1051
|
}
|
|
997
1052
|
};
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1053
|
+
var WAFAssociatedItemException = class _WAFAssociatedItemException extends WAFV2ServiceException {
|
|
1054
|
+
static {
|
|
1055
|
+
__name(this, "WAFAssociatedItemException");
|
|
1056
|
+
}
|
|
1057
|
+
name = "WAFAssociatedItemException";
|
|
1058
|
+
$fault = "client";
|
|
1059
|
+
Message;
|
|
1001
1060
|
/**
|
|
1002
1061
|
* @internal
|
|
1003
1062
|
*/
|
|
@@ -1007,14 +1066,10 @@ var _WAFAssociatedItemException = class _WAFAssociatedItemException extends WAFV
|
|
|
1007
1066
|
$fault: "client",
|
|
1008
1067
|
...opts
|
|
1009
1068
|
});
|
|
1010
|
-
this.name = "WAFAssociatedItemException";
|
|
1011
|
-
this.$fault = "client";
|
|
1012
1069
|
Object.setPrototypeOf(this, _WAFAssociatedItemException.prototype);
|
|
1013
1070
|
this.Message = opts.Message;
|
|
1014
1071
|
}
|
|
1015
1072
|
};
|
|
1016
|
-
__name(_WAFAssociatedItemException, "WAFAssociatedItemException");
|
|
1017
|
-
var WAFAssociatedItemException = _WAFAssociatedItemException;
|
|
1018
1073
|
var LogScope = {
|
|
1019
1074
|
CUSTOMER: "CUSTOMER",
|
|
1020
1075
|
SECURITY_LAKE: "SECURITY_LAKE"
|
|
@@ -1034,7 +1089,13 @@ var FilterRequirement = {
|
|
|
1034
1089
|
MEETS_ALL: "MEETS_ALL",
|
|
1035
1090
|
MEETS_ANY: "MEETS_ANY"
|
|
1036
1091
|
};
|
|
1037
|
-
var
|
|
1092
|
+
var WAFUnsupportedAggregateKeyTypeException = class _WAFUnsupportedAggregateKeyTypeException extends WAFV2ServiceException {
|
|
1093
|
+
static {
|
|
1094
|
+
__name(this, "WAFUnsupportedAggregateKeyTypeException");
|
|
1095
|
+
}
|
|
1096
|
+
name = "WAFUnsupportedAggregateKeyTypeException";
|
|
1097
|
+
$fault = "client";
|
|
1098
|
+
Message;
|
|
1038
1099
|
/**
|
|
1039
1100
|
* @internal
|
|
1040
1101
|
*/
|
|
@@ -1044,14 +1105,10 @@ var _WAFUnsupportedAggregateKeyTypeException = class _WAFUnsupportedAggregateKey
|
|
|
1044
1105
|
$fault: "client",
|
|
1045
1106
|
...opts
|
|
1046
1107
|
});
|
|
1047
|
-
this.name = "WAFUnsupportedAggregateKeyTypeException";
|
|
1048
|
-
this.$fault = "client";
|
|
1049
1108
|
Object.setPrototypeOf(this, _WAFUnsupportedAggregateKeyTypeException.prototype);
|
|
1050
1109
|
this.Message = opts.Message;
|
|
1051
1110
|
}
|
|
1052
1111
|
};
|
|
1053
|
-
__name(_WAFUnsupportedAggregateKeyTypeException, "WAFUnsupportedAggregateKeyTypeException");
|
|
1054
|
-
var WAFUnsupportedAggregateKeyTypeException = _WAFUnsupportedAggregateKeyTypeException;
|
|
1055
1112
|
var FailureReason = {
|
|
1056
1113
|
TOKEN_DOMAIN_MISMATCH: "TOKEN_DOMAIN_MISMATCH",
|
|
1057
1114
|
TOKEN_EXPIRED: "TOKEN_EXPIRED",
|
|
@@ -1066,7 +1123,13 @@ var ResourceType = {
|
|
|
1066
1123
|
COGNITIO_USER_POOL: "COGNITO_USER_POOL",
|
|
1067
1124
|
VERIFIED_ACCESS_INSTANCE: "VERIFIED_ACCESS_INSTANCE"
|
|
1068
1125
|
};
|
|
1069
|
-
var
|
|
1126
|
+
var WAFLogDestinationPermissionIssueException = class _WAFLogDestinationPermissionIssueException extends WAFV2ServiceException {
|
|
1127
|
+
static {
|
|
1128
|
+
__name(this, "WAFLogDestinationPermissionIssueException");
|
|
1129
|
+
}
|
|
1130
|
+
name = "WAFLogDestinationPermissionIssueException";
|
|
1131
|
+
$fault = "client";
|
|
1132
|
+
Message;
|
|
1070
1133
|
/**
|
|
1071
1134
|
* @internal
|
|
1072
1135
|
*/
|
|
@@ -1076,15 +1139,16 @@ var _WAFLogDestinationPermissionIssueException = class _WAFLogDestinationPermiss
|
|
|
1076
1139
|
$fault: "client",
|
|
1077
1140
|
...opts
|
|
1078
1141
|
});
|
|
1079
|
-
this.name = "WAFLogDestinationPermissionIssueException";
|
|
1080
|
-
this.$fault = "client";
|
|
1081
1142
|
Object.setPrototypeOf(this, _WAFLogDestinationPermissionIssueException.prototype);
|
|
1082
1143
|
this.Message = opts.Message;
|
|
1083
1144
|
}
|
|
1084
1145
|
};
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1146
|
+
var WAFServiceLinkedRoleErrorException = class _WAFServiceLinkedRoleErrorException extends WAFV2ServiceException {
|
|
1147
|
+
static {
|
|
1148
|
+
__name(this, "WAFServiceLinkedRoleErrorException");
|
|
1149
|
+
}
|
|
1150
|
+
name = "WAFServiceLinkedRoleErrorException";
|
|
1151
|
+
$fault = "client";
|
|
1088
1152
|
/**
|
|
1089
1153
|
* @internal
|
|
1090
1154
|
*/
|
|
@@ -1094,14 +1158,16 @@ var _WAFServiceLinkedRoleErrorException = class _WAFServiceLinkedRoleErrorExcept
|
|
|
1094
1158
|
$fault: "client",
|
|
1095
1159
|
...opts
|
|
1096
1160
|
});
|
|
1097
|
-
this.name = "WAFServiceLinkedRoleErrorException";
|
|
1098
|
-
this.$fault = "client";
|
|
1099
1161
|
Object.setPrototypeOf(this, _WAFServiceLinkedRoleErrorException.prototype);
|
|
1100
1162
|
}
|
|
1101
1163
|
};
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1164
|
+
var WAFInvalidPermissionPolicyException = class _WAFInvalidPermissionPolicyException extends WAFV2ServiceException {
|
|
1165
|
+
static {
|
|
1166
|
+
__name(this, "WAFInvalidPermissionPolicyException");
|
|
1167
|
+
}
|
|
1168
|
+
name = "WAFInvalidPermissionPolicyException";
|
|
1169
|
+
$fault = "client";
|
|
1170
|
+
Message;
|
|
1105
1171
|
/**
|
|
1106
1172
|
* @internal
|
|
1107
1173
|
*/
|
|
@@ -1111,14 +1177,10 @@ var _WAFInvalidPermissionPolicyException = class _WAFInvalidPermissionPolicyExce
|
|
|
1111
1177
|
$fault: "client",
|
|
1112
1178
|
...opts
|
|
1113
1179
|
});
|
|
1114
|
-
this.name = "WAFInvalidPermissionPolicyException";
|
|
1115
|
-
this.$fault = "client";
|
|
1116
1180
|
Object.setPrototypeOf(this, _WAFInvalidPermissionPolicyException.prototype);
|
|
1117
1181
|
this.Message = opts.Message;
|
|
1118
1182
|
}
|
|
1119
1183
|
};
|
|
1120
|
-
__name(_WAFInvalidPermissionPolicyException, "WAFInvalidPermissionPolicyException");
|
|
1121
|
-
var WAFInvalidPermissionPolicyException = _WAFInvalidPermissionPolicyException;
|
|
1122
1184
|
|
|
1123
1185
|
// src/protocols/Aws_json1_1.ts
|
|
1124
1186
|
var se_AssociateWebACLCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -2917,757 +2979,811 @@ function sharedHeaders(operation) {
|
|
|
2917
2979
|
__name(sharedHeaders, "sharedHeaders");
|
|
2918
2980
|
|
|
2919
2981
|
// src/commands/AssociateWebACLCommand.ts
|
|
2920
|
-
var
|
|
2982
|
+
var AssociateWebACLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2921
2983
|
return [
|
|
2922
2984
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2923
2985
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2924
2986
|
];
|
|
2925
2987
|
}).s("AWSWAF_20190729", "AssociateWebACL", {}).n("WAFV2Client", "AssociateWebACLCommand").f(void 0, void 0).ser(se_AssociateWebACLCommand).de(de_AssociateWebACLCommand).build() {
|
|
2988
|
+
static {
|
|
2989
|
+
__name(this, "AssociateWebACLCommand");
|
|
2990
|
+
}
|
|
2926
2991
|
};
|
|
2927
|
-
__name(_AssociateWebACLCommand, "AssociateWebACLCommand");
|
|
2928
|
-
var AssociateWebACLCommand = _AssociateWebACLCommand;
|
|
2929
2992
|
|
|
2930
2993
|
// src/commands/CheckCapacityCommand.ts
|
|
2931
2994
|
|
|
2932
2995
|
|
|
2933
2996
|
|
|
2934
|
-
var
|
|
2997
|
+
var CheckCapacityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2935
2998
|
return [
|
|
2936
2999
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2937
3000
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2938
3001
|
];
|
|
2939
3002
|
}).s("AWSWAF_20190729", "CheckCapacity", {}).n("WAFV2Client", "CheckCapacityCommand").f(void 0, void 0).ser(se_CheckCapacityCommand).de(de_CheckCapacityCommand).build() {
|
|
3003
|
+
static {
|
|
3004
|
+
__name(this, "CheckCapacityCommand");
|
|
3005
|
+
}
|
|
2940
3006
|
};
|
|
2941
|
-
__name(_CheckCapacityCommand, "CheckCapacityCommand");
|
|
2942
|
-
var CheckCapacityCommand = _CheckCapacityCommand;
|
|
2943
3007
|
|
|
2944
3008
|
// src/commands/CreateAPIKeyCommand.ts
|
|
2945
3009
|
|
|
2946
3010
|
|
|
2947
3011
|
|
|
2948
|
-
var
|
|
3012
|
+
var CreateAPIKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2949
3013
|
return [
|
|
2950
3014
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2951
3015
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2952
3016
|
];
|
|
2953
3017
|
}).s("AWSWAF_20190729", "CreateAPIKey", {}).n("WAFV2Client", "CreateAPIKeyCommand").f(void 0, void 0).ser(se_CreateAPIKeyCommand).de(de_CreateAPIKeyCommand).build() {
|
|
3018
|
+
static {
|
|
3019
|
+
__name(this, "CreateAPIKeyCommand");
|
|
3020
|
+
}
|
|
2954
3021
|
};
|
|
2955
|
-
__name(_CreateAPIKeyCommand, "CreateAPIKeyCommand");
|
|
2956
|
-
var CreateAPIKeyCommand = _CreateAPIKeyCommand;
|
|
2957
3022
|
|
|
2958
3023
|
// src/commands/CreateIPSetCommand.ts
|
|
2959
3024
|
|
|
2960
3025
|
|
|
2961
3026
|
|
|
2962
|
-
var
|
|
3027
|
+
var CreateIPSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2963
3028
|
return [
|
|
2964
3029
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2965
3030
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2966
3031
|
];
|
|
2967
3032
|
}).s("AWSWAF_20190729", "CreateIPSet", {}).n("WAFV2Client", "CreateIPSetCommand").f(void 0, void 0).ser(se_CreateIPSetCommand).de(de_CreateIPSetCommand).build() {
|
|
3033
|
+
static {
|
|
3034
|
+
__name(this, "CreateIPSetCommand");
|
|
3035
|
+
}
|
|
2968
3036
|
};
|
|
2969
|
-
__name(_CreateIPSetCommand, "CreateIPSetCommand");
|
|
2970
|
-
var CreateIPSetCommand = _CreateIPSetCommand;
|
|
2971
3037
|
|
|
2972
3038
|
// src/commands/CreateRegexPatternSetCommand.ts
|
|
2973
3039
|
|
|
2974
3040
|
|
|
2975
3041
|
|
|
2976
|
-
var
|
|
3042
|
+
var CreateRegexPatternSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2977
3043
|
return [
|
|
2978
3044
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2979
3045
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2980
3046
|
];
|
|
2981
3047
|
}).s("AWSWAF_20190729", "CreateRegexPatternSet", {}).n("WAFV2Client", "CreateRegexPatternSetCommand").f(void 0, void 0).ser(se_CreateRegexPatternSetCommand).de(de_CreateRegexPatternSetCommand).build() {
|
|
3048
|
+
static {
|
|
3049
|
+
__name(this, "CreateRegexPatternSetCommand");
|
|
3050
|
+
}
|
|
2982
3051
|
};
|
|
2983
|
-
__name(_CreateRegexPatternSetCommand, "CreateRegexPatternSetCommand");
|
|
2984
|
-
var CreateRegexPatternSetCommand = _CreateRegexPatternSetCommand;
|
|
2985
3052
|
|
|
2986
3053
|
// src/commands/CreateRuleGroupCommand.ts
|
|
2987
3054
|
|
|
2988
3055
|
|
|
2989
3056
|
|
|
2990
|
-
var
|
|
3057
|
+
var CreateRuleGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2991
3058
|
return [
|
|
2992
3059
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2993
3060
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2994
3061
|
];
|
|
2995
3062
|
}).s("AWSWAF_20190729", "CreateRuleGroup", {}).n("WAFV2Client", "CreateRuleGroupCommand").f(void 0, void 0).ser(se_CreateRuleGroupCommand).de(de_CreateRuleGroupCommand).build() {
|
|
3063
|
+
static {
|
|
3064
|
+
__name(this, "CreateRuleGroupCommand");
|
|
3065
|
+
}
|
|
2996
3066
|
};
|
|
2997
|
-
__name(_CreateRuleGroupCommand, "CreateRuleGroupCommand");
|
|
2998
|
-
var CreateRuleGroupCommand = _CreateRuleGroupCommand;
|
|
2999
3067
|
|
|
3000
3068
|
// src/commands/CreateWebACLCommand.ts
|
|
3001
3069
|
|
|
3002
3070
|
|
|
3003
3071
|
|
|
3004
|
-
var
|
|
3072
|
+
var CreateWebACLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3005
3073
|
return [
|
|
3006
3074
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3007
3075
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3008
3076
|
];
|
|
3009
3077
|
}).s("AWSWAF_20190729", "CreateWebACL", {}).n("WAFV2Client", "CreateWebACLCommand").f(void 0, void 0).ser(se_CreateWebACLCommand).de(de_CreateWebACLCommand).build() {
|
|
3078
|
+
static {
|
|
3079
|
+
__name(this, "CreateWebACLCommand");
|
|
3080
|
+
}
|
|
3010
3081
|
};
|
|
3011
|
-
__name(_CreateWebACLCommand, "CreateWebACLCommand");
|
|
3012
|
-
var CreateWebACLCommand = _CreateWebACLCommand;
|
|
3013
3082
|
|
|
3014
3083
|
// src/commands/DeleteAPIKeyCommand.ts
|
|
3015
3084
|
|
|
3016
3085
|
|
|
3017
3086
|
|
|
3018
|
-
var
|
|
3087
|
+
var DeleteAPIKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3019
3088
|
return [
|
|
3020
3089
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3021
3090
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3022
3091
|
];
|
|
3023
3092
|
}).s("AWSWAF_20190729", "DeleteAPIKey", {}).n("WAFV2Client", "DeleteAPIKeyCommand").f(void 0, void 0).ser(se_DeleteAPIKeyCommand).de(de_DeleteAPIKeyCommand).build() {
|
|
3093
|
+
static {
|
|
3094
|
+
__name(this, "DeleteAPIKeyCommand");
|
|
3095
|
+
}
|
|
3024
3096
|
};
|
|
3025
|
-
__name(_DeleteAPIKeyCommand, "DeleteAPIKeyCommand");
|
|
3026
|
-
var DeleteAPIKeyCommand = _DeleteAPIKeyCommand;
|
|
3027
3097
|
|
|
3028
3098
|
// src/commands/DeleteFirewallManagerRuleGroupsCommand.ts
|
|
3029
3099
|
|
|
3030
3100
|
|
|
3031
3101
|
|
|
3032
|
-
var
|
|
3102
|
+
var DeleteFirewallManagerRuleGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3033
3103
|
return [
|
|
3034
3104
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3035
3105
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3036
3106
|
];
|
|
3037
3107
|
}).s("AWSWAF_20190729", "DeleteFirewallManagerRuleGroups", {}).n("WAFV2Client", "DeleteFirewallManagerRuleGroupsCommand").f(void 0, void 0).ser(se_DeleteFirewallManagerRuleGroupsCommand).de(de_DeleteFirewallManagerRuleGroupsCommand).build() {
|
|
3108
|
+
static {
|
|
3109
|
+
__name(this, "DeleteFirewallManagerRuleGroupsCommand");
|
|
3110
|
+
}
|
|
3038
3111
|
};
|
|
3039
|
-
__name(_DeleteFirewallManagerRuleGroupsCommand, "DeleteFirewallManagerRuleGroupsCommand");
|
|
3040
|
-
var DeleteFirewallManagerRuleGroupsCommand = _DeleteFirewallManagerRuleGroupsCommand;
|
|
3041
3112
|
|
|
3042
3113
|
// src/commands/DeleteIPSetCommand.ts
|
|
3043
3114
|
|
|
3044
3115
|
|
|
3045
3116
|
|
|
3046
|
-
var
|
|
3117
|
+
var DeleteIPSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3047
3118
|
return [
|
|
3048
3119
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3049
3120
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3050
3121
|
];
|
|
3051
3122
|
}).s("AWSWAF_20190729", "DeleteIPSet", {}).n("WAFV2Client", "DeleteIPSetCommand").f(void 0, void 0).ser(se_DeleteIPSetCommand).de(de_DeleteIPSetCommand).build() {
|
|
3123
|
+
static {
|
|
3124
|
+
__name(this, "DeleteIPSetCommand");
|
|
3125
|
+
}
|
|
3052
3126
|
};
|
|
3053
|
-
__name(_DeleteIPSetCommand, "DeleteIPSetCommand");
|
|
3054
|
-
var DeleteIPSetCommand = _DeleteIPSetCommand;
|
|
3055
3127
|
|
|
3056
3128
|
// src/commands/DeleteLoggingConfigurationCommand.ts
|
|
3057
3129
|
|
|
3058
3130
|
|
|
3059
3131
|
|
|
3060
|
-
var
|
|
3132
|
+
var DeleteLoggingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3061
3133
|
return [
|
|
3062
3134
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3063
3135
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3064
3136
|
];
|
|
3065
3137
|
}).s("AWSWAF_20190729", "DeleteLoggingConfiguration", {}).n("WAFV2Client", "DeleteLoggingConfigurationCommand").f(void 0, void 0).ser(se_DeleteLoggingConfigurationCommand).de(de_DeleteLoggingConfigurationCommand).build() {
|
|
3138
|
+
static {
|
|
3139
|
+
__name(this, "DeleteLoggingConfigurationCommand");
|
|
3140
|
+
}
|
|
3066
3141
|
};
|
|
3067
|
-
__name(_DeleteLoggingConfigurationCommand, "DeleteLoggingConfigurationCommand");
|
|
3068
|
-
var DeleteLoggingConfigurationCommand = _DeleteLoggingConfigurationCommand;
|
|
3069
3142
|
|
|
3070
3143
|
// src/commands/DeletePermissionPolicyCommand.ts
|
|
3071
3144
|
|
|
3072
3145
|
|
|
3073
3146
|
|
|
3074
|
-
var
|
|
3147
|
+
var DeletePermissionPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3075
3148
|
return [
|
|
3076
3149
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3077
3150
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3078
3151
|
];
|
|
3079
3152
|
}).s("AWSWAF_20190729", "DeletePermissionPolicy", {}).n("WAFV2Client", "DeletePermissionPolicyCommand").f(void 0, void 0).ser(se_DeletePermissionPolicyCommand).de(de_DeletePermissionPolicyCommand).build() {
|
|
3153
|
+
static {
|
|
3154
|
+
__name(this, "DeletePermissionPolicyCommand");
|
|
3155
|
+
}
|
|
3080
3156
|
};
|
|
3081
|
-
__name(_DeletePermissionPolicyCommand, "DeletePermissionPolicyCommand");
|
|
3082
|
-
var DeletePermissionPolicyCommand = _DeletePermissionPolicyCommand;
|
|
3083
3157
|
|
|
3084
3158
|
// src/commands/DeleteRegexPatternSetCommand.ts
|
|
3085
3159
|
|
|
3086
3160
|
|
|
3087
3161
|
|
|
3088
|
-
var
|
|
3162
|
+
var DeleteRegexPatternSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3089
3163
|
return [
|
|
3090
3164
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3091
3165
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3092
3166
|
];
|
|
3093
3167
|
}).s("AWSWAF_20190729", "DeleteRegexPatternSet", {}).n("WAFV2Client", "DeleteRegexPatternSetCommand").f(void 0, void 0).ser(se_DeleteRegexPatternSetCommand).de(de_DeleteRegexPatternSetCommand).build() {
|
|
3168
|
+
static {
|
|
3169
|
+
__name(this, "DeleteRegexPatternSetCommand");
|
|
3170
|
+
}
|
|
3094
3171
|
};
|
|
3095
|
-
__name(_DeleteRegexPatternSetCommand, "DeleteRegexPatternSetCommand");
|
|
3096
|
-
var DeleteRegexPatternSetCommand = _DeleteRegexPatternSetCommand;
|
|
3097
3172
|
|
|
3098
3173
|
// src/commands/DeleteRuleGroupCommand.ts
|
|
3099
3174
|
|
|
3100
3175
|
|
|
3101
3176
|
|
|
3102
|
-
var
|
|
3177
|
+
var DeleteRuleGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3103
3178
|
return [
|
|
3104
3179
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3105
3180
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3106
3181
|
];
|
|
3107
3182
|
}).s("AWSWAF_20190729", "DeleteRuleGroup", {}).n("WAFV2Client", "DeleteRuleGroupCommand").f(void 0, void 0).ser(se_DeleteRuleGroupCommand).de(de_DeleteRuleGroupCommand).build() {
|
|
3183
|
+
static {
|
|
3184
|
+
__name(this, "DeleteRuleGroupCommand");
|
|
3185
|
+
}
|
|
3108
3186
|
};
|
|
3109
|
-
__name(_DeleteRuleGroupCommand, "DeleteRuleGroupCommand");
|
|
3110
|
-
var DeleteRuleGroupCommand = _DeleteRuleGroupCommand;
|
|
3111
3187
|
|
|
3112
3188
|
// src/commands/DeleteWebACLCommand.ts
|
|
3113
3189
|
|
|
3114
3190
|
|
|
3115
3191
|
|
|
3116
|
-
var
|
|
3192
|
+
var DeleteWebACLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3117
3193
|
return [
|
|
3118
3194
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3119
3195
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3120
3196
|
];
|
|
3121
3197
|
}).s("AWSWAF_20190729", "DeleteWebACL", {}).n("WAFV2Client", "DeleteWebACLCommand").f(void 0, void 0).ser(se_DeleteWebACLCommand).de(de_DeleteWebACLCommand).build() {
|
|
3198
|
+
static {
|
|
3199
|
+
__name(this, "DeleteWebACLCommand");
|
|
3200
|
+
}
|
|
3122
3201
|
};
|
|
3123
|
-
__name(_DeleteWebACLCommand, "DeleteWebACLCommand");
|
|
3124
|
-
var DeleteWebACLCommand = _DeleteWebACLCommand;
|
|
3125
3202
|
|
|
3126
3203
|
// src/commands/DescribeAllManagedProductsCommand.ts
|
|
3127
3204
|
|
|
3128
3205
|
|
|
3129
3206
|
|
|
3130
|
-
var
|
|
3207
|
+
var DescribeAllManagedProductsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3131
3208
|
return [
|
|
3132
3209
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3133
3210
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3134
3211
|
];
|
|
3135
3212
|
}).s("AWSWAF_20190729", "DescribeAllManagedProducts", {}).n("WAFV2Client", "DescribeAllManagedProductsCommand").f(void 0, void 0).ser(se_DescribeAllManagedProductsCommand).de(de_DescribeAllManagedProductsCommand).build() {
|
|
3213
|
+
static {
|
|
3214
|
+
__name(this, "DescribeAllManagedProductsCommand");
|
|
3215
|
+
}
|
|
3136
3216
|
};
|
|
3137
|
-
__name(_DescribeAllManagedProductsCommand, "DescribeAllManagedProductsCommand");
|
|
3138
|
-
var DescribeAllManagedProductsCommand = _DescribeAllManagedProductsCommand;
|
|
3139
3217
|
|
|
3140
3218
|
// src/commands/DescribeManagedProductsByVendorCommand.ts
|
|
3141
3219
|
|
|
3142
3220
|
|
|
3143
3221
|
|
|
3144
|
-
var
|
|
3222
|
+
var DescribeManagedProductsByVendorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3145
3223
|
return [
|
|
3146
3224
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3147
3225
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3148
3226
|
];
|
|
3149
3227
|
}).s("AWSWAF_20190729", "DescribeManagedProductsByVendor", {}).n("WAFV2Client", "DescribeManagedProductsByVendorCommand").f(void 0, void 0).ser(se_DescribeManagedProductsByVendorCommand).de(de_DescribeManagedProductsByVendorCommand).build() {
|
|
3228
|
+
static {
|
|
3229
|
+
__name(this, "DescribeManagedProductsByVendorCommand");
|
|
3230
|
+
}
|
|
3150
3231
|
};
|
|
3151
|
-
__name(_DescribeManagedProductsByVendorCommand, "DescribeManagedProductsByVendorCommand");
|
|
3152
|
-
var DescribeManagedProductsByVendorCommand = _DescribeManagedProductsByVendorCommand;
|
|
3153
3232
|
|
|
3154
3233
|
// src/commands/DescribeManagedRuleGroupCommand.ts
|
|
3155
3234
|
|
|
3156
3235
|
|
|
3157
3236
|
|
|
3158
|
-
var
|
|
3237
|
+
var DescribeManagedRuleGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3159
3238
|
return [
|
|
3160
3239
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3161
3240
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3162
3241
|
];
|
|
3163
3242
|
}).s("AWSWAF_20190729", "DescribeManagedRuleGroup", {}).n("WAFV2Client", "DescribeManagedRuleGroupCommand").f(void 0, void 0).ser(se_DescribeManagedRuleGroupCommand).de(de_DescribeManagedRuleGroupCommand).build() {
|
|
3243
|
+
static {
|
|
3244
|
+
__name(this, "DescribeManagedRuleGroupCommand");
|
|
3245
|
+
}
|
|
3164
3246
|
};
|
|
3165
|
-
__name(_DescribeManagedRuleGroupCommand, "DescribeManagedRuleGroupCommand");
|
|
3166
|
-
var DescribeManagedRuleGroupCommand = _DescribeManagedRuleGroupCommand;
|
|
3167
3247
|
|
|
3168
3248
|
// src/commands/DisassociateWebACLCommand.ts
|
|
3169
3249
|
|
|
3170
3250
|
|
|
3171
3251
|
|
|
3172
|
-
var
|
|
3252
|
+
var DisassociateWebACLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3173
3253
|
return [
|
|
3174
3254
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3175
3255
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3176
3256
|
];
|
|
3177
3257
|
}).s("AWSWAF_20190729", "DisassociateWebACL", {}).n("WAFV2Client", "DisassociateWebACLCommand").f(void 0, void 0).ser(se_DisassociateWebACLCommand).de(de_DisassociateWebACLCommand).build() {
|
|
3258
|
+
static {
|
|
3259
|
+
__name(this, "DisassociateWebACLCommand");
|
|
3260
|
+
}
|
|
3178
3261
|
};
|
|
3179
|
-
__name(_DisassociateWebACLCommand, "DisassociateWebACLCommand");
|
|
3180
|
-
var DisassociateWebACLCommand = _DisassociateWebACLCommand;
|
|
3181
3262
|
|
|
3182
3263
|
// src/commands/GenerateMobileSdkReleaseUrlCommand.ts
|
|
3183
3264
|
|
|
3184
3265
|
|
|
3185
3266
|
|
|
3186
|
-
var
|
|
3267
|
+
var GenerateMobileSdkReleaseUrlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3187
3268
|
return [
|
|
3188
3269
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3189
3270
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3190
3271
|
];
|
|
3191
3272
|
}).s("AWSWAF_20190729", "GenerateMobileSdkReleaseUrl", {}).n("WAFV2Client", "GenerateMobileSdkReleaseUrlCommand").f(void 0, void 0).ser(se_GenerateMobileSdkReleaseUrlCommand).de(de_GenerateMobileSdkReleaseUrlCommand).build() {
|
|
3273
|
+
static {
|
|
3274
|
+
__name(this, "GenerateMobileSdkReleaseUrlCommand");
|
|
3275
|
+
}
|
|
3192
3276
|
};
|
|
3193
|
-
__name(_GenerateMobileSdkReleaseUrlCommand, "GenerateMobileSdkReleaseUrlCommand");
|
|
3194
|
-
var GenerateMobileSdkReleaseUrlCommand = _GenerateMobileSdkReleaseUrlCommand;
|
|
3195
3277
|
|
|
3196
3278
|
// src/commands/GetDecryptedAPIKeyCommand.ts
|
|
3197
3279
|
|
|
3198
3280
|
|
|
3199
3281
|
|
|
3200
|
-
var
|
|
3282
|
+
var GetDecryptedAPIKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3201
3283
|
return [
|
|
3202
3284
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3203
3285
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3204
3286
|
];
|
|
3205
3287
|
}).s("AWSWAF_20190729", "GetDecryptedAPIKey", {}).n("WAFV2Client", "GetDecryptedAPIKeyCommand").f(void 0, void 0).ser(se_GetDecryptedAPIKeyCommand).de(de_GetDecryptedAPIKeyCommand).build() {
|
|
3288
|
+
static {
|
|
3289
|
+
__name(this, "GetDecryptedAPIKeyCommand");
|
|
3290
|
+
}
|
|
3206
3291
|
};
|
|
3207
|
-
__name(_GetDecryptedAPIKeyCommand, "GetDecryptedAPIKeyCommand");
|
|
3208
|
-
var GetDecryptedAPIKeyCommand = _GetDecryptedAPIKeyCommand;
|
|
3209
3292
|
|
|
3210
3293
|
// src/commands/GetIPSetCommand.ts
|
|
3211
3294
|
|
|
3212
3295
|
|
|
3213
3296
|
|
|
3214
|
-
var
|
|
3297
|
+
var GetIPSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3215
3298
|
return [
|
|
3216
3299
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3217
3300
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3218
3301
|
];
|
|
3219
3302
|
}).s("AWSWAF_20190729", "GetIPSet", {}).n("WAFV2Client", "GetIPSetCommand").f(void 0, void 0).ser(se_GetIPSetCommand).de(de_GetIPSetCommand).build() {
|
|
3303
|
+
static {
|
|
3304
|
+
__name(this, "GetIPSetCommand");
|
|
3305
|
+
}
|
|
3220
3306
|
};
|
|
3221
|
-
__name(_GetIPSetCommand, "GetIPSetCommand");
|
|
3222
|
-
var GetIPSetCommand = _GetIPSetCommand;
|
|
3223
3307
|
|
|
3224
3308
|
// src/commands/GetLoggingConfigurationCommand.ts
|
|
3225
3309
|
|
|
3226
3310
|
|
|
3227
3311
|
|
|
3228
|
-
var
|
|
3312
|
+
var GetLoggingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3229
3313
|
return [
|
|
3230
3314
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3231
3315
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3232
3316
|
];
|
|
3233
3317
|
}).s("AWSWAF_20190729", "GetLoggingConfiguration", {}).n("WAFV2Client", "GetLoggingConfigurationCommand").f(void 0, void 0).ser(se_GetLoggingConfigurationCommand).de(de_GetLoggingConfigurationCommand).build() {
|
|
3318
|
+
static {
|
|
3319
|
+
__name(this, "GetLoggingConfigurationCommand");
|
|
3320
|
+
}
|
|
3234
3321
|
};
|
|
3235
|
-
__name(_GetLoggingConfigurationCommand, "GetLoggingConfigurationCommand");
|
|
3236
|
-
var GetLoggingConfigurationCommand = _GetLoggingConfigurationCommand;
|
|
3237
3322
|
|
|
3238
3323
|
// src/commands/GetManagedRuleSetCommand.ts
|
|
3239
3324
|
|
|
3240
3325
|
|
|
3241
3326
|
|
|
3242
|
-
var
|
|
3327
|
+
var GetManagedRuleSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3243
3328
|
return [
|
|
3244
3329
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3245
3330
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3246
3331
|
];
|
|
3247
3332
|
}).s("AWSWAF_20190729", "GetManagedRuleSet", {}).n("WAFV2Client", "GetManagedRuleSetCommand").f(void 0, void 0).ser(se_GetManagedRuleSetCommand).de(de_GetManagedRuleSetCommand).build() {
|
|
3333
|
+
static {
|
|
3334
|
+
__name(this, "GetManagedRuleSetCommand");
|
|
3335
|
+
}
|
|
3248
3336
|
};
|
|
3249
|
-
__name(_GetManagedRuleSetCommand, "GetManagedRuleSetCommand");
|
|
3250
|
-
var GetManagedRuleSetCommand = _GetManagedRuleSetCommand;
|
|
3251
3337
|
|
|
3252
3338
|
// src/commands/GetMobileSdkReleaseCommand.ts
|
|
3253
3339
|
|
|
3254
3340
|
|
|
3255
3341
|
|
|
3256
|
-
var
|
|
3342
|
+
var GetMobileSdkReleaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3257
3343
|
return [
|
|
3258
3344
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3259
3345
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3260
3346
|
];
|
|
3261
3347
|
}).s("AWSWAF_20190729", "GetMobileSdkRelease", {}).n("WAFV2Client", "GetMobileSdkReleaseCommand").f(void 0, void 0).ser(se_GetMobileSdkReleaseCommand).de(de_GetMobileSdkReleaseCommand).build() {
|
|
3348
|
+
static {
|
|
3349
|
+
__name(this, "GetMobileSdkReleaseCommand");
|
|
3350
|
+
}
|
|
3262
3351
|
};
|
|
3263
|
-
__name(_GetMobileSdkReleaseCommand, "GetMobileSdkReleaseCommand");
|
|
3264
|
-
var GetMobileSdkReleaseCommand = _GetMobileSdkReleaseCommand;
|
|
3265
3352
|
|
|
3266
3353
|
// src/commands/GetPermissionPolicyCommand.ts
|
|
3267
3354
|
|
|
3268
3355
|
|
|
3269
3356
|
|
|
3270
|
-
var
|
|
3357
|
+
var GetPermissionPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3271
3358
|
return [
|
|
3272
3359
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3273
3360
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3274
3361
|
];
|
|
3275
3362
|
}).s("AWSWAF_20190729", "GetPermissionPolicy", {}).n("WAFV2Client", "GetPermissionPolicyCommand").f(void 0, void 0).ser(se_GetPermissionPolicyCommand).de(de_GetPermissionPolicyCommand).build() {
|
|
3363
|
+
static {
|
|
3364
|
+
__name(this, "GetPermissionPolicyCommand");
|
|
3365
|
+
}
|
|
3276
3366
|
};
|
|
3277
|
-
__name(_GetPermissionPolicyCommand, "GetPermissionPolicyCommand");
|
|
3278
|
-
var GetPermissionPolicyCommand = _GetPermissionPolicyCommand;
|
|
3279
3367
|
|
|
3280
3368
|
// src/commands/GetRateBasedStatementManagedKeysCommand.ts
|
|
3281
3369
|
|
|
3282
3370
|
|
|
3283
3371
|
|
|
3284
|
-
var
|
|
3372
|
+
var GetRateBasedStatementManagedKeysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3285
3373
|
return [
|
|
3286
3374
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3287
3375
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3288
3376
|
];
|
|
3289
3377
|
}).s("AWSWAF_20190729", "GetRateBasedStatementManagedKeys", {}).n("WAFV2Client", "GetRateBasedStatementManagedKeysCommand").f(void 0, void 0).ser(se_GetRateBasedStatementManagedKeysCommand).de(de_GetRateBasedStatementManagedKeysCommand).build() {
|
|
3378
|
+
static {
|
|
3379
|
+
__name(this, "GetRateBasedStatementManagedKeysCommand");
|
|
3380
|
+
}
|
|
3290
3381
|
};
|
|
3291
|
-
__name(_GetRateBasedStatementManagedKeysCommand, "GetRateBasedStatementManagedKeysCommand");
|
|
3292
|
-
var GetRateBasedStatementManagedKeysCommand = _GetRateBasedStatementManagedKeysCommand;
|
|
3293
3382
|
|
|
3294
3383
|
// src/commands/GetRegexPatternSetCommand.ts
|
|
3295
3384
|
|
|
3296
3385
|
|
|
3297
3386
|
|
|
3298
|
-
var
|
|
3387
|
+
var GetRegexPatternSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3299
3388
|
return [
|
|
3300
3389
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3301
3390
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3302
3391
|
];
|
|
3303
3392
|
}).s("AWSWAF_20190729", "GetRegexPatternSet", {}).n("WAFV2Client", "GetRegexPatternSetCommand").f(void 0, void 0).ser(se_GetRegexPatternSetCommand).de(de_GetRegexPatternSetCommand).build() {
|
|
3393
|
+
static {
|
|
3394
|
+
__name(this, "GetRegexPatternSetCommand");
|
|
3395
|
+
}
|
|
3304
3396
|
};
|
|
3305
|
-
__name(_GetRegexPatternSetCommand, "GetRegexPatternSetCommand");
|
|
3306
|
-
var GetRegexPatternSetCommand = _GetRegexPatternSetCommand;
|
|
3307
3397
|
|
|
3308
3398
|
// src/commands/GetRuleGroupCommand.ts
|
|
3309
3399
|
|
|
3310
3400
|
|
|
3311
3401
|
|
|
3312
|
-
var
|
|
3402
|
+
var GetRuleGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3313
3403
|
return [
|
|
3314
3404
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3315
3405
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3316
3406
|
];
|
|
3317
3407
|
}).s("AWSWAF_20190729", "GetRuleGroup", {}).n("WAFV2Client", "GetRuleGroupCommand").f(void 0, void 0).ser(se_GetRuleGroupCommand).de(de_GetRuleGroupCommand).build() {
|
|
3408
|
+
static {
|
|
3409
|
+
__name(this, "GetRuleGroupCommand");
|
|
3410
|
+
}
|
|
3318
3411
|
};
|
|
3319
|
-
__name(_GetRuleGroupCommand, "GetRuleGroupCommand");
|
|
3320
|
-
var GetRuleGroupCommand = _GetRuleGroupCommand;
|
|
3321
3412
|
|
|
3322
3413
|
// src/commands/GetSampledRequestsCommand.ts
|
|
3323
3414
|
|
|
3324
3415
|
|
|
3325
3416
|
|
|
3326
|
-
var
|
|
3417
|
+
var GetSampledRequestsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3327
3418
|
return [
|
|
3328
3419
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3329
3420
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3330
3421
|
];
|
|
3331
3422
|
}).s("AWSWAF_20190729", "GetSampledRequests", {}).n("WAFV2Client", "GetSampledRequestsCommand").f(void 0, void 0).ser(se_GetSampledRequestsCommand).de(de_GetSampledRequestsCommand).build() {
|
|
3423
|
+
static {
|
|
3424
|
+
__name(this, "GetSampledRequestsCommand");
|
|
3425
|
+
}
|
|
3332
3426
|
};
|
|
3333
|
-
__name(_GetSampledRequestsCommand, "GetSampledRequestsCommand");
|
|
3334
|
-
var GetSampledRequestsCommand = _GetSampledRequestsCommand;
|
|
3335
3427
|
|
|
3336
3428
|
// src/commands/GetWebACLCommand.ts
|
|
3337
3429
|
|
|
3338
3430
|
|
|
3339
3431
|
|
|
3340
|
-
var
|
|
3432
|
+
var GetWebACLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3341
3433
|
return [
|
|
3342
3434
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3343
3435
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3344
3436
|
];
|
|
3345
3437
|
}).s("AWSWAF_20190729", "GetWebACL", {}).n("WAFV2Client", "GetWebACLCommand").f(void 0, void 0).ser(se_GetWebACLCommand).de(de_GetWebACLCommand).build() {
|
|
3438
|
+
static {
|
|
3439
|
+
__name(this, "GetWebACLCommand");
|
|
3440
|
+
}
|
|
3346
3441
|
};
|
|
3347
|
-
__name(_GetWebACLCommand, "GetWebACLCommand");
|
|
3348
|
-
var GetWebACLCommand = _GetWebACLCommand;
|
|
3349
3442
|
|
|
3350
3443
|
// src/commands/GetWebACLForResourceCommand.ts
|
|
3351
3444
|
|
|
3352
3445
|
|
|
3353
3446
|
|
|
3354
|
-
var
|
|
3447
|
+
var GetWebACLForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3355
3448
|
return [
|
|
3356
3449
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3357
3450
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3358
3451
|
];
|
|
3359
3452
|
}).s("AWSWAF_20190729", "GetWebACLForResource", {}).n("WAFV2Client", "GetWebACLForResourceCommand").f(void 0, void 0).ser(se_GetWebACLForResourceCommand).de(de_GetWebACLForResourceCommand).build() {
|
|
3453
|
+
static {
|
|
3454
|
+
__name(this, "GetWebACLForResourceCommand");
|
|
3455
|
+
}
|
|
3360
3456
|
};
|
|
3361
|
-
__name(_GetWebACLForResourceCommand, "GetWebACLForResourceCommand");
|
|
3362
|
-
var GetWebACLForResourceCommand = _GetWebACLForResourceCommand;
|
|
3363
3457
|
|
|
3364
3458
|
// src/commands/ListAPIKeysCommand.ts
|
|
3365
3459
|
|
|
3366
3460
|
|
|
3367
3461
|
|
|
3368
|
-
var
|
|
3462
|
+
var ListAPIKeysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3369
3463
|
return [
|
|
3370
3464
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3371
3465
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3372
3466
|
];
|
|
3373
3467
|
}).s("AWSWAF_20190729", "ListAPIKeys", {}).n("WAFV2Client", "ListAPIKeysCommand").f(void 0, void 0).ser(se_ListAPIKeysCommand).de(de_ListAPIKeysCommand).build() {
|
|
3468
|
+
static {
|
|
3469
|
+
__name(this, "ListAPIKeysCommand");
|
|
3470
|
+
}
|
|
3374
3471
|
};
|
|
3375
|
-
__name(_ListAPIKeysCommand, "ListAPIKeysCommand");
|
|
3376
|
-
var ListAPIKeysCommand = _ListAPIKeysCommand;
|
|
3377
3472
|
|
|
3378
3473
|
// src/commands/ListAvailableManagedRuleGroupsCommand.ts
|
|
3379
3474
|
|
|
3380
3475
|
|
|
3381
3476
|
|
|
3382
|
-
var
|
|
3477
|
+
var ListAvailableManagedRuleGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3383
3478
|
return [
|
|
3384
3479
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3385
3480
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3386
3481
|
];
|
|
3387
3482
|
}).s("AWSWAF_20190729", "ListAvailableManagedRuleGroups", {}).n("WAFV2Client", "ListAvailableManagedRuleGroupsCommand").f(void 0, void 0).ser(se_ListAvailableManagedRuleGroupsCommand).de(de_ListAvailableManagedRuleGroupsCommand).build() {
|
|
3483
|
+
static {
|
|
3484
|
+
__name(this, "ListAvailableManagedRuleGroupsCommand");
|
|
3485
|
+
}
|
|
3388
3486
|
};
|
|
3389
|
-
__name(_ListAvailableManagedRuleGroupsCommand, "ListAvailableManagedRuleGroupsCommand");
|
|
3390
|
-
var ListAvailableManagedRuleGroupsCommand = _ListAvailableManagedRuleGroupsCommand;
|
|
3391
3487
|
|
|
3392
3488
|
// src/commands/ListAvailableManagedRuleGroupVersionsCommand.ts
|
|
3393
3489
|
|
|
3394
3490
|
|
|
3395
3491
|
|
|
3396
|
-
var
|
|
3492
|
+
var ListAvailableManagedRuleGroupVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3397
3493
|
return [
|
|
3398
3494
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3399
3495
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3400
3496
|
];
|
|
3401
3497
|
}).s("AWSWAF_20190729", "ListAvailableManagedRuleGroupVersions", {}).n("WAFV2Client", "ListAvailableManagedRuleGroupVersionsCommand").f(void 0, void 0).ser(se_ListAvailableManagedRuleGroupVersionsCommand).de(de_ListAvailableManagedRuleGroupVersionsCommand).build() {
|
|
3498
|
+
static {
|
|
3499
|
+
__name(this, "ListAvailableManagedRuleGroupVersionsCommand");
|
|
3500
|
+
}
|
|
3402
3501
|
};
|
|
3403
|
-
__name(_ListAvailableManagedRuleGroupVersionsCommand, "ListAvailableManagedRuleGroupVersionsCommand");
|
|
3404
|
-
var ListAvailableManagedRuleGroupVersionsCommand = _ListAvailableManagedRuleGroupVersionsCommand;
|
|
3405
3502
|
|
|
3406
3503
|
// src/commands/ListIPSetsCommand.ts
|
|
3407
3504
|
|
|
3408
3505
|
|
|
3409
3506
|
|
|
3410
|
-
var
|
|
3507
|
+
var ListIPSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3411
3508
|
return [
|
|
3412
3509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3413
3510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3414
3511
|
];
|
|
3415
3512
|
}).s("AWSWAF_20190729", "ListIPSets", {}).n("WAFV2Client", "ListIPSetsCommand").f(void 0, void 0).ser(se_ListIPSetsCommand).de(de_ListIPSetsCommand).build() {
|
|
3513
|
+
static {
|
|
3514
|
+
__name(this, "ListIPSetsCommand");
|
|
3515
|
+
}
|
|
3416
3516
|
};
|
|
3417
|
-
__name(_ListIPSetsCommand, "ListIPSetsCommand");
|
|
3418
|
-
var ListIPSetsCommand = _ListIPSetsCommand;
|
|
3419
3517
|
|
|
3420
3518
|
// src/commands/ListLoggingConfigurationsCommand.ts
|
|
3421
3519
|
|
|
3422
3520
|
|
|
3423
3521
|
|
|
3424
|
-
var
|
|
3522
|
+
var ListLoggingConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3425
3523
|
return [
|
|
3426
3524
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3427
3525
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3428
3526
|
];
|
|
3429
3527
|
}).s("AWSWAF_20190729", "ListLoggingConfigurations", {}).n("WAFV2Client", "ListLoggingConfigurationsCommand").f(void 0, void 0).ser(se_ListLoggingConfigurationsCommand).de(de_ListLoggingConfigurationsCommand).build() {
|
|
3528
|
+
static {
|
|
3529
|
+
__name(this, "ListLoggingConfigurationsCommand");
|
|
3530
|
+
}
|
|
3430
3531
|
};
|
|
3431
|
-
__name(_ListLoggingConfigurationsCommand, "ListLoggingConfigurationsCommand");
|
|
3432
|
-
var ListLoggingConfigurationsCommand = _ListLoggingConfigurationsCommand;
|
|
3433
3532
|
|
|
3434
3533
|
// src/commands/ListManagedRuleSetsCommand.ts
|
|
3435
3534
|
|
|
3436
3535
|
|
|
3437
3536
|
|
|
3438
|
-
var
|
|
3537
|
+
var ListManagedRuleSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3439
3538
|
return [
|
|
3440
3539
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3441
3540
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3442
3541
|
];
|
|
3443
3542
|
}).s("AWSWAF_20190729", "ListManagedRuleSets", {}).n("WAFV2Client", "ListManagedRuleSetsCommand").f(void 0, void 0).ser(se_ListManagedRuleSetsCommand).de(de_ListManagedRuleSetsCommand).build() {
|
|
3543
|
+
static {
|
|
3544
|
+
__name(this, "ListManagedRuleSetsCommand");
|
|
3545
|
+
}
|
|
3444
3546
|
};
|
|
3445
|
-
__name(_ListManagedRuleSetsCommand, "ListManagedRuleSetsCommand");
|
|
3446
|
-
var ListManagedRuleSetsCommand = _ListManagedRuleSetsCommand;
|
|
3447
3547
|
|
|
3448
3548
|
// src/commands/ListMobileSdkReleasesCommand.ts
|
|
3449
3549
|
|
|
3450
3550
|
|
|
3451
3551
|
|
|
3452
|
-
var
|
|
3552
|
+
var ListMobileSdkReleasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3453
3553
|
return [
|
|
3454
3554
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3455
3555
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3456
3556
|
];
|
|
3457
3557
|
}).s("AWSWAF_20190729", "ListMobileSdkReleases", {}).n("WAFV2Client", "ListMobileSdkReleasesCommand").f(void 0, void 0).ser(se_ListMobileSdkReleasesCommand).de(de_ListMobileSdkReleasesCommand).build() {
|
|
3558
|
+
static {
|
|
3559
|
+
__name(this, "ListMobileSdkReleasesCommand");
|
|
3560
|
+
}
|
|
3458
3561
|
};
|
|
3459
|
-
__name(_ListMobileSdkReleasesCommand, "ListMobileSdkReleasesCommand");
|
|
3460
|
-
var ListMobileSdkReleasesCommand = _ListMobileSdkReleasesCommand;
|
|
3461
3562
|
|
|
3462
3563
|
// src/commands/ListRegexPatternSetsCommand.ts
|
|
3463
3564
|
|
|
3464
3565
|
|
|
3465
3566
|
|
|
3466
|
-
var
|
|
3567
|
+
var ListRegexPatternSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3467
3568
|
return [
|
|
3468
3569
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3469
3570
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3470
3571
|
];
|
|
3471
3572
|
}).s("AWSWAF_20190729", "ListRegexPatternSets", {}).n("WAFV2Client", "ListRegexPatternSetsCommand").f(void 0, void 0).ser(se_ListRegexPatternSetsCommand).de(de_ListRegexPatternSetsCommand).build() {
|
|
3573
|
+
static {
|
|
3574
|
+
__name(this, "ListRegexPatternSetsCommand");
|
|
3575
|
+
}
|
|
3472
3576
|
};
|
|
3473
|
-
__name(_ListRegexPatternSetsCommand, "ListRegexPatternSetsCommand");
|
|
3474
|
-
var ListRegexPatternSetsCommand = _ListRegexPatternSetsCommand;
|
|
3475
3577
|
|
|
3476
3578
|
// src/commands/ListResourcesForWebACLCommand.ts
|
|
3477
3579
|
|
|
3478
3580
|
|
|
3479
3581
|
|
|
3480
|
-
var
|
|
3582
|
+
var ListResourcesForWebACLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3481
3583
|
return [
|
|
3482
3584
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3483
3585
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3484
3586
|
];
|
|
3485
3587
|
}).s("AWSWAF_20190729", "ListResourcesForWebACL", {}).n("WAFV2Client", "ListResourcesForWebACLCommand").f(void 0, void 0).ser(se_ListResourcesForWebACLCommand).de(de_ListResourcesForWebACLCommand).build() {
|
|
3588
|
+
static {
|
|
3589
|
+
__name(this, "ListResourcesForWebACLCommand");
|
|
3590
|
+
}
|
|
3486
3591
|
};
|
|
3487
|
-
__name(_ListResourcesForWebACLCommand, "ListResourcesForWebACLCommand");
|
|
3488
|
-
var ListResourcesForWebACLCommand = _ListResourcesForWebACLCommand;
|
|
3489
3592
|
|
|
3490
3593
|
// src/commands/ListRuleGroupsCommand.ts
|
|
3491
3594
|
|
|
3492
3595
|
|
|
3493
3596
|
|
|
3494
|
-
var
|
|
3597
|
+
var ListRuleGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3495
3598
|
return [
|
|
3496
3599
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3497
3600
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3498
3601
|
];
|
|
3499
3602
|
}).s("AWSWAF_20190729", "ListRuleGroups", {}).n("WAFV2Client", "ListRuleGroupsCommand").f(void 0, void 0).ser(se_ListRuleGroupsCommand).de(de_ListRuleGroupsCommand).build() {
|
|
3603
|
+
static {
|
|
3604
|
+
__name(this, "ListRuleGroupsCommand");
|
|
3605
|
+
}
|
|
3500
3606
|
};
|
|
3501
|
-
__name(_ListRuleGroupsCommand, "ListRuleGroupsCommand");
|
|
3502
|
-
var ListRuleGroupsCommand = _ListRuleGroupsCommand;
|
|
3503
3607
|
|
|
3504
3608
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3505
3609
|
|
|
3506
3610
|
|
|
3507
3611
|
|
|
3508
|
-
var
|
|
3612
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3509
3613
|
return [
|
|
3510
3614
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3511
3615
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3512
3616
|
];
|
|
3513
3617
|
}).s("AWSWAF_20190729", "ListTagsForResource", {}).n("WAFV2Client", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3618
|
+
static {
|
|
3619
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3620
|
+
}
|
|
3514
3621
|
};
|
|
3515
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3516
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3517
3622
|
|
|
3518
3623
|
// src/commands/ListWebACLsCommand.ts
|
|
3519
3624
|
|
|
3520
3625
|
|
|
3521
3626
|
|
|
3522
|
-
var
|
|
3627
|
+
var ListWebACLsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3523
3628
|
return [
|
|
3524
3629
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3525
3630
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3526
3631
|
];
|
|
3527
3632
|
}).s("AWSWAF_20190729", "ListWebACLs", {}).n("WAFV2Client", "ListWebACLsCommand").f(void 0, void 0).ser(se_ListWebACLsCommand).de(de_ListWebACLsCommand).build() {
|
|
3633
|
+
static {
|
|
3634
|
+
__name(this, "ListWebACLsCommand");
|
|
3635
|
+
}
|
|
3528
3636
|
};
|
|
3529
|
-
__name(_ListWebACLsCommand, "ListWebACLsCommand");
|
|
3530
|
-
var ListWebACLsCommand = _ListWebACLsCommand;
|
|
3531
3637
|
|
|
3532
3638
|
// src/commands/PutLoggingConfigurationCommand.ts
|
|
3533
3639
|
|
|
3534
3640
|
|
|
3535
3641
|
|
|
3536
|
-
var
|
|
3642
|
+
var PutLoggingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3537
3643
|
return [
|
|
3538
3644
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3539
3645
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3540
3646
|
];
|
|
3541
3647
|
}).s("AWSWAF_20190729", "PutLoggingConfiguration", {}).n("WAFV2Client", "PutLoggingConfigurationCommand").f(void 0, void 0).ser(se_PutLoggingConfigurationCommand).de(de_PutLoggingConfigurationCommand).build() {
|
|
3648
|
+
static {
|
|
3649
|
+
__name(this, "PutLoggingConfigurationCommand");
|
|
3650
|
+
}
|
|
3542
3651
|
};
|
|
3543
|
-
__name(_PutLoggingConfigurationCommand, "PutLoggingConfigurationCommand");
|
|
3544
|
-
var PutLoggingConfigurationCommand = _PutLoggingConfigurationCommand;
|
|
3545
3652
|
|
|
3546
3653
|
// src/commands/PutManagedRuleSetVersionsCommand.ts
|
|
3547
3654
|
|
|
3548
3655
|
|
|
3549
3656
|
|
|
3550
|
-
var
|
|
3657
|
+
var PutManagedRuleSetVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3551
3658
|
return [
|
|
3552
3659
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3553
3660
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3554
3661
|
];
|
|
3555
3662
|
}).s("AWSWAF_20190729", "PutManagedRuleSetVersions", {}).n("WAFV2Client", "PutManagedRuleSetVersionsCommand").f(void 0, void 0).ser(se_PutManagedRuleSetVersionsCommand).de(de_PutManagedRuleSetVersionsCommand).build() {
|
|
3663
|
+
static {
|
|
3664
|
+
__name(this, "PutManagedRuleSetVersionsCommand");
|
|
3665
|
+
}
|
|
3556
3666
|
};
|
|
3557
|
-
__name(_PutManagedRuleSetVersionsCommand, "PutManagedRuleSetVersionsCommand");
|
|
3558
|
-
var PutManagedRuleSetVersionsCommand = _PutManagedRuleSetVersionsCommand;
|
|
3559
3667
|
|
|
3560
3668
|
// src/commands/PutPermissionPolicyCommand.ts
|
|
3561
3669
|
|
|
3562
3670
|
|
|
3563
3671
|
|
|
3564
|
-
var
|
|
3672
|
+
var PutPermissionPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3565
3673
|
return [
|
|
3566
3674
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3567
3675
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3568
3676
|
];
|
|
3569
3677
|
}).s("AWSWAF_20190729", "PutPermissionPolicy", {}).n("WAFV2Client", "PutPermissionPolicyCommand").f(void 0, void 0).ser(se_PutPermissionPolicyCommand).de(de_PutPermissionPolicyCommand).build() {
|
|
3678
|
+
static {
|
|
3679
|
+
__name(this, "PutPermissionPolicyCommand");
|
|
3680
|
+
}
|
|
3570
3681
|
};
|
|
3571
|
-
__name(_PutPermissionPolicyCommand, "PutPermissionPolicyCommand");
|
|
3572
|
-
var PutPermissionPolicyCommand = _PutPermissionPolicyCommand;
|
|
3573
3682
|
|
|
3574
3683
|
// src/commands/TagResourceCommand.ts
|
|
3575
3684
|
|
|
3576
3685
|
|
|
3577
3686
|
|
|
3578
|
-
var
|
|
3687
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3579
3688
|
return [
|
|
3580
3689
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3581
3690
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3582
3691
|
];
|
|
3583
3692
|
}).s("AWSWAF_20190729", "TagResource", {}).n("WAFV2Client", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3693
|
+
static {
|
|
3694
|
+
__name(this, "TagResourceCommand");
|
|
3695
|
+
}
|
|
3584
3696
|
};
|
|
3585
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3586
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3587
3697
|
|
|
3588
3698
|
// src/commands/UntagResourceCommand.ts
|
|
3589
3699
|
|
|
3590
3700
|
|
|
3591
3701
|
|
|
3592
|
-
var
|
|
3702
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3593
3703
|
return [
|
|
3594
3704
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3595
3705
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3596
3706
|
];
|
|
3597
3707
|
}).s("AWSWAF_20190729", "UntagResource", {}).n("WAFV2Client", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3708
|
+
static {
|
|
3709
|
+
__name(this, "UntagResourceCommand");
|
|
3710
|
+
}
|
|
3598
3711
|
};
|
|
3599
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3600
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3601
3712
|
|
|
3602
3713
|
// src/commands/UpdateIPSetCommand.ts
|
|
3603
3714
|
|
|
3604
3715
|
|
|
3605
3716
|
|
|
3606
|
-
var
|
|
3717
|
+
var UpdateIPSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3607
3718
|
return [
|
|
3608
3719
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3609
3720
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3610
3721
|
];
|
|
3611
3722
|
}).s("AWSWAF_20190729", "UpdateIPSet", {}).n("WAFV2Client", "UpdateIPSetCommand").f(void 0, void 0).ser(se_UpdateIPSetCommand).de(de_UpdateIPSetCommand).build() {
|
|
3723
|
+
static {
|
|
3724
|
+
__name(this, "UpdateIPSetCommand");
|
|
3725
|
+
}
|
|
3612
3726
|
};
|
|
3613
|
-
__name(_UpdateIPSetCommand, "UpdateIPSetCommand");
|
|
3614
|
-
var UpdateIPSetCommand = _UpdateIPSetCommand;
|
|
3615
3727
|
|
|
3616
3728
|
// src/commands/UpdateManagedRuleSetVersionExpiryDateCommand.ts
|
|
3617
3729
|
|
|
3618
3730
|
|
|
3619
3731
|
|
|
3620
|
-
var
|
|
3732
|
+
var UpdateManagedRuleSetVersionExpiryDateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3621
3733
|
return [
|
|
3622
3734
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3623
3735
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3624
3736
|
];
|
|
3625
3737
|
}).s("AWSWAF_20190729", "UpdateManagedRuleSetVersionExpiryDate", {}).n("WAFV2Client", "UpdateManagedRuleSetVersionExpiryDateCommand").f(void 0, void 0).ser(se_UpdateManagedRuleSetVersionExpiryDateCommand).de(de_UpdateManagedRuleSetVersionExpiryDateCommand).build() {
|
|
3738
|
+
static {
|
|
3739
|
+
__name(this, "UpdateManagedRuleSetVersionExpiryDateCommand");
|
|
3740
|
+
}
|
|
3626
3741
|
};
|
|
3627
|
-
__name(_UpdateManagedRuleSetVersionExpiryDateCommand, "UpdateManagedRuleSetVersionExpiryDateCommand");
|
|
3628
|
-
var UpdateManagedRuleSetVersionExpiryDateCommand = _UpdateManagedRuleSetVersionExpiryDateCommand;
|
|
3629
3742
|
|
|
3630
3743
|
// src/commands/UpdateRegexPatternSetCommand.ts
|
|
3631
3744
|
|
|
3632
3745
|
|
|
3633
3746
|
|
|
3634
|
-
var
|
|
3747
|
+
var UpdateRegexPatternSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3635
3748
|
return [
|
|
3636
3749
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3637
3750
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3638
3751
|
];
|
|
3639
3752
|
}).s("AWSWAF_20190729", "UpdateRegexPatternSet", {}).n("WAFV2Client", "UpdateRegexPatternSetCommand").f(void 0, void 0).ser(se_UpdateRegexPatternSetCommand).de(de_UpdateRegexPatternSetCommand).build() {
|
|
3753
|
+
static {
|
|
3754
|
+
__name(this, "UpdateRegexPatternSetCommand");
|
|
3755
|
+
}
|
|
3640
3756
|
};
|
|
3641
|
-
__name(_UpdateRegexPatternSetCommand, "UpdateRegexPatternSetCommand");
|
|
3642
|
-
var UpdateRegexPatternSetCommand = _UpdateRegexPatternSetCommand;
|
|
3643
3757
|
|
|
3644
3758
|
// src/commands/UpdateRuleGroupCommand.ts
|
|
3645
3759
|
|
|
3646
3760
|
|
|
3647
3761
|
|
|
3648
|
-
var
|
|
3762
|
+
var UpdateRuleGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3649
3763
|
return [
|
|
3650
3764
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3651
3765
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3652
3766
|
];
|
|
3653
3767
|
}).s("AWSWAF_20190729", "UpdateRuleGroup", {}).n("WAFV2Client", "UpdateRuleGroupCommand").f(void 0, void 0).ser(se_UpdateRuleGroupCommand).de(de_UpdateRuleGroupCommand).build() {
|
|
3768
|
+
static {
|
|
3769
|
+
__name(this, "UpdateRuleGroupCommand");
|
|
3770
|
+
}
|
|
3654
3771
|
};
|
|
3655
|
-
__name(_UpdateRuleGroupCommand, "UpdateRuleGroupCommand");
|
|
3656
|
-
var UpdateRuleGroupCommand = _UpdateRuleGroupCommand;
|
|
3657
3772
|
|
|
3658
3773
|
// src/commands/UpdateWebACLCommand.ts
|
|
3659
3774
|
|
|
3660
3775
|
|
|
3661
3776
|
|
|
3662
|
-
var
|
|
3777
|
+
var UpdateWebACLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3663
3778
|
return [
|
|
3664
3779
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3665
3780
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3666
3781
|
];
|
|
3667
3782
|
}).s("AWSWAF_20190729", "UpdateWebACL", {}).n("WAFV2Client", "UpdateWebACLCommand").f(void 0, void 0).ser(se_UpdateWebACLCommand).de(de_UpdateWebACLCommand).build() {
|
|
3783
|
+
static {
|
|
3784
|
+
__name(this, "UpdateWebACLCommand");
|
|
3785
|
+
}
|
|
3668
3786
|
};
|
|
3669
|
-
__name(_UpdateWebACLCommand, "UpdateWebACLCommand");
|
|
3670
|
-
var UpdateWebACLCommand = _UpdateWebACLCommand;
|
|
3671
3787
|
|
|
3672
3788
|
// src/WAFV2.ts
|
|
3673
3789
|
var commands = {
|
|
@@ -3726,10 +3842,11 @@ var commands = {
|
|
|
3726
3842
|
UpdateRuleGroupCommand,
|
|
3727
3843
|
UpdateWebACLCommand
|
|
3728
3844
|
};
|
|
3729
|
-
var
|
|
3845
|
+
var WAFV2 = class extends WAFV2Client {
|
|
3846
|
+
static {
|
|
3847
|
+
__name(this, "WAFV2");
|
|
3848
|
+
}
|
|
3730
3849
|
};
|
|
3731
|
-
__name(_WAFV2, "WAFV2");
|
|
3732
|
-
var WAFV2 = _WAFV2;
|
|
3733
3850
|
(0, import_smithy_client.createAggregatedClient)(commands, WAFV2);
|
|
3734
3851
|
// Annotate the CommonJS export names for ESM import in node:
|
|
3735
3852
|
|