aws-sdk-wafregional 1.58.0 → 1.60.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wafregional/client.rb +1 -1
- data/lib/aws-sdk-wafregional/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-wafregional.rb +1 -1
- data/sig/client.rbs +1181 -0
- data/sig/errors.rbs +79 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1393 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1393 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::WAFRegional
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class ActivatedRule
|
12
|
+
attr_accessor priority: ::Integer
|
13
|
+
attr_accessor rule_id: ::String
|
14
|
+
attr_accessor action: Types::WafAction
|
15
|
+
attr_accessor override_action: Types::WafOverrideAction
|
16
|
+
attr_accessor type: ("REGULAR" | "RATE_BASED" | "GROUP")
|
17
|
+
attr_accessor excluded_rules: ::Array[Types::ExcludedRule]
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AssociateWebACLRequest
|
22
|
+
attr_accessor web_acl_id: ::String
|
23
|
+
attr_accessor resource_arn: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class AssociateWebACLResponse < Aws::EmptyStructure
|
28
|
+
end
|
29
|
+
|
30
|
+
class ByteMatchSet
|
31
|
+
attr_accessor byte_match_set_id: ::String
|
32
|
+
attr_accessor name: ::String
|
33
|
+
attr_accessor byte_match_tuples: ::Array[Types::ByteMatchTuple]
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class ByteMatchSetSummary
|
38
|
+
attr_accessor byte_match_set_id: ::String
|
39
|
+
attr_accessor name: ::String
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class ByteMatchSetUpdate
|
44
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
45
|
+
attr_accessor byte_match_tuple: Types::ByteMatchTuple
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class ByteMatchTuple
|
50
|
+
attr_accessor field_to_match: Types::FieldToMatch
|
51
|
+
attr_accessor target_string: ::String
|
52
|
+
attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
|
53
|
+
attr_accessor positional_constraint: ("EXACTLY" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS" | "CONTAINS_WORD")
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class CreateByteMatchSetRequest
|
58
|
+
attr_accessor name: ::String
|
59
|
+
attr_accessor change_token: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class CreateByteMatchSetResponse
|
64
|
+
attr_accessor byte_match_set: Types::ByteMatchSet
|
65
|
+
attr_accessor change_token: ::String
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class CreateGeoMatchSetRequest
|
70
|
+
attr_accessor name: ::String
|
71
|
+
attr_accessor change_token: ::String
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class CreateGeoMatchSetResponse
|
76
|
+
attr_accessor geo_match_set: Types::GeoMatchSet
|
77
|
+
attr_accessor change_token: ::String
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class CreateIPSetRequest
|
82
|
+
attr_accessor name: ::String
|
83
|
+
attr_accessor change_token: ::String
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class CreateIPSetResponse
|
88
|
+
attr_accessor ip_set: Types::IPSet
|
89
|
+
attr_accessor change_token: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class CreateRateBasedRuleRequest
|
94
|
+
attr_accessor name: ::String
|
95
|
+
attr_accessor metric_name: ::String
|
96
|
+
attr_accessor rate_key: ("IP")
|
97
|
+
attr_accessor rate_limit: ::Integer
|
98
|
+
attr_accessor change_token: ::String
|
99
|
+
attr_accessor tags: ::Array[Types::Tag]
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class CreateRateBasedRuleResponse
|
104
|
+
attr_accessor rule: Types::RateBasedRule
|
105
|
+
attr_accessor change_token: ::String
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class CreateRegexMatchSetRequest
|
110
|
+
attr_accessor name: ::String
|
111
|
+
attr_accessor change_token: ::String
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class CreateRegexMatchSetResponse
|
116
|
+
attr_accessor regex_match_set: Types::RegexMatchSet
|
117
|
+
attr_accessor change_token: ::String
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class CreateRegexPatternSetRequest
|
122
|
+
attr_accessor name: ::String
|
123
|
+
attr_accessor change_token: ::String
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class CreateRegexPatternSetResponse
|
128
|
+
attr_accessor regex_pattern_set: Types::RegexPatternSet
|
129
|
+
attr_accessor change_token: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class CreateRuleGroupRequest
|
134
|
+
attr_accessor name: ::String
|
135
|
+
attr_accessor metric_name: ::String
|
136
|
+
attr_accessor change_token: ::String
|
137
|
+
attr_accessor tags: ::Array[Types::Tag]
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class CreateRuleGroupResponse
|
142
|
+
attr_accessor rule_group: Types::RuleGroup
|
143
|
+
attr_accessor change_token: ::String
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class CreateRuleRequest
|
148
|
+
attr_accessor name: ::String
|
149
|
+
attr_accessor metric_name: ::String
|
150
|
+
attr_accessor change_token: ::String
|
151
|
+
attr_accessor tags: ::Array[Types::Tag]
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class CreateRuleResponse
|
156
|
+
attr_accessor rule: Types::Rule
|
157
|
+
attr_accessor change_token: ::String
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class CreateSizeConstraintSetRequest
|
162
|
+
attr_accessor name: ::String
|
163
|
+
attr_accessor change_token: ::String
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class CreateSizeConstraintSetResponse
|
168
|
+
attr_accessor size_constraint_set: Types::SizeConstraintSet
|
169
|
+
attr_accessor change_token: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class CreateSqlInjectionMatchSetRequest
|
174
|
+
attr_accessor name: ::String
|
175
|
+
attr_accessor change_token: ::String
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class CreateSqlInjectionMatchSetResponse
|
180
|
+
attr_accessor sql_injection_match_set: Types::SqlInjectionMatchSet
|
181
|
+
attr_accessor change_token: ::String
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class CreateWebACLMigrationStackRequest
|
186
|
+
attr_accessor web_acl_id: ::String
|
187
|
+
attr_accessor s3_bucket_name: ::String
|
188
|
+
attr_accessor ignore_unsupported_type: bool
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
192
|
+
class CreateWebACLMigrationStackResponse
|
193
|
+
attr_accessor s3_object_url: ::String
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class CreateWebACLRequest
|
198
|
+
attr_accessor name: ::String
|
199
|
+
attr_accessor metric_name: ::String
|
200
|
+
attr_accessor default_action: Types::WafAction
|
201
|
+
attr_accessor change_token: ::String
|
202
|
+
attr_accessor tags: ::Array[Types::Tag]
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class CreateWebACLResponse
|
207
|
+
attr_accessor web_acl: Types::WebACL
|
208
|
+
attr_accessor change_token: ::String
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class CreateXssMatchSetRequest
|
213
|
+
attr_accessor name: ::String
|
214
|
+
attr_accessor change_token: ::String
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
218
|
+
class CreateXssMatchSetResponse
|
219
|
+
attr_accessor xss_match_set: Types::XssMatchSet
|
220
|
+
attr_accessor change_token: ::String
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class DeleteByteMatchSetRequest
|
225
|
+
attr_accessor byte_match_set_id: ::String
|
226
|
+
attr_accessor change_token: ::String
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class DeleteByteMatchSetResponse
|
231
|
+
attr_accessor change_token: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class DeleteGeoMatchSetRequest
|
236
|
+
attr_accessor geo_match_set_id: ::String
|
237
|
+
attr_accessor change_token: ::String
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class DeleteGeoMatchSetResponse
|
242
|
+
attr_accessor change_token: ::String
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class DeleteIPSetRequest
|
247
|
+
attr_accessor ip_set_id: ::String
|
248
|
+
attr_accessor change_token: ::String
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class DeleteIPSetResponse
|
253
|
+
attr_accessor change_token: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class DeleteLoggingConfigurationRequest
|
258
|
+
attr_accessor resource_arn: ::String
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class DeleteLoggingConfigurationResponse < Aws::EmptyStructure
|
263
|
+
end
|
264
|
+
|
265
|
+
class DeletePermissionPolicyRequest
|
266
|
+
attr_accessor resource_arn: ::String
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class DeletePermissionPolicyResponse < Aws::EmptyStructure
|
271
|
+
end
|
272
|
+
|
273
|
+
class DeleteRateBasedRuleRequest
|
274
|
+
attr_accessor rule_id: ::String
|
275
|
+
attr_accessor change_token: ::String
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class DeleteRateBasedRuleResponse
|
280
|
+
attr_accessor change_token: ::String
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class DeleteRegexMatchSetRequest
|
285
|
+
attr_accessor regex_match_set_id: ::String
|
286
|
+
attr_accessor change_token: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class DeleteRegexMatchSetResponse
|
291
|
+
attr_accessor change_token: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class DeleteRegexPatternSetRequest
|
296
|
+
attr_accessor regex_pattern_set_id: ::String
|
297
|
+
attr_accessor change_token: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class DeleteRegexPatternSetResponse
|
302
|
+
attr_accessor change_token: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class DeleteRuleGroupRequest
|
307
|
+
attr_accessor rule_group_id: ::String
|
308
|
+
attr_accessor change_token: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class DeleteRuleGroupResponse
|
313
|
+
attr_accessor change_token: ::String
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class DeleteRuleRequest
|
318
|
+
attr_accessor rule_id: ::String
|
319
|
+
attr_accessor change_token: ::String
|
320
|
+
SENSITIVE: []
|
321
|
+
end
|
322
|
+
|
323
|
+
class DeleteRuleResponse
|
324
|
+
attr_accessor change_token: ::String
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class DeleteSizeConstraintSetRequest
|
329
|
+
attr_accessor size_constraint_set_id: ::String
|
330
|
+
attr_accessor change_token: ::String
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class DeleteSizeConstraintSetResponse
|
335
|
+
attr_accessor change_token: ::String
|
336
|
+
SENSITIVE: []
|
337
|
+
end
|
338
|
+
|
339
|
+
class DeleteSqlInjectionMatchSetRequest
|
340
|
+
attr_accessor sql_injection_match_set_id: ::String
|
341
|
+
attr_accessor change_token: ::String
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class DeleteSqlInjectionMatchSetResponse
|
346
|
+
attr_accessor change_token: ::String
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class DeleteWebACLRequest
|
351
|
+
attr_accessor web_acl_id: ::String
|
352
|
+
attr_accessor change_token: ::String
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class DeleteWebACLResponse
|
357
|
+
attr_accessor change_token: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class DeleteXssMatchSetRequest
|
362
|
+
attr_accessor xss_match_set_id: ::String
|
363
|
+
attr_accessor change_token: ::String
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class DeleteXssMatchSetResponse
|
368
|
+
attr_accessor change_token: ::String
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class DisassociateWebACLRequest
|
373
|
+
attr_accessor resource_arn: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class DisassociateWebACLResponse < Aws::EmptyStructure
|
378
|
+
end
|
379
|
+
|
380
|
+
class ExcludedRule
|
381
|
+
attr_accessor rule_id: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class FieldToMatch
|
386
|
+
attr_accessor type: ("URI" | "QUERY_STRING" | "HEADER" | "METHOD" | "BODY" | "SINGLE_QUERY_ARG" | "ALL_QUERY_ARGS")
|
387
|
+
attr_accessor data: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class GeoMatchConstraint
|
392
|
+
attr_accessor type: ("Country")
|
393
|
+
attr_accessor value: ("AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "US" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW")
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class GeoMatchSet
|
398
|
+
attr_accessor geo_match_set_id: ::String
|
399
|
+
attr_accessor name: ::String
|
400
|
+
attr_accessor geo_match_constraints: ::Array[Types::GeoMatchConstraint]
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class GeoMatchSetSummary
|
405
|
+
attr_accessor geo_match_set_id: ::String
|
406
|
+
attr_accessor name: ::String
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class GeoMatchSetUpdate
|
411
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
412
|
+
attr_accessor geo_match_constraint: Types::GeoMatchConstraint
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class GetByteMatchSetRequest
|
417
|
+
attr_accessor byte_match_set_id: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class GetByteMatchSetResponse
|
422
|
+
attr_accessor byte_match_set: Types::ByteMatchSet
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class GetChangeTokenRequest < Aws::EmptyStructure
|
427
|
+
end
|
428
|
+
|
429
|
+
class GetChangeTokenResponse
|
430
|
+
attr_accessor change_token: ::String
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class GetChangeTokenStatusRequest
|
435
|
+
attr_accessor change_token: ::String
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class GetChangeTokenStatusResponse
|
440
|
+
attr_accessor change_token_status: ("PROVISIONED" | "PENDING" | "INSYNC")
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class GetGeoMatchSetRequest
|
445
|
+
attr_accessor geo_match_set_id: ::String
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class GetGeoMatchSetResponse
|
450
|
+
attr_accessor geo_match_set: Types::GeoMatchSet
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class GetIPSetRequest
|
455
|
+
attr_accessor ip_set_id: ::String
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class GetIPSetResponse
|
460
|
+
attr_accessor ip_set: Types::IPSet
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class GetLoggingConfigurationRequest
|
465
|
+
attr_accessor resource_arn: ::String
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class GetLoggingConfigurationResponse
|
470
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class GetPermissionPolicyRequest
|
475
|
+
attr_accessor resource_arn: ::String
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class GetPermissionPolicyResponse
|
480
|
+
attr_accessor policy: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class GetRateBasedRuleManagedKeysRequest
|
485
|
+
attr_accessor rule_id: ::String
|
486
|
+
attr_accessor next_marker: ::String
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class GetRateBasedRuleManagedKeysResponse
|
491
|
+
attr_accessor managed_keys: ::Array[::String]
|
492
|
+
attr_accessor next_marker: ::String
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
496
|
+
class GetRateBasedRuleRequest
|
497
|
+
attr_accessor rule_id: ::String
|
498
|
+
SENSITIVE: []
|
499
|
+
end
|
500
|
+
|
501
|
+
class GetRateBasedRuleResponse
|
502
|
+
attr_accessor rule: Types::RateBasedRule
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class GetRegexMatchSetRequest
|
507
|
+
attr_accessor regex_match_set_id: ::String
|
508
|
+
SENSITIVE: []
|
509
|
+
end
|
510
|
+
|
511
|
+
class GetRegexMatchSetResponse
|
512
|
+
attr_accessor regex_match_set: Types::RegexMatchSet
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
516
|
+
class GetRegexPatternSetRequest
|
517
|
+
attr_accessor regex_pattern_set_id: ::String
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class GetRegexPatternSetResponse
|
522
|
+
attr_accessor regex_pattern_set: Types::RegexPatternSet
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class GetRuleGroupRequest
|
527
|
+
attr_accessor rule_group_id: ::String
|
528
|
+
SENSITIVE: []
|
529
|
+
end
|
530
|
+
|
531
|
+
class GetRuleGroupResponse
|
532
|
+
attr_accessor rule_group: Types::RuleGroup
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class GetRuleRequest
|
537
|
+
attr_accessor rule_id: ::String
|
538
|
+
SENSITIVE: []
|
539
|
+
end
|
540
|
+
|
541
|
+
class GetRuleResponse
|
542
|
+
attr_accessor rule: Types::Rule
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class GetSampledRequestsRequest
|
547
|
+
attr_accessor web_acl_id: ::String
|
548
|
+
attr_accessor rule_id: ::String
|
549
|
+
attr_accessor time_window: Types::TimeWindow
|
550
|
+
attr_accessor max_items: ::Integer
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class GetSampledRequestsResponse
|
555
|
+
attr_accessor sampled_requests: ::Array[Types::SampledHTTPRequest]
|
556
|
+
attr_accessor population_size: ::Integer
|
557
|
+
attr_accessor time_window: Types::TimeWindow
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class GetSizeConstraintSetRequest
|
562
|
+
attr_accessor size_constraint_set_id: ::String
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class GetSizeConstraintSetResponse
|
567
|
+
attr_accessor size_constraint_set: Types::SizeConstraintSet
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class GetSqlInjectionMatchSetRequest
|
572
|
+
attr_accessor sql_injection_match_set_id: ::String
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class GetSqlInjectionMatchSetResponse
|
577
|
+
attr_accessor sql_injection_match_set: Types::SqlInjectionMatchSet
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class GetWebACLForResourceRequest
|
582
|
+
attr_accessor resource_arn: ::String
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class GetWebACLForResourceResponse
|
587
|
+
attr_accessor web_acl_summary: Types::WebACLSummary
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class GetWebACLRequest
|
592
|
+
attr_accessor web_acl_id: ::String
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class GetWebACLResponse
|
597
|
+
attr_accessor web_acl: Types::WebACL
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class GetXssMatchSetRequest
|
602
|
+
attr_accessor xss_match_set_id: ::String
|
603
|
+
SENSITIVE: []
|
604
|
+
end
|
605
|
+
|
606
|
+
class GetXssMatchSetResponse
|
607
|
+
attr_accessor xss_match_set: Types::XssMatchSet
|
608
|
+
SENSITIVE: []
|
609
|
+
end
|
610
|
+
|
611
|
+
class HTTPHeader
|
612
|
+
attr_accessor name: ::String
|
613
|
+
attr_accessor value: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class HTTPRequest
|
618
|
+
attr_accessor client_ip: ::String
|
619
|
+
attr_accessor country: ::String
|
620
|
+
attr_accessor uri: ::String
|
621
|
+
attr_accessor method: ::String
|
622
|
+
attr_accessor http_version: ::String
|
623
|
+
attr_accessor headers: ::Array[Types::HTTPHeader]
|
624
|
+
SENSITIVE: []
|
625
|
+
end
|
626
|
+
|
627
|
+
class IPSet
|
628
|
+
attr_accessor ip_set_id: ::String
|
629
|
+
attr_accessor name: ::String
|
630
|
+
attr_accessor ip_set_descriptors: ::Array[Types::IPSetDescriptor]
|
631
|
+
SENSITIVE: []
|
632
|
+
end
|
633
|
+
|
634
|
+
class IPSetDescriptor
|
635
|
+
attr_accessor type: ("IPV4" | "IPV6")
|
636
|
+
attr_accessor value: ::String
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class IPSetSummary
|
641
|
+
attr_accessor ip_set_id: ::String
|
642
|
+
attr_accessor name: ::String
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class IPSetUpdate
|
647
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
648
|
+
attr_accessor ip_set_descriptor: Types::IPSetDescriptor
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class ListActivatedRulesInRuleGroupRequest
|
653
|
+
attr_accessor rule_group_id: ::String
|
654
|
+
attr_accessor next_marker: ::String
|
655
|
+
attr_accessor limit: ::Integer
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class ListActivatedRulesInRuleGroupResponse
|
660
|
+
attr_accessor next_marker: ::String
|
661
|
+
attr_accessor activated_rules: ::Array[Types::ActivatedRule]
|
662
|
+
SENSITIVE: []
|
663
|
+
end
|
664
|
+
|
665
|
+
class ListByteMatchSetsRequest
|
666
|
+
attr_accessor next_marker: ::String
|
667
|
+
attr_accessor limit: ::Integer
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class ListByteMatchSetsResponse
|
672
|
+
attr_accessor next_marker: ::String
|
673
|
+
attr_accessor byte_match_sets: ::Array[Types::ByteMatchSetSummary]
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class ListGeoMatchSetsRequest
|
678
|
+
attr_accessor next_marker: ::String
|
679
|
+
attr_accessor limit: ::Integer
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
683
|
+
class ListGeoMatchSetsResponse
|
684
|
+
attr_accessor next_marker: ::String
|
685
|
+
attr_accessor geo_match_sets: ::Array[Types::GeoMatchSetSummary]
|
686
|
+
SENSITIVE: []
|
687
|
+
end
|
688
|
+
|
689
|
+
class ListIPSetsRequest
|
690
|
+
attr_accessor next_marker: ::String
|
691
|
+
attr_accessor limit: ::Integer
|
692
|
+
SENSITIVE: []
|
693
|
+
end
|
694
|
+
|
695
|
+
class ListIPSetsResponse
|
696
|
+
attr_accessor next_marker: ::String
|
697
|
+
attr_accessor ip_sets: ::Array[Types::IPSetSummary]
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class ListLoggingConfigurationsRequest
|
702
|
+
attr_accessor next_marker: ::String
|
703
|
+
attr_accessor limit: ::Integer
|
704
|
+
SENSITIVE: []
|
705
|
+
end
|
706
|
+
|
707
|
+
class ListLoggingConfigurationsResponse
|
708
|
+
attr_accessor logging_configurations: ::Array[Types::LoggingConfiguration]
|
709
|
+
attr_accessor next_marker: ::String
|
710
|
+
SENSITIVE: []
|
711
|
+
end
|
712
|
+
|
713
|
+
class ListRateBasedRulesRequest
|
714
|
+
attr_accessor next_marker: ::String
|
715
|
+
attr_accessor limit: ::Integer
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class ListRateBasedRulesResponse
|
720
|
+
attr_accessor next_marker: ::String
|
721
|
+
attr_accessor rules: ::Array[Types::RuleSummary]
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class ListRegexMatchSetsRequest
|
726
|
+
attr_accessor next_marker: ::String
|
727
|
+
attr_accessor limit: ::Integer
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class ListRegexMatchSetsResponse
|
732
|
+
attr_accessor next_marker: ::String
|
733
|
+
attr_accessor regex_match_sets: ::Array[Types::RegexMatchSetSummary]
|
734
|
+
SENSITIVE: []
|
735
|
+
end
|
736
|
+
|
737
|
+
class ListRegexPatternSetsRequest
|
738
|
+
attr_accessor next_marker: ::String
|
739
|
+
attr_accessor limit: ::Integer
|
740
|
+
SENSITIVE: []
|
741
|
+
end
|
742
|
+
|
743
|
+
class ListRegexPatternSetsResponse
|
744
|
+
attr_accessor next_marker: ::String
|
745
|
+
attr_accessor regex_pattern_sets: ::Array[Types::RegexPatternSetSummary]
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
749
|
+
class ListResourcesForWebACLRequest
|
750
|
+
attr_accessor web_acl_id: ::String
|
751
|
+
attr_accessor resource_type: ("APPLICATION_LOAD_BALANCER" | "API_GATEWAY")
|
752
|
+
SENSITIVE: []
|
753
|
+
end
|
754
|
+
|
755
|
+
class ListResourcesForWebACLResponse
|
756
|
+
attr_accessor resource_arns: ::Array[::String]
|
757
|
+
SENSITIVE: []
|
758
|
+
end
|
759
|
+
|
760
|
+
class ListRuleGroupsRequest
|
761
|
+
attr_accessor next_marker: ::String
|
762
|
+
attr_accessor limit: ::Integer
|
763
|
+
SENSITIVE: []
|
764
|
+
end
|
765
|
+
|
766
|
+
class ListRuleGroupsResponse
|
767
|
+
attr_accessor next_marker: ::String
|
768
|
+
attr_accessor rule_groups: ::Array[Types::RuleGroupSummary]
|
769
|
+
SENSITIVE: []
|
770
|
+
end
|
771
|
+
|
772
|
+
class ListRulesRequest
|
773
|
+
attr_accessor next_marker: ::String
|
774
|
+
attr_accessor limit: ::Integer
|
775
|
+
SENSITIVE: []
|
776
|
+
end
|
777
|
+
|
778
|
+
class ListRulesResponse
|
779
|
+
attr_accessor next_marker: ::String
|
780
|
+
attr_accessor rules: ::Array[Types::RuleSummary]
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class ListSizeConstraintSetsRequest
|
785
|
+
attr_accessor next_marker: ::String
|
786
|
+
attr_accessor limit: ::Integer
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class ListSizeConstraintSetsResponse
|
791
|
+
attr_accessor next_marker: ::String
|
792
|
+
attr_accessor size_constraint_sets: ::Array[Types::SizeConstraintSetSummary]
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
796
|
+
class ListSqlInjectionMatchSetsRequest
|
797
|
+
attr_accessor next_marker: ::String
|
798
|
+
attr_accessor limit: ::Integer
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class ListSqlInjectionMatchSetsResponse
|
803
|
+
attr_accessor next_marker: ::String
|
804
|
+
attr_accessor sql_injection_match_sets: ::Array[Types::SqlInjectionMatchSetSummary]
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class ListSubscribedRuleGroupsRequest
|
809
|
+
attr_accessor next_marker: ::String
|
810
|
+
attr_accessor limit: ::Integer
|
811
|
+
SENSITIVE: []
|
812
|
+
end
|
813
|
+
|
814
|
+
class ListSubscribedRuleGroupsResponse
|
815
|
+
attr_accessor next_marker: ::String
|
816
|
+
attr_accessor rule_groups: ::Array[Types::SubscribedRuleGroupSummary]
|
817
|
+
SENSITIVE: []
|
818
|
+
end
|
819
|
+
|
820
|
+
class ListTagsForResourceRequest
|
821
|
+
attr_accessor next_marker: ::String
|
822
|
+
attr_accessor limit: ::Integer
|
823
|
+
attr_accessor resource_arn: ::String
|
824
|
+
SENSITIVE: []
|
825
|
+
end
|
826
|
+
|
827
|
+
class ListTagsForResourceResponse
|
828
|
+
attr_accessor next_marker: ::String
|
829
|
+
attr_accessor tag_info_for_resource: Types::TagInfoForResource
|
830
|
+
SENSITIVE: []
|
831
|
+
end
|
832
|
+
|
833
|
+
class ListWebACLsRequest
|
834
|
+
attr_accessor next_marker: ::String
|
835
|
+
attr_accessor limit: ::Integer
|
836
|
+
SENSITIVE: []
|
837
|
+
end
|
838
|
+
|
839
|
+
class ListWebACLsResponse
|
840
|
+
attr_accessor next_marker: ::String
|
841
|
+
attr_accessor web_acls: ::Array[Types::WebACLSummary]
|
842
|
+
SENSITIVE: []
|
843
|
+
end
|
844
|
+
|
845
|
+
class ListXssMatchSetsRequest
|
846
|
+
attr_accessor next_marker: ::String
|
847
|
+
attr_accessor limit: ::Integer
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class ListXssMatchSetsResponse
|
852
|
+
attr_accessor next_marker: ::String
|
853
|
+
attr_accessor xss_match_sets: ::Array[Types::XssMatchSetSummary]
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class LoggingConfiguration
|
858
|
+
attr_accessor resource_arn: ::String
|
859
|
+
attr_accessor log_destination_configs: ::Array[::String]
|
860
|
+
attr_accessor redacted_fields: ::Array[Types::FieldToMatch]
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class Predicate
|
865
|
+
attr_accessor negated: bool
|
866
|
+
attr_accessor type: ("IPMatch" | "ByteMatch" | "SqlInjectionMatch" | "GeoMatch" | "SizeConstraint" | "XssMatch" | "RegexMatch")
|
867
|
+
attr_accessor data_id: ::String
|
868
|
+
SENSITIVE: []
|
869
|
+
end
|
870
|
+
|
871
|
+
class PutLoggingConfigurationRequest
|
872
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
873
|
+
SENSITIVE: []
|
874
|
+
end
|
875
|
+
|
876
|
+
class PutLoggingConfigurationResponse
|
877
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
878
|
+
SENSITIVE: []
|
879
|
+
end
|
880
|
+
|
881
|
+
class PutPermissionPolicyRequest
|
882
|
+
attr_accessor resource_arn: ::String
|
883
|
+
attr_accessor policy: ::String
|
884
|
+
SENSITIVE: []
|
885
|
+
end
|
886
|
+
|
887
|
+
class PutPermissionPolicyResponse < Aws::EmptyStructure
|
888
|
+
end
|
889
|
+
|
890
|
+
class RateBasedRule
|
891
|
+
attr_accessor rule_id: ::String
|
892
|
+
attr_accessor name: ::String
|
893
|
+
attr_accessor metric_name: ::String
|
894
|
+
attr_accessor match_predicates: ::Array[Types::Predicate]
|
895
|
+
attr_accessor rate_key: ("IP")
|
896
|
+
attr_accessor rate_limit: ::Integer
|
897
|
+
SENSITIVE: []
|
898
|
+
end
|
899
|
+
|
900
|
+
class RegexMatchSet
|
901
|
+
attr_accessor regex_match_set_id: ::String
|
902
|
+
attr_accessor name: ::String
|
903
|
+
attr_accessor regex_match_tuples: ::Array[Types::RegexMatchTuple]
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class RegexMatchSetSummary
|
908
|
+
attr_accessor regex_match_set_id: ::String
|
909
|
+
attr_accessor name: ::String
|
910
|
+
SENSITIVE: []
|
911
|
+
end
|
912
|
+
|
913
|
+
class RegexMatchSetUpdate
|
914
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
915
|
+
attr_accessor regex_match_tuple: Types::RegexMatchTuple
|
916
|
+
SENSITIVE: []
|
917
|
+
end
|
918
|
+
|
919
|
+
class RegexMatchTuple
|
920
|
+
attr_accessor field_to_match: Types::FieldToMatch
|
921
|
+
attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
|
922
|
+
attr_accessor regex_pattern_set_id: ::String
|
923
|
+
SENSITIVE: []
|
924
|
+
end
|
925
|
+
|
926
|
+
class RegexPatternSet
|
927
|
+
attr_accessor regex_pattern_set_id: ::String
|
928
|
+
attr_accessor name: ::String
|
929
|
+
attr_accessor regex_pattern_strings: ::Array[::String]
|
930
|
+
SENSITIVE: []
|
931
|
+
end
|
932
|
+
|
933
|
+
class RegexPatternSetSummary
|
934
|
+
attr_accessor regex_pattern_set_id: ::String
|
935
|
+
attr_accessor name: ::String
|
936
|
+
SENSITIVE: []
|
937
|
+
end
|
938
|
+
|
939
|
+
class RegexPatternSetUpdate
|
940
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
941
|
+
attr_accessor regex_pattern_string: ::String
|
942
|
+
SENSITIVE: []
|
943
|
+
end
|
944
|
+
|
945
|
+
class Rule
|
946
|
+
attr_accessor rule_id: ::String
|
947
|
+
attr_accessor name: ::String
|
948
|
+
attr_accessor metric_name: ::String
|
949
|
+
attr_accessor predicates: ::Array[Types::Predicate]
|
950
|
+
SENSITIVE: []
|
951
|
+
end
|
952
|
+
|
953
|
+
class RuleGroup
|
954
|
+
attr_accessor rule_group_id: ::String
|
955
|
+
attr_accessor name: ::String
|
956
|
+
attr_accessor metric_name: ::String
|
957
|
+
SENSITIVE: []
|
958
|
+
end
|
959
|
+
|
960
|
+
class RuleGroupSummary
|
961
|
+
attr_accessor rule_group_id: ::String
|
962
|
+
attr_accessor name: ::String
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class RuleGroupUpdate
|
967
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
968
|
+
attr_accessor activated_rule: Types::ActivatedRule
|
969
|
+
SENSITIVE: []
|
970
|
+
end
|
971
|
+
|
972
|
+
class RuleSummary
|
973
|
+
attr_accessor rule_id: ::String
|
974
|
+
attr_accessor name: ::String
|
975
|
+
SENSITIVE: []
|
976
|
+
end
|
977
|
+
|
978
|
+
class RuleUpdate
|
979
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
980
|
+
attr_accessor predicate: Types::Predicate
|
981
|
+
SENSITIVE: []
|
982
|
+
end
|
983
|
+
|
984
|
+
class SampledHTTPRequest
|
985
|
+
attr_accessor request: Types::HTTPRequest
|
986
|
+
attr_accessor weight: ::Integer
|
987
|
+
attr_accessor timestamp: ::Time
|
988
|
+
attr_accessor action: ::String
|
989
|
+
attr_accessor rule_within_rule_group: ::String
|
990
|
+
SENSITIVE: []
|
991
|
+
end
|
992
|
+
|
993
|
+
class SizeConstraint
|
994
|
+
attr_accessor field_to_match: Types::FieldToMatch
|
995
|
+
attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
|
996
|
+
attr_accessor comparison_operator: ("EQ" | "NE" | "LE" | "LT" | "GE" | "GT")
|
997
|
+
attr_accessor size: ::Integer
|
998
|
+
SENSITIVE: []
|
999
|
+
end
|
1000
|
+
|
1001
|
+
class SizeConstraintSet
|
1002
|
+
attr_accessor size_constraint_set_id: ::String
|
1003
|
+
attr_accessor name: ::String
|
1004
|
+
attr_accessor size_constraints: ::Array[Types::SizeConstraint]
|
1005
|
+
SENSITIVE: []
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
class SizeConstraintSetSummary
|
1009
|
+
attr_accessor size_constraint_set_id: ::String
|
1010
|
+
attr_accessor name: ::String
|
1011
|
+
SENSITIVE: []
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
class SizeConstraintSetUpdate
|
1015
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
1016
|
+
attr_accessor size_constraint: Types::SizeConstraint
|
1017
|
+
SENSITIVE: []
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
class SqlInjectionMatchSet
|
1021
|
+
attr_accessor sql_injection_match_set_id: ::String
|
1022
|
+
attr_accessor name: ::String
|
1023
|
+
attr_accessor sql_injection_match_tuples: ::Array[Types::SqlInjectionMatchTuple]
|
1024
|
+
SENSITIVE: []
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class SqlInjectionMatchSetSummary
|
1028
|
+
attr_accessor sql_injection_match_set_id: ::String
|
1029
|
+
attr_accessor name: ::String
|
1030
|
+
SENSITIVE: []
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class SqlInjectionMatchSetUpdate
|
1034
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
1035
|
+
attr_accessor sql_injection_match_tuple: Types::SqlInjectionMatchTuple
|
1036
|
+
SENSITIVE: []
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
class SqlInjectionMatchTuple
|
1040
|
+
attr_accessor field_to_match: Types::FieldToMatch
|
1041
|
+
attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
|
1042
|
+
SENSITIVE: []
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class SubscribedRuleGroupSummary
|
1046
|
+
attr_accessor rule_group_id: ::String
|
1047
|
+
attr_accessor name: ::String
|
1048
|
+
attr_accessor metric_name: ::String
|
1049
|
+
SENSITIVE: []
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
class Tag
|
1053
|
+
attr_accessor key: ::String
|
1054
|
+
attr_accessor value: ::String
|
1055
|
+
SENSITIVE: []
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
class TagInfoForResource
|
1059
|
+
attr_accessor resource_arn: ::String
|
1060
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
1061
|
+
SENSITIVE: []
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
class TagResourceRequest
|
1065
|
+
attr_accessor resource_arn: ::String
|
1066
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1067
|
+
SENSITIVE: []
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
class TimeWindow
|
1074
|
+
attr_accessor start_time: ::Time
|
1075
|
+
attr_accessor end_time: ::Time
|
1076
|
+
SENSITIVE: []
|
1077
|
+
end
|
1078
|
+
|
1079
|
+
class UntagResourceRequest
|
1080
|
+
attr_accessor resource_arn: ::String
|
1081
|
+
attr_accessor tag_keys: ::Array[::String]
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
class UpdateByteMatchSetRequest
|
1089
|
+
attr_accessor byte_match_set_id: ::String
|
1090
|
+
attr_accessor change_token: ::String
|
1091
|
+
attr_accessor updates: ::Array[Types::ByteMatchSetUpdate]
|
1092
|
+
SENSITIVE: []
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
class UpdateByteMatchSetResponse
|
1096
|
+
attr_accessor change_token: ::String
|
1097
|
+
SENSITIVE: []
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
class UpdateGeoMatchSetRequest
|
1101
|
+
attr_accessor geo_match_set_id: ::String
|
1102
|
+
attr_accessor change_token: ::String
|
1103
|
+
attr_accessor updates: ::Array[Types::GeoMatchSetUpdate]
|
1104
|
+
SENSITIVE: []
|
1105
|
+
end
|
1106
|
+
|
1107
|
+
class UpdateGeoMatchSetResponse
|
1108
|
+
attr_accessor change_token: ::String
|
1109
|
+
SENSITIVE: []
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
class UpdateIPSetRequest
|
1113
|
+
attr_accessor ip_set_id: ::String
|
1114
|
+
attr_accessor change_token: ::String
|
1115
|
+
attr_accessor updates: ::Array[Types::IPSetUpdate]
|
1116
|
+
SENSITIVE: []
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
class UpdateIPSetResponse
|
1120
|
+
attr_accessor change_token: ::String
|
1121
|
+
SENSITIVE: []
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
class UpdateRateBasedRuleRequest
|
1125
|
+
attr_accessor rule_id: ::String
|
1126
|
+
attr_accessor change_token: ::String
|
1127
|
+
attr_accessor updates: ::Array[Types::RuleUpdate]
|
1128
|
+
attr_accessor rate_limit: ::Integer
|
1129
|
+
SENSITIVE: []
|
1130
|
+
end
|
1131
|
+
|
1132
|
+
class UpdateRateBasedRuleResponse
|
1133
|
+
attr_accessor change_token: ::String
|
1134
|
+
SENSITIVE: []
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
class UpdateRegexMatchSetRequest
|
1138
|
+
attr_accessor regex_match_set_id: ::String
|
1139
|
+
attr_accessor updates: ::Array[Types::RegexMatchSetUpdate]
|
1140
|
+
attr_accessor change_token: ::String
|
1141
|
+
SENSITIVE: []
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
class UpdateRegexMatchSetResponse
|
1145
|
+
attr_accessor change_token: ::String
|
1146
|
+
SENSITIVE: []
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
class UpdateRegexPatternSetRequest
|
1150
|
+
attr_accessor regex_pattern_set_id: ::String
|
1151
|
+
attr_accessor updates: ::Array[Types::RegexPatternSetUpdate]
|
1152
|
+
attr_accessor change_token: ::String
|
1153
|
+
SENSITIVE: []
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class UpdateRegexPatternSetResponse
|
1157
|
+
attr_accessor change_token: ::String
|
1158
|
+
SENSITIVE: []
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class UpdateRuleGroupRequest
|
1162
|
+
attr_accessor rule_group_id: ::String
|
1163
|
+
attr_accessor updates: ::Array[Types::RuleGroupUpdate]
|
1164
|
+
attr_accessor change_token: ::String
|
1165
|
+
SENSITIVE: []
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
class UpdateRuleGroupResponse
|
1169
|
+
attr_accessor change_token: ::String
|
1170
|
+
SENSITIVE: []
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class UpdateRuleRequest
|
1174
|
+
attr_accessor rule_id: ::String
|
1175
|
+
attr_accessor change_token: ::String
|
1176
|
+
attr_accessor updates: ::Array[Types::RuleUpdate]
|
1177
|
+
SENSITIVE: []
|
1178
|
+
end
|
1179
|
+
|
1180
|
+
class UpdateRuleResponse
|
1181
|
+
attr_accessor change_token: ::String
|
1182
|
+
SENSITIVE: []
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
class UpdateSizeConstraintSetRequest
|
1186
|
+
attr_accessor size_constraint_set_id: ::String
|
1187
|
+
attr_accessor change_token: ::String
|
1188
|
+
attr_accessor updates: ::Array[Types::SizeConstraintSetUpdate]
|
1189
|
+
SENSITIVE: []
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
class UpdateSizeConstraintSetResponse
|
1193
|
+
attr_accessor change_token: ::String
|
1194
|
+
SENSITIVE: []
|
1195
|
+
end
|
1196
|
+
|
1197
|
+
class UpdateSqlInjectionMatchSetRequest
|
1198
|
+
attr_accessor sql_injection_match_set_id: ::String
|
1199
|
+
attr_accessor change_token: ::String
|
1200
|
+
attr_accessor updates: ::Array[Types::SqlInjectionMatchSetUpdate]
|
1201
|
+
SENSITIVE: []
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
class UpdateSqlInjectionMatchSetResponse
|
1205
|
+
attr_accessor change_token: ::String
|
1206
|
+
SENSITIVE: []
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
class UpdateWebACLRequest
|
1210
|
+
attr_accessor web_acl_id: ::String
|
1211
|
+
attr_accessor change_token: ::String
|
1212
|
+
attr_accessor updates: ::Array[Types::WebACLUpdate]
|
1213
|
+
attr_accessor default_action: Types::WafAction
|
1214
|
+
SENSITIVE: []
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
class UpdateWebACLResponse
|
1218
|
+
attr_accessor change_token: ::String
|
1219
|
+
SENSITIVE: []
|
1220
|
+
end
|
1221
|
+
|
1222
|
+
class UpdateXssMatchSetRequest
|
1223
|
+
attr_accessor xss_match_set_id: ::String
|
1224
|
+
attr_accessor change_token: ::String
|
1225
|
+
attr_accessor updates: ::Array[Types::XssMatchSetUpdate]
|
1226
|
+
SENSITIVE: []
|
1227
|
+
end
|
1228
|
+
|
1229
|
+
class UpdateXssMatchSetResponse
|
1230
|
+
attr_accessor change_token: ::String
|
1231
|
+
SENSITIVE: []
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
class WAFBadRequestException
|
1235
|
+
attr_accessor message: ::String
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
class WAFDisallowedNameException
|
1240
|
+
attr_accessor message: ::String
|
1241
|
+
SENSITIVE: []
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class WAFEntityMigrationException
|
1245
|
+
attr_accessor message: ::String
|
1246
|
+
attr_accessor migration_error_type: ("ENTITY_NOT_SUPPORTED" | "ENTITY_NOT_FOUND" | "S3_BUCKET_NO_PERMISSION" | "S3_BUCKET_NOT_ACCESSIBLE" | "S3_BUCKET_NOT_FOUND" | "S3_BUCKET_INVALID_REGION" | "S3_INTERNAL_ERROR")
|
1247
|
+
attr_accessor migration_error_reason: ::String
|
1248
|
+
SENSITIVE: []
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
class WAFInternalErrorException
|
1252
|
+
attr_accessor message: ::String
|
1253
|
+
SENSITIVE: []
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
class WAFInvalidAccountException < Aws::EmptyStructure
|
1257
|
+
end
|
1258
|
+
|
1259
|
+
class WAFInvalidOperationException
|
1260
|
+
attr_accessor message: ::String
|
1261
|
+
SENSITIVE: []
|
1262
|
+
end
|
1263
|
+
|
1264
|
+
class WAFInvalidParameterException
|
1265
|
+
attr_accessor field: ("CHANGE_ACTION" | "WAF_ACTION" | "WAF_OVERRIDE_ACTION" | "PREDICATE_TYPE" | "IPSET_TYPE" | "BYTE_MATCH_FIELD_TYPE" | "SQL_INJECTION_MATCH_FIELD_TYPE" | "BYTE_MATCH_TEXT_TRANSFORMATION" | "BYTE_MATCH_POSITIONAL_CONSTRAINT" | "SIZE_CONSTRAINT_COMPARISON_OPERATOR" | "GEO_MATCH_LOCATION_TYPE" | "GEO_MATCH_LOCATION_VALUE" | "RATE_KEY" | "RULE_TYPE" | "NEXT_MARKER" | "RESOURCE_ARN" | "TAGS" | "TAG_KEYS")
|
1266
|
+
attr_accessor parameter: ::String
|
1267
|
+
attr_accessor reason: ("INVALID_OPTION" | "ILLEGAL_COMBINATION" | "ILLEGAL_ARGUMENT" | "INVALID_TAG_KEY")
|
1268
|
+
SENSITIVE: []
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
class WAFInvalidPermissionPolicyException
|
1272
|
+
attr_accessor message: ::String
|
1273
|
+
SENSITIVE: []
|
1274
|
+
end
|
1275
|
+
|
1276
|
+
class WAFInvalidRegexPatternException
|
1277
|
+
attr_accessor message: ::String
|
1278
|
+
SENSITIVE: []
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
class WAFLimitsExceededException
|
1282
|
+
attr_accessor message: ::String
|
1283
|
+
SENSITIVE: []
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
class WAFNonEmptyEntityException
|
1287
|
+
attr_accessor message: ::String
|
1288
|
+
SENSITIVE: []
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
class WAFNonexistentContainerException
|
1292
|
+
attr_accessor message: ::String
|
1293
|
+
SENSITIVE: []
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
class WAFNonexistentItemException
|
1297
|
+
attr_accessor message: ::String
|
1298
|
+
SENSITIVE: []
|
1299
|
+
end
|
1300
|
+
|
1301
|
+
class WAFReferencedItemException
|
1302
|
+
attr_accessor message: ::String
|
1303
|
+
SENSITIVE: []
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
class WAFServiceLinkedRoleErrorException
|
1307
|
+
attr_accessor message: ::String
|
1308
|
+
SENSITIVE: []
|
1309
|
+
end
|
1310
|
+
|
1311
|
+
class WAFStaleDataException
|
1312
|
+
attr_accessor message: ::String
|
1313
|
+
SENSITIVE: []
|
1314
|
+
end
|
1315
|
+
|
1316
|
+
class WAFSubscriptionNotFoundException
|
1317
|
+
attr_accessor message: ::String
|
1318
|
+
SENSITIVE: []
|
1319
|
+
end
|
1320
|
+
|
1321
|
+
class WAFTagOperationException
|
1322
|
+
attr_accessor message: ::String
|
1323
|
+
SENSITIVE: []
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
class WAFTagOperationInternalErrorException
|
1327
|
+
attr_accessor message: ::String
|
1328
|
+
SENSITIVE: []
|
1329
|
+
end
|
1330
|
+
|
1331
|
+
class WAFUnavailableEntityException
|
1332
|
+
attr_accessor message: ::String
|
1333
|
+
SENSITIVE: []
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
class WafAction
|
1337
|
+
attr_accessor type: ("BLOCK" | "ALLOW" | "COUNT")
|
1338
|
+
SENSITIVE: []
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
class WafOverrideAction
|
1342
|
+
attr_accessor type: ("NONE" | "COUNT")
|
1343
|
+
SENSITIVE: []
|
1344
|
+
end
|
1345
|
+
|
1346
|
+
class WebACL
|
1347
|
+
attr_accessor web_acl_id: ::String
|
1348
|
+
attr_accessor name: ::String
|
1349
|
+
attr_accessor metric_name: ::String
|
1350
|
+
attr_accessor default_action: Types::WafAction
|
1351
|
+
attr_accessor rules: ::Array[Types::ActivatedRule]
|
1352
|
+
attr_accessor web_acl_arn: ::String
|
1353
|
+
SENSITIVE: []
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
class WebACLSummary
|
1357
|
+
attr_accessor web_acl_id: ::String
|
1358
|
+
attr_accessor name: ::String
|
1359
|
+
SENSITIVE: []
|
1360
|
+
end
|
1361
|
+
|
1362
|
+
class WebACLUpdate
|
1363
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
1364
|
+
attr_accessor activated_rule: Types::ActivatedRule
|
1365
|
+
SENSITIVE: []
|
1366
|
+
end
|
1367
|
+
|
1368
|
+
class XssMatchSet
|
1369
|
+
attr_accessor xss_match_set_id: ::String
|
1370
|
+
attr_accessor name: ::String
|
1371
|
+
attr_accessor xss_match_tuples: ::Array[Types::XssMatchTuple]
|
1372
|
+
SENSITIVE: []
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
class XssMatchSetSummary
|
1376
|
+
attr_accessor xss_match_set_id: ::String
|
1377
|
+
attr_accessor name: ::String
|
1378
|
+
SENSITIVE: []
|
1379
|
+
end
|
1380
|
+
|
1381
|
+
class XssMatchSetUpdate
|
1382
|
+
attr_accessor action: ("INSERT" | "DELETE")
|
1383
|
+
attr_accessor xss_match_tuple: Types::XssMatchTuple
|
1384
|
+
SENSITIVE: []
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
class XssMatchTuple
|
1388
|
+
attr_accessor field_to_match: Types::FieldToMatch
|
1389
|
+
attr_accessor text_transformation: ("NONE" | "COMPRESS_WHITE_SPACE" | "HTML_ENTITY_DECODE" | "LOWERCASE" | "CMD_LINE" | "URL_DECODE")
|
1390
|
+
SENSITIVE: []
|
1391
|
+
end
|
1392
|
+
end
|
1393
|
+
end
|