@aws-sdk/client-wafv2 3.1068.0 → 3.1070.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/README.md +28 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +338 -225
- package/dist-cjs/models/WAFV2ServiceException.js +4 -8
- package/dist-cjs/models/errors.js +41 -64
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +970 -492
- package/dist-es/WAFV2.js +8 -0
- package/dist-es/commands/GetRevenueStatisticsCommand.js +16 -0
- package/dist-es/commands/GetRevenueStatisticsSummaryCommand.js +16 -0
- package/dist-es/commands/GetRevenueStatisticsTimeSeriesCommand.js +16 -0
- package/dist-es/commands/ListSettlementRecordsCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +65 -0
- package/dist-es/schemas/schemas_0.js +216 -21
- package/dist-types/WAFV2.d.ts +28 -0
- package/dist-types/WAFV2Client.d.ts +6 -2
- package/dist-types/commands/CheckCapacityCommand.d.ts +12 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +29 -0
- package/dist-types/commands/CreateWebACLCommand.d.ts +29 -0
- package/dist-types/commands/DescribeManagedRuleGroupCommand.d.ts +3 -0
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetRevenueStatisticsCommand.d.ts +150 -0
- package/dist-types/commands/GetRevenueStatisticsSummaryCommand.d.ts +130 -0
- package/dist-types/commands/GetRevenueStatisticsTimeSeriesCommand.d.ts +139 -0
- package/dist-types/commands/GetRuleGroupCommand.d.ts +29 -0
- package/dist-types/commands/GetWebACLCommand.d.ts +29 -0
- package/dist-types/commands/GetWebACLForResourceCommand.d.ts +29 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListSettlementRecordsCommand.d.ts +148 -0
- package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +29 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +29 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +161 -0
- package/dist-types/models/models_0.d.ts +843 -114
- package/dist-types/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/WAFV2.d.ts +68 -0
- package/dist-types/ts3.4/WAFV2Client.d.ts +24 -0
- package/dist-types/ts3.4/commands/GetRevenueStatisticsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetRevenueStatisticsSummaryCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetRevenueStatisticsTimeSeriesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListSettlementRecordsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +83 -0
- package/dist-types/ts3.4/models/models_0.d.ts +154 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultWAFV2HttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { AssociateWebACL$, CheckCapacity$, CreateAPIKey$, CreateIPSet$, CreateRegexPatternSet$, CreateRuleGroup$, CreateWebACL$, DeleteAPIKey$, DeleteFirewallManagerRuleGroups$, DeleteIPSet$, DeleteLoggingConfiguration$, DeletePermissionPolicy$, DeleteRegexPatternSet$, DeleteRuleGroup$, DeleteWebACL$, DescribeAllManagedProducts$, DescribeManagedProductsByVendor$, DescribeManagedRuleGroup$, DisassociateWebACL$, GenerateMobileSdkReleaseUrl$, GetDecryptedAPIKey$, GetIPSet$, GetLoggingConfiguration$, GetManagedRuleSet$, GetMobileSdkRelease$, GetPermissionPolicy$, GetRateBasedStatementManagedKeys$, GetRegexPatternSet$, GetRevenueStatistics$, GetRevenueStatisticsSummary$, GetRevenueStatisticsTimeSeries$, GetRuleGroup$, GetSampledRequests$, GetTopPathStatisticsByTraffic$, GetWebACL$, GetWebACLForResource$, ListAPIKeys$, ListAvailableManagedRuleGroups$, ListAvailableManagedRuleGroupVersions$, ListIPSets$, ListLoggingConfigurations$, ListManagedRuleSets$, ListMobileSdkReleases$, ListRegexPatternSets$, ListResourcesForWebACL$, ListRuleGroups$, ListSettlementRecords$, ListTagsForResource$, ListWebACLs$, PutLoggingConfiguration$, PutManagedRuleSetVersions$, PutPermissionPolicy$, TagResource$, UntagResource$, UpdateIPSet$, UpdateManagedRuleSetVersionExpiryDate$, UpdateRegexPatternSet$, UpdateRuleGroup$, UpdateWebACL$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { WAFV2ServiceException } = require("./models/WAFV2ServiceException");
|
|
18
|
+
exports.WAFV2ServiceException = WAFV2ServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,703 +71,751 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class WAFV2Client extends
|
|
79
|
+
class WAFV2Client extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
httpAuthSchemeParametersProvider:
|
|
100
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: defaultWAFV2HttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
101
104
|
"aws.auth#sigv4": config.credentials,
|
|
102
105
|
}),
|
|
103
106
|
}));
|
|
104
|
-
this.middlewareStack.use(
|
|
107
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
105
108
|
}
|
|
106
109
|
destroy() {
|
|
107
110
|
super.destroy();
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class AssociateWebACLCommand extends
|
|
114
|
+
class AssociateWebACLCommand extends Command
|
|
112
115
|
.classBuilder()
|
|
113
116
|
.ep(commonParams)
|
|
114
117
|
.m(function (Command, cs, config, o) {
|
|
115
|
-
return [
|
|
118
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
116
119
|
})
|
|
117
120
|
.s("AWSWAF_20190729", "AssociateWebACL", {})
|
|
118
121
|
.n("WAFV2Client", "AssociateWebACLCommand")
|
|
119
|
-
.sc(
|
|
122
|
+
.sc(AssociateWebACL$)
|
|
120
123
|
.build() {
|
|
121
124
|
}
|
|
122
125
|
|
|
123
|
-
class CheckCapacityCommand extends
|
|
126
|
+
class CheckCapacityCommand extends Command
|
|
124
127
|
.classBuilder()
|
|
125
128
|
.ep(commonParams)
|
|
126
129
|
.m(function (Command, cs, config, o) {
|
|
127
|
-
return [
|
|
130
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
128
131
|
})
|
|
129
132
|
.s("AWSWAF_20190729", "CheckCapacity", {})
|
|
130
133
|
.n("WAFV2Client", "CheckCapacityCommand")
|
|
131
|
-
.sc(
|
|
134
|
+
.sc(CheckCapacity$)
|
|
132
135
|
.build() {
|
|
133
136
|
}
|
|
134
137
|
|
|
135
|
-
class CreateAPIKeyCommand extends
|
|
138
|
+
class CreateAPIKeyCommand extends Command
|
|
136
139
|
.classBuilder()
|
|
137
140
|
.ep(commonParams)
|
|
138
141
|
.m(function (Command, cs, config, o) {
|
|
139
|
-
return [
|
|
142
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
140
143
|
})
|
|
141
144
|
.s("AWSWAF_20190729", "CreateAPIKey", {})
|
|
142
145
|
.n("WAFV2Client", "CreateAPIKeyCommand")
|
|
143
|
-
.sc(
|
|
146
|
+
.sc(CreateAPIKey$)
|
|
144
147
|
.build() {
|
|
145
148
|
}
|
|
146
149
|
|
|
147
|
-
class CreateIPSetCommand extends
|
|
150
|
+
class CreateIPSetCommand extends Command
|
|
148
151
|
.classBuilder()
|
|
149
152
|
.ep(commonParams)
|
|
150
153
|
.m(function (Command, cs, config, o) {
|
|
151
|
-
return [
|
|
154
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
152
155
|
})
|
|
153
156
|
.s("AWSWAF_20190729", "CreateIPSet", {})
|
|
154
157
|
.n("WAFV2Client", "CreateIPSetCommand")
|
|
155
|
-
.sc(
|
|
158
|
+
.sc(CreateIPSet$)
|
|
156
159
|
.build() {
|
|
157
160
|
}
|
|
158
161
|
|
|
159
|
-
class CreateRegexPatternSetCommand extends
|
|
162
|
+
class CreateRegexPatternSetCommand extends Command
|
|
160
163
|
.classBuilder()
|
|
161
164
|
.ep(commonParams)
|
|
162
165
|
.m(function (Command, cs, config, o) {
|
|
163
|
-
return [
|
|
166
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
164
167
|
})
|
|
165
168
|
.s("AWSWAF_20190729", "CreateRegexPatternSet", {})
|
|
166
169
|
.n("WAFV2Client", "CreateRegexPatternSetCommand")
|
|
167
|
-
.sc(
|
|
170
|
+
.sc(CreateRegexPatternSet$)
|
|
168
171
|
.build() {
|
|
169
172
|
}
|
|
170
173
|
|
|
171
|
-
class CreateRuleGroupCommand extends
|
|
174
|
+
class CreateRuleGroupCommand extends Command
|
|
172
175
|
.classBuilder()
|
|
173
176
|
.ep(commonParams)
|
|
174
177
|
.m(function (Command, cs, config, o) {
|
|
175
|
-
return [
|
|
178
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
176
179
|
})
|
|
177
180
|
.s("AWSWAF_20190729", "CreateRuleGroup", {})
|
|
178
181
|
.n("WAFV2Client", "CreateRuleGroupCommand")
|
|
179
|
-
.sc(
|
|
182
|
+
.sc(CreateRuleGroup$)
|
|
180
183
|
.build() {
|
|
181
184
|
}
|
|
182
185
|
|
|
183
|
-
class CreateWebACLCommand extends
|
|
186
|
+
class CreateWebACLCommand extends Command
|
|
184
187
|
.classBuilder()
|
|
185
188
|
.ep(commonParams)
|
|
186
189
|
.m(function (Command, cs, config, o) {
|
|
187
|
-
return [
|
|
190
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
188
191
|
})
|
|
189
192
|
.s("AWSWAF_20190729", "CreateWebACL", {})
|
|
190
193
|
.n("WAFV2Client", "CreateWebACLCommand")
|
|
191
|
-
.sc(
|
|
194
|
+
.sc(CreateWebACL$)
|
|
192
195
|
.build() {
|
|
193
196
|
}
|
|
194
197
|
|
|
195
|
-
class DeleteAPIKeyCommand extends
|
|
198
|
+
class DeleteAPIKeyCommand extends Command
|
|
196
199
|
.classBuilder()
|
|
197
200
|
.ep(commonParams)
|
|
198
201
|
.m(function (Command, cs, config, o) {
|
|
199
|
-
return [
|
|
202
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
200
203
|
})
|
|
201
204
|
.s("AWSWAF_20190729", "DeleteAPIKey", {})
|
|
202
205
|
.n("WAFV2Client", "DeleteAPIKeyCommand")
|
|
203
|
-
.sc(
|
|
206
|
+
.sc(DeleteAPIKey$)
|
|
204
207
|
.build() {
|
|
205
208
|
}
|
|
206
209
|
|
|
207
|
-
class DeleteFirewallManagerRuleGroupsCommand extends
|
|
210
|
+
class DeleteFirewallManagerRuleGroupsCommand extends Command
|
|
208
211
|
.classBuilder()
|
|
209
212
|
.ep(commonParams)
|
|
210
213
|
.m(function (Command, cs, config, o) {
|
|
211
|
-
return [
|
|
214
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
212
215
|
})
|
|
213
216
|
.s("AWSWAF_20190729", "DeleteFirewallManagerRuleGroups", {})
|
|
214
217
|
.n("WAFV2Client", "DeleteFirewallManagerRuleGroupsCommand")
|
|
215
|
-
.sc(
|
|
218
|
+
.sc(DeleteFirewallManagerRuleGroups$)
|
|
216
219
|
.build() {
|
|
217
220
|
}
|
|
218
221
|
|
|
219
|
-
class DeleteIPSetCommand extends
|
|
222
|
+
class DeleteIPSetCommand extends Command
|
|
220
223
|
.classBuilder()
|
|
221
224
|
.ep(commonParams)
|
|
222
225
|
.m(function (Command, cs, config, o) {
|
|
223
|
-
return [
|
|
226
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
224
227
|
})
|
|
225
228
|
.s("AWSWAF_20190729", "DeleteIPSet", {})
|
|
226
229
|
.n("WAFV2Client", "DeleteIPSetCommand")
|
|
227
|
-
.sc(
|
|
230
|
+
.sc(DeleteIPSet$)
|
|
228
231
|
.build() {
|
|
229
232
|
}
|
|
230
233
|
|
|
231
|
-
class DeleteLoggingConfigurationCommand extends
|
|
234
|
+
class DeleteLoggingConfigurationCommand extends Command
|
|
232
235
|
.classBuilder()
|
|
233
236
|
.ep(commonParams)
|
|
234
237
|
.m(function (Command, cs, config, o) {
|
|
235
|
-
return [
|
|
238
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
236
239
|
})
|
|
237
240
|
.s("AWSWAF_20190729", "DeleteLoggingConfiguration", {})
|
|
238
241
|
.n("WAFV2Client", "DeleteLoggingConfigurationCommand")
|
|
239
|
-
.sc(
|
|
242
|
+
.sc(DeleteLoggingConfiguration$)
|
|
240
243
|
.build() {
|
|
241
244
|
}
|
|
242
245
|
|
|
243
|
-
class DeletePermissionPolicyCommand extends
|
|
246
|
+
class DeletePermissionPolicyCommand extends Command
|
|
244
247
|
.classBuilder()
|
|
245
248
|
.ep(commonParams)
|
|
246
249
|
.m(function (Command, cs, config, o) {
|
|
247
|
-
return [
|
|
250
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
248
251
|
})
|
|
249
252
|
.s("AWSWAF_20190729", "DeletePermissionPolicy", {})
|
|
250
253
|
.n("WAFV2Client", "DeletePermissionPolicyCommand")
|
|
251
|
-
.sc(
|
|
254
|
+
.sc(DeletePermissionPolicy$)
|
|
252
255
|
.build() {
|
|
253
256
|
}
|
|
254
257
|
|
|
255
|
-
class DeleteRegexPatternSetCommand extends
|
|
258
|
+
class DeleteRegexPatternSetCommand extends Command
|
|
256
259
|
.classBuilder()
|
|
257
260
|
.ep(commonParams)
|
|
258
261
|
.m(function (Command, cs, config, o) {
|
|
259
|
-
return [
|
|
262
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
260
263
|
})
|
|
261
264
|
.s("AWSWAF_20190729", "DeleteRegexPatternSet", {})
|
|
262
265
|
.n("WAFV2Client", "DeleteRegexPatternSetCommand")
|
|
263
|
-
.sc(
|
|
266
|
+
.sc(DeleteRegexPatternSet$)
|
|
264
267
|
.build() {
|
|
265
268
|
}
|
|
266
269
|
|
|
267
|
-
class DeleteRuleGroupCommand extends
|
|
270
|
+
class DeleteRuleGroupCommand extends Command
|
|
268
271
|
.classBuilder()
|
|
269
272
|
.ep(commonParams)
|
|
270
273
|
.m(function (Command, cs, config, o) {
|
|
271
|
-
return [
|
|
274
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
272
275
|
})
|
|
273
276
|
.s("AWSWAF_20190729", "DeleteRuleGroup", {})
|
|
274
277
|
.n("WAFV2Client", "DeleteRuleGroupCommand")
|
|
275
|
-
.sc(
|
|
278
|
+
.sc(DeleteRuleGroup$)
|
|
276
279
|
.build() {
|
|
277
280
|
}
|
|
278
281
|
|
|
279
|
-
class DeleteWebACLCommand extends
|
|
282
|
+
class DeleteWebACLCommand extends Command
|
|
280
283
|
.classBuilder()
|
|
281
284
|
.ep(commonParams)
|
|
282
285
|
.m(function (Command, cs, config, o) {
|
|
283
|
-
return [
|
|
286
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
284
287
|
})
|
|
285
288
|
.s("AWSWAF_20190729", "DeleteWebACL", {})
|
|
286
289
|
.n("WAFV2Client", "DeleteWebACLCommand")
|
|
287
|
-
.sc(
|
|
290
|
+
.sc(DeleteWebACL$)
|
|
288
291
|
.build() {
|
|
289
292
|
}
|
|
290
293
|
|
|
291
|
-
class DescribeAllManagedProductsCommand extends
|
|
294
|
+
class DescribeAllManagedProductsCommand extends Command
|
|
292
295
|
.classBuilder()
|
|
293
296
|
.ep(commonParams)
|
|
294
297
|
.m(function (Command, cs, config, o) {
|
|
295
|
-
return [
|
|
298
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
296
299
|
})
|
|
297
300
|
.s("AWSWAF_20190729", "DescribeAllManagedProducts", {})
|
|
298
301
|
.n("WAFV2Client", "DescribeAllManagedProductsCommand")
|
|
299
|
-
.sc(
|
|
302
|
+
.sc(DescribeAllManagedProducts$)
|
|
300
303
|
.build() {
|
|
301
304
|
}
|
|
302
305
|
|
|
303
|
-
class DescribeManagedProductsByVendorCommand extends
|
|
306
|
+
class DescribeManagedProductsByVendorCommand extends Command
|
|
304
307
|
.classBuilder()
|
|
305
308
|
.ep(commonParams)
|
|
306
309
|
.m(function (Command, cs, config, o) {
|
|
307
|
-
return [
|
|
310
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
308
311
|
})
|
|
309
312
|
.s("AWSWAF_20190729", "DescribeManagedProductsByVendor", {})
|
|
310
313
|
.n("WAFV2Client", "DescribeManagedProductsByVendorCommand")
|
|
311
|
-
.sc(
|
|
314
|
+
.sc(DescribeManagedProductsByVendor$)
|
|
312
315
|
.build() {
|
|
313
316
|
}
|
|
314
317
|
|
|
315
|
-
class DescribeManagedRuleGroupCommand extends
|
|
318
|
+
class DescribeManagedRuleGroupCommand extends Command
|
|
316
319
|
.classBuilder()
|
|
317
320
|
.ep(commonParams)
|
|
318
321
|
.m(function (Command, cs, config, o) {
|
|
319
|
-
return [
|
|
322
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
320
323
|
})
|
|
321
324
|
.s("AWSWAF_20190729", "DescribeManagedRuleGroup", {})
|
|
322
325
|
.n("WAFV2Client", "DescribeManagedRuleGroupCommand")
|
|
323
|
-
.sc(
|
|
326
|
+
.sc(DescribeManagedRuleGroup$)
|
|
324
327
|
.build() {
|
|
325
328
|
}
|
|
326
329
|
|
|
327
|
-
class DisassociateWebACLCommand extends
|
|
330
|
+
class DisassociateWebACLCommand extends Command
|
|
328
331
|
.classBuilder()
|
|
329
332
|
.ep(commonParams)
|
|
330
333
|
.m(function (Command, cs, config, o) {
|
|
331
|
-
return [
|
|
334
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
332
335
|
})
|
|
333
336
|
.s("AWSWAF_20190729", "DisassociateWebACL", {})
|
|
334
337
|
.n("WAFV2Client", "DisassociateWebACLCommand")
|
|
335
|
-
.sc(
|
|
338
|
+
.sc(DisassociateWebACL$)
|
|
336
339
|
.build() {
|
|
337
340
|
}
|
|
338
341
|
|
|
339
|
-
class GenerateMobileSdkReleaseUrlCommand extends
|
|
342
|
+
class GenerateMobileSdkReleaseUrlCommand extends Command
|
|
340
343
|
.classBuilder()
|
|
341
344
|
.ep(commonParams)
|
|
342
345
|
.m(function (Command, cs, config, o) {
|
|
343
|
-
return [
|
|
346
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
344
347
|
})
|
|
345
348
|
.s("AWSWAF_20190729", "GenerateMobileSdkReleaseUrl", {})
|
|
346
349
|
.n("WAFV2Client", "GenerateMobileSdkReleaseUrlCommand")
|
|
347
|
-
.sc(
|
|
350
|
+
.sc(GenerateMobileSdkReleaseUrl$)
|
|
348
351
|
.build() {
|
|
349
352
|
}
|
|
350
353
|
|
|
351
|
-
class GetDecryptedAPIKeyCommand extends
|
|
354
|
+
class GetDecryptedAPIKeyCommand extends Command
|
|
352
355
|
.classBuilder()
|
|
353
356
|
.ep(commonParams)
|
|
354
357
|
.m(function (Command, cs, config, o) {
|
|
355
|
-
return [
|
|
358
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
356
359
|
})
|
|
357
360
|
.s("AWSWAF_20190729", "GetDecryptedAPIKey", {})
|
|
358
361
|
.n("WAFV2Client", "GetDecryptedAPIKeyCommand")
|
|
359
|
-
.sc(
|
|
362
|
+
.sc(GetDecryptedAPIKey$)
|
|
360
363
|
.build() {
|
|
361
364
|
}
|
|
362
365
|
|
|
363
|
-
class GetIPSetCommand extends
|
|
366
|
+
class GetIPSetCommand extends Command
|
|
364
367
|
.classBuilder()
|
|
365
368
|
.ep(commonParams)
|
|
366
369
|
.m(function (Command, cs, config, o) {
|
|
367
|
-
return [
|
|
370
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
368
371
|
})
|
|
369
372
|
.s("AWSWAF_20190729", "GetIPSet", {})
|
|
370
373
|
.n("WAFV2Client", "GetIPSetCommand")
|
|
371
|
-
.sc(
|
|
374
|
+
.sc(GetIPSet$)
|
|
372
375
|
.build() {
|
|
373
376
|
}
|
|
374
377
|
|
|
375
|
-
class GetLoggingConfigurationCommand extends
|
|
378
|
+
class GetLoggingConfigurationCommand extends Command
|
|
376
379
|
.classBuilder()
|
|
377
380
|
.ep(commonParams)
|
|
378
381
|
.m(function (Command, cs, config, o) {
|
|
379
|
-
return [
|
|
382
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
380
383
|
})
|
|
381
384
|
.s("AWSWAF_20190729", "GetLoggingConfiguration", {})
|
|
382
385
|
.n("WAFV2Client", "GetLoggingConfigurationCommand")
|
|
383
|
-
.sc(
|
|
386
|
+
.sc(GetLoggingConfiguration$)
|
|
384
387
|
.build() {
|
|
385
388
|
}
|
|
386
389
|
|
|
387
|
-
class GetManagedRuleSetCommand extends
|
|
390
|
+
class GetManagedRuleSetCommand extends Command
|
|
388
391
|
.classBuilder()
|
|
389
392
|
.ep(commonParams)
|
|
390
393
|
.m(function (Command, cs, config, o) {
|
|
391
|
-
return [
|
|
394
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
392
395
|
})
|
|
393
396
|
.s("AWSWAF_20190729", "GetManagedRuleSet", {})
|
|
394
397
|
.n("WAFV2Client", "GetManagedRuleSetCommand")
|
|
395
|
-
.sc(
|
|
398
|
+
.sc(GetManagedRuleSet$)
|
|
396
399
|
.build() {
|
|
397
400
|
}
|
|
398
401
|
|
|
399
|
-
class GetMobileSdkReleaseCommand extends
|
|
402
|
+
class GetMobileSdkReleaseCommand extends Command
|
|
400
403
|
.classBuilder()
|
|
401
404
|
.ep(commonParams)
|
|
402
405
|
.m(function (Command, cs, config, o) {
|
|
403
|
-
return [
|
|
406
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
404
407
|
})
|
|
405
408
|
.s("AWSWAF_20190729", "GetMobileSdkRelease", {})
|
|
406
409
|
.n("WAFV2Client", "GetMobileSdkReleaseCommand")
|
|
407
|
-
.sc(
|
|
410
|
+
.sc(GetMobileSdkRelease$)
|
|
408
411
|
.build() {
|
|
409
412
|
}
|
|
410
413
|
|
|
411
|
-
class GetPermissionPolicyCommand extends
|
|
414
|
+
class GetPermissionPolicyCommand extends Command
|
|
412
415
|
.classBuilder()
|
|
413
416
|
.ep(commonParams)
|
|
414
417
|
.m(function (Command, cs, config, o) {
|
|
415
|
-
return [
|
|
418
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
416
419
|
})
|
|
417
420
|
.s("AWSWAF_20190729", "GetPermissionPolicy", {})
|
|
418
421
|
.n("WAFV2Client", "GetPermissionPolicyCommand")
|
|
419
|
-
.sc(
|
|
422
|
+
.sc(GetPermissionPolicy$)
|
|
420
423
|
.build() {
|
|
421
424
|
}
|
|
422
425
|
|
|
423
|
-
class GetRateBasedStatementManagedKeysCommand extends
|
|
426
|
+
class GetRateBasedStatementManagedKeysCommand extends Command
|
|
424
427
|
.classBuilder()
|
|
425
428
|
.ep(commonParams)
|
|
426
429
|
.m(function (Command, cs, config, o) {
|
|
427
|
-
return [
|
|
430
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
428
431
|
})
|
|
429
432
|
.s("AWSWAF_20190729", "GetRateBasedStatementManagedKeys", {})
|
|
430
433
|
.n("WAFV2Client", "GetRateBasedStatementManagedKeysCommand")
|
|
431
|
-
.sc(
|
|
434
|
+
.sc(GetRateBasedStatementManagedKeys$)
|
|
432
435
|
.build() {
|
|
433
436
|
}
|
|
434
437
|
|
|
435
|
-
class GetRegexPatternSetCommand extends
|
|
438
|
+
class GetRegexPatternSetCommand extends Command
|
|
436
439
|
.classBuilder()
|
|
437
440
|
.ep(commonParams)
|
|
438
441
|
.m(function (Command, cs, config, o) {
|
|
439
|
-
return [
|
|
442
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
440
443
|
})
|
|
441
444
|
.s("AWSWAF_20190729", "GetRegexPatternSet", {})
|
|
442
445
|
.n("WAFV2Client", "GetRegexPatternSetCommand")
|
|
443
|
-
.sc(
|
|
446
|
+
.sc(GetRegexPatternSet$)
|
|
444
447
|
.build() {
|
|
445
448
|
}
|
|
446
449
|
|
|
447
|
-
class
|
|
450
|
+
class GetRevenueStatisticsCommand extends Command
|
|
448
451
|
.classBuilder()
|
|
449
452
|
.ep(commonParams)
|
|
450
453
|
.m(function (Command, cs, config, o) {
|
|
451
|
-
return [
|
|
454
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
455
|
+
})
|
|
456
|
+
.s("AWSWAF_20190729", "GetRevenueStatistics", {})
|
|
457
|
+
.n("WAFV2Client", "GetRevenueStatisticsCommand")
|
|
458
|
+
.sc(GetRevenueStatistics$)
|
|
459
|
+
.build() {
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
class GetRevenueStatisticsSummaryCommand extends Command
|
|
463
|
+
.classBuilder()
|
|
464
|
+
.ep(commonParams)
|
|
465
|
+
.m(function (Command, cs, config, o) {
|
|
466
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
467
|
+
})
|
|
468
|
+
.s("AWSWAF_20190729", "GetRevenueStatisticsSummary", {})
|
|
469
|
+
.n("WAFV2Client", "GetRevenueStatisticsSummaryCommand")
|
|
470
|
+
.sc(GetRevenueStatisticsSummary$)
|
|
471
|
+
.build() {
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
class GetRevenueStatisticsTimeSeriesCommand extends Command
|
|
475
|
+
.classBuilder()
|
|
476
|
+
.ep(commonParams)
|
|
477
|
+
.m(function (Command, cs, config, o) {
|
|
478
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
479
|
+
})
|
|
480
|
+
.s("AWSWAF_20190729", "GetRevenueStatisticsTimeSeries", {})
|
|
481
|
+
.n("WAFV2Client", "GetRevenueStatisticsTimeSeriesCommand")
|
|
482
|
+
.sc(GetRevenueStatisticsTimeSeries$)
|
|
483
|
+
.build() {
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
class GetRuleGroupCommand extends Command
|
|
487
|
+
.classBuilder()
|
|
488
|
+
.ep(commonParams)
|
|
489
|
+
.m(function (Command, cs, config, o) {
|
|
490
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
452
491
|
})
|
|
453
492
|
.s("AWSWAF_20190729", "GetRuleGroup", {})
|
|
454
493
|
.n("WAFV2Client", "GetRuleGroupCommand")
|
|
455
|
-
.sc(
|
|
494
|
+
.sc(GetRuleGroup$)
|
|
456
495
|
.build() {
|
|
457
496
|
}
|
|
458
497
|
|
|
459
|
-
class GetSampledRequestsCommand extends
|
|
498
|
+
class GetSampledRequestsCommand extends Command
|
|
460
499
|
.classBuilder()
|
|
461
500
|
.ep(commonParams)
|
|
462
501
|
.m(function (Command, cs, config, o) {
|
|
463
|
-
return [
|
|
502
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
464
503
|
})
|
|
465
504
|
.s("AWSWAF_20190729", "GetSampledRequests", {})
|
|
466
505
|
.n("WAFV2Client", "GetSampledRequestsCommand")
|
|
467
|
-
.sc(
|
|
506
|
+
.sc(GetSampledRequests$)
|
|
468
507
|
.build() {
|
|
469
508
|
}
|
|
470
509
|
|
|
471
|
-
class GetTopPathStatisticsByTrafficCommand extends
|
|
510
|
+
class GetTopPathStatisticsByTrafficCommand extends Command
|
|
472
511
|
.classBuilder()
|
|
473
512
|
.ep(commonParams)
|
|
474
513
|
.m(function (Command, cs, config, o) {
|
|
475
|
-
return [
|
|
514
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
476
515
|
})
|
|
477
516
|
.s("AWSWAF_20190729", "GetTopPathStatisticsByTraffic", {})
|
|
478
517
|
.n("WAFV2Client", "GetTopPathStatisticsByTrafficCommand")
|
|
479
|
-
.sc(
|
|
518
|
+
.sc(GetTopPathStatisticsByTraffic$)
|
|
480
519
|
.build() {
|
|
481
520
|
}
|
|
482
521
|
|
|
483
|
-
class GetWebACLCommand extends
|
|
522
|
+
class GetWebACLCommand extends Command
|
|
484
523
|
.classBuilder()
|
|
485
524
|
.ep(commonParams)
|
|
486
525
|
.m(function (Command, cs, config, o) {
|
|
487
|
-
return [
|
|
526
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
488
527
|
})
|
|
489
528
|
.s("AWSWAF_20190729", "GetWebACL", {})
|
|
490
529
|
.n("WAFV2Client", "GetWebACLCommand")
|
|
491
|
-
.sc(
|
|
530
|
+
.sc(GetWebACL$)
|
|
492
531
|
.build() {
|
|
493
532
|
}
|
|
494
533
|
|
|
495
|
-
class GetWebACLForResourceCommand extends
|
|
534
|
+
class GetWebACLForResourceCommand extends Command
|
|
496
535
|
.classBuilder()
|
|
497
536
|
.ep(commonParams)
|
|
498
537
|
.m(function (Command, cs, config, o) {
|
|
499
|
-
return [
|
|
538
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
500
539
|
})
|
|
501
540
|
.s("AWSWAF_20190729", "GetWebACLForResource", {})
|
|
502
541
|
.n("WAFV2Client", "GetWebACLForResourceCommand")
|
|
503
|
-
.sc(
|
|
542
|
+
.sc(GetWebACLForResource$)
|
|
504
543
|
.build() {
|
|
505
544
|
}
|
|
506
545
|
|
|
507
|
-
class ListAPIKeysCommand extends
|
|
546
|
+
class ListAPIKeysCommand extends Command
|
|
508
547
|
.classBuilder()
|
|
509
548
|
.ep(commonParams)
|
|
510
549
|
.m(function (Command, cs, config, o) {
|
|
511
|
-
return [
|
|
550
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
512
551
|
})
|
|
513
552
|
.s("AWSWAF_20190729", "ListAPIKeys", {})
|
|
514
553
|
.n("WAFV2Client", "ListAPIKeysCommand")
|
|
515
|
-
.sc(
|
|
554
|
+
.sc(ListAPIKeys$)
|
|
516
555
|
.build() {
|
|
517
556
|
}
|
|
518
557
|
|
|
519
|
-
class ListAvailableManagedRuleGroupsCommand extends
|
|
558
|
+
class ListAvailableManagedRuleGroupsCommand extends Command
|
|
520
559
|
.classBuilder()
|
|
521
560
|
.ep(commonParams)
|
|
522
561
|
.m(function (Command, cs, config, o) {
|
|
523
|
-
return [
|
|
562
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
524
563
|
})
|
|
525
564
|
.s("AWSWAF_20190729", "ListAvailableManagedRuleGroups", {})
|
|
526
565
|
.n("WAFV2Client", "ListAvailableManagedRuleGroupsCommand")
|
|
527
|
-
.sc(
|
|
566
|
+
.sc(ListAvailableManagedRuleGroups$)
|
|
528
567
|
.build() {
|
|
529
568
|
}
|
|
530
569
|
|
|
531
|
-
class ListAvailableManagedRuleGroupVersionsCommand extends
|
|
570
|
+
class ListAvailableManagedRuleGroupVersionsCommand extends Command
|
|
532
571
|
.classBuilder()
|
|
533
572
|
.ep(commonParams)
|
|
534
573
|
.m(function (Command, cs, config, o) {
|
|
535
|
-
return [
|
|
574
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
536
575
|
})
|
|
537
576
|
.s("AWSWAF_20190729", "ListAvailableManagedRuleGroupVersions", {})
|
|
538
577
|
.n("WAFV2Client", "ListAvailableManagedRuleGroupVersionsCommand")
|
|
539
|
-
.sc(
|
|
578
|
+
.sc(ListAvailableManagedRuleGroupVersions$)
|
|
540
579
|
.build() {
|
|
541
580
|
}
|
|
542
581
|
|
|
543
|
-
class ListIPSetsCommand extends
|
|
582
|
+
class ListIPSetsCommand extends Command
|
|
544
583
|
.classBuilder()
|
|
545
584
|
.ep(commonParams)
|
|
546
585
|
.m(function (Command, cs, config, o) {
|
|
547
|
-
return [
|
|
586
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
548
587
|
})
|
|
549
588
|
.s("AWSWAF_20190729", "ListIPSets", {})
|
|
550
589
|
.n("WAFV2Client", "ListIPSetsCommand")
|
|
551
|
-
.sc(
|
|
590
|
+
.sc(ListIPSets$)
|
|
552
591
|
.build() {
|
|
553
592
|
}
|
|
554
593
|
|
|
555
|
-
class ListLoggingConfigurationsCommand extends
|
|
594
|
+
class ListLoggingConfigurationsCommand extends Command
|
|
556
595
|
.classBuilder()
|
|
557
596
|
.ep(commonParams)
|
|
558
597
|
.m(function (Command, cs, config, o) {
|
|
559
|
-
return [
|
|
598
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
560
599
|
})
|
|
561
600
|
.s("AWSWAF_20190729", "ListLoggingConfigurations", {})
|
|
562
601
|
.n("WAFV2Client", "ListLoggingConfigurationsCommand")
|
|
563
|
-
.sc(
|
|
602
|
+
.sc(ListLoggingConfigurations$)
|
|
564
603
|
.build() {
|
|
565
604
|
}
|
|
566
605
|
|
|
567
|
-
class ListManagedRuleSetsCommand extends
|
|
606
|
+
class ListManagedRuleSetsCommand extends Command
|
|
568
607
|
.classBuilder()
|
|
569
608
|
.ep(commonParams)
|
|
570
609
|
.m(function (Command, cs, config, o) {
|
|
571
|
-
return [
|
|
610
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
572
611
|
})
|
|
573
612
|
.s("AWSWAF_20190729", "ListManagedRuleSets", {})
|
|
574
613
|
.n("WAFV2Client", "ListManagedRuleSetsCommand")
|
|
575
|
-
.sc(
|
|
614
|
+
.sc(ListManagedRuleSets$)
|
|
576
615
|
.build() {
|
|
577
616
|
}
|
|
578
617
|
|
|
579
|
-
class ListMobileSdkReleasesCommand extends
|
|
618
|
+
class ListMobileSdkReleasesCommand extends Command
|
|
580
619
|
.classBuilder()
|
|
581
620
|
.ep(commonParams)
|
|
582
621
|
.m(function (Command, cs, config, o) {
|
|
583
|
-
return [
|
|
622
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
584
623
|
})
|
|
585
624
|
.s("AWSWAF_20190729", "ListMobileSdkReleases", {})
|
|
586
625
|
.n("WAFV2Client", "ListMobileSdkReleasesCommand")
|
|
587
|
-
.sc(
|
|
626
|
+
.sc(ListMobileSdkReleases$)
|
|
588
627
|
.build() {
|
|
589
628
|
}
|
|
590
629
|
|
|
591
|
-
class ListRegexPatternSetsCommand extends
|
|
630
|
+
class ListRegexPatternSetsCommand extends Command
|
|
592
631
|
.classBuilder()
|
|
593
632
|
.ep(commonParams)
|
|
594
633
|
.m(function (Command, cs, config, o) {
|
|
595
|
-
return [
|
|
634
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
596
635
|
})
|
|
597
636
|
.s("AWSWAF_20190729", "ListRegexPatternSets", {})
|
|
598
637
|
.n("WAFV2Client", "ListRegexPatternSetsCommand")
|
|
599
|
-
.sc(
|
|
638
|
+
.sc(ListRegexPatternSets$)
|
|
600
639
|
.build() {
|
|
601
640
|
}
|
|
602
641
|
|
|
603
|
-
class ListResourcesForWebACLCommand extends
|
|
642
|
+
class ListResourcesForWebACLCommand extends Command
|
|
604
643
|
.classBuilder()
|
|
605
644
|
.ep(commonParams)
|
|
606
645
|
.m(function (Command, cs, config, o) {
|
|
607
|
-
return [
|
|
646
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
608
647
|
})
|
|
609
648
|
.s("AWSWAF_20190729", "ListResourcesForWebACL", {})
|
|
610
649
|
.n("WAFV2Client", "ListResourcesForWebACLCommand")
|
|
611
|
-
.sc(
|
|
650
|
+
.sc(ListResourcesForWebACL$)
|
|
612
651
|
.build() {
|
|
613
652
|
}
|
|
614
653
|
|
|
615
|
-
class ListRuleGroupsCommand extends
|
|
654
|
+
class ListRuleGroupsCommand extends Command
|
|
616
655
|
.classBuilder()
|
|
617
656
|
.ep(commonParams)
|
|
618
657
|
.m(function (Command, cs, config, o) {
|
|
619
|
-
return [
|
|
658
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
620
659
|
})
|
|
621
660
|
.s("AWSWAF_20190729", "ListRuleGroups", {})
|
|
622
661
|
.n("WAFV2Client", "ListRuleGroupsCommand")
|
|
623
|
-
.sc(
|
|
662
|
+
.sc(ListRuleGroups$)
|
|
663
|
+
.build() {
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
class ListSettlementRecordsCommand extends Command
|
|
667
|
+
.classBuilder()
|
|
668
|
+
.ep(commonParams)
|
|
669
|
+
.m(function (Command, cs, config, o) {
|
|
670
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
671
|
+
})
|
|
672
|
+
.s("AWSWAF_20190729", "ListSettlementRecords", {})
|
|
673
|
+
.n("WAFV2Client", "ListSettlementRecordsCommand")
|
|
674
|
+
.sc(ListSettlementRecords$)
|
|
624
675
|
.build() {
|
|
625
676
|
}
|
|
626
677
|
|
|
627
|
-
class ListTagsForResourceCommand extends
|
|
678
|
+
class ListTagsForResourceCommand extends Command
|
|
628
679
|
.classBuilder()
|
|
629
680
|
.ep(commonParams)
|
|
630
681
|
.m(function (Command, cs, config, o) {
|
|
631
|
-
return [
|
|
682
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
632
683
|
})
|
|
633
684
|
.s("AWSWAF_20190729", "ListTagsForResource", {})
|
|
634
685
|
.n("WAFV2Client", "ListTagsForResourceCommand")
|
|
635
|
-
.sc(
|
|
686
|
+
.sc(ListTagsForResource$)
|
|
636
687
|
.build() {
|
|
637
688
|
}
|
|
638
689
|
|
|
639
|
-
class ListWebACLsCommand extends
|
|
690
|
+
class ListWebACLsCommand extends Command
|
|
640
691
|
.classBuilder()
|
|
641
692
|
.ep(commonParams)
|
|
642
693
|
.m(function (Command, cs, config, o) {
|
|
643
|
-
return [
|
|
694
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
644
695
|
})
|
|
645
696
|
.s("AWSWAF_20190729", "ListWebACLs", {})
|
|
646
697
|
.n("WAFV2Client", "ListWebACLsCommand")
|
|
647
|
-
.sc(
|
|
698
|
+
.sc(ListWebACLs$)
|
|
648
699
|
.build() {
|
|
649
700
|
}
|
|
650
701
|
|
|
651
|
-
class PutLoggingConfigurationCommand extends
|
|
702
|
+
class PutLoggingConfigurationCommand extends Command
|
|
652
703
|
.classBuilder()
|
|
653
704
|
.ep(commonParams)
|
|
654
705
|
.m(function (Command, cs, config, o) {
|
|
655
|
-
return [
|
|
706
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
656
707
|
})
|
|
657
708
|
.s("AWSWAF_20190729", "PutLoggingConfiguration", {})
|
|
658
709
|
.n("WAFV2Client", "PutLoggingConfigurationCommand")
|
|
659
|
-
.sc(
|
|
710
|
+
.sc(PutLoggingConfiguration$)
|
|
660
711
|
.build() {
|
|
661
712
|
}
|
|
662
713
|
|
|
663
|
-
class PutManagedRuleSetVersionsCommand extends
|
|
714
|
+
class PutManagedRuleSetVersionsCommand extends Command
|
|
664
715
|
.classBuilder()
|
|
665
716
|
.ep(commonParams)
|
|
666
717
|
.m(function (Command, cs, config, o) {
|
|
667
|
-
return [
|
|
718
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
668
719
|
})
|
|
669
720
|
.s("AWSWAF_20190729", "PutManagedRuleSetVersions", {})
|
|
670
721
|
.n("WAFV2Client", "PutManagedRuleSetVersionsCommand")
|
|
671
|
-
.sc(
|
|
722
|
+
.sc(PutManagedRuleSetVersions$)
|
|
672
723
|
.build() {
|
|
673
724
|
}
|
|
674
725
|
|
|
675
|
-
class PutPermissionPolicyCommand extends
|
|
726
|
+
class PutPermissionPolicyCommand extends Command
|
|
676
727
|
.classBuilder()
|
|
677
728
|
.ep(commonParams)
|
|
678
729
|
.m(function (Command, cs, config, o) {
|
|
679
|
-
return [
|
|
730
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
680
731
|
})
|
|
681
732
|
.s("AWSWAF_20190729", "PutPermissionPolicy", {})
|
|
682
733
|
.n("WAFV2Client", "PutPermissionPolicyCommand")
|
|
683
|
-
.sc(
|
|
734
|
+
.sc(PutPermissionPolicy$)
|
|
684
735
|
.build() {
|
|
685
736
|
}
|
|
686
737
|
|
|
687
|
-
class TagResourceCommand extends
|
|
738
|
+
class TagResourceCommand extends Command
|
|
688
739
|
.classBuilder()
|
|
689
740
|
.ep(commonParams)
|
|
690
741
|
.m(function (Command, cs, config, o) {
|
|
691
|
-
return [
|
|
742
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
692
743
|
})
|
|
693
744
|
.s("AWSWAF_20190729", "TagResource", {})
|
|
694
745
|
.n("WAFV2Client", "TagResourceCommand")
|
|
695
|
-
.sc(
|
|
746
|
+
.sc(TagResource$)
|
|
696
747
|
.build() {
|
|
697
748
|
}
|
|
698
749
|
|
|
699
|
-
class UntagResourceCommand extends
|
|
750
|
+
class UntagResourceCommand extends Command
|
|
700
751
|
.classBuilder()
|
|
701
752
|
.ep(commonParams)
|
|
702
753
|
.m(function (Command, cs, config, o) {
|
|
703
|
-
return [
|
|
754
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
704
755
|
})
|
|
705
756
|
.s("AWSWAF_20190729", "UntagResource", {})
|
|
706
757
|
.n("WAFV2Client", "UntagResourceCommand")
|
|
707
|
-
.sc(
|
|
758
|
+
.sc(UntagResource$)
|
|
708
759
|
.build() {
|
|
709
760
|
}
|
|
710
761
|
|
|
711
|
-
class UpdateIPSetCommand extends
|
|
762
|
+
class UpdateIPSetCommand extends Command
|
|
712
763
|
.classBuilder()
|
|
713
764
|
.ep(commonParams)
|
|
714
765
|
.m(function (Command, cs, config, o) {
|
|
715
|
-
return [
|
|
766
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
716
767
|
})
|
|
717
768
|
.s("AWSWAF_20190729", "UpdateIPSet", {})
|
|
718
769
|
.n("WAFV2Client", "UpdateIPSetCommand")
|
|
719
|
-
.sc(
|
|
770
|
+
.sc(UpdateIPSet$)
|
|
720
771
|
.build() {
|
|
721
772
|
}
|
|
722
773
|
|
|
723
|
-
class UpdateManagedRuleSetVersionExpiryDateCommand extends
|
|
774
|
+
class UpdateManagedRuleSetVersionExpiryDateCommand extends Command
|
|
724
775
|
.classBuilder()
|
|
725
776
|
.ep(commonParams)
|
|
726
777
|
.m(function (Command, cs, config, o) {
|
|
727
|
-
return [
|
|
778
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
728
779
|
})
|
|
729
780
|
.s("AWSWAF_20190729", "UpdateManagedRuleSetVersionExpiryDate", {})
|
|
730
781
|
.n("WAFV2Client", "UpdateManagedRuleSetVersionExpiryDateCommand")
|
|
731
|
-
.sc(
|
|
782
|
+
.sc(UpdateManagedRuleSetVersionExpiryDate$)
|
|
732
783
|
.build() {
|
|
733
784
|
}
|
|
734
785
|
|
|
735
|
-
class UpdateRegexPatternSetCommand extends
|
|
786
|
+
class UpdateRegexPatternSetCommand extends Command
|
|
736
787
|
.classBuilder()
|
|
737
788
|
.ep(commonParams)
|
|
738
789
|
.m(function (Command, cs, config, o) {
|
|
739
|
-
return [
|
|
790
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
740
791
|
})
|
|
741
792
|
.s("AWSWAF_20190729", "UpdateRegexPatternSet", {})
|
|
742
793
|
.n("WAFV2Client", "UpdateRegexPatternSetCommand")
|
|
743
|
-
.sc(
|
|
794
|
+
.sc(UpdateRegexPatternSet$)
|
|
744
795
|
.build() {
|
|
745
796
|
}
|
|
746
797
|
|
|
747
|
-
class UpdateRuleGroupCommand extends
|
|
798
|
+
class UpdateRuleGroupCommand extends Command
|
|
748
799
|
.classBuilder()
|
|
749
800
|
.ep(commonParams)
|
|
750
801
|
.m(function (Command, cs, config, o) {
|
|
751
|
-
return [
|
|
802
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
752
803
|
})
|
|
753
804
|
.s("AWSWAF_20190729", "UpdateRuleGroup", {})
|
|
754
805
|
.n("WAFV2Client", "UpdateRuleGroupCommand")
|
|
755
|
-
.sc(
|
|
806
|
+
.sc(UpdateRuleGroup$)
|
|
756
807
|
.build() {
|
|
757
808
|
}
|
|
758
809
|
|
|
759
|
-
class UpdateWebACLCommand extends
|
|
810
|
+
class UpdateWebACLCommand extends Command
|
|
760
811
|
.classBuilder()
|
|
761
812
|
.ep(commonParams)
|
|
762
813
|
.m(function (Command, cs, config, o) {
|
|
763
|
-
return [
|
|
814
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
764
815
|
})
|
|
765
816
|
.s("AWSWAF_20190729", "UpdateWebACL", {})
|
|
766
817
|
.n("WAFV2Client", "UpdateWebACLCommand")
|
|
767
|
-
.sc(
|
|
818
|
+
.sc(UpdateWebACL$)
|
|
768
819
|
.build() {
|
|
769
820
|
}
|
|
770
821
|
|
|
@@ -797,6 +848,9 @@ const commands = {
|
|
|
797
848
|
GetPermissionPolicyCommand,
|
|
798
849
|
GetRateBasedStatementManagedKeysCommand,
|
|
799
850
|
GetRegexPatternSetCommand,
|
|
851
|
+
GetRevenueStatisticsCommand,
|
|
852
|
+
GetRevenueStatisticsSummaryCommand,
|
|
853
|
+
GetRevenueStatisticsTimeSeriesCommand,
|
|
800
854
|
GetRuleGroupCommand,
|
|
801
855
|
GetSampledRequestsCommand,
|
|
802
856
|
GetTopPathStatisticsByTrafficCommand,
|
|
@@ -812,6 +866,7 @@ const commands = {
|
|
|
812
866
|
ListRegexPatternSetsCommand,
|
|
813
867
|
ListResourcesForWebACLCommand,
|
|
814
868
|
ListRuleGroupsCommand,
|
|
869
|
+
ListSettlementRecordsCommand,
|
|
815
870
|
ListTagsForResourceCommand,
|
|
816
871
|
ListWebACLsCommand,
|
|
817
872
|
PutLoggingConfigurationCommand,
|
|
@@ -827,7 +882,7 @@ const commands = {
|
|
|
827
882
|
};
|
|
828
883
|
class WAFV2 extends WAFV2Client {
|
|
829
884
|
}
|
|
830
|
-
|
|
885
|
+
createAggregatedClient(commands, WAFV2);
|
|
831
886
|
|
|
832
887
|
const ActionValue = {
|
|
833
888
|
ALLOW: "ALLOW",
|
|
@@ -836,6 +891,7 @@ const ActionValue = {
|
|
|
836
891
|
CHALLENGE: "CHALLENGE",
|
|
837
892
|
COUNT: "COUNT",
|
|
838
893
|
EXCLUDED_AS_COUNT: "EXCLUDED_AS_COUNT",
|
|
894
|
+
MONETIZE: "MONETIZE",
|
|
839
895
|
};
|
|
840
896
|
const FallbackBehavior = {
|
|
841
897
|
MATCH: "MATCH",
|
|
@@ -1238,12 +1294,15 @@ const ParameterExceptionField = {
|
|
|
1238
1294
|
MANAGED_RULE_SET_STATEMENT: "MANAGED_RULE_SET_STATEMENT",
|
|
1239
1295
|
MAP_MATCH_SCOPE: "MAP_MATCH_SCOPE",
|
|
1240
1296
|
METRIC_NAME: "METRIC_NAME",
|
|
1297
|
+
MONETIZATION_CONFIG: "MONETIZATION_CONFIG",
|
|
1241
1298
|
NOT_STATEMENT: "NOT_STATEMENT",
|
|
1242
1299
|
OR_STATEMENT: "OR_STATEMENT",
|
|
1243
1300
|
OVERRIDE_ACTION: "OVERRIDE_ACTION",
|
|
1244
1301
|
OVERSIZE_HANDLING: "OVERSIZE_HANDLING",
|
|
1245
1302
|
PAYLOAD_TYPE: "PAYLOAD_TYPE",
|
|
1303
|
+
PAYMENT_NETWORK: "PAYMENT_NETWORK",
|
|
1246
1304
|
POSITION: "POSITION",
|
|
1305
|
+
PRICE_AMOUNT: "PRICE_AMOUNT",
|
|
1247
1306
|
RATE_BASED_STATEMENT: "RATE_BASED_STATEMENT",
|
|
1248
1307
|
REGEX_PATTERN_REFERENCE_STATEMENT: "REGEX_PATTERN_REFERENCE_STATEMENT",
|
|
1249
1308
|
REGEX_PATTERN_SET: "REGEX_PATTERN_SET",
|
|
@@ -1265,6 +1324,7 @@ const ParameterExceptionField = {
|
|
|
1265
1324
|
TAG_KEYS: "TAG_KEYS",
|
|
1266
1325
|
TEXT_TRANSFORMATION: "TEXT_TRANSFORMATION",
|
|
1267
1326
|
TOKEN_DOMAIN: "TOKEN_DOMAIN",
|
|
1327
|
+
WALLET_ADDRESS: "WALLET_ADDRESS",
|
|
1268
1328
|
WEB_ACL: "WEB_ACL",
|
|
1269
1329
|
XSS_MATCH_STATEMENT: "XSS_MATCH_STATEMENT",
|
|
1270
1330
|
};
|
|
@@ -1287,6 +1347,19 @@ const ResponseContentType = {
|
|
|
1287
1347
|
TEXT_HTML: "TEXT_HTML",
|
|
1288
1348
|
TEXT_PLAIN: "TEXT_PLAIN",
|
|
1289
1349
|
};
|
|
1350
|
+
const BlockchainChain = {
|
|
1351
|
+
BASE: "BASE",
|
|
1352
|
+
BASE_SEPOLIA: "BASE_SEPOLIA",
|
|
1353
|
+
SOLANA: "SOLANA",
|
|
1354
|
+
SOLANA_DEVNET: "SOLANA_DEVNET",
|
|
1355
|
+
};
|
|
1356
|
+
const CryptoCurrency = {
|
|
1357
|
+
USDC: "USDC",
|
|
1358
|
+
};
|
|
1359
|
+
const CurrencyMode = {
|
|
1360
|
+
REAL: "REAL",
|
|
1361
|
+
TEST: "TEST",
|
|
1362
|
+
};
|
|
1290
1363
|
const DataProtectionAction = {
|
|
1291
1364
|
HASH: "HASH",
|
|
1292
1365
|
SUBSTITUTION: "SUBSTITUTION",
|
|
@@ -1322,6 +1395,39 @@ const FilterRequirement = {
|
|
|
1322
1395
|
MEETS_ALL: "MEETS_ALL",
|
|
1323
1396
|
MEETS_ANY: "MEETS_ANY",
|
|
1324
1397
|
};
|
|
1398
|
+
const Currency = {
|
|
1399
|
+
USDC: "USDC",
|
|
1400
|
+
};
|
|
1401
|
+
const GroupByType = {
|
|
1402
|
+
CATEGORY: "CATEGORY",
|
|
1403
|
+
INTENT: "INTENT",
|
|
1404
|
+
NAME: "NAME",
|
|
1405
|
+
ORGANIZATION: "ORGANIZATION",
|
|
1406
|
+
WEBACL: "WEBACL",
|
|
1407
|
+
};
|
|
1408
|
+
const RankingSortBy = {
|
|
1409
|
+
NAME: "NAME",
|
|
1410
|
+
PERCENTAGE: "PERCENTAGE",
|
|
1411
|
+
REVENUE: "REVENUE",
|
|
1412
|
+
};
|
|
1413
|
+
const SortOrder = {
|
|
1414
|
+
ASC: "ASC",
|
|
1415
|
+
DESC: "DESC",
|
|
1416
|
+
};
|
|
1417
|
+
const RankingStatisticType = {
|
|
1418
|
+
TOP_PATHS_BY_REVENUE: "TOP_PATHS_BY_REVENUE",
|
|
1419
|
+
TOP_SOURCES_BY_REVENUE: "TOP_SOURCES_BY_REVENUE",
|
|
1420
|
+
};
|
|
1421
|
+
const IntervalType = {
|
|
1422
|
+
DAILY: "DAILY",
|
|
1423
|
+
FIVE_MINUTELY: "FIVE_MINUTELY",
|
|
1424
|
+
HOURLY: "HOURLY",
|
|
1425
|
+
MINUTELY: "MINUTELY",
|
|
1426
|
+
};
|
|
1427
|
+
const TimeSeriesStatisticType = {
|
|
1428
|
+
DATE_HISTOGRAM: "DATE_HISTOGRAM",
|
|
1429
|
+
PAYMENT_TRAFFIC: "PAYMENT_TRAFFIC",
|
|
1430
|
+
};
|
|
1325
1431
|
const FailureReason = {
|
|
1326
1432
|
TOKEN_DOMAIN_MISMATCH: "TOKEN_DOMAIN_MISMATCH",
|
|
1327
1433
|
TOKEN_EXPIRED: "TOKEN_EXPIRED",
|
|
@@ -1337,13 +1443,25 @@ const ResourceType = {
|
|
|
1337
1443
|
COGNITIO_USER_POOL: "COGNITO_USER_POOL",
|
|
1338
1444
|
VERIFIED_ACCESS_INSTANCE: "VERIFIED_ACCESS_INSTANCE",
|
|
1339
1445
|
};
|
|
1446
|
+
const SettlementSortBy = {
|
|
1447
|
+
AMOUNT: "AMOUNT",
|
|
1448
|
+
NAME: "NAME",
|
|
1449
|
+
STATUS: "STATUS",
|
|
1450
|
+
TIMESTAMP: "TIMESTAMP",
|
|
1451
|
+
};
|
|
1452
|
+
const SettlementStatus = {
|
|
1453
|
+
DUPLICATE: "DUPLICATE",
|
|
1454
|
+
FAILED: "FAILED",
|
|
1455
|
+
PENDING: "PENDING",
|
|
1456
|
+
SERVICE_ERROR: "SERVICE_ERROR",
|
|
1457
|
+
SETTLED: "SETTLED",
|
|
1458
|
+
SKIPPED_ORIGIN_ERROR: "SKIPPED_ORIGIN_ERROR",
|
|
1459
|
+
};
|
|
1340
1460
|
|
|
1341
|
-
exports.$Command = client.Command;
|
|
1342
|
-
exports.__Client = client.Client;
|
|
1343
|
-
exports.WAFV2ServiceException = WAFV2ServiceException.WAFV2ServiceException;
|
|
1344
1461
|
exports.ActionValue = ActionValue;
|
|
1345
1462
|
exports.AssociateWebACLCommand = AssociateWebACLCommand;
|
|
1346
1463
|
exports.AssociatedResourceType = AssociatedResourceType;
|
|
1464
|
+
exports.BlockchainChain = BlockchainChain;
|
|
1347
1465
|
exports.BodyParsingFallbackBehavior = BodyParsingFallbackBehavior;
|
|
1348
1466
|
exports.CheckCapacityCommand = CheckCapacityCommand;
|
|
1349
1467
|
exports.ComparisonOperator = ComparisonOperator;
|
|
@@ -1353,6 +1471,9 @@ exports.CreateIPSetCommand = CreateIPSetCommand;
|
|
|
1353
1471
|
exports.CreateRegexPatternSetCommand = CreateRegexPatternSetCommand;
|
|
1354
1472
|
exports.CreateRuleGroupCommand = CreateRuleGroupCommand;
|
|
1355
1473
|
exports.CreateWebACLCommand = CreateWebACLCommand;
|
|
1474
|
+
exports.CryptoCurrency = CryptoCurrency;
|
|
1475
|
+
exports.Currency = Currency;
|
|
1476
|
+
exports.CurrencyMode = CurrencyMode;
|
|
1356
1477
|
exports.DataProtectionAction = DataProtectionAction;
|
|
1357
1478
|
exports.DeleteAPIKeyCommand = DeleteAPIKeyCommand;
|
|
1358
1479
|
exports.DeleteFirewallManagerRuleGroupsCommand = DeleteFirewallManagerRuleGroupsCommand;
|
|
@@ -1381,13 +1502,18 @@ exports.GetMobileSdkReleaseCommand = GetMobileSdkReleaseCommand;
|
|
|
1381
1502
|
exports.GetPermissionPolicyCommand = GetPermissionPolicyCommand;
|
|
1382
1503
|
exports.GetRateBasedStatementManagedKeysCommand = GetRateBasedStatementManagedKeysCommand;
|
|
1383
1504
|
exports.GetRegexPatternSetCommand = GetRegexPatternSetCommand;
|
|
1505
|
+
exports.GetRevenueStatisticsCommand = GetRevenueStatisticsCommand;
|
|
1506
|
+
exports.GetRevenueStatisticsSummaryCommand = GetRevenueStatisticsSummaryCommand;
|
|
1507
|
+
exports.GetRevenueStatisticsTimeSeriesCommand = GetRevenueStatisticsTimeSeriesCommand;
|
|
1384
1508
|
exports.GetRuleGroupCommand = GetRuleGroupCommand;
|
|
1385
1509
|
exports.GetSampledRequestsCommand = GetSampledRequestsCommand;
|
|
1386
1510
|
exports.GetTopPathStatisticsByTrafficCommand = GetTopPathStatisticsByTrafficCommand;
|
|
1387
1511
|
exports.GetWebACLCommand = GetWebACLCommand;
|
|
1388
1512
|
exports.GetWebACLForResourceCommand = GetWebACLForResourceCommand;
|
|
1513
|
+
exports.GroupByType = GroupByType;
|
|
1389
1514
|
exports.IPAddressVersion = IPAddressVersion;
|
|
1390
1515
|
exports.InspectionLevel = InspectionLevel;
|
|
1516
|
+
exports.IntervalType = IntervalType;
|
|
1391
1517
|
exports.JsonMatchScope = JsonMatchScope;
|
|
1392
1518
|
exports.LabelMatchScope = LabelMatchScope;
|
|
1393
1519
|
exports.ListAPIKeysCommand = ListAPIKeysCommand;
|
|
@@ -1400,6 +1526,7 @@ exports.ListMobileSdkReleasesCommand = ListMobileSdkReleasesCommand;
|
|
|
1400
1526
|
exports.ListRegexPatternSetsCommand = ListRegexPatternSetsCommand;
|
|
1401
1527
|
exports.ListResourcesForWebACLCommand = ListResourcesForWebACLCommand;
|
|
1402
1528
|
exports.ListRuleGroupsCommand = ListRuleGroupsCommand;
|
|
1529
|
+
exports.ListSettlementRecordsCommand = ListSettlementRecordsCommand;
|
|
1403
1530
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1404
1531
|
exports.ListWebACLsCommand = ListWebACLsCommand;
|
|
1405
1532
|
exports.LogScope = LogScope;
|
|
@@ -1414,15 +1541,21 @@ exports.PositionalConstraint = PositionalConstraint;
|
|
|
1414
1541
|
exports.PutLoggingConfigurationCommand = PutLoggingConfigurationCommand;
|
|
1415
1542
|
exports.PutManagedRuleSetVersionsCommand = PutManagedRuleSetVersionsCommand;
|
|
1416
1543
|
exports.PutPermissionPolicyCommand = PutPermissionPolicyCommand;
|
|
1544
|
+
exports.RankingSortBy = RankingSortBy;
|
|
1545
|
+
exports.RankingStatisticType = RankingStatisticType;
|
|
1417
1546
|
exports.RateBasedStatementAggregateKeyType = RateBasedStatementAggregateKeyType;
|
|
1418
1547
|
exports.ResourceType = ResourceType;
|
|
1419
1548
|
exports.ResponseContentType = ResponseContentType;
|
|
1420
1549
|
exports.Scope = Scope;
|
|
1421
1550
|
exports.SensitivityLevel = SensitivityLevel;
|
|
1422
1551
|
exports.SensitivityToAct = SensitivityToAct;
|
|
1552
|
+
exports.SettlementSortBy = SettlementSortBy;
|
|
1553
|
+
exports.SettlementStatus = SettlementStatus;
|
|
1423
1554
|
exports.SizeInspectionLimit = SizeInspectionLimit;
|
|
1555
|
+
exports.SortOrder = SortOrder;
|
|
1424
1556
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1425
1557
|
exports.TextTransformationType = TextTransformationType;
|
|
1558
|
+
exports.TimeSeriesStatisticType = TimeSeriesStatisticType;
|
|
1426
1559
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1427
1560
|
exports.UpdateIPSetCommand = UpdateIPSetCommand;
|
|
1428
1561
|
exports.UpdateManagedRuleSetVersionExpiryDateCommand = UpdateManagedRuleSetVersionExpiryDateCommand;
|
|
@@ -1432,23 +1565,3 @@ exports.UpdateWebACLCommand = UpdateWebACLCommand;
|
|
|
1432
1565
|
exports.UsageOfAction = UsageOfAction;
|
|
1433
1566
|
exports.WAFV2 = WAFV2;
|
|
1434
1567
|
exports.WAFV2Client = WAFV2Client;
|
|
1435
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
1436
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1437
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1438
|
-
enumerable: true,
|
|
1439
|
-
value: schemas_0['__proto__']
|
|
1440
|
-
});
|
|
1441
|
-
|
|
1442
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
1443
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
1444
|
-
});
|
|
1445
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
1446
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1447
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1448
|
-
enumerable: true,
|
|
1449
|
-
value: errors['__proto__']
|
|
1450
|
-
});
|
|
1451
|
-
|
|
1452
|
-
Object.keys(errors).forEach(function (k) {
|
|
1453
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
1454
|
-
});
|