aws-sdk-networksecuritymanager 1.0.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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-networksecuritymanager/client.rb +5052 -0
- data/lib/aws-sdk-networksecuritymanager/client_api.rb +2021 -0
- data/lib/aws-sdk-networksecuritymanager/customizations.rb +0 -0
- data/lib/aws-sdk-networksecuritymanager/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-networksecuritymanager/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-networksecuritymanager/endpoints.rb +20 -0
- data/lib/aws-sdk-networksecuritymanager/errors.rb +258 -0
- data/lib/aws-sdk-networksecuritymanager/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-networksecuritymanager/resource.rb +26 -0
- data/lib/aws-sdk-networksecuritymanager/types.rb +4773 -0
- data/lib/aws-sdk-networksecuritymanager/waiters.rb +15 -0
- data/lib/aws-sdk-networksecuritymanager.rb +62 -0
- data/sig/client.rbs +937 -0
- data/sig/errors.rbs +55 -0
- data/sig/params.rbs +105 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +1281 -0
- data/sig/waiters.rbs +13 -0
- metadata +98 -0
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,1281 @@
|
|
|
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::NetworkSecurityManager
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class AccountFilter
|
|
17
|
+
attr_accessor include_all: Types::Unit
|
|
18
|
+
attr_accessor include: Types::AccountSet
|
|
19
|
+
attr_accessor exclude: Types::AccountSet
|
|
20
|
+
attr_accessor unknown: untyped
|
|
21
|
+
SENSITIVE: []
|
|
22
|
+
|
|
23
|
+
class IncludeAll < AccountFilter
|
|
24
|
+
end
|
|
25
|
+
class Include < AccountFilter
|
|
26
|
+
end
|
|
27
|
+
class Exclude < AccountFilter
|
|
28
|
+
end
|
|
29
|
+
class Unknown < AccountFilter
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
class AccountReference
|
|
34
|
+
attr_accessor account_id: ::String
|
|
35
|
+
attr_accessor name: ::String
|
|
36
|
+
attr_accessor email: ::String
|
|
37
|
+
SENSITIVE: [:name, :email]
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
class AccountSet
|
|
41
|
+
attr_accessor account_ids: ::Array[::String]
|
|
42
|
+
attr_accessor organizational_units: ::Array[::String]
|
|
43
|
+
SENSITIVE: []
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
class AdminAccountDetails
|
|
47
|
+
attr_accessor admin_account: ::String
|
|
48
|
+
attr_accessor priority: ::Integer
|
|
49
|
+
attr_accessor admin_scope: Types::AdminScope
|
|
50
|
+
attr_accessor status: ("ONBOARDED" | "OFFBOARDED")
|
|
51
|
+
SENSITIVE: []
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
class AdminAccountSummary
|
|
55
|
+
attr_accessor account_id: ::String
|
|
56
|
+
attr_accessor priority: ::Integer
|
|
57
|
+
attr_accessor name: ::String
|
|
58
|
+
attr_accessor email: ::String
|
|
59
|
+
SENSITIVE: [:name, :email]
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
class AdminFirewallTypeScope
|
|
63
|
+
attr_accessor all_firewall_types_enabled: bool
|
|
64
|
+
attr_accessor firewall_types: ::Array[("WAF" | "SHIELD_ADVANCED")]
|
|
65
|
+
SENSITIVE: []
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
class AdminScope
|
|
69
|
+
attr_accessor scope_filter: Types::AdminScopeFilter
|
|
70
|
+
attr_accessor firewall_type_scope: Types::AdminFirewallTypeScope
|
|
71
|
+
SENSITIVE: []
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
class AdminScopeFilter
|
|
75
|
+
attr_accessor include_all: Types::Unit
|
|
76
|
+
attr_accessor include_only: Types::AdminScopeSelection
|
|
77
|
+
attr_accessor exclude_only: Types::AdminScopeSelection
|
|
78
|
+
attr_accessor unknown: untyped
|
|
79
|
+
SENSITIVE: []
|
|
80
|
+
|
|
81
|
+
class IncludeAll < AdminScopeFilter
|
|
82
|
+
end
|
|
83
|
+
class IncludeOnly < AdminScopeFilter
|
|
84
|
+
end
|
|
85
|
+
class ExcludeOnly < AdminScopeFilter
|
|
86
|
+
end
|
|
87
|
+
class Unknown < AdminScopeFilter
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
class AdminScopeFilterInput
|
|
92
|
+
attr_accessor include_all: Types::Unit
|
|
93
|
+
attr_accessor include_only: Types::AdminScopeSelectionInput
|
|
94
|
+
attr_accessor exclude_only: Types::AdminScopeSelectionInput
|
|
95
|
+
attr_accessor unknown: untyped
|
|
96
|
+
SENSITIVE: []
|
|
97
|
+
|
|
98
|
+
class IncludeAll < AdminScopeFilterInput
|
|
99
|
+
end
|
|
100
|
+
class IncludeOnly < AdminScopeFilterInput
|
|
101
|
+
end
|
|
102
|
+
class ExcludeOnly < AdminScopeFilterInput
|
|
103
|
+
end
|
|
104
|
+
class Unknown < AdminScopeFilterInput
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
class AdminScopeInput
|
|
109
|
+
attr_accessor scope_filter: Types::AdminScopeFilterInput
|
|
110
|
+
attr_accessor firewall_type_scope: Types::AdminFirewallTypeScope
|
|
111
|
+
SENSITIVE: []
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
class AdminScopeSelection
|
|
115
|
+
attr_accessor accounts: ::Array[Types::AccountReference]
|
|
116
|
+
attr_accessor organizational_units: ::Array[Types::OrganizationalUnitReference]
|
|
117
|
+
SENSITIVE: []
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
class AdminScopeSelectionInput
|
|
121
|
+
attr_accessor accounts: ::Array[::String]
|
|
122
|
+
attr_accessor organizational_units: ::Array[::String]
|
|
123
|
+
SENSITIVE: []
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
class AlbConfiguration
|
|
127
|
+
attr_accessor scheme: ("internet-facing" | "internal")
|
|
128
|
+
attr_accessor ip_address_type: ("ipv4" | "dualstack" | "dualstack-without-public-ipv4")
|
|
129
|
+
SENSITIVE: []
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
class AssociatedPolicy
|
|
133
|
+
attr_accessor policy_arn: ::String
|
|
134
|
+
SENSITIVE: []
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
class AssociatedRule
|
|
138
|
+
attr_accessor rule_arn: ::String
|
|
139
|
+
SENSITIVE: []
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
class AssociatedScope
|
|
143
|
+
attr_accessor scope_arn: ::String
|
|
144
|
+
SENSITIVE: []
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
class AssociatedTemplateOrRule
|
|
148
|
+
attr_accessor template_arn: ::String
|
|
149
|
+
attr_accessor rule_arn: ::String
|
|
150
|
+
attr_accessor unknown: untyped
|
|
151
|
+
SENSITIVE: []
|
|
152
|
+
|
|
153
|
+
class TemplateArn < AssociatedTemplateOrRule
|
|
154
|
+
end
|
|
155
|
+
class RuleArn < AssociatedTemplateOrRule
|
|
156
|
+
end
|
|
157
|
+
class Unknown < AssociatedTemplateOrRule
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
class ConfigurationIssue
|
|
162
|
+
attr_accessor configuration_name: ::String
|
|
163
|
+
attr_accessor expected_value: ::String
|
|
164
|
+
attr_accessor actual_value: ::String
|
|
165
|
+
SENSITIVE: []
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
class ConflictException
|
|
169
|
+
attr_accessor message: ::String
|
|
170
|
+
attr_accessor resource_id: ::String
|
|
171
|
+
attr_accessor resource_type: ::String
|
|
172
|
+
SENSITIVE: []
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
class CreateDeploymentInput
|
|
176
|
+
attr_accessor client_token: ::String
|
|
177
|
+
attr_accessor deployment_name: ::String
|
|
178
|
+
attr_accessor deployment_description: ::String
|
|
179
|
+
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
|
180
|
+
attr_accessor associated_policy_list: ::Array[Types::PolicyReference]
|
|
181
|
+
attr_accessor associated_scope_list: ::Array[Types::ScopeReference]
|
|
182
|
+
attr_accessor is_published: bool
|
|
183
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
184
|
+
SENSITIVE: []
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
class CreateDeploymentOutput
|
|
188
|
+
attr_accessor deployment_id: ::String
|
|
189
|
+
attr_accessor deployment_arn: ::String
|
|
190
|
+
attr_accessor deployment_name: ::String
|
|
191
|
+
attr_accessor deployment_description: ::String
|
|
192
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
193
|
+
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
|
194
|
+
attr_accessor associated_policy_list: ::Array[Types::AssociatedPolicy]
|
|
195
|
+
attr_accessor associated_scope_list: ::Array[Types::AssociatedScope]
|
|
196
|
+
attr_accessor version: ::String
|
|
197
|
+
attr_accessor update_token: ::String
|
|
198
|
+
attr_accessor is_snapshot: bool
|
|
199
|
+
attr_accessor has_published_version: bool
|
|
200
|
+
attr_accessor deployment_coverage: ::Array[Types::DeploymentCoverageEntry]
|
|
201
|
+
attr_accessor warnings: ::Array[Types::DeploymentWarningEntry]
|
|
202
|
+
attr_accessor updated_at: ::Time
|
|
203
|
+
SENSITIVE: []
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
class CreateDeploymentSnapshotInput
|
|
207
|
+
attr_accessor deployment_identifier: ::String
|
|
208
|
+
attr_accessor client_token: ::String
|
|
209
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
210
|
+
SENSITIVE: []
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
class CreateDeploymentSnapshotOutput
|
|
214
|
+
attr_accessor deployment_id: ::String
|
|
215
|
+
attr_accessor deployment_arn: ::String
|
|
216
|
+
attr_accessor deployment_name: ::String
|
|
217
|
+
attr_accessor deployment_description: ::String
|
|
218
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
219
|
+
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
|
220
|
+
attr_accessor associated_policy_list: ::Array[Types::AssociatedPolicy]
|
|
221
|
+
attr_accessor associated_scope_list: ::Array[Types::AssociatedScope]
|
|
222
|
+
attr_accessor version: ::String
|
|
223
|
+
attr_accessor update_token: ::String
|
|
224
|
+
attr_accessor is_snapshot: bool
|
|
225
|
+
attr_accessor has_published_version: bool
|
|
226
|
+
attr_accessor updated_at: ::Time
|
|
227
|
+
SENSITIVE: []
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
class CreatePolicyInput
|
|
231
|
+
attr_accessor client_token: ::String
|
|
232
|
+
attr_accessor policy_name: ::String
|
|
233
|
+
attr_accessor policy_description: ::String
|
|
234
|
+
attr_accessor priority: ::Integer
|
|
235
|
+
attr_accessor associated_template_and_rule_list: ::Array[Types::TemplateOrRuleReference]
|
|
236
|
+
attr_accessor firewall_type: ("WAF" | "SHIELD_ADVANCED")
|
|
237
|
+
attr_accessor policy_configuration: Types::PolicyConfiguration
|
|
238
|
+
attr_accessor is_published: bool
|
|
239
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
240
|
+
SENSITIVE: []
|
|
241
|
+
end
|
|
242
|
+
|
|
243
|
+
class CreatePolicyOutput
|
|
244
|
+
attr_accessor policy_id: ::String
|
|
245
|
+
attr_accessor policy_arn: ::String
|
|
246
|
+
attr_accessor policy_name: ::String
|
|
247
|
+
attr_accessor policy_description: ::String
|
|
248
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
249
|
+
attr_accessor priority: ::Integer
|
|
250
|
+
attr_accessor associated_template_and_rule_list: ::Array[Types::AssociatedTemplateOrRule]
|
|
251
|
+
attr_accessor version: ::String
|
|
252
|
+
attr_accessor update_token: ::String
|
|
253
|
+
attr_accessor is_snapshot: bool
|
|
254
|
+
attr_accessor has_published_version: bool
|
|
255
|
+
attr_accessor firewall_type: ("WAF" | "SHIELD_ADVANCED")
|
|
256
|
+
attr_accessor policy_configuration: Types::PolicyConfiguration
|
|
257
|
+
attr_accessor updated_at: ::Time
|
|
258
|
+
SENSITIVE: []
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
class CreatePolicySnapshotInput
|
|
262
|
+
attr_accessor policy_identifier: ::String
|
|
263
|
+
attr_accessor client_token: ::String
|
|
264
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
265
|
+
SENSITIVE: []
|
|
266
|
+
end
|
|
267
|
+
|
|
268
|
+
class CreatePolicySnapshotOutput
|
|
269
|
+
attr_accessor policy_id: ::String
|
|
270
|
+
attr_accessor policy_arn: ::String
|
|
271
|
+
attr_accessor policy_name: ::String
|
|
272
|
+
attr_accessor policy_description: ::String
|
|
273
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
274
|
+
attr_accessor priority: ::Integer
|
|
275
|
+
attr_accessor associated_template_and_rule_list: ::Array[Types::AssociatedTemplateOrRule]
|
|
276
|
+
attr_accessor version: ::String
|
|
277
|
+
attr_accessor update_token: ::String
|
|
278
|
+
attr_accessor is_snapshot: bool
|
|
279
|
+
attr_accessor has_published_version: bool
|
|
280
|
+
attr_accessor firewall_type: ("WAF" | "SHIELD_ADVANCED")
|
|
281
|
+
attr_accessor policy_configuration: Types::PolicyConfiguration
|
|
282
|
+
attr_accessor updated_at: ::Time
|
|
283
|
+
SENSITIVE: []
|
|
284
|
+
end
|
|
285
|
+
|
|
286
|
+
class CreateRuleInput
|
|
287
|
+
attr_accessor client_token: ::String
|
|
288
|
+
attr_accessor rule_name: ::String
|
|
289
|
+
attr_accessor firewall_type: ("WAF")
|
|
290
|
+
attr_accessor rule_type: ("CONFIGURATION" | "INSPECTION")
|
|
291
|
+
attr_accessor rule_description: ::String
|
|
292
|
+
attr_accessor configuration: untyped
|
|
293
|
+
attr_accessor is_published: bool
|
|
294
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
295
|
+
SENSITIVE: []
|
|
296
|
+
end
|
|
297
|
+
|
|
298
|
+
class CreateRuleOutput
|
|
299
|
+
attr_accessor rule_id: ::String
|
|
300
|
+
attr_accessor rule_arn: ::String
|
|
301
|
+
attr_accessor rule_name: ::String
|
|
302
|
+
attr_accessor firewall_type: ("WAF")
|
|
303
|
+
attr_accessor rule_type: ("CONFIGURATION" | "INSPECTION")
|
|
304
|
+
attr_accessor rule_description: ::String
|
|
305
|
+
attr_accessor configuration: untyped
|
|
306
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
307
|
+
attr_accessor version: ::String
|
|
308
|
+
attr_accessor update_token: ::String
|
|
309
|
+
attr_accessor is_snapshot: bool
|
|
310
|
+
attr_accessor has_published_version: bool
|
|
311
|
+
attr_accessor updated_at: ::Time
|
|
312
|
+
SENSITIVE: []
|
|
313
|
+
end
|
|
314
|
+
|
|
315
|
+
class CreateRuleSnapshotInput
|
|
316
|
+
attr_accessor rule_identifier: ::String
|
|
317
|
+
attr_accessor client_token: ::String
|
|
318
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
319
|
+
SENSITIVE: []
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
class CreateRuleSnapshotOutput
|
|
323
|
+
attr_accessor rule_id: ::String
|
|
324
|
+
attr_accessor rule_arn: ::String
|
|
325
|
+
attr_accessor rule_name: ::String
|
|
326
|
+
attr_accessor firewall_type: ("WAF")
|
|
327
|
+
attr_accessor rule_type: ("CONFIGURATION" | "INSPECTION")
|
|
328
|
+
attr_accessor rule_description: ::String
|
|
329
|
+
attr_accessor configuration: untyped
|
|
330
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
331
|
+
attr_accessor version: ::String
|
|
332
|
+
attr_accessor update_token: ::String
|
|
333
|
+
attr_accessor is_snapshot: bool
|
|
334
|
+
attr_accessor has_published_version: bool
|
|
335
|
+
attr_accessor updated_at: ::Time
|
|
336
|
+
SENSITIVE: []
|
|
337
|
+
end
|
|
338
|
+
|
|
339
|
+
class CreateScopeInput
|
|
340
|
+
attr_accessor client_token: ::String
|
|
341
|
+
attr_accessor scope_name: ::String
|
|
342
|
+
attr_accessor scope_description: ::String
|
|
343
|
+
attr_accessor scope_configuration: Types::ScopeConfiguration
|
|
344
|
+
attr_accessor is_published: bool
|
|
345
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
346
|
+
SENSITIVE: []
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
class CreateScopeOutput
|
|
350
|
+
attr_accessor scope_id: ::String
|
|
351
|
+
attr_accessor scope_arn: ::String
|
|
352
|
+
attr_accessor scope_name: ::String
|
|
353
|
+
attr_accessor scope_description: ::String
|
|
354
|
+
attr_accessor scope_configuration: Types::ScopeConfiguration
|
|
355
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
356
|
+
attr_accessor version: ::String
|
|
357
|
+
attr_accessor update_token: ::String
|
|
358
|
+
attr_accessor is_snapshot: bool
|
|
359
|
+
attr_accessor has_published_version: bool
|
|
360
|
+
attr_accessor updated_at: ::Time
|
|
361
|
+
SENSITIVE: []
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
class CreateScopeSnapshotInput
|
|
365
|
+
attr_accessor scope_identifier: ::String
|
|
366
|
+
attr_accessor client_token: ::String
|
|
367
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
368
|
+
SENSITIVE: []
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
class CreateScopeSnapshotOutput
|
|
372
|
+
attr_accessor scope_id: ::String
|
|
373
|
+
attr_accessor scope_arn: ::String
|
|
374
|
+
attr_accessor scope_name: ::String
|
|
375
|
+
attr_accessor scope_description: ::String
|
|
376
|
+
attr_accessor scope_configuration: Types::ScopeConfiguration
|
|
377
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
378
|
+
attr_accessor version: ::String
|
|
379
|
+
attr_accessor update_token: ::String
|
|
380
|
+
attr_accessor is_snapshot: bool
|
|
381
|
+
attr_accessor has_published_version: bool
|
|
382
|
+
attr_accessor updated_at: ::Time
|
|
383
|
+
SENSITIVE: []
|
|
384
|
+
end
|
|
385
|
+
|
|
386
|
+
class CreateTemplateInput
|
|
387
|
+
attr_accessor client_token: ::String
|
|
388
|
+
attr_accessor template_name: ::String
|
|
389
|
+
attr_accessor template_description: ::String
|
|
390
|
+
attr_accessor associated_rule_list: ::Array[Types::RuleReference]
|
|
391
|
+
attr_accessor firewall_type: ("WAF")
|
|
392
|
+
attr_accessor is_published: bool
|
|
393
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
394
|
+
SENSITIVE: []
|
|
395
|
+
end
|
|
396
|
+
|
|
397
|
+
class CreateTemplateOutput
|
|
398
|
+
attr_accessor template_id: ::String
|
|
399
|
+
attr_accessor template_arn: ::String
|
|
400
|
+
attr_accessor template_name: ::String
|
|
401
|
+
attr_accessor template_description: ::String
|
|
402
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
403
|
+
attr_accessor version: ::String
|
|
404
|
+
attr_accessor associated_rule_list: ::Array[Types::AssociatedRule]
|
|
405
|
+
attr_accessor update_token: ::String
|
|
406
|
+
attr_accessor is_snapshot: bool
|
|
407
|
+
attr_accessor has_published_version: bool
|
|
408
|
+
attr_accessor firewall_type: ("WAF")
|
|
409
|
+
attr_accessor updated_at: ::Time
|
|
410
|
+
SENSITIVE: []
|
|
411
|
+
end
|
|
412
|
+
|
|
413
|
+
class CreateTemplateSnapshotInput
|
|
414
|
+
attr_accessor template_identifier: ::String
|
|
415
|
+
attr_accessor client_token: ::String
|
|
416
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
417
|
+
SENSITIVE: []
|
|
418
|
+
end
|
|
419
|
+
|
|
420
|
+
class CreateTemplateSnapshotOutput
|
|
421
|
+
attr_accessor template_id: ::String
|
|
422
|
+
attr_accessor template_arn: ::String
|
|
423
|
+
attr_accessor template_name: ::String
|
|
424
|
+
attr_accessor template_description: ::String
|
|
425
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
426
|
+
attr_accessor version: ::String
|
|
427
|
+
attr_accessor associated_rule_list: ::Array[Types::AssociatedRule]
|
|
428
|
+
attr_accessor update_token: ::String
|
|
429
|
+
attr_accessor is_snapshot: bool
|
|
430
|
+
attr_accessor has_published_version: bool
|
|
431
|
+
attr_accessor firewall_type: ("WAF")
|
|
432
|
+
attr_accessor updated_at: ::Time
|
|
433
|
+
SENSITIVE: []
|
|
434
|
+
end
|
|
435
|
+
|
|
436
|
+
class DeleteAdminAccountRequest
|
|
437
|
+
attr_accessor account_id: ::String
|
|
438
|
+
SENSITIVE: []
|
|
439
|
+
end
|
|
440
|
+
|
|
441
|
+
class DeleteDeploymentInput
|
|
442
|
+
attr_accessor deployment_identifier: ::String
|
|
443
|
+
SENSITIVE: []
|
|
444
|
+
end
|
|
445
|
+
|
|
446
|
+
class DeletePolicyInput
|
|
447
|
+
attr_accessor policy_identifier: ::String
|
|
448
|
+
SENSITIVE: []
|
|
449
|
+
end
|
|
450
|
+
|
|
451
|
+
class DeleteRuleInput
|
|
452
|
+
attr_accessor rule_identifier: ::String
|
|
453
|
+
SENSITIVE: []
|
|
454
|
+
end
|
|
455
|
+
|
|
456
|
+
class DeleteScopeInput
|
|
457
|
+
attr_accessor scope_identifier: ::String
|
|
458
|
+
SENSITIVE: []
|
|
459
|
+
end
|
|
460
|
+
|
|
461
|
+
class DeleteTemplateInput
|
|
462
|
+
attr_accessor template_identifier: ::String
|
|
463
|
+
SENSITIVE: []
|
|
464
|
+
end
|
|
465
|
+
|
|
466
|
+
class DeploymentConfiguration
|
|
467
|
+
attr_accessor enable_cross_account_visibility: bool
|
|
468
|
+
SENSITIVE: []
|
|
469
|
+
end
|
|
470
|
+
|
|
471
|
+
class DeploymentCoverageEntry
|
|
472
|
+
attr_accessor firewall_type: ("WAF" | "SHIELD_ADVANCED")
|
|
473
|
+
attr_accessor policy_arns: ::Array[::String]
|
|
474
|
+
attr_accessor in_scope_resource_types: ::Array[("AWS::ApiGateway::Stage" | "AWS::CloudFront::Distribution" | "AWS::EC2::EIP" | "AWS::ElasticLoadBalancingV2::LoadBalancer::application" | "AWS::ElasticLoadBalancing::LoadBalancer")]
|
|
475
|
+
SENSITIVE: []
|
|
476
|
+
end
|
|
477
|
+
|
|
478
|
+
class DeploymentSummary
|
|
479
|
+
attr_accessor deployment_id: ::String
|
|
480
|
+
attr_accessor deployment_arn: ::String
|
|
481
|
+
attr_accessor deployment_name: ::String
|
|
482
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
483
|
+
attr_accessor version: ::String
|
|
484
|
+
attr_accessor has_published_version: bool
|
|
485
|
+
attr_accessor updated_at: ::Time
|
|
486
|
+
SENSITIVE: []
|
|
487
|
+
end
|
|
488
|
+
|
|
489
|
+
class DeploymentWarningEntry
|
|
490
|
+
attr_accessor code: ::String
|
|
491
|
+
attr_accessor policy_arn: ::String
|
|
492
|
+
attr_accessor message: ::String
|
|
493
|
+
SENSITIVE: []
|
|
494
|
+
end
|
|
495
|
+
|
|
496
|
+
class FirewallSyncReason
|
|
497
|
+
attr_accessor missing_firewall: ::String
|
|
498
|
+
attr_accessor invalid_firewall: Types::InvalidFirewallReasons
|
|
499
|
+
attr_accessor unknown: untyped
|
|
500
|
+
SENSITIVE: []
|
|
501
|
+
|
|
502
|
+
class MissingFirewall < FirewallSyncReason
|
|
503
|
+
end
|
|
504
|
+
class InvalidFirewall < FirewallSyncReason
|
|
505
|
+
end
|
|
506
|
+
class Unknown < FirewallSyncReason
|
|
507
|
+
end
|
|
508
|
+
end
|
|
509
|
+
|
|
510
|
+
class GenerateRuleConfigurationRequest
|
|
511
|
+
attr_accessor prompt: ::String
|
|
512
|
+
attr_accessor rule_firewall_type: ("WAF")
|
|
513
|
+
attr_accessor rule_type: ("CONFIGURATION" | "INSPECTION")
|
|
514
|
+
attr_accessor waf_config_data_type: ("DefaultAction" | "VisibilityConfig" | "CaptchaConfig" | "ChallengeConfig" | "CustomResponseBodies" | "LoggingConfiguration" | "DataProtectionConfig" | "AssociationConfig" | "OnSourceDDoSProtectionConfig" | "TokenDomains")
|
|
515
|
+
attr_accessor current_configuration: ::String
|
|
516
|
+
attr_accessor client_token: ::String
|
|
517
|
+
SENSITIVE: [:prompt]
|
|
518
|
+
end
|
|
519
|
+
|
|
520
|
+
class GenerateRuleConfigurationResponse
|
|
521
|
+
attr_accessor configuration: ::String
|
|
522
|
+
attr_accessor description: ::String
|
|
523
|
+
SENSITIVE: []
|
|
524
|
+
end
|
|
525
|
+
|
|
526
|
+
class GetAdminAccountRequest
|
|
527
|
+
attr_accessor account_id: ::String
|
|
528
|
+
SENSITIVE: []
|
|
529
|
+
end
|
|
530
|
+
|
|
531
|
+
class GetAdminAccountResponse
|
|
532
|
+
attr_accessor admin_account_details: Types::AdminAccountDetails
|
|
533
|
+
SENSITIVE: []
|
|
534
|
+
end
|
|
535
|
+
|
|
536
|
+
class GetDeploymentInput
|
|
537
|
+
attr_accessor deployment_identifier: ::String
|
|
538
|
+
SENSITIVE: []
|
|
539
|
+
end
|
|
540
|
+
|
|
541
|
+
class GetDeploymentOutput
|
|
542
|
+
attr_accessor deployment_id: ::String
|
|
543
|
+
attr_accessor deployment_arn: ::String
|
|
544
|
+
attr_accessor deployment_name: ::String
|
|
545
|
+
attr_accessor deployment_description: ::String
|
|
546
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
547
|
+
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
|
548
|
+
attr_accessor associated_policy_list: ::Array[Types::AssociatedPolicy]
|
|
549
|
+
attr_accessor associated_scope_list: ::Array[Types::AssociatedScope]
|
|
550
|
+
attr_accessor version: ::String
|
|
551
|
+
attr_accessor update_token: ::String
|
|
552
|
+
attr_accessor is_snapshot: bool
|
|
553
|
+
attr_accessor has_published_version: bool
|
|
554
|
+
attr_accessor updated_at: ::Time
|
|
555
|
+
attr_accessor deployment_coverage: ::Array[Types::DeploymentCoverageEntry]
|
|
556
|
+
attr_accessor warnings: ::Array[Types::DeploymentWarningEntry]
|
|
557
|
+
SENSITIVE: []
|
|
558
|
+
end
|
|
559
|
+
|
|
560
|
+
class GetPolicyInput
|
|
561
|
+
attr_accessor policy_identifier: ::String
|
|
562
|
+
SENSITIVE: []
|
|
563
|
+
end
|
|
564
|
+
|
|
565
|
+
class GetPolicyOutput
|
|
566
|
+
attr_accessor policy_id: ::String
|
|
567
|
+
attr_accessor policy_arn: ::String
|
|
568
|
+
attr_accessor policy_name: ::String
|
|
569
|
+
attr_accessor policy_description: ::String
|
|
570
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
571
|
+
attr_accessor priority: ::Integer
|
|
572
|
+
attr_accessor associated_template_and_rule_list: ::Array[Types::AssociatedTemplateOrRule]
|
|
573
|
+
attr_accessor version: ::String
|
|
574
|
+
attr_accessor update_token: ::String
|
|
575
|
+
attr_accessor is_snapshot: bool
|
|
576
|
+
attr_accessor has_published_version: bool
|
|
577
|
+
attr_accessor firewall_type: ("WAF" | "SHIELD_ADVANCED")
|
|
578
|
+
attr_accessor policy_configuration: Types::PolicyConfiguration
|
|
579
|
+
attr_accessor updated_at: ::Time
|
|
580
|
+
SENSITIVE: []
|
|
581
|
+
end
|
|
582
|
+
|
|
583
|
+
class GetRuleInput
|
|
584
|
+
attr_accessor rule_identifier: ::String
|
|
585
|
+
SENSITIVE: []
|
|
586
|
+
end
|
|
587
|
+
|
|
588
|
+
class GetRuleOutput
|
|
589
|
+
attr_accessor rule_id: ::String
|
|
590
|
+
attr_accessor rule_arn: ::String
|
|
591
|
+
attr_accessor rule_name: ::String
|
|
592
|
+
attr_accessor firewall_type: ("WAF")
|
|
593
|
+
attr_accessor rule_type: ("CONFIGURATION" | "INSPECTION")
|
|
594
|
+
attr_accessor rule_description: ::String
|
|
595
|
+
attr_accessor configuration: untyped
|
|
596
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
597
|
+
attr_accessor version: ::String
|
|
598
|
+
attr_accessor update_token: ::String
|
|
599
|
+
attr_accessor is_snapshot: bool
|
|
600
|
+
attr_accessor has_published_version: bool
|
|
601
|
+
attr_accessor updated_at: ::Time
|
|
602
|
+
SENSITIVE: []
|
|
603
|
+
end
|
|
604
|
+
|
|
605
|
+
class GetScopeInput
|
|
606
|
+
attr_accessor scope_identifier: ::String
|
|
607
|
+
SENSITIVE: []
|
|
608
|
+
end
|
|
609
|
+
|
|
610
|
+
class GetScopeOutput
|
|
611
|
+
attr_accessor scope_id: ::String
|
|
612
|
+
attr_accessor scope_arn: ::String
|
|
613
|
+
attr_accessor scope_name: ::String
|
|
614
|
+
attr_accessor scope_description: ::String
|
|
615
|
+
attr_accessor scope_configuration: Types::ScopeConfiguration
|
|
616
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
617
|
+
attr_accessor version: ::String
|
|
618
|
+
attr_accessor update_token: ::String
|
|
619
|
+
attr_accessor is_snapshot: bool
|
|
620
|
+
attr_accessor has_published_version: bool
|
|
621
|
+
attr_accessor updated_at: ::Time
|
|
622
|
+
SENSITIVE: []
|
|
623
|
+
end
|
|
624
|
+
|
|
625
|
+
class GetTemplateInput
|
|
626
|
+
attr_accessor template_identifier: ::String
|
|
627
|
+
SENSITIVE: []
|
|
628
|
+
end
|
|
629
|
+
|
|
630
|
+
class GetTemplateOutput
|
|
631
|
+
attr_accessor template_id: ::String
|
|
632
|
+
attr_accessor template_arn: ::String
|
|
633
|
+
attr_accessor template_name: ::String
|
|
634
|
+
attr_accessor template_description: ::String
|
|
635
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
636
|
+
attr_accessor version: ::String
|
|
637
|
+
attr_accessor associated_rule_list: ::Array[Types::AssociatedRule]
|
|
638
|
+
attr_accessor update_token: ::String
|
|
639
|
+
attr_accessor is_snapshot: bool
|
|
640
|
+
attr_accessor has_published_version: bool
|
|
641
|
+
attr_accessor firewall_type: ("WAF")
|
|
642
|
+
attr_accessor updated_at: ::Time
|
|
643
|
+
SENSITIVE: []
|
|
644
|
+
end
|
|
645
|
+
|
|
646
|
+
class InternalServerException
|
|
647
|
+
attr_accessor message: ::String
|
|
648
|
+
SENSITIVE: []
|
|
649
|
+
end
|
|
650
|
+
|
|
651
|
+
class InvalidFirewallReasons
|
|
652
|
+
attr_accessor incorrect_single_value_configurations: ::Array[Types::ConfigurationIssue]
|
|
653
|
+
attr_accessor missing_appendable_configuration_values: ::Array[Types::ConfigurationIssue]
|
|
654
|
+
attr_accessor unexpected_appendable_configuration_values: ::Array[Types::ConfigurationIssue]
|
|
655
|
+
attr_accessor incorrect_appendable_configuration_order: ::Array[Types::ConfigurationIssue]
|
|
656
|
+
attr_accessor missing_mergeable_configuration_values: ::Array[Types::ConfigurationIssue]
|
|
657
|
+
attr_accessor unexpected_mergeable_configuration_values: ::Array[Types::ConfigurationIssue]
|
|
658
|
+
SENSITIVE: []
|
|
659
|
+
end
|
|
660
|
+
|
|
661
|
+
class ListAdminAccountsRequest
|
|
662
|
+
attr_accessor max_results: ::Integer
|
|
663
|
+
attr_accessor next_token: ::String
|
|
664
|
+
SENSITIVE: []
|
|
665
|
+
end
|
|
666
|
+
|
|
667
|
+
class ListAdminAccountsResponse
|
|
668
|
+
attr_accessor next_token: ::String
|
|
669
|
+
attr_accessor admin_accounts: ::Array[Types::AdminAccountSummary]
|
|
670
|
+
SENSITIVE: []
|
|
671
|
+
end
|
|
672
|
+
|
|
673
|
+
class ListAggregateResourceSynchronizationStatusesInput
|
|
674
|
+
attr_accessor synchronization_status: ("IN_SYNC" | "OUT_OF_SYNC" | "NOT_APPLICABLE")
|
|
675
|
+
attr_accessor max_results: ::Integer
|
|
676
|
+
attr_accessor next_token: ::String
|
|
677
|
+
SENSITIVE: []
|
|
678
|
+
end
|
|
679
|
+
|
|
680
|
+
class ListAggregateResourceSynchronizationStatusesOutput
|
|
681
|
+
attr_accessor next_token: ::String
|
|
682
|
+
attr_accessor resource_synchronization_statuses: ::Array[Types::ResourceSynchronizationStatusSummary]
|
|
683
|
+
SENSITIVE: []
|
|
684
|
+
end
|
|
685
|
+
|
|
686
|
+
class ListDeploymentSnapshotsInput
|
|
687
|
+
attr_accessor deployment_identifier: ::String
|
|
688
|
+
attr_accessor max_results: ::Integer
|
|
689
|
+
attr_accessor next_token: ::String
|
|
690
|
+
SENSITIVE: []
|
|
691
|
+
end
|
|
692
|
+
|
|
693
|
+
class ListDeploymentSnapshotsOutput
|
|
694
|
+
attr_accessor next_token: ::String
|
|
695
|
+
attr_accessor snapshots: ::Array[Types::DeploymentSummary]
|
|
696
|
+
SENSITIVE: []
|
|
697
|
+
end
|
|
698
|
+
|
|
699
|
+
class ListDeploymentsInput
|
|
700
|
+
attr_accessor max_results: ::Integer
|
|
701
|
+
attr_accessor next_token: ::String
|
|
702
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "DISABLED")
|
|
703
|
+
SENSITIVE: []
|
|
704
|
+
end
|
|
705
|
+
|
|
706
|
+
class ListDeploymentsOutput
|
|
707
|
+
attr_accessor next_token: ::String
|
|
708
|
+
attr_accessor deployments: ::Array[Types::DeploymentSummary]
|
|
709
|
+
SENSITIVE: []
|
|
710
|
+
end
|
|
711
|
+
|
|
712
|
+
class ListPoliciesInput
|
|
713
|
+
attr_accessor max_results: ::Integer
|
|
714
|
+
attr_accessor next_token: ::String
|
|
715
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "DISABLED")
|
|
716
|
+
SENSITIVE: []
|
|
717
|
+
end
|
|
718
|
+
|
|
719
|
+
class ListPoliciesOutput
|
|
720
|
+
attr_accessor next_token: ::String
|
|
721
|
+
attr_accessor policies: ::Array[Types::PolicySummary]
|
|
722
|
+
SENSITIVE: []
|
|
723
|
+
end
|
|
724
|
+
|
|
725
|
+
class ListPolicySnapshotsInput
|
|
726
|
+
attr_accessor policy_identifier: ::String
|
|
727
|
+
attr_accessor max_results: ::Integer
|
|
728
|
+
attr_accessor next_token: ::String
|
|
729
|
+
SENSITIVE: []
|
|
730
|
+
end
|
|
731
|
+
|
|
732
|
+
class ListPolicySnapshotsOutput
|
|
733
|
+
attr_accessor next_token: ::String
|
|
734
|
+
attr_accessor snapshots: ::Array[Types::PolicySummary]
|
|
735
|
+
SENSITIVE: []
|
|
736
|
+
end
|
|
737
|
+
|
|
738
|
+
class ListResourceAssociationsInput
|
|
739
|
+
attr_accessor resource_identifier: ::String
|
|
740
|
+
attr_accessor max_results: ::Integer
|
|
741
|
+
attr_accessor next_token: ::String
|
|
742
|
+
SENSITIVE: []
|
|
743
|
+
end
|
|
744
|
+
|
|
745
|
+
class ListResourceAssociationsOutput
|
|
746
|
+
attr_accessor next_token: ::String
|
|
747
|
+
attr_accessor resource_associations: ::Array[Types::ResourceAssociation]
|
|
748
|
+
SENSITIVE: []
|
|
749
|
+
end
|
|
750
|
+
|
|
751
|
+
class ListResourceSynchronizationStatusesInput
|
|
752
|
+
attr_accessor deployment_identifier: ::String
|
|
753
|
+
attr_accessor synchronization_status: ("IN_SYNC" | "OUT_OF_SYNC" | "NOT_APPLICABLE")
|
|
754
|
+
attr_accessor max_results: ::Integer
|
|
755
|
+
attr_accessor next_token: ::String
|
|
756
|
+
SENSITIVE: []
|
|
757
|
+
end
|
|
758
|
+
|
|
759
|
+
class ListResourceSynchronizationStatusesOutput
|
|
760
|
+
attr_accessor next_token: ::String
|
|
761
|
+
attr_accessor resource_synchronization_statuses: ::Array[Types::ResourceSynchronizationStatusSummary]
|
|
762
|
+
SENSITIVE: []
|
|
763
|
+
end
|
|
764
|
+
|
|
765
|
+
class ListRuleSnapshotsInput
|
|
766
|
+
attr_accessor rule_identifier: ::String
|
|
767
|
+
attr_accessor max_results: ::Integer
|
|
768
|
+
attr_accessor next_token: ::String
|
|
769
|
+
SENSITIVE: []
|
|
770
|
+
end
|
|
771
|
+
|
|
772
|
+
class ListRuleSnapshotsOutput
|
|
773
|
+
attr_accessor next_token: ::String
|
|
774
|
+
attr_accessor snapshots: ::Array[Types::RuleSummary]
|
|
775
|
+
SENSITIVE: []
|
|
776
|
+
end
|
|
777
|
+
|
|
778
|
+
class ListRulesInput
|
|
779
|
+
attr_accessor max_results: ::Integer
|
|
780
|
+
attr_accessor next_token: ::String
|
|
781
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "DISABLED")
|
|
782
|
+
SENSITIVE: []
|
|
783
|
+
end
|
|
784
|
+
|
|
785
|
+
class ListRulesOutput
|
|
786
|
+
attr_accessor next_token: ::String
|
|
787
|
+
attr_accessor rules: ::Array[Types::RuleSummary]
|
|
788
|
+
SENSITIVE: []
|
|
789
|
+
end
|
|
790
|
+
|
|
791
|
+
class ListScopeSnapshotsInput
|
|
792
|
+
attr_accessor scope_identifier: ::String
|
|
793
|
+
attr_accessor max_results: ::Integer
|
|
794
|
+
attr_accessor next_token: ::String
|
|
795
|
+
SENSITIVE: []
|
|
796
|
+
end
|
|
797
|
+
|
|
798
|
+
class ListScopeSnapshotsOutput
|
|
799
|
+
attr_accessor next_token: ::String
|
|
800
|
+
attr_accessor snapshots: ::Array[Types::ScopeSummary]
|
|
801
|
+
SENSITIVE: []
|
|
802
|
+
end
|
|
803
|
+
|
|
804
|
+
class ListScopesInput
|
|
805
|
+
attr_accessor max_results: ::Integer
|
|
806
|
+
attr_accessor next_token: ::String
|
|
807
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "DISABLED")
|
|
808
|
+
SENSITIVE: []
|
|
809
|
+
end
|
|
810
|
+
|
|
811
|
+
class ListScopesOutput
|
|
812
|
+
attr_accessor next_token: ::String
|
|
813
|
+
attr_accessor scopes: ::Array[Types::ScopeSummary]
|
|
814
|
+
SENSITIVE: []
|
|
815
|
+
end
|
|
816
|
+
|
|
817
|
+
class ListTagsForResourceInput
|
|
818
|
+
attr_accessor resource_arn: ::String
|
|
819
|
+
SENSITIVE: []
|
|
820
|
+
end
|
|
821
|
+
|
|
822
|
+
class ListTagsForResourceOutput
|
|
823
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
824
|
+
SENSITIVE: []
|
|
825
|
+
end
|
|
826
|
+
|
|
827
|
+
class ListTemplateSnapshotsInput
|
|
828
|
+
attr_accessor template_identifier: ::String
|
|
829
|
+
attr_accessor max_results: ::Integer
|
|
830
|
+
attr_accessor next_token: ::String
|
|
831
|
+
SENSITIVE: []
|
|
832
|
+
end
|
|
833
|
+
|
|
834
|
+
class ListTemplateSnapshotsOutput
|
|
835
|
+
attr_accessor next_token: ::String
|
|
836
|
+
attr_accessor snapshots: ::Array[Types::TemplateSummary]
|
|
837
|
+
SENSITIVE: []
|
|
838
|
+
end
|
|
839
|
+
|
|
840
|
+
class ListTemplatesInput
|
|
841
|
+
attr_accessor max_results: ::Integer
|
|
842
|
+
attr_accessor next_token: ::String
|
|
843
|
+
attr_accessor status: ("ACTIVE" | "DRAFT" | "DISABLED")
|
|
844
|
+
SENSITIVE: []
|
|
845
|
+
end
|
|
846
|
+
|
|
847
|
+
class ListTemplatesOutput
|
|
848
|
+
attr_accessor next_token: ::String
|
|
849
|
+
attr_accessor templates: ::Array[Types::TemplateSummary]
|
|
850
|
+
SENSITIVE: []
|
|
851
|
+
end
|
|
852
|
+
|
|
853
|
+
class NotVisibleMarker
|
|
854
|
+
attr_accessor reason: ::String
|
|
855
|
+
SENSITIVE: []
|
|
856
|
+
end
|
|
857
|
+
|
|
858
|
+
class OrganizationalUnitReference
|
|
859
|
+
attr_accessor ou_id: ::String
|
|
860
|
+
attr_accessor name: ::String
|
|
861
|
+
SENSITIVE: []
|
|
862
|
+
end
|
|
863
|
+
|
|
864
|
+
class OutOfSyncReasonsView
|
|
865
|
+
attr_accessor reasons: ::Hash[("WAF" | "SHIELD_ADVANCED"), Types::FirewallSyncReason]
|
|
866
|
+
attr_accessor not_visible: Types::NotVisibleMarker
|
|
867
|
+
attr_accessor unknown: untyped
|
|
868
|
+
SENSITIVE: []
|
|
869
|
+
|
|
870
|
+
class Reasons < OutOfSyncReasonsView
|
|
871
|
+
end
|
|
872
|
+
class NotVisible < OutOfSyncReasonsView
|
|
873
|
+
end
|
|
874
|
+
class Unknown < OutOfSyncReasonsView
|
|
875
|
+
end
|
|
876
|
+
end
|
|
877
|
+
|
|
878
|
+
class PolicyConfiguration
|
|
879
|
+
attr_accessor remediation_enabled: bool
|
|
880
|
+
attr_accessor resources_clean_up: bool
|
|
881
|
+
attr_accessor waf_config: Types::WafConfig
|
|
882
|
+
SENSITIVE: []
|
|
883
|
+
end
|
|
884
|
+
|
|
885
|
+
class PolicyReference
|
|
886
|
+
attr_accessor policy_identifier: ::String
|
|
887
|
+
SENSITIVE: []
|
|
888
|
+
end
|
|
889
|
+
|
|
890
|
+
class PolicySummary
|
|
891
|
+
attr_accessor policy_id: ::String
|
|
892
|
+
attr_accessor policy_arn: ::String
|
|
893
|
+
attr_accessor policy_name: ::String
|
|
894
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
895
|
+
attr_accessor version: ::String
|
|
896
|
+
attr_accessor has_published_version: bool
|
|
897
|
+
attr_accessor firewall_type: ("WAF" | "SHIELD_ADVANCED")
|
|
898
|
+
attr_accessor priority: ::Integer
|
|
899
|
+
attr_accessor updated_at: ::Time
|
|
900
|
+
SENSITIVE: []
|
|
901
|
+
end
|
|
902
|
+
|
|
903
|
+
class PutAdminAccountRequest
|
|
904
|
+
attr_accessor account_id: ::String
|
|
905
|
+
attr_accessor priority: ::Integer
|
|
906
|
+
attr_accessor admin_scope: Types::AdminScopeInput
|
|
907
|
+
SENSITIVE: []
|
|
908
|
+
end
|
|
909
|
+
|
|
910
|
+
class PutAdminAccountResponse
|
|
911
|
+
attr_accessor admin_account_details: Types::AdminAccountDetails
|
|
912
|
+
SENSITIVE: []
|
|
913
|
+
end
|
|
914
|
+
|
|
915
|
+
class RemediationIssueDetails
|
|
916
|
+
attr_accessor issue_type: ::String
|
|
917
|
+
attr_accessor message: ::String
|
|
918
|
+
attr_accessor corrective_action: ::String
|
|
919
|
+
SENSITIVE: []
|
|
920
|
+
end
|
|
921
|
+
|
|
922
|
+
class RemediationIssuesView
|
|
923
|
+
attr_accessor issues: ::Hash[("WAF" | "SHIELD_ADVANCED"), Types::RemediationIssueDetails]
|
|
924
|
+
attr_accessor not_visible: Types::NotVisibleMarker
|
|
925
|
+
attr_accessor unknown: untyped
|
|
926
|
+
SENSITIVE: []
|
|
927
|
+
|
|
928
|
+
class Issues < RemediationIssuesView
|
|
929
|
+
end
|
|
930
|
+
class NotVisible < RemediationIssuesView
|
|
931
|
+
end
|
|
932
|
+
class Unknown < RemediationIssuesView
|
|
933
|
+
end
|
|
934
|
+
end
|
|
935
|
+
|
|
936
|
+
class ResourceAssociation
|
|
937
|
+
attr_accessor arn: ::String
|
|
938
|
+
attr_accessor resource_type: ("Rule" | "Template" | "Policy" | "Deployment" | "Scope")
|
|
939
|
+
SENSITIVE: []
|
|
940
|
+
end
|
|
941
|
+
|
|
942
|
+
class ResourceCriteria
|
|
943
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
944
|
+
attr_accessor alb_config: Types::AlbConfiguration
|
|
945
|
+
attr_accessor unknown: untyped
|
|
946
|
+
SENSITIVE: []
|
|
947
|
+
|
|
948
|
+
class Tags < ResourceCriteria
|
|
949
|
+
end
|
|
950
|
+
class AlbConfig < ResourceCriteria
|
|
951
|
+
end
|
|
952
|
+
class Unknown < ResourceCriteria
|
|
953
|
+
end
|
|
954
|
+
end
|
|
955
|
+
|
|
956
|
+
class ResourceLogicalExpression
|
|
957
|
+
attr_accessor criteria: Types::ResourceCriteria
|
|
958
|
+
attr_accessor and: ::Array[Types::ResourceLogicalExpression]
|
|
959
|
+
attr_accessor or: ::Array[Types::ResourceLogicalExpression]
|
|
960
|
+
attr_accessor not: Types::ResourceLogicalExpression
|
|
961
|
+
attr_accessor unknown: untyped
|
|
962
|
+
SENSITIVE: []
|
|
963
|
+
|
|
964
|
+
class Criteria < ResourceLogicalExpression
|
|
965
|
+
end
|
|
966
|
+
class And < ResourceLogicalExpression
|
|
967
|
+
end
|
|
968
|
+
class Or < ResourceLogicalExpression
|
|
969
|
+
end
|
|
970
|
+
class Not < ResourceLogicalExpression
|
|
971
|
+
end
|
|
972
|
+
class Unknown < ResourceLogicalExpression
|
|
973
|
+
end
|
|
974
|
+
end
|
|
975
|
+
|
|
976
|
+
class ResourceNotFoundException
|
|
977
|
+
attr_accessor message: ::String
|
|
978
|
+
attr_accessor resource_id: ::String
|
|
979
|
+
attr_accessor resource_type: ::String
|
|
980
|
+
SENSITIVE: []
|
|
981
|
+
end
|
|
982
|
+
|
|
983
|
+
class ResourceScope
|
|
984
|
+
attr_accessor include_all: bool
|
|
985
|
+
attr_accessor include: Types::ResourceSet
|
|
986
|
+
attr_accessor exclude: Types::ResourceSet
|
|
987
|
+
SENSITIVE: []
|
|
988
|
+
end
|
|
989
|
+
|
|
990
|
+
class ResourceSet
|
|
991
|
+
attr_accessor explicit_arns: ::Array[::String]
|
|
992
|
+
attr_accessor expression: Types::ResourceLogicalExpression
|
|
993
|
+
SENSITIVE: []
|
|
994
|
+
end
|
|
995
|
+
|
|
996
|
+
class ResourceSynchronizationStatusSummary
|
|
997
|
+
attr_accessor synchronization_status: ("IN_SYNC" | "OUT_OF_SYNC" | "NOT_APPLICABLE")
|
|
998
|
+
attr_accessor account_id: ::String
|
|
999
|
+
attr_accessor resource_arn: ::String
|
|
1000
|
+
attr_accessor deployment_arn: ::String
|
|
1001
|
+
attr_accessor resource_type: ("AWS::ApiGateway::Stage" | "AWS::CloudFront::Distribution" | "AWS::EC2::EIP" | "AWS::ElasticLoadBalancingV2::LoadBalancer::application" | "AWS::ElasticLoadBalancing::LoadBalancer" | "AWS::WAFv2::WebACL" | "AWS::Shield::Protection" | "AWS::ShieldRegional::Protection")
|
|
1002
|
+
attr_accessor updated_at: ::Time
|
|
1003
|
+
attr_accessor out_of_sync_reasons: Types::OutOfSyncReasonsView
|
|
1004
|
+
attr_accessor remediation_issues: Types::RemediationIssuesView
|
|
1005
|
+
attr_accessor evaluated_at: ::Time
|
|
1006
|
+
SENSITIVE: []
|
|
1007
|
+
end
|
|
1008
|
+
|
|
1009
|
+
class RuleReference
|
|
1010
|
+
attr_accessor rule_identifier: ::String
|
|
1011
|
+
SENSITIVE: []
|
|
1012
|
+
end
|
|
1013
|
+
|
|
1014
|
+
class RuleSummary
|
|
1015
|
+
attr_accessor rule_id: ::String
|
|
1016
|
+
attr_accessor rule_arn: ::String
|
|
1017
|
+
attr_accessor rule_name: ::String
|
|
1018
|
+
attr_accessor firewall_type: ("WAF")
|
|
1019
|
+
attr_accessor rule_type: ("CONFIGURATION" | "INSPECTION")
|
|
1020
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
1021
|
+
attr_accessor version: ::String
|
|
1022
|
+
attr_accessor has_published_version: bool
|
|
1023
|
+
attr_accessor updated_at: ::Time
|
|
1024
|
+
SENSITIVE: []
|
|
1025
|
+
end
|
|
1026
|
+
|
|
1027
|
+
class ScopeConfiguration
|
|
1028
|
+
attr_accessor account_filter: Types::AccountFilter
|
|
1029
|
+
attr_accessor resource_scopes: ::Hash[("AWS::ApiGateway::Stage" | "AWS::CloudFront::Distribution" | "AWS::EC2::EIP" | "AWS::ElasticLoadBalancingV2::LoadBalancer::application" | "AWS::ElasticLoadBalancing::LoadBalancer"), Types::ResourceScope]
|
|
1030
|
+
SENSITIVE: []
|
|
1031
|
+
end
|
|
1032
|
+
|
|
1033
|
+
class ScopeReference
|
|
1034
|
+
attr_accessor scope_identifier: ::String
|
|
1035
|
+
SENSITIVE: []
|
|
1036
|
+
end
|
|
1037
|
+
|
|
1038
|
+
class ScopeSummary
|
|
1039
|
+
attr_accessor scope_id: ::String
|
|
1040
|
+
attr_accessor scope_arn: ::String
|
|
1041
|
+
attr_accessor scope_name: ::String
|
|
1042
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
1043
|
+
attr_accessor version: ::String
|
|
1044
|
+
attr_accessor has_published_version: bool
|
|
1045
|
+
attr_accessor updated_at: ::Time
|
|
1046
|
+
SENSITIVE: []
|
|
1047
|
+
end
|
|
1048
|
+
|
|
1049
|
+
class ServiceQuotaExceededException
|
|
1050
|
+
attr_accessor message: ::String
|
|
1051
|
+
attr_accessor quota_code: ::String
|
|
1052
|
+
attr_accessor service_code: ::String
|
|
1053
|
+
attr_accessor resource_id: ::String
|
|
1054
|
+
attr_accessor resource_type: ::String
|
|
1055
|
+
SENSITIVE: []
|
|
1056
|
+
end
|
|
1057
|
+
|
|
1058
|
+
class ServiceUnavailableException
|
|
1059
|
+
attr_accessor message: ::String
|
|
1060
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
1061
|
+
SENSITIVE: []
|
|
1062
|
+
end
|
|
1063
|
+
|
|
1064
|
+
class TagPolicyViolationException
|
|
1065
|
+
attr_accessor message: ::String
|
|
1066
|
+
SENSITIVE: []
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
class TagResourceInput
|
|
1070
|
+
attr_accessor resource_arn: ::String
|
|
1071
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1072
|
+
SENSITIVE: []
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1075
|
+
class TagResourceOutput < Aws::EmptyStructure
|
|
1076
|
+
end
|
|
1077
|
+
|
|
1078
|
+
class TemplateOrRuleReference
|
|
1079
|
+
attr_accessor template_identifier: ::String
|
|
1080
|
+
attr_accessor rule_identifier: ::String
|
|
1081
|
+
attr_accessor unknown: untyped
|
|
1082
|
+
SENSITIVE: []
|
|
1083
|
+
|
|
1084
|
+
class TemplateIdentifier < TemplateOrRuleReference
|
|
1085
|
+
end
|
|
1086
|
+
class RuleIdentifier < TemplateOrRuleReference
|
|
1087
|
+
end
|
|
1088
|
+
class Unknown < TemplateOrRuleReference
|
|
1089
|
+
end
|
|
1090
|
+
end
|
|
1091
|
+
|
|
1092
|
+
class TemplateSummary
|
|
1093
|
+
attr_accessor template_id: ::String
|
|
1094
|
+
attr_accessor template_arn: ::String
|
|
1095
|
+
attr_accessor template_name: ::String
|
|
1096
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
1097
|
+
attr_accessor version: ::String
|
|
1098
|
+
attr_accessor has_published_version: bool
|
|
1099
|
+
attr_accessor firewall_type: ("WAF")
|
|
1100
|
+
attr_accessor updated_at: ::Time
|
|
1101
|
+
SENSITIVE: []
|
|
1102
|
+
end
|
|
1103
|
+
|
|
1104
|
+
class ThrottlingException
|
|
1105
|
+
attr_accessor message: ::String
|
|
1106
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
1107
|
+
SENSITIVE: []
|
|
1108
|
+
end
|
|
1109
|
+
|
|
1110
|
+
class Unit < Aws::EmptyStructure
|
|
1111
|
+
end
|
|
1112
|
+
|
|
1113
|
+
class UntagResourceInput
|
|
1114
|
+
attr_accessor resource_arn: ::String
|
|
1115
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
1116
|
+
SENSITIVE: []
|
|
1117
|
+
end
|
|
1118
|
+
|
|
1119
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
|
1120
|
+
end
|
|
1121
|
+
|
|
1122
|
+
class UpdateDeploymentInput
|
|
1123
|
+
attr_accessor deployment_identifier: ::String
|
|
1124
|
+
attr_accessor update_token: ::String
|
|
1125
|
+
attr_accessor deployment_description: ::String
|
|
1126
|
+
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
|
1127
|
+
attr_accessor associated_policy_list: ::Array[Types::PolicyReference]
|
|
1128
|
+
attr_accessor associated_scope_list: ::Array[Types::ScopeReference]
|
|
1129
|
+
attr_accessor is_published: bool
|
|
1130
|
+
attr_accessor client_token: ::String
|
|
1131
|
+
SENSITIVE: []
|
|
1132
|
+
end
|
|
1133
|
+
|
|
1134
|
+
class UpdateDeploymentOutput
|
|
1135
|
+
attr_accessor deployment_id: ::String
|
|
1136
|
+
attr_accessor deployment_arn: ::String
|
|
1137
|
+
attr_accessor deployment_name: ::String
|
|
1138
|
+
attr_accessor deployment_description: ::String
|
|
1139
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
1140
|
+
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
|
1141
|
+
attr_accessor associated_policy_list: ::Array[Types::AssociatedPolicy]
|
|
1142
|
+
attr_accessor associated_scope_list: ::Array[Types::AssociatedScope]
|
|
1143
|
+
attr_accessor version: ::String
|
|
1144
|
+
attr_accessor update_token: ::String
|
|
1145
|
+
attr_accessor is_snapshot: bool
|
|
1146
|
+
attr_accessor has_published_version: bool
|
|
1147
|
+
attr_accessor deployment_coverage: ::Array[Types::DeploymentCoverageEntry]
|
|
1148
|
+
attr_accessor warnings: ::Array[Types::DeploymentWarningEntry]
|
|
1149
|
+
attr_accessor updated_at: ::Time
|
|
1150
|
+
SENSITIVE: []
|
|
1151
|
+
end
|
|
1152
|
+
|
|
1153
|
+
class UpdatePolicyInput
|
|
1154
|
+
attr_accessor policy_identifier: ::String
|
|
1155
|
+
attr_accessor update_token: ::String
|
|
1156
|
+
attr_accessor policy_description: ::String
|
|
1157
|
+
attr_accessor priority: ::Integer
|
|
1158
|
+
attr_accessor associated_template_and_rule_list: ::Array[Types::TemplateOrRuleReference]
|
|
1159
|
+
attr_accessor policy_configuration: Types::PolicyConfiguration
|
|
1160
|
+
attr_accessor is_published: bool
|
|
1161
|
+
attr_accessor client_token: ::String
|
|
1162
|
+
SENSITIVE: []
|
|
1163
|
+
end
|
|
1164
|
+
|
|
1165
|
+
class UpdatePolicyOutput
|
|
1166
|
+
attr_accessor policy_id: ::String
|
|
1167
|
+
attr_accessor policy_arn: ::String
|
|
1168
|
+
attr_accessor policy_name: ::String
|
|
1169
|
+
attr_accessor policy_description: ::String
|
|
1170
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
1171
|
+
attr_accessor priority: ::Integer
|
|
1172
|
+
attr_accessor associated_template_and_rule_list: ::Array[Types::AssociatedTemplateOrRule]
|
|
1173
|
+
attr_accessor version: ::String
|
|
1174
|
+
attr_accessor update_token: ::String
|
|
1175
|
+
attr_accessor is_snapshot: bool
|
|
1176
|
+
attr_accessor has_published_version: bool
|
|
1177
|
+
attr_accessor firewall_type: ("WAF" | "SHIELD_ADVANCED")
|
|
1178
|
+
attr_accessor policy_configuration: Types::PolicyConfiguration
|
|
1179
|
+
attr_accessor updated_at: ::Time
|
|
1180
|
+
SENSITIVE: []
|
|
1181
|
+
end
|
|
1182
|
+
|
|
1183
|
+
class UpdateRuleInput
|
|
1184
|
+
attr_accessor rule_identifier: ::String
|
|
1185
|
+
attr_accessor update_token: ::String
|
|
1186
|
+
attr_accessor rule_type: ("CONFIGURATION" | "INSPECTION")
|
|
1187
|
+
attr_accessor rule_description: ::String
|
|
1188
|
+
attr_accessor configuration: untyped
|
|
1189
|
+
attr_accessor is_published: bool
|
|
1190
|
+
attr_accessor client_token: ::String
|
|
1191
|
+
SENSITIVE: []
|
|
1192
|
+
end
|
|
1193
|
+
|
|
1194
|
+
class UpdateRuleOutput
|
|
1195
|
+
attr_accessor rule_id: ::String
|
|
1196
|
+
attr_accessor rule_arn: ::String
|
|
1197
|
+
attr_accessor rule_name: ::String
|
|
1198
|
+
attr_accessor firewall_type: ("WAF")
|
|
1199
|
+
attr_accessor rule_type: ("CONFIGURATION" | "INSPECTION")
|
|
1200
|
+
attr_accessor rule_description: ::String
|
|
1201
|
+
attr_accessor configuration: untyped
|
|
1202
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
1203
|
+
attr_accessor version: ::String
|
|
1204
|
+
attr_accessor update_token: ::String
|
|
1205
|
+
attr_accessor is_snapshot: bool
|
|
1206
|
+
attr_accessor has_published_version: bool
|
|
1207
|
+
attr_accessor updated_at: ::Time
|
|
1208
|
+
SENSITIVE: []
|
|
1209
|
+
end
|
|
1210
|
+
|
|
1211
|
+
class UpdateScopeInput
|
|
1212
|
+
attr_accessor scope_identifier: ::String
|
|
1213
|
+
attr_accessor update_token: ::String
|
|
1214
|
+
attr_accessor scope_description: ::String
|
|
1215
|
+
attr_accessor scope_configuration: Types::ScopeConfiguration
|
|
1216
|
+
attr_accessor is_published: bool
|
|
1217
|
+
attr_accessor client_token: ::String
|
|
1218
|
+
SENSITIVE: []
|
|
1219
|
+
end
|
|
1220
|
+
|
|
1221
|
+
class UpdateScopeOutput
|
|
1222
|
+
attr_accessor scope_id: ::String
|
|
1223
|
+
attr_accessor scope_arn: ::String
|
|
1224
|
+
attr_accessor scope_name: ::String
|
|
1225
|
+
attr_accessor scope_description: ::String
|
|
1226
|
+
attr_accessor scope_configuration: Types::ScopeConfiguration
|
|
1227
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
1228
|
+
attr_accessor version: ::String
|
|
1229
|
+
attr_accessor update_token: ::String
|
|
1230
|
+
attr_accessor is_snapshot: bool
|
|
1231
|
+
attr_accessor has_published_version: bool
|
|
1232
|
+
attr_accessor updated_at: ::Time
|
|
1233
|
+
SENSITIVE: []
|
|
1234
|
+
end
|
|
1235
|
+
|
|
1236
|
+
class UpdateTemplateInput
|
|
1237
|
+
attr_accessor template_identifier: ::String
|
|
1238
|
+
attr_accessor update_token: ::String
|
|
1239
|
+
attr_accessor template_description: ::String
|
|
1240
|
+
attr_accessor associated_rule_list: ::Array[Types::RuleReference]
|
|
1241
|
+
attr_accessor is_published: bool
|
|
1242
|
+
attr_accessor client_token: ::String
|
|
1243
|
+
SENSITIVE: []
|
|
1244
|
+
end
|
|
1245
|
+
|
|
1246
|
+
class UpdateTemplateOutput
|
|
1247
|
+
attr_accessor template_id: ::String
|
|
1248
|
+
attr_accessor template_arn: ::String
|
|
1249
|
+
attr_accessor template_name: ::String
|
|
1250
|
+
attr_accessor template_description: ::String
|
|
1251
|
+
attr_accessor status: ("DRAFT" | "ACTIVE" | "DISABLED")
|
|
1252
|
+
attr_accessor version: ::String
|
|
1253
|
+
attr_accessor associated_rule_list: ::Array[Types::AssociatedRule]
|
|
1254
|
+
attr_accessor update_token: ::String
|
|
1255
|
+
attr_accessor is_snapshot: bool
|
|
1256
|
+
attr_accessor has_published_version: bool
|
|
1257
|
+
attr_accessor firewall_type: ("WAF")
|
|
1258
|
+
attr_accessor updated_at: ::Time
|
|
1259
|
+
SENSITIVE: []
|
|
1260
|
+
end
|
|
1261
|
+
|
|
1262
|
+
class ValidationException
|
|
1263
|
+
attr_accessor message: ::String
|
|
1264
|
+
attr_accessor reason: ("ACCOUNT_NOT_ONBOARDED" | "FIELD_VALIDATION_FAILED" | "OTHER")
|
|
1265
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
|
1266
|
+
SENSITIVE: []
|
|
1267
|
+
end
|
|
1268
|
+
|
|
1269
|
+
class ValidationExceptionField
|
|
1270
|
+
attr_accessor name: ::String
|
|
1271
|
+
attr_accessor message: ::String
|
|
1272
|
+
SENSITIVE: []
|
|
1273
|
+
end
|
|
1274
|
+
|
|
1275
|
+
class WafConfig
|
|
1276
|
+
attr_accessor existing_customer_web_acl_resolution: ("RETROFIT" | "OVERRIDE_ASSOCIATION" | "NO_REMEDIATION")
|
|
1277
|
+
attr_accessor conflict_resolution: ("MERGE_WHERE_APPLICABLE")
|
|
1278
|
+
SENSITIVE: []
|
|
1279
|
+
end
|
|
1280
|
+
end
|
|
1281
|
+
end
|