aws-sdk-networkfirewall 1.81.0 → 1.82.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkfirewall/client.rb +1691 -61
- data/lib/aws-sdk-networkfirewall/client_api.rb +777 -0
- data/lib/aws-sdk-networkfirewall/types.rb +2286 -189
- data/lib/aws-sdk-networkfirewall.rb +1 -1
- data/sig/client.rbs +466 -0
- data/sig/types.rbs +488 -0
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -107,6 +107,20 @@ module Aws::NetworkFirewall
|
|
|
107
107
|
SENSITIVE: []
|
|
108
108
|
end
|
|
109
109
|
|
|
110
|
+
class AttachRuleGroupsToProxyConfigurationRequest
|
|
111
|
+
attr_accessor proxy_configuration_name: ::String
|
|
112
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
113
|
+
attr_accessor rule_groups: ::Array[Types::ProxyRuleGroupAttachment]
|
|
114
|
+
attr_accessor update_token: ::String
|
|
115
|
+
SENSITIVE: []
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
class AttachRuleGroupsToProxyConfigurationResponse
|
|
119
|
+
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
|
120
|
+
attr_accessor update_token: ::String
|
|
121
|
+
SENSITIVE: []
|
|
122
|
+
end
|
|
123
|
+
|
|
110
124
|
class Attachment
|
|
111
125
|
attr_accessor subnet_id: ::String
|
|
112
126
|
attr_accessor endpoint_id: ::String
|
|
@@ -183,6 +197,82 @@ module Aws::NetworkFirewall
|
|
|
183
197
|
SENSITIVE: []
|
|
184
198
|
end
|
|
185
199
|
|
|
200
|
+
class CreateProxyConfigurationRequest
|
|
201
|
+
attr_accessor proxy_configuration_name: ::String
|
|
202
|
+
attr_accessor description: ::String
|
|
203
|
+
attr_accessor rule_group_names: ::Array[::String]
|
|
204
|
+
attr_accessor rule_group_arns: ::Array[::String]
|
|
205
|
+
attr_accessor default_rule_phase_actions: Types::ProxyConfigDefaultRulePhaseActionsRequest
|
|
206
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
207
|
+
SENSITIVE: []
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
class CreateProxyConfigurationResponse
|
|
211
|
+
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
|
212
|
+
attr_accessor update_token: ::String
|
|
213
|
+
SENSITIVE: []
|
|
214
|
+
end
|
|
215
|
+
|
|
216
|
+
class CreateProxyRequest
|
|
217
|
+
attr_accessor proxy_name: ::String
|
|
218
|
+
attr_accessor nat_gateway_id: ::String
|
|
219
|
+
attr_accessor proxy_configuration_name: ::String
|
|
220
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
221
|
+
attr_accessor listener_properties: ::Array[Types::ListenerPropertyRequest]
|
|
222
|
+
attr_accessor tls_intercept_properties: Types::TlsInterceptPropertiesRequest
|
|
223
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
224
|
+
SENSITIVE: []
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
class CreateProxyResponse
|
|
228
|
+
attr_accessor proxy: Types::Proxy
|
|
229
|
+
attr_accessor update_token: ::String
|
|
230
|
+
SENSITIVE: []
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
class CreateProxyRule
|
|
234
|
+
attr_accessor proxy_rule_name: ::String
|
|
235
|
+
attr_accessor description: ::String
|
|
236
|
+
attr_accessor action: ("ALLOW" | "DENY" | "ALERT")
|
|
237
|
+
attr_accessor conditions: ::Array[Types::ProxyRuleCondition]
|
|
238
|
+
attr_accessor insert_position: ::Integer
|
|
239
|
+
SENSITIVE: []
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
class CreateProxyRuleGroupRequest
|
|
243
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
244
|
+
attr_accessor description: ::String
|
|
245
|
+
attr_accessor rules: Types::ProxyRulesByRequestPhase
|
|
246
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
247
|
+
SENSITIVE: []
|
|
248
|
+
end
|
|
249
|
+
|
|
250
|
+
class CreateProxyRuleGroupResponse
|
|
251
|
+
attr_accessor proxy_rule_group: Types::ProxyRuleGroup
|
|
252
|
+
attr_accessor update_token: ::String
|
|
253
|
+
SENSITIVE: []
|
|
254
|
+
end
|
|
255
|
+
|
|
256
|
+
class CreateProxyRulesByRequestPhase
|
|
257
|
+
attr_accessor pre_dns: ::Array[Types::CreateProxyRule]
|
|
258
|
+
attr_accessor pre_request: ::Array[Types::CreateProxyRule]
|
|
259
|
+
attr_accessor post_response: ::Array[Types::CreateProxyRule]
|
|
260
|
+
SENSITIVE: []
|
|
261
|
+
end
|
|
262
|
+
|
|
263
|
+
class CreateProxyRulesRequest
|
|
264
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
265
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
266
|
+
attr_accessor rules: Types::CreateProxyRulesByRequestPhase
|
|
267
|
+
SENSITIVE: []
|
|
268
|
+
end
|
|
269
|
+
|
|
270
|
+
class CreateProxyRulesResponse
|
|
271
|
+
attr_accessor proxy_rule_group: Types::ProxyRuleGroup
|
|
272
|
+
attr_accessor update_token: ::String
|
|
273
|
+
SENSITIVE: []
|
|
274
|
+
end
|
|
275
|
+
|
|
186
276
|
class CreateRuleGroupRequest
|
|
187
277
|
attr_accessor rule_group_name: ::String
|
|
188
278
|
attr_accessor rule_group: Types::RuleGroup
|
|
@@ -275,6 +365,56 @@ module Aws::NetworkFirewall
|
|
|
275
365
|
SENSITIVE: []
|
|
276
366
|
end
|
|
277
367
|
|
|
368
|
+
class DeleteProxyConfigurationRequest
|
|
369
|
+
attr_accessor proxy_configuration_name: ::String
|
|
370
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
371
|
+
SENSITIVE: []
|
|
372
|
+
end
|
|
373
|
+
|
|
374
|
+
class DeleteProxyConfigurationResponse
|
|
375
|
+
attr_accessor proxy_configuration_name: ::String
|
|
376
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
377
|
+
SENSITIVE: []
|
|
378
|
+
end
|
|
379
|
+
|
|
380
|
+
class DeleteProxyRequest
|
|
381
|
+
attr_accessor nat_gateway_id: ::String
|
|
382
|
+
attr_accessor proxy_name: ::String
|
|
383
|
+
attr_accessor proxy_arn: ::String
|
|
384
|
+
SENSITIVE: []
|
|
385
|
+
end
|
|
386
|
+
|
|
387
|
+
class DeleteProxyResponse
|
|
388
|
+
attr_accessor nat_gateway_id: ::String
|
|
389
|
+
attr_accessor proxy_name: ::String
|
|
390
|
+
attr_accessor proxy_arn: ::String
|
|
391
|
+
SENSITIVE: []
|
|
392
|
+
end
|
|
393
|
+
|
|
394
|
+
class DeleteProxyRuleGroupRequest
|
|
395
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
396
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
397
|
+
SENSITIVE: []
|
|
398
|
+
end
|
|
399
|
+
|
|
400
|
+
class DeleteProxyRuleGroupResponse
|
|
401
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
402
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
403
|
+
SENSITIVE: []
|
|
404
|
+
end
|
|
405
|
+
|
|
406
|
+
class DeleteProxyRulesRequest
|
|
407
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
408
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
409
|
+
attr_accessor rules: ::Array[::String]
|
|
410
|
+
SENSITIVE: []
|
|
411
|
+
end
|
|
412
|
+
|
|
413
|
+
class DeleteProxyRulesResponse
|
|
414
|
+
attr_accessor proxy_rule_group: Types::ProxyRuleGroup
|
|
415
|
+
SENSITIVE: []
|
|
416
|
+
end
|
|
417
|
+
|
|
278
418
|
class DeleteResourcePolicyRequest
|
|
279
419
|
attr_accessor resource_arn: ::String
|
|
280
420
|
SENSITIVE: []
|
|
@@ -394,6 +534,76 @@ module Aws::NetworkFirewall
|
|
|
394
534
|
SENSITIVE: []
|
|
395
535
|
end
|
|
396
536
|
|
|
537
|
+
class DescribeProxyConfigurationRequest
|
|
538
|
+
attr_accessor proxy_configuration_name: ::String
|
|
539
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
540
|
+
SENSITIVE: []
|
|
541
|
+
end
|
|
542
|
+
|
|
543
|
+
class DescribeProxyConfigurationResponse
|
|
544
|
+
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
|
545
|
+
attr_accessor update_token: ::String
|
|
546
|
+
SENSITIVE: []
|
|
547
|
+
end
|
|
548
|
+
|
|
549
|
+
class DescribeProxyRequest
|
|
550
|
+
attr_accessor proxy_name: ::String
|
|
551
|
+
attr_accessor proxy_arn: ::String
|
|
552
|
+
SENSITIVE: []
|
|
553
|
+
end
|
|
554
|
+
|
|
555
|
+
class DescribeProxyResource
|
|
556
|
+
attr_accessor proxy_name: ::String
|
|
557
|
+
attr_accessor proxy_arn: ::String
|
|
558
|
+
attr_accessor proxy_configuration_name: ::String
|
|
559
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
560
|
+
attr_accessor nat_gateway_id: ::String
|
|
561
|
+
attr_accessor proxy_state: ("ATTACHING" | "ATTACHED" | "DETACHING" | "DETACHED" | "ATTACH_FAILED" | "DETACH_FAILED")
|
|
562
|
+
attr_accessor proxy_modify_state: ("MODIFYING" | "COMPLETED" | "FAILED")
|
|
563
|
+
attr_accessor listener_properties: ::Array[Types::ListenerProperty]
|
|
564
|
+
attr_accessor tls_intercept_properties: Types::TlsInterceptProperties
|
|
565
|
+
attr_accessor vpc_endpoint_service_name: ::String
|
|
566
|
+
attr_accessor private_dns_name: ::String
|
|
567
|
+
attr_accessor create_time: ::Time
|
|
568
|
+
attr_accessor delete_time: ::Time
|
|
569
|
+
attr_accessor update_time: ::Time
|
|
570
|
+
attr_accessor failure_code: ::String
|
|
571
|
+
attr_accessor failure_message: ::String
|
|
572
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
573
|
+
SENSITIVE: []
|
|
574
|
+
end
|
|
575
|
+
|
|
576
|
+
class DescribeProxyResponse
|
|
577
|
+
attr_accessor proxy: Types::DescribeProxyResource
|
|
578
|
+
attr_accessor update_token: ::String
|
|
579
|
+
SENSITIVE: []
|
|
580
|
+
end
|
|
581
|
+
|
|
582
|
+
class DescribeProxyRuleGroupRequest
|
|
583
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
584
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
585
|
+
SENSITIVE: []
|
|
586
|
+
end
|
|
587
|
+
|
|
588
|
+
class DescribeProxyRuleGroupResponse
|
|
589
|
+
attr_accessor proxy_rule_group: Types::ProxyRuleGroup
|
|
590
|
+
attr_accessor update_token: ::String
|
|
591
|
+
SENSITIVE: []
|
|
592
|
+
end
|
|
593
|
+
|
|
594
|
+
class DescribeProxyRuleRequest
|
|
595
|
+
attr_accessor proxy_rule_name: ::String
|
|
596
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
597
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
598
|
+
SENSITIVE: []
|
|
599
|
+
end
|
|
600
|
+
|
|
601
|
+
class DescribeProxyRuleResponse
|
|
602
|
+
attr_accessor proxy_rule: Types::ProxyRule
|
|
603
|
+
attr_accessor update_token: ::String
|
|
604
|
+
SENSITIVE: []
|
|
605
|
+
end
|
|
606
|
+
|
|
397
607
|
class DescribeResourcePolicyRequest
|
|
398
608
|
attr_accessor resource_arn: ::String
|
|
399
609
|
SENSITIVE: []
|
|
@@ -478,6 +688,21 @@ module Aws::NetworkFirewall
|
|
|
478
688
|
SENSITIVE: []
|
|
479
689
|
end
|
|
480
690
|
|
|
691
|
+
class DetachRuleGroupsFromProxyConfigurationRequest
|
|
692
|
+
attr_accessor proxy_configuration_name: ::String
|
|
693
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
694
|
+
attr_accessor rule_group_names: ::Array[::String]
|
|
695
|
+
attr_accessor rule_group_arns: ::Array[::String]
|
|
696
|
+
attr_accessor update_token: ::String
|
|
697
|
+
SENSITIVE: []
|
|
698
|
+
end
|
|
699
|
+
|
|
700
|
+
class DetachRuleGroupsFromProxyConfigurationResponse
|
|
701
|
+
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
|
702
|
+
attr_accessor update_token: ::String
|
|
703
|
+
SENSITIVE: []
|
|
704
|
+
end
|
|
705
|
+
|
|
481
706
|
class Dimension
|
|
482
707
|
attr_accessor value: ::String
|
|
483
708
|
SENSITIVE: []
|
|
@@ -800,6 +1025,42 @@ module Aws::NetworkFirewall
|
|
|
800
1025
|
SENSITIVE: []
|
|
801
1026
|
end
|
|
802
1027
|
|
|
1028
|
+
class ListProxiesRequest
|
|
1029
|
+
attr_accessor next_token: ::String
|
|
1030
|
+
attr_accessor max_results: ::Integer
|
|
1031
|
+
SENSITIVE: []
|
|
1032
|
+
end
|
|
1033
|
+
|
|
1034
|
+
class ListProxiesResponse
|
|
1035
|
+
attr_accessor proxies: ::Array[Types::ProxyMetadata]
|
|
1036
|
+
attr_accessor next_token: ::String
|
|
1037
|
+
SENSITIVE: []
|
|
1038
|
+
end
|
|
1039
|
+
|
|
1040
|
+
class ListProxyConfigurationsRequest
|
|
1041
|
+
attr_accessor next_token: ::String
|
|
1042
|
+
attr_accessor max_results: ::Integer
|
|
1043
|
+
SENSITIVE: []
|
|
1044
|
+
end
|
|
1045
|
+
|
|
1046
|
+
class ListProxyConfigurationsResponse
|
|
1047
|
+
attr_accessor proxy_configurations: ::Array[Types::ProxyConfigurationMetadata]
|
|
1048
|
+
attr_accessor next_token: ::String
|
|
1049
|
+
SENSITIVE: []
|
|
1050
|
+
end
|
|
1051
|
+
|
|
1052
|
+
class ListProxyRuleGroupsRequest
|
|
1053
|
+
attr_accessor next_token: ::String
|
|
1054
|
+
attr_accessor max_results: ::Integer
|
|
1055
|
+
SENSITIVE: []
|
|
1056
|
+
end
|
|
1057
|
+
|
|
1058
|
+
class ListProxyRuleGroupsResponse
|
|
1059
|
+
attr_accessor proxy_rule_groups: ::Array[Types::ProxyRuleGroupMetadata]
|
|
1060
|
+
attr_accessor next_token: ::String
|
|
1061
|
+
SENSITIVE: []
|
|
1062
|
+
end
|
|
1063
|
+
|
|
803
1064
|
class ListRuleGroupsRequest
|
|
804
1065
|
attr_accessor next_token: ::String
|
|
805
1066
|
attr_accessor max_results: ::Integer
|
|
@@ -854,6 +1115,18 @@ module Aws::NetworkFirewall
|
|
|
854
1115
|
SENSITIVE: []
|
|
855
1116
|
end
|
|
856
1117
|
|
|
1118
|
+
class ListenerProperty
|
|
1119
|
+
attr_accessor port: ::Integer
|
|
1120
|
+
attr_accessor type: ("HTTP" | "HTTPS")
|
|
1121
|
+
SENSITIVE: []
|
|
1122
|
+
end
|
|
1123
|
+
|
|
1124
|
+
class ListenerPropertyRequest
|
|
1125
|
+
attr_accessor port: ::Integer
|
|
1126
|
+
attr_accessor type: ("HTTP" | "HTTPS")
|
|
1127
|
+
SENSITIVE: []
|
|
1128
|
+
end
|
|
1129
|
+
|
|
857
1130
|
class LogDestinationConfig
|
|
858
1131
|
attr_accessor log_type: ("ALERT" | "FLOW" | "TLS")
|
|
859
1132
|
attr_accessor log_destination_type: ("S3" | "CloudWatchLogs" | "KinesisDataFirehose")
|
|
@@ -903,6 +1176,127 @@ module Aws::NetworkFirewall
|
|
|
903
1176
|
SENSITIVE: []
|
|
904
1177
|
end
|
|
905
1178
|
|
|
1179
|
+
class Proxy
|
|
1180
|
+
attr_accessor create_time: ::Time
|
|
1181
|
+
attr_accessor delete_time: ::Time
|
|
1182
|
+
attr_accessor update_time: ::Time
|
|
1183
|
+
attr_accessor failure_code: ::String
|
|
1184
|
+
attr_accessor failure_message: ::String
|
|
1185
|
+
attr_accessor proxy_state: ("ATTACHING" | "ATTACHED" | "DETACHING" | "DETACHED" | "ATTACH_FAILED" | "DETACH_FAILED")
|
|
1186
|
+
attr_accessor proxy_modify_state: ("MODIFYING" | "COMPLETED" | "FAILED")
|
|
1187
|
+
attr_accessor nat_gateway_id: ::String
|
|
1188
|
+
attr_accessor proxy_configuration_name: ::String
|
|
1189
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
1190
|
+
attr_accessor proxy_name: ::String
|
|
1191
|
+
attr_accessor proxy_arn: ::String
|
|
1192
|
+
attr_accessor listener_properties: ::Array[Types::ListenerProperty]
|
|
1193
|
+
attr_accessor tls_intercept_properties: Types::TlsInterceptProperties
|
|
1194
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
1195
|
+
SENSITIVE: []
|
|
1196
|
+
end
|
|
1197
|
+
|
|
1198
|
+
class ProxyConfigDefaultRulePhaseActionsRequest
|
|
1199
|
+
attr_accessor pre_dns: ("ALLOW" | "DENY" | "ALERT")
|
|
1200
|
+
attr_accessor pre_request: ("ALLOW" | "DENY" | "ALERT")
|
|
1201
|
+
attr_accessor post_response: ("ALLOW" | "DENY" | "ALERT")
|
|
1202
|
+
SENSITIVE: []
|
|
1203
|
+
end
|
|
1204
|
+
|
|
1205
|
+
class ProxyConfigRuleGroup
|
|
1206
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
1207
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
1208
|
+
attr_accessor type: ::String
|
|
1209
|
+
attr_accessor priority: ::Integer
|
|
1210
|
+
SENSITIVE: []
|
|
1211
|
+
end
|
|
1212
|
+
|
|
1213
|
+
class ProxyConfiguration
|
|
1214
|
+
attr_accessor proxy_configuration_name: ::String
|
|
1215
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
1216
|
+
attr_accessor description: ::String
|
|
1217
|
+
attr_accessor create_time: ::Time
|
|
1218
|
+
attr_accessor delete_time: ::Time
|
|
1219
|
+
attr_accessor rule_groups: ::Array[Types::ProxyConfigRuleGroup]
|
|
1220
|
+
attr_accessor default_rule_phase_actions: Types::ProxyConfigDefaultRulePhaseActionsRequest
|
|
1221
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
1222
|
+
SENSITIVE: []
|
|
1223
|
+
end
|
|
1224
|
+
|
|
1225
|
+
class ProxyConfigurationMetadata
|
|
1226
|
+
attr_accessor name: ::String
|
|
1227
|
+
attr_accessor arn: ::String
|
|
1228
|
+
SENSITIVE: []
|
|
1229
|
+
end
|
|
1230
|
+
|
|
1231
|
+
class ProxyMetadata
|
|
1232
|
+
attr_accessor name: ::String
|
|
1233
|
+
attr_accessor arn: ::String
|
|
1234
|
+
SENSITIVE: []
|
|
1235
|
+
end
|
|
1236
|
+
|
|
1237
|
+
class ProxyRule
|
|
1238
|
+
attr_accessor proxy_rule_name: ::String
|
|
1239
|
+
attr_accessor description: ::String
|
|
1240
|
+
attr_accessor action: ("ALLOW" | "DENY" | "ALERT")
|
|
1241
|
+
attr_accessor conditions: ::Array[Types::ProxyRuleCondition]
|
|
1242
|
+
SENSITIVE: []
|
|
1243
|
+
end
|
|
1244
|
+
|
|
1245
|
+
class ProxyRuleCondition
|
|
1246
|
+
attr_accessor condition_operator: ::String
|
|
1247
|
+
attr_accessor condition_key: ::String
|
|
1248
|
+
attr_accessor condition_values: ::Array[::String]
|
|
1249
|
+
SENSITIVE: []
|
|
1250
|
+
end
|
|
1251
|
+
|
|
1252
|
+
class ProxyRuleGroup
|
|
1253
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
1254
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
1255
|
+
attr_accessor create_time: ::Time
|
|
1256
|
+
attr_accessor delete_time: ::Time
|
|
1257
|
+
attr_accessor rules: Types::ProxyRulesByRequestPhase
|
|
1258
|
+
attr_accessor description: ::String
|
|
1259
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
1260
|
+
SENSITIVE: []
|
|
1261
|
+
end
|
|
1262
|
+
|
|
1263
|
+
class ProxyRuleGroupAttachment
|
|
1264
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
1265
|
+
attr_accessor insert_position: ::Integer
|
|
1266
|
+
SENSITIVE: []
|
|
1267
|
+
end
|
|
1268
|
+
|
|
1269
|
+
class ProxyRuleGroupMetadata
|
|
1270
|
+
attr_accessor name: ::String
|
|
1271
|
+
attr_accessor arn: ::String
|
|
1272
|
+
SENSITIVE: []
|
|
1273
|
+
end
|
|
1274
|
+
|
|
1275
|
+
class ProxyRuleGroupPriority
|
|
1276
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
1277
|
+
attr_accessor new_position: ::Integer
|
|
1278
|
+
SENSITIVE: []
|
|
1279
|
+
end
|
|
1280
|
+
|
|
1281
|
+
class ProxyRuleGroupPriorityResult
|
|
1282
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
1283
|
+
attr_accessor priority: ::Integer
|
|
1284
|
+
SENSITIVE: []
|
|
1285
|
+
end
|
|
1286
|
+
|
|
1287
|
+
class ProxyRulePriority
|
|
1288
|
+
attr_accessor proxy_rule_name: ::String
|
|
1289
|
+
attr_accessor new_position: ::Integer
|
|
1290
|
+
SENSITIVE: []
|
|
1291
|
+
end
|
|
1292
|
+
|
|
1293
|
+
class ProxyRulesByRequestPhase
|
|
1294
|
+
attr_accessor pre_dns: ::Array[Types::ProxyRule]
|
|
1295
|
+
attr_accessor pre_request: ::Array[Types::ProxyRule]
|
|
1296
|
+
attr_accessor post_response: ::Array[Types::ProxyRule]
|
|
1297
|
+
SENSITIVE: []
|
|
1298
|
+
end
|
|
1299
|
+
|
|
906
1300
|
class PublishMetricAction
|
|
907
1301
|
attr_accessor dimensions: ::Array[Types::Dimension]
|
|
908
1302
|
SENSITIVE: []
|
|
@@ -1224,6 +1618,18 @@ module Aws::NetworkFirewall
|
|
|
1224
1618
|
SENSITIVE: []
|
|
1225
1619
|
end
|
|
1226
1620
|
|
|
1621
|
+
class TlsInterceptProperties
|
|
1622
|
+
attr_accessor pca_arn: ::String
|
|
1623
|
+
attr_accessor tls_intercept_mode: ("ENABLED" | "DISABLED")
|
|
1624
|
+
SENSITIVE: []
|
|
1625
|
+
end
|
|
1626
|
+
|
|
1627
|
+
class TlsInterceptPropertiesRequest
|
|
1628
|
+
attr_accessor pca_arn: ::String
|
|
1629
|
+
attr_accessor tls_intercept_mode: ("ENABLED" | "DISABLED")
|
|
1630
|
+
SENSITIVE: []
|
|
1631
|
+
end
|
|
1632
|
+
|
|
1227
1633
|
class TransitGatewayAttachmentSyncState
|
|
1228
1634
|
attr_accessor attachment_id: ::String
|
|
1229
1635
|
attr_accessor transit_gateway_attachment_status: ("CREATING" | "DELETING" | "DELETED" | "FAILED" | "ERROR" | "READY" | "PENDING_ACCEPTANCE" | "REJECTING" | "REJECTED")
|
|
@@ -1379,6 +1785,88 @@ module Aws::NetworkFirewall
|
|
|
1379
1785
|
SENSITIVE: []
|
|
1380
1786
|
end
|
|
1381
1787
|
|
|
1788
|
+
class UpdateProxyConfigurationRequest
|
|
1789
|
+
attr_accessor proxy_configuration_name: ::String
|
|
1790
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
1791
|
+
attr_accessor default_rule_phase_actions: Types::ProxyConfigDefaultRulePhaseActionsRequest
|
|
1792
|
+
attr_accessor update_token: ::String
|
|
1793
|
+
SENSITIVE: []
|
|
1794
|
+
end
|
|
1795
|
+
|
|
1796
|
+
class UpdateProxyConfigurationResponse
|
|
1797
|
+
attr_accessor proxy_configuration: Types::ProxyConfiguration
|
|
1798
|
+
attr_accessor update_token: ::String
|
|
1799
|
+
SENSITIVE: []
|
|
1800
|
+
end
|
|
1801
|
+
|
|
1802
|
+
class UpdateProxyRequest
|
|
1803
|
+
attr_accessor nat_gateway_id: ::String
|
|
1804
|
+
attr_accessor proxy_name: ::String
|
|
1805
|
+
attr_accessor proxy_arn: ::String
|
|
1806
|
+
attr_accessor listener_properties_to_add: ::Array[Types::ListenerPropertyRequest]
|
|
1807
|
+
attr_accessor listener_properties_to_remove: ::Array[Types::ListenerPropertyRequest]
|
|
1808
|
+
attr_accessor tls_intercept_properties: Types::TlsInterceptPropertiesRequest
|
|
1809
|
+
attr_accessor update_token: ::String
|
|
1810
|
+
SENSITIVE: []
|
|
1811
|
+
end
|
|
1812
|
+
|
|
1813
|
+
class UpdateProxyResponse
|
|
1814
|
+
attr_accessor proxy: Types::Proxy
|
|
1815
|
+
attr_accessor update_token: ::String
|
|
1816
|
+
SENSITIVE: []
|
|
1817
|
+
end
|
|
1818
|
+
|
|
1819
|
+
class UpdateProxyRuleGroupPrioritiesRequest
|
|
1820
|
+
attr_accessor proxy_configuration_name: ::String
|
|
1821
|
+
attr_accessor proxy_configuration_arn: ::String
|
|
1822
|
+
attr_accessor rule_groups: ::Array[Types::ProxyRuleGroupPriority]
|
|
1823
|
+
attr_accessor update_token: ::String
|
|
1824
|
+
SENSITIVE: []
|
|
1825
|
+
end
|
|
1826
|
+
|
|
1827
|
+
class UpdateProxyRuleGroupPrioritiesResponse
|
|
1828
|
+
attr_accessor proxy_rule_groups: ::Array[Types::ProxyRuleGroupPriorityResult]
|
|
1829
|
+
attr_accessor update_token: ::String
|
|
1830
|
+
SENSITIVE: []
|
|
1831
|
+
end
|
|
1832
|
+
|
|
1833
|
+
class UpdateProxyRulePrioritiesRequest
|
|
1834
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
1835
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
1836
|
+
attr_accessor rule_group_request_phase: ("PRE_DNS" | "PRE_REQ" | "POST_RES")
|
|
1837
|
+
attr_accessor rules: ::Array[Types::ProxyRulePriority]
|
|
1838
|
+
attr_accessor update_token: ::String
|
|
1839
|
+
SENSITIVE: []
|
|
1840
|
+
end
|
|
1841
|
+
|
|
1842
|
+
class UpdateProxyRulePrioritiesResponse
|
|
1843
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
1844
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
1845
|
+
attr_accessor rule_group_request_phase: ("PRE_DNS" | "PRE_REQ" | "POST_RES")
|
|
1846
|
+
attr_accessor rules: ::Array[Types::ProxyRulePriority]
|
|
1847
|
+
attr_accessor update_token: ::String
|
|
1848
|
+
SENSITIVE: []
|
|
1849
|
+
end
|
|
1850
|
+
|
|
1851
|
+
class UpdateProxyRuleRequest
|
|
1852
|
+
attr_accessor proxy_rule_group_name: ::String
|
|
1853
|
+
attr_accessor proxy_rule_group_arn: ::String
|
|
1854
|
+
attr_accessor proxy_rule_name: ::String
|
|
1855
|
+
attr_accessor description: ::String
|
|
1856
|
+
attr_accessor action: ("ALLOW" | "DENY" | "ALERT")
|
|
1857
|
+
attr_accessor add_conditions: ::Array[Types::ProxyRuleCondition]
|
|
1858
|
+
attr_accessor remove_conditions: ::Array[Types::ProxyRuleCondition]
|
|
1859
|
+
attr_accessor update_token: ::String
|
|
1860
|
+
SENSITIVE: []
|
|
1861
|
+
end
|
|
1862
|
+
|
|
1863
|
+
class UpdateProxyRuleResponse
|
|
1864
|
+
attr_accessor proxy_rule: Types::ProxyRule
|
|
1865
|
+
attr_accessor removed_conditions: ::Array[Types::ProxyRuleCondition]
|
|
1866
|
+
attr_accessor update_token: ::String
|
|
1867
|
+
SENSITIVE: []
|
|
1868
|
+
end
|
|
1869
|
+
|
|
1382
1870
|
class UpdateRuleGroupRequest
|
|
1383
1871
|
attr_accessor update_token: ::String
|
|
1384
1872
|
attr_accessor rule_group_arn: ::String
|