@aws-sdk/client-network-firewall 3.936.0 → 3.940.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +183 -7
- package/dist-cjs/index.js +1000 -42
- package/dist-es/NetworkFirewall.js +44 -0
- package/dist-es/commands/AttachRuleGroupsToProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/CreateProxyCommand.js +16 -0
- package/dist-es/commands/CreateProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/CreateProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/CreateProxyRulesCommand.js +16 -0
- package/dist-es/commands/DeleteProxyCommand.js +16 -0
- package/dist-es/commands/DeleteProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/DeleteProxyRulesCommand.js +16 -0
- package/dist-es/commands/DescribeProxyCommand.js +16 -0
- package/dist-es/commands/DescribeProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/DescribeProxyRuleCommand.js +16 -0
- package/dist-es/commands/DescribeProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/DetachRuleGroupsFromProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/ListProxiesCommand.js +16 -0
- package/dist-es/commands/ListProxyConfigurationsCommand.js +16 -0
- package/dist-es/commands/ListProxyRuleGroupsCommand.js +16 -0
- package/dist-es/commands/UpdateProxyCommand.js +16 -0
- package/dist-es/commands/UpdateProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRuleCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRuleGroupPrioritiesCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRulePrioritiesCommand.js +16 -0
- package/dist-es/commands/index.js +22 -0
- package/dist-es/models/enums.js +31 -0
- package/dist-es/pagination/ListProxiesPaginator.js +4 -0
- package/dist-es/pagination/ListProxyConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/ListProxyRuleGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +649 -42
- package/dist-types/NetworkFirewall.d.ts +162 -0
- package/dist-types/NetworkFirewallClient.d.ts +24 -2
- package/dist-types/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +136 -0
- package/dist-types/commands/CreateProxyCommand.d.ts +159 -0
- package/dist-types/commands/CreateProxyConfigurationCommand.d.ts +151 -0
- package/dist-types/commands/CreateProxyRuleGroupCommand.d.ts +225 -0
- package/dist-types/commands/CreateProxyRulesCommand.d.ts +216 -0
- package/dist-types/commands/DeleteProxyCommand.d.ts +108 -0
- package/dist-types/commands/DeleteProxyConfigurationCommand.d.ts +102 -0
- package/dist-types/commands/DeleteProxyRuleGroupCommand.d.ts +102 -0
- package/dist-types/commands/DeleteProxyRulesCommand.d.ts +167 -0
- package/dist-types/commands/DescribeProxyCommand.d.ts +133 -0
- package/dist-types/commands/DescribeProxyConfigurationCommand.d.ts +127 -0
- package/dist-types/commands/DescribeProxyRuleCommand.d.ts +116 -0
- package/dist-types/commands/DescribeProxyRuleGroupCommand.d.ts +164 -0
- package/dist-types/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +136 -0
- package/dist-types/commands/ListProxiesCommand.d.ts +106 -0
- package/dist-types/commands/ListProxyConfigurationsCommand.d.ts +109 -0
- package/dist-types/commands/ListProxyRuleGroupsCommand.d.ts +109 -0
- package/dist-types/commands/UpdateProxyCommand.d.ts +152 -0
- package/dist-types/commands/UpdateProxyConfigurationCommand.d.ts +133 -0
- package/dist-types/commands/UpdateProxyRuleCommand.d.ts +146 -0
- package/dist-types/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +114 -0
- package/dist-types/commands/UpdateProxyRulePrioritiesCommand.d.ts +118 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/models/enums.d.ts +79 -0
- package/dist-types/models/models_0.d.ts +1834 -264
- package/dist-types/pagination/ListProxiesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProxyConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProxyRuleGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +104 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +394 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProxyRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeProxyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeProxyRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProxiesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListProxyConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProxyRuleGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyRulePrioritiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/dist-types/ts3.4/models/models_0.d.ts +372 -4
- package/dist-types/ts3.4/pagination/ListProxiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProxyConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProxyRuleGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +104 -0
- package/package.json +5 -5
|
@@ -2,6 +2,7 @@ const _A = "Address";
|
|
|
2
2
|
const _AAZ = "AssociateAvailabilityZones";
|
|
3
3
|
const _AAZR = "AssociateAvailabilityZonesRequest";
|
|
4
4
|
const _AAZRs = "AssociateAvailabilityZonesResponse";
|
|
5
|
+
const _AC = "AddConditions";
|
|
5
6
|
const _ACIDRC = "AvailableCIDRCount";
|
|
6
7
|
const _AD = "ActionDefinition";
|
|
7
8
|
const _ADd = "AddressDefinition";
|
|
@@ -16,6 +17,9 @@ const _ANFTGAR = "AcceptNetworkFirewallTransitGatewayAttachmentRequest";
|
|
|
16
17
|
const _ANFTGARc = "AcceptNetworkFirewallTransitGatewayAttachmentResponse";
|
|
17
18
|
const _AR = "AnalysisReport";
|
|
18
19
|
const _ARG = "AnalyzeRuleGroup";
|
|
20
|
+
const _ARGTPC = "AttachRuleGroupsToProxyConfiguration";
|
|
21
|
+
const _ARGTPCR = "AttachRuleGroupsToProxyConfigurationRequest";
|
|
22
|
+
const _ARGTPCRt = "AttachRuleGroupsToProxyConfigurationResponse";
|
|
19
23
|
const _ARI = "AnalysisReportId";
|
|
20
24
|
const _ARL = "AnalysisResultList";
|
|
21
25
|
const _ARR = "AnalysisReportResults";
|
|
@@ -34,14 +38,14 @@ const _AZM = "AvailabilityZoneMappings";
|
|
|
34
38
|
const _AZMv = "AvailabilityZoneMapping";
|
|
35
39
|
const _AZMva = "AvailabilityZoneMetadata";
|
|
36
40
|
const _AZSS = "AZSyncState";
|
|
37
|
-
const _Ac = "
|
|
38
|
-
const _Act = "
|
|
41
|
+
const _Ac = "Action";
|
|
42
|
+
const _Act = "Actions";
|
|
39
43
|
const _Ad = "Addresses";
|
|
40
44
|
const _Ag = "Age";
|
|
41
45
|
const _Ar = "Arn";
|
|
42
46
|
const _At = "Attachment";
|
|
43
47
|
const _BC = "ByteCount";
|
|
44
|
-
const _C = "
|
|
48
|
+
const _C = "Conditions";
|
|
45
49
|
const _CA = "CustomAction";
|
|
46
50
|
const _CAA = "CertificateAuthorityArn";
|
|
47
51
|
const _CAe = "CertificateArn";
|
|
@@ -58,6 +62,23 @@ const _CFR = "CreateFirewallRequest";
|
|
|
58
62
|
const _CFRr = "CreateFirewallResponse";
|
|
59
63
|
const _CIDR = "CIDRs";
|
|
60
64
|
const _CIDRS = "CIDRSummary";
|
|
65
|
+
const _CK = "ConditionKey";
|
|
66
|
+
const _CO = "ConditionOperator";
|
|
67
|
+
const _CP = "CreateProxy";
|
|
68
|
+
const _CPC = "CreateProxyConfiguration";
|
|
69
|
+
const _CPCR = "CreateProxyConfigurationRequest";
|
|
70
|
+
const _CPCRr = "CreateProxyConfigurationResponse";
|
|
71
|
+
const _CPR = "CreateProxyRequest";
|
|
72
|
+
const _CPRBRP = "CreateProxyRulesByRequestPhase";
|
|
73
|
+
const _CPRG = "CreateProxyRuleGroup";
|
|
74
|
+
const _CPRGR = "CreateProxyRuleGroupRequest";
|
|
75
|
+
const _CPRGRr = "CreateProxyRuleGroupResponse";
|
|
76
|
+
const _CPRL = "CreateProxyRuleList";
|
|
77
|
+
const _CPRR = "CreateProxyRulesRequest";
|
|
78
|
+
const _CPRRr = "CreateProxyRulesResponse";
|
|
79
|
+
const _CPRr = "CreateProxyResponse";
|
|
80
|
+
const _CPRre = "CreateProxyRule";
|
|
81
|
+
const _CPRrea = "CreateProxyRules";
|
|
61
82
|
const _CRG = "CreateRuleGroup";
|
|
62
83
|
const _CRGR = "CreateRuleGroupRequest";
|
|
63
84
|
const _CRGRr = "CreateRuleGroupResponse";
|
|
@@ -65,13 +86,16 @@ const _CS = "CertificateSerial";
|
|
|
65
86
|
const _CSRC = "ConsumedStatelessRuleCapacity";
|
|
66
87
|
const _CSRCo = "ConsumedStatefulRuleCapacity";
|
|
67
88
|
const _CSSS = "ConfigurationSyncStateSummary";
|
|
89
|
+
const _CT = "CreateTime";
|
|
68
90
|
const _CTLSIC = "CreateTLSInspectionConfiguration";
|
|
69
91
|
const _CTLSICR = "CreateTLSInspectionConfigurationRequest";
|
|
70
92
|
const _CTLSICRr = "CreateTLSInspectionConfigurationResponse";
|
|
71
93
|
const _CUS = "CapacityUsageSummary";
|
|
94
|
+
const _CV = "ConditionValues";
|
|
72
95
|
const _CVEA = "CreateVpcEndpointAssociation";
|
|
73
96
|
const _CVEAR = "CreateVpcEndpointAssociationRequest";
|
|
74
97
|
const _CVEARr = "CreateVpcEndpointAssociationResponse";
|
|
98
|
+
const _Ca = "Capacity";
|
|
75
99
|
const _Ce = "Certificates";
|
|
76
100
|
const _Co = "Count";
|
|
77
101
|
const _Con = "Config";
|
|
@@ -105,10 +129,38 @@ const _DNFTGA = "DeleteNetworkFirewallTransitGatewayAttachment";
|
|
|
105
129
|
const _DNFTGAR = "DeleteNetworkFirewallTransitGatewayAttachmentRequest";
|
|
106
130
|
const _DNFTGARe = "DeleteNetworkFirewallTransitGatewayAttachmentResponse";
|
|
107
131
|
const _DP = "DeleteProtection";
|
|
132
|
+
const _DPC = "DeleteProxyConfiguration";
|
|
133
|
+
const _DPCR = "DeleteProxyConfigurationRequest";
|
|
134
|
+
const _DPCRe = "DeleteProxyConfigurationResponse";
|
|
135
|
+
const _DPCRes = "DescribeProxyConfigurationRequest";
|
|
136
|
+
const _DPCResc = "DescribeProxyConfigurationResponse";
|
|
137
|
+
const _DPCe = "DescribeProxyConfiguration";
|
|
138
|
+
const _DPR = "DeleteProxyRequest";
|
|
139
|
+
const _DPRG = "DeleteProxyRuleGroup";
|
|
140
|
+
const _DPRGR = "DeleteProxyRuleGroupRequest";
|
|
141
|
+
const _DPRGRe = "DeleteProxyRuleGroupResponse";
|
|
142
|
+
const _DPRGRes = "DescribeProxyRuleGroupRequest";
|
|
143
|
+
const _DPRGResc = "DescribeProxyRuleGroupResponse";
|
|
144
|
+
const _DPRGe = "DescribeProxyRuleGroup";
|
|
145
|
+
const _DPRR = "DeleteProxyRulesRequest";
|
|
146
|
+
const _DPRRe = "DeleteProxyRulesResponse";
|
|
147
|
+
const _DPRRes = "DescribeProxyRuleRequest";
|
|
148
|
+
const _DPRResc = "DescribeProxyRuleResponse";
|
|
149
|
+
const _DPRe = "DeleteProxyResponse";
|
|
150
|
+
const _DPRel = "DeleteProxyRules";
|
|
151
|
+
const _DPRes = "DescribeProxyRequest";
|
|
152
|
+
const _DPResc = "DescribeProxyResource";
|
|
153
|
+
const _DPRescr = "DescribeProxyResponse";
|
|
154
|
+
const _DPRescri = "DescribeProxyRule";
|
|
108
155
|
const _DPe = "DestinationPort";
|
|
156
|
+
const _DPel = "DeleteProxy";
|
|
109
157
|
const _DPes = "DestinationPorts";
|
|
158
|
+
const _DPesc = "DescribeProxy";
|
|
110
159
|
const _DR = "DryRun";
|
|
111
160
|
const _DRG = "DeleteRuleGroup";
|
|
161
|
+
const _DRGFPC = "DetachRuleGroupsFromProxyConfiguration";
|
|
162
|
+
const _DRGFPCR = "DetachRuleGroupsFromProxyConfigurationRequest";
|
|
163
|
+
const _DRGFPCRe = "DetachRuleGroupsFromProxyConfigurationResponse";
|
|
112
164
|
const _DRGM = "DescribeRuleGroupMetadata";
|
|
113
165
|
const _DRGMR = "DescribeRuleGroupMetadataRequest";
|
|
114
166
|
const _DRGMRe = "DescribeRuleGroupMetadataResponse";
|
|
@@ -121,6 +173,7 @@ const _DRGSR = "DescribeRuleGroupSummaryRequest";
|
|
|
121
173
|
const _DRGSRe = "DescribeRuleGroupSummaryResponse";
|
|
122
174
|
const _DRGe = "DescribeRuleGroup";
|
|
123
175
|
const _DRP = "DeleteResourcePolicy";
|
|
176
|
+
const _DRPA = "DefaultRulePhaseActions";
|
|
124
177
|
const _DRPR = "DeleteResourcePolicyRequest";
|
|
125
178
|
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
126
179
|
const _DRPRes = "DescribeResourcePolicyRequest";
|
|
@@ -129,6 +182,7 @@ const _DRPe = "DescribeResourcePolicy";
|
|
|
129
182
|
const _DS = "DisassociateSubnets";
|
|
130
183
|
const _DSR = "DisassociateSubnetsRequest";
|
|
131
184
|
const _DSRi = "DisassociateSubnetsResponse";
|
|
185
|
+
const _DT = "DeleteTime";
|
|
132
186
|
const _DTI = "DeepThreatInspection";
|
|
133
187
|
const _DTLSIC = "DeleteTLSInspectionConfiguration";
|
|
134
188
|
const _DTLSICR = "DeleteTLSInspectionConfigurationRequest";
|
|
@@ -158,10 +212,12 @@ const _ETLSSH = "EnableTLSSessionHolding";
|
|
|
158
212
|
const _F = "Firewall";
|
|
159
213
|
const _FA = "FirstAccessed";
|
|
160
214
|
const _FAi = "FirewallArn";
|
|
215
|
+
const _FC = "FailureCode";
|
|
161
216
|
const _FF = "FlowFilter";
|
|
162
217
|
const _FFl = "FlowFilters";
|
|
163
218
|
const _FI = "FirewallId";
|
|
164
|
-
const _FM = "
|
|
219
|
+
const _FM = "FailureMessage";
|
|
220
|
+
const _FMi = "FirewallMetadata";
|
|
165
221
|
const _FN = "FirewallName";
|
|
166
222
|
const _FO = "FlowOperation";
|
|
167
223
|
const _FOI = "FlowOperationId";
|
|
@@ -194,6 +250,7 @@ const _H = "Hits";
|
|
|
194
250
|
const _He = "Header";
|
|
195
251
|
const _ICE = "InsufficientCapacityException";
|
|
196
252
|
const _IOE = "InvalidOperationException";
|
|
253
|
+
const _IP = "InsertPosition";
|
|
197
254
|
const _IPAT = "IPAddressType";
|
|
198
255
|
const _IPS = "IPSet";
|
|
199
256
|
const _IPSM = "IPSetMetadata";
|
|
@@ -236,6 +293,21 @@ const _LFR = "ListFirewallsRequest";
|
|
|
236
293
|
const _LFRi = "ListFirewallsResponse";
|
|
237
294
|
const _LMT = "LastModifiedTime";
|
|
238
295
|
const _LN = "ListingName";
|
|
296
|
+
const _LP = "ListenerProperties";
|
|
297
|
+
const _LPC = "ListProxyConfigurations";
|
|
298
|
+
const _LPCR = "ListProxyConfigurationsRequest";
|
|
299
|
+
const _LPCRi = "ListProxyConfigurationsResponse";
|
|
300
|
+
const _LPR = "ListenerPropertyRequest";
|
|
301
|
+
const _LPRG = "ListProxyRuleGroups";
|
|
302
|
+
const _LPRGR = "ListProxyRuleGroupsRequest";
|
|
303
|
+
const _LPRGRi = "ListProxyRuleGroupsResponse";
|
|
304
|
+
const _LPRi = "ListProxiesRequest";
|
|
305
|
+
const _LPRis = "ListProxiesResponse";
|
|
306
|
+
const _LPRist = "ListenerPropertiesRequest";
|
|
307
|
+
const _LPTA = "ListenerPropertiesToAdd";
|
|
308
|
+
const _LPTR = "ListenerPropertiesToRemove";
|
|
309
|
+
const _LPi = "ListenerProperty";
|
|
310
|
+
const _LPis = "ListProxies";
|
|
239
311
|
const _LRG = "ListRuleGroups";
|
|
240
312
|
const _LRGR = "ListRuleGroupsRequest";
|
|
241
313
|
const _LRGRi = "ListRuleGroupsResponse";
|
|
@@ -258,38 +330,85 @@ const _Ma = "Masks";
|
|
|
258
330
|
const _Me = "Metadata";
|
|
259
331
|
const _Ms = "Msg";
|
|
260
332
|
const _N = "Name";
|
|
333
|
+
const _NGI = "NatGatewayId";
|
|
261
334
|
const _NOA = "NumberOfAssociations";
|
|
335
|
+
const _NP = "NewPosition";
|
|
262
336
|
const _NT = "NextToken";
|
|
263
337
|
const _O = "Override";
|
|
264
338
|
const _P = "Protocol";
|
|
265
|
-
const
|
|
339
|
+
const _PA = "ProxyArn";
|
|
340
|
+
const _PAc = "PcaArn";
|
|
341
|
+
const _PC = "ProxyConfiguration";
|
|
342
|
+
const _PCA = "ProxyConfigurationArn";
|
|
343
|
+
const _PCDRPAR = "ProxyConfigDefaultRulePhaseActionsRequest";
|
|
344
|
+
const _PCM = "ProxyConfigurationMetadata";
|
|
345
|
+
const _PCN = "ProxyConfigurationName";
|
|
346
|
+
const _PCRG = "ProxyConfigRuleGroup";
|
|
347
|
+
const _PCRGS = "ProxyConfigRuleGroupSet";
|
|
348
|
+
const _PCa = "PacketCount";
|
|
349
|
+
const _PCr = "ProxyConfigurations";
|
|
350
|
+
const _PDNS = "PreDNS";
|
|
351
|
+
const _PDNSN = "PrivateDNSName";
|
|
266
352
|
const _PI = "ProductId";
|
|
353
|
+
const _PM = "ProxyMetadata";
|
|
267
354
|
const _PMA = "PublishMetricAction";
|
|
355
|
+
const _PMS = "ProxyModifyState";
|
|
356
|
+
const _PN = "ProxyName";
|
|
268
357
|
const _POS = "PerObjectStatus";
|
|
269
|
-
const _PR = "
|
|
270
|
-
const
|
|
358
|
+
const _PR = "ProxyRule";
|
|
359
|
+
const _PRBRP = "ProxyRulesByRequestPhase";
|
|
360
|
+
const _PRC = "ProxyRuleCondition";
|
|
361
|
+
const _PRCL = "ProxyRuleConditionList";
|
|
362
|
+
const _PREQUEST = "PreREQUEST";
|
|
363
|
+
const _PRESPONSE = "PostRESPONSE";
|
|
364
|
+
const _PRG = "ProxyRuleGroup";
|
|
365
|
+
const _PRGA = "ProxyRuleGroupArn";
|
|
366
|
+
const _PRGAL = "ProxyRuleGroupAttachmentList";
|
|
367
|
+
const _PRGAr = "ProxyRuleGroupAttachment";
|
|
368
|
+
const _PRGM = "ProxyRuleGroupMetadata";
|
|
369
|
+
const _PRGN = "ProxyRuleGroupName";
|
|
370
|
+
const _PRGP = "ProxyRuleGroupPriority";
|
|
371
|
+
const _PRGPL = "ProxyRuleGroupPriorityList";
|
|
372
|
+
const _PRGPR = "ProxyRuleGroupPriorityResult";
|
|
373
|
+
const _PRGPRL = "ProxyRuleGroupPriorityResultList";
|
|
374
|
+
const _PRGr = "ProxyRuleGroups";
|
|
375
|
+
const _PRL = "ProxyRuleList";
|
|
376
|
+
const _PRN = "ProxyRuleName";
|
|
377
|
+
const _PRP = "ProxyRulePriority";
|
|
378
|
+
const _PRPL = "ProxyRulePriorityList";
|
|
271
379
|
const _PRPR = "PutResourcePolicyRequest";
|
|
272
380
|
const _PRPRu = "PutResourcePolicyResponse";
|
|
273
|
-
const
|
|
274
|
-
const
|
|
275
|
-
const
|
|
381
|
+
const _PRPu = "PutResourcePolicy";
|
|
382
|
+
const _PRo = "PortRange";
|
|
383
|
+
const _PRor = "PortRanges";
|
|
384
|
+
const _PS = "ProxyState";
|
|
385
|
+
const _PSo = "PortSet";
|
|
386
|
+
const _PSor = "PortSets";
|
|
276
387
|
const _PV = "PolicyVariables";
|
|
277
388
|
const _Po = "Policy";
|
|
278
|
-
const
|
|
389
|
+
const _Por = "Port";
|
|
390
|
+
const _Pr = "Proxy";
|
|
279
391
|
const _Pri = "Priority";
|
|
392
|
+
const _Pro = "Protocols";
|
|
393
|
+
const _Prox = "Proxies";
|
|
280
394
|
const _R = "Rules";
|
|
281
395
|
const _RA = "ResourceArn";
|
|
282
396
|
const _RAe = "ReferenceArn";
|
|
397
|
+
const _RC = "RemoveConditions";
|
|
283
398
|
const _RCIDRC = "ResolvedCIDRCount";
|
|
399
|
+
const _RCe = "RemovedConditions";
|
|
284
400
|
const _RD = "RuleDefinition";
|
|
285
|
-
const _RG = "
|
|
286
|
-
const _RGA = "
|
|
401
|
+
const _RG = "RuleGroups";
|
|
402
|
+
const _RGA = "RuleGroupArns";
|
|
403
|
+
const _RGAu = "RuleGroupArn";
|
|
287
404
|
const _RGI = "RuleGroupId";
|
|
288
405
|
const _RGM = "RuleGroupMetadata";
|
|
289
|
-
const _RGN = "
|
|
406
|
+
const _RGN = "RuleGroupNames";
|
|
407
|
+
const _RGNu = "RuleGroupName";
|
|
290
408
|
const _RGR = "RuleGroupResponse";
|
|
409
|
+
const _RGRP = "RuleGroupRequestPhase";
|
|
291
410
|
const _RGS = "RuleGroupStatus";
|
|
292
|
-
const _RGu = "
|
|
411
|
+
const _RGu = "RuleGroup";
|
|
293
412
|
const _RNFE = "ResourceNotFoundException";
|
|
294
413
|
const _RNFTGA = "RejectNetworkFirewallTransitGatewayAttachment";
|
|
295
414
|
const _RNFTGAR = "RejectNetworkFirewallTransitGatewayAttachmentRequest";
|
|
@@ -378,6 +497,9 @@ const _TGAS = "TransitGatewayAttachmentStatus";
|
|
|
378
497
|
const _TGASS = "TransitGatewayAttachmentSyncState";
|
|
379
498
|
const _TGI = "TransitGatewayId";
|
|
380
499
|
const _TGOAI = "TransitGatewayOwnerAccountId";
|
|
500
|
+
const _TIM = "TlsInterceptMode";
|
|
501
|
+
const _TIP = "TlsInterceptProperties";
|
|
502
|
+
const _TIPR = "TlsInterceptPropertiesRequest";
|
|
381
503
|
const _TITS = "TcpIdleTimeoutSeconds";
|
|
382
504
|
const _TK = "TagKeys";
|
|
383
505
|
const _TL = "TagList";
|
|
@@ -423,6 +545,21 @@ const _ULC = "UpdateLoggingConfiguration";
|
|
|
423
545
|
const _ULCR = "UpdateLoggingConfigurationRequest";
|
|
424
546
|
const _ULCRp = "UpdateLoggingConfigurationResponse";
|
|
425
547
|
const _UOE = "UnsupportedOperationException";
|
|
548
|
+
const _UP = "UpdateProxy";
|
|
549
|
+
const _UPC = "UpdateProxyConfiguration";
|
|
550
|
+
const _UPCR = "UpdateProxyConfigurationRequest";
|
|
551
|
+
const _UPCRp = "UpdateProxyConfigurationResponse";
|
|
552
|
+
const _UPR = "UpdateProxyRequest";
|
|
553
|
+
const _UPRGP = "UpdateProxyRuleGroupPriorities";
|
|
554
|
+
const _UPRGPR = "UpdateProxyRuleGroupPrioritiesRequest";
|
|
555
|
+
const _UPRGPRp = "UpdateProxyRuleGroupPrioritiesResponse";
|
|
556
|
+
const _UPRP = "UpdateProxyRulePriorities";
|
|
557
|
+
const _UPRPR = "UpdateProxyRulePrioritiesRequest";
|
|
558
|
+
const _UPRPRp = "UpdateProxyRulePrioritiesResponse";
|
|
559
|
+
const _UPRR = "UpdateProxyRuleRequest";
|
|
560
|
+
const _UPRRp = "UpdateProxyRuleResponse";
|
|
561
|
+
const _UPRp = "UpdateProxyResponse";
|
|
562
|
+
const _UPRpd = "UpdateProxyRule";
|
|
426
563
|
const _UR = "UntagResource";
|
|
427
564
|
const _URG = "UpdateRuleGroup";
|
|
428
565
|
const _URGR = "UpdateRuleGroupRequest";
|
|
@@ -438,6 +575,7 @@ const _UT = "UpdateToken";
|
|
|
438
575
|
const _UTLSIC = "UpdateTLSInspectionConfiguration";
|
|
439
576
|
const _UTLSICR = "UpdateTLSInspectionConfigurationRequest";
|
|
440
577
|
const _UTLSICRp = "UpdateTLSInspectionConfigurationResponse";
|
|
578
|
+
const _UTp = "UpdateTime";
|
|
441
579
|
const _V = "Value";
|
|
442
580
|
const _VEA = "VpcEndpointAssociation";
|
|
443
581
|
const _VEAA = "VpcEndpointAssociationArn";
|
|
@@ -446,6 +584,7 @@ const _VEAM = "VpcEndpointAssociationMetadata";
|
|
|
446
584
|
const _VEAS = "VpcEndpointAssociationStatus";
|
|
447
585
|
const _VEAp = "VpcEndpointAssociations";
|
|
448
586
|
const _VEI = "VpcEndpointId";
|
|
587
|
+
const _VESN = "VpcEndpointServiceName";
|
|
449
588
|
const _VI = "VpcId";
|
|
450
589
|
const _VIp = "VpcIds";
|
|
451
590
|
const _VN = "VendorName";
|
|
@@ -534,6 +673,22 @@ export var AssociateSubnetsResponse = [
|
|
|
534
673
|
[0, 0, () => SubnetMappings, 0],
|
|
535
674
|
];
|
|
536
675
|
export var Attachment = [3, n0, _At, 0, [_SI, _EI, _S, _SMt], [0, 0, 0, 0]];
|
|
676
|
+
export var AttachRuleGroupsToProxyConfigurationRequest = [
|
|
677
|
+
3,
|
|
678
|
+
n0,
|
|
679
|
+
_ARGTPCR,
|
|
680
|
+
0,
|
|
681
|
+
[_PCN, _PCA, _RG, _UT],
|
|
682
|
+
[0, 0, () => ProxyRuleGroupAttachmentList, 0],
|
|
683
|
+
];
|
|
684
|
+
export var AttachRuleGroupsToProxyConfigurationResponse = [
|
|
685
|
+
3,
|
|
686
|
+
n0,
|
|
687
|
+
_ARGTPCRt,
|
|
688
|
+
0,
|
|
689
|
+
[_PC, _UT],
|
|
690
|
+
[() => ProxyConfiguration, 0],
|
|
691
|
+
];
|
|
537
692
|
export var AvailabilityZoneMapping = [3, n0, _AZMv, 0, [_AZ], [0]];
|
|
538
693
|
export var AvailabilityZoneMetadata = [3, n0, _AZMva, 0, [_IPAT], [0]];
|
|
539
694
|
export var AZSyncState = [3, n0, _AZSS, 0, [_At], [() => Attachment]];
|
|
@@ -594,12 +749,78 @@ export var CreateFirewallResponse = [
|
|
|
594
749
|
[_F, _FS],
|
|
595
750
|
[() => Firewall, () => FirewallStatus],
|
|
596
751
|
];
|
|
752
|
+
export var CreateProxyConfigurationRequest = [
|
|
753
|
+
3,
|
|
754
|
+
n0,
|
|
755
|
+
_CPCR,
|
|
756
|
+
0,
|
|
757
|
+
[_PCN, _De, _RGN, _RGA, _DRPA, _T],
|
|
758
|
+
[0, 0, 64 | 0, 64 | 0, () => ProxyConfigDefaultRulePhaseActionsRequest, () => TagList],
|
|
759
|
+
];
|
|
760
|
+
export var CreateProxyConfigurationResponse = [
|
|
761
|
+
3,
|
|
762
|
+
n0,
|
|
763
|
+
_CPCRr,
|
|
764
|
+
0,
|
|
765
|
+
[_PC, _UT],
|
|
766
|
+
[() => ProxyConfiguration, 0],
|
|
767
|
+
];
|
|
768
|
+
export var CreateProxyRequest = [
|
|
769
|
+
3,
|
|
770
|
+
n0,
|
|
771
|
+
_CPR,
|
|
772
|
+
0,
|
|
773
|
+
[_PN, _NGI, _PCN, _PCA, _LP, _TIP, _T],
|
|
774
|
+
[0, 0, 0, 0, () => ListenerPropertiesRequest, () => TlsInterceptPropertiesRequest, () => TagList],
|
|
775
|
+
];
|
|
776
|
+
export var CreateProxyResponse = [3, n0, _CPRr, 0, [_Pr, _UT], [() => Proxy, 0]];
|
|
777
|
+
export var CreateProxyRule = [
|
|
778
|
+
3,
|
|
779
|
+
n0,
|
|
780
|
+
_CPRre,
|
|
781
|
+
0,
|
|
782
|
+
[_PRN, _De, _Ac, _C, _IP],
|
|
783
|
+
[0, 0, 0, () => ProxyRuleConditionList, 1],
|
|
784
|
+
];
|
|
785
|
+
export var CreateProxyRuleGroupRequest = [
|
|
786
|
+
3,
|
|
787
|
+
n0,
|
|
788
|
+
_CPRGR,
|
|
789
|
+
0,
|
|
790
|
+
[_PRGN, _De, _R, _T],
|
|
791
|
+
[0, 0, () => ProxyRulesByRequestPhase, () => TagList],
|
|
792
|
+
];
|
|
793
|
+
export var CreateProxyRuleGroupResponse = [
|
|
794
|
+
3,
|
|
795
|
+
n0,
|
|
796
|
+
_CPRGRr,
|
|
797
|
+
0,
|
|
798
|
+
[_PRG, _UT],
|
|
799
|
+
[() => ProxyRuleGroup, 0],
|
|
800
|
+
];
|
|
801
|
+
export var CreateProxyRulesByRequestPhase = [
|
|
802
|
+
3,
|
|
803
|
+
n0,
|
|
804
|
+
_CPRBRP,
|
|
805
|
+
0,
|
|
806
|
+
[_PDNS, _PREQUEST, _PRESPONSE],
|
|
807
|
+
[() => CreateProxyRuleList, () => CreateProxyRuleList, () => CreateProxyRuleList],
|
|
808
|
+
];
|
|
809
|
+
export var CreateProxyRulesRequest = [
|
|
810
|
+
3,
|
|
811
|
+
n0,
|
|
812
|
+
_CPRR,
|
|
813
|
+
0,
|
|
814
|
+
[_PRGA, _PRGN, _R],
|
|
815
|
+
[0, 0, () => CreateProxyRulesByRequestPhase],
|
|
816
|
+
];
|
|
817
|
+
export var CreateProxyRulesResponse = [3, n0, _CPRRr, 0, [_PRG, _UT], [() => ProxyRuleGroup, 0]];
|
|
597
818
|
export var CreateRuleGroupRequest = [
|
|
598
819
|
3,
|
|
599
820
|
n0,
|
|
600
821
|
_CRGR,
|
|
601
822
|
0,
|
|
602
|
-
[
|
|
823
|
+
[_RGNu, _RGu, _R, _Ty, _De, _Ca, _T, _DR, _EC, _SMo, _ARG, _SC],
|
|
603
824
|
[
|
|
604
825
|
0,
|
|
605
826
|
() => RuleGroup,
|
|
@@ -690,9 +911,17 @@ export var DeleteNetworkFirewallTransitGatewayAttachmentResponse = [
|
|
|
690
911
|
[_TGAI, _TGAS],
|
|
691
912
|
[0, 0],
|
|
692
913
|
];
|
|
914
|
+
export var DeleteProxyConfigurationRequest = [3, n0, _DPCR, 0, [_PCN, _PCA], [0, 0]];
|
|
915
|
+
export var DeleteProxyConfigurationResponse = [3, n0, _DPCRe, 0, [_PCN, _PCA], [0, 0]];
|
|
916
|
+
export var DeleteProxyRequest = [3, n0, _DPR, 0, [_NGI, _PN, _PA], [0, 0, 0]];
|
|
917
|
+
export var DeleteProxyResponse = [3, n0, _DPRe, 0, [_NGI, _PN, _PA], [0, 0, 0]];
|
|
918
|
+
export var DeleteProxyRuleGroupRequest = [3, n0, _DPRGR, 0, [_PRGN, _PRGA], [0, 0]];
|
|
919
|
+
export var DeleteProxyRuleGroupResponse = [3, n0, _DPRGRe, 0, [_PRGN, _PRGA], [0, 0]];
|
|
920
|
+
export var DeleteProxyRulesRequest = [3, n0, _DPRR, 0, [_PRGA, _PRGN, _R], [0, 0, 64 | 0]];
|
|
921
|
+
export var DeleteProxyRulesResponse = [3, n0, _DPRRe, 0, [_PRG], [() => ProxyRuleGroup]];
|
|
693
922
|
export var DeleteResourcePolicyRequest = [3, n0, _DRPR, 0, [_RA], [0]];
|
|
694
923
|
export var DeleteResourcePolicyResponse = [3, n0, _DRPRe, 0, [], []];
|
|
695
|
-
export var DeleteRuleGroupRequest = [3, n0, _DRGR, 0, [
|
|
924
|
+
export var DeleteRuleGroupRequest = [3, n0, _DRGR, 0, [_RGNu, _RGAu, _Ty], [0, 0, 0]];
|
|
696
925
|
export var DeleteRuleGroupResponse = [3, n0, _DRGRe, 0, [_RGR], [() => RuleGroupResponse]];
|
|
697
926
|
export var DeleteTLSInspectionConfigurationRequest = [
|
|
698
927
|
3,
|
|
@@ -771,33 +1000,77 @@ export var DescribeLoggingConfigurationResponse = [
|
|
|
771
1000
|
[_FAi, _LC, _EMD],
|
|
772
1001
|
[0, () => LoggingConfiguration, 2],
|
|
773
1002
|
];
|
|
1003
|
+
export var DescribeProxyConfigurationRequest = [3, n0, _DPCRes, 0, [_PCN, _PCA], [0, 0]];
|
|
1004
|
+
export var DescribeProxyConfigurationResponse = [
|
|
1005
|
+
3,
|
|
1006
|
+
n0,
|
|
1007
|
+
_DPCResc,
|
|
1008
|
+
0,
|
|
1009
|
+
[_PC, _UT],
|
|
1010
|
+
[() => ProxyConfiguration, 0],
|
|
1011
|
+
];
|
|
1012
|
+
export var DescribeProxyRequest = [3, n0, _DPRes, 0, [_PN, _PA], [0, 0]];
|
|
1013
|
+
export var DescribeProxyResource = [
|
|
1014
|
+
3,
|
|
1015
|
+
n0,
|
|
1016
|
+
_DPResc,
|
|
1017
|
+
0,
|
|
1018
|
+
[_PN, _PA, _PCN, _PCA, _NGI, _PS, _PMS, _LP, _TIP, _VESN, _PDNSN, _CT, _DT, _UTp, _FC, _FM, _T],
|
|
1019
|
+
[0, 0, 0, 0, 0, 0, 0, () => ListenerProperties, () => TlsInterceptProperties, 0, 0, 4, 4, 4, 0, 0, () => TagList],
|
|
1020
|
+
];
|
|
1021
|
+
export var DescribeProxyResponse = [
|
|
1022
|
+
3,
|
|
1023
|
+
n0,
|
|
1024
|
+
_DPRescr,
|
|
1025
|
+
0,
|
|
1026
|
+
[_Pr, _UT],
|
|
1027
|
+
[() => DescribeProxyResource, 0],
|
|
1028
|
+
];
|
|
1029
|
+
export var DescribeProxyRuleGroupRequest = [3, n0, _DPRGRes, 0, [_PRGN, _PRGA], [0, 0]];
|
|
1030
|
+
export var DescribeProxyRuleGroupResponse = [
|
|
1031
|
+
3,
|
|
1032
|
+
n0,
|
|
1033
|
+
_DPRGResc,
|
|
1034
|
+
0,
|
|
1035
|
+
[_PRG, _UT],
|
|
1036
|
+
[() => ProxyRuleGroup, 0],
|
|
1037
|
+
];
|
|
1038
|
+
export var DescribeProxyRuleRequest = [3, n0, _DPRRes, 0, [_PRN, _PRGN, _PRGA], [0, 0, 0]];
|
|
1039
|
+
export var DescribeProxyRuleResponse = [3, n0, _DPRResc, 0, [_PR, _UT], [() => ProxyRule, 0]];
|
|
774
1040
|
export var DescribeResourcePolicyRequest = [3, n0, _DRPRes, 0, [_RA], [0]];
|
|
775
1041
|
export var DescribeResourcePolicyResponse = [3, n0, _DRPResc, 0, [_Po], [0]];
|
|
776
|
-
export var DescribeRuleGroupMetadataRequest = [3, n0, _DRGMR, 0, [
|
|
1042
|
+
export var DescribeRuleGroupMetadataRequest = [3, n0, _DRGMR, 0, [_RGNu, _RGAu, _Ty], [0, 0, 0]];
|
|
777
1043
|
export var DescribeRuleGroupMetadataResponse = [
|
|
778
1044
|
3,
|
|
779
1045
|
n0,
|
|
780
1046
|
_DRGMRe,
|
|
781
1047
|
0,
|
|
782
|
-
[
|
|
1048
|
+
[_RGAu, _RGNu, _De, _Ty, _Ca, _SRO, _LMT, _VN, _PI, _LN],
|
|
783
1049
|
[0, 0, 0, 0, 1, () => StatefulRuleOptions, 4, 0, 0, 0],
|
|
784
1050
|
];
|
|
785
|
-
export var DescribeRuleGroupRequest = [
|
|
1051
|
+
export var DescribeRuleGroupRequest = [
|
|
1052
|
+
3,
|
|
1053
|
+
n0,
|
|
1054
|
+
_DRGRes,
|
|
1055
|
+
0,
|
|
1056
|
+
[_RGNu, _RGAu, _Ty, _ARG],
|
|
1057
|
+
[0, 0, 0, 2],
|
|
1058
|
+
];
|
|
786
1059
|
export var DescribeRuleGroupResponse = [
|
|
787
1060
|
3,
|
|
788
1061
|
n0,
|
|
789
1062
|
_DRGResc,
|
|
790
1063
|
0,
|
|
791
|
-
[_UT,
|
|
1064
|
+
[_UT, _RGu, _RGR],
|
|
792
1065
|
[0, () => RuleGroup, () => RuleGroupResponse],
|
|
793
1066
|
];
|
|
794
|
-
export var DescribeRuleGroupSummaryRequest = [3, n0, _DRGSR, 0, [
|
|
1067
|
+
export var DescribeRuleGroupSummaryRequest = [3, n0, _DRGSR, 0, [_RGNu, _RGAu, _Ty], [0, 0, 0]];
|
|
795
1068
|
export var DescribeRuleGroupSummaryResponse = [
|
|
796
1069
|
3,
|
|
797
1070
|
n0,
|
|
798
1071
|
_DRGSRe,
|
|
799
1072
|
0,
|
|
800
|
-
[
|
|
1073
|
+
[_RGNu, _De, _Su],
|
|
801
1074
|
[0, 0, () => Summary],
|
|
802
1075
|
];
|
|
803
1076
|
export var DescribeTLSInspectionConfigurationRequest = [
|
|
@@ -825,6 +1098,22 @@ export var DescribeVpcEndpointAssociationResponse = [
|
|
|
825
1098
|
[_VEA, _VEAS],
|
|
826
1099
|
[() => VpcEndpointAssociation, () => VpcEndpointAssociationStatus],
|
|
827
1100
|
];
|
|
1101
|
+
export var DetachRuleGroupsFromProxyConfigurationRequest = [
|
|
1102
|
+
3,
|
|
1103
|
+
n0,
|
|
1104
|
+
_DRGFPCR,
|
|
1105
|
+
0,
|
|
1106
|
+
[_PCN, _PCA, _RGN, _RGA, _UT],
|
|
1107
|
+
[0, 0, 64 | 0, 64 | 0, 0],
|
|
1108
|
+
];
|
|
1109
|
+
export var DetachRuleGroupsFromProxyConfigurationResponse = [
|
|
1110
|
+
3,
|
|
1111
|
+
n0,
|
|
1112
|
+
_DRGFPCRe,
|
|
1113
|
+
0,
|
|
1114
|
+
[_PC, _UT],
|
|
1115
|
+
[() => ProxyConfiguration, 0],
|
|
1116
|
+
];
|
|
828
1117
|
export var Dimension = [3, n0, _Di, 0, [_V], [0]];
|
|
829
1118
|
export var DisassociateAvailabilityZonesRequest = [
|
|
830
1119
|
3,
|
|
@@ -886,7 +1175,7 @@ export var Firewall = [
|
|
|
886
1175
|
2,
|
|
887
1176
|
],
|
|
888
1177
|
];
|
|
889
|
-
export var FirewallMetadata = [3, n0,
|
|
1178
|
+
export var FirewallMetadata = [3, n0, _FMi, 0, [_FN, _FAi, _TGAI], [0, 0, 0]];
|
|
890
1179
|
export var FirewallPolicy = [
|
|
891
1180
|
3,
|
|
892
1181
|
n0,
|
|
@@ -928,7 +1217,7 @@ export var Flow = [
|
|
|
928
1217
|
n0,
|
|
929
1218
|
_Fl,
|
|
930
1219
|
0,
|
|
931
|
-
[_SA, _DA, _SP, _DPe, _P, _Ag,
|
|
1220
|
+
[_SA, _DA, _SP, _DPe, _P, _Ag, _PCa, _BC],
|
|
932
1221
|
[() => Address, () => Address, 0, 0, 0, 1, 1, 1],
|
|
933
1222
|
];
|
|
934
1223
|
export var FlowFilter = [
|
|
@@ -936,7 +1225,7 @@ export var FlowFilter = [
|
|
|
936
1225
|
n0,
|
|
937
1226
|
_FF,
|
|
938
1227
|
0,
|
|
939
|
-
[_SA, _DA, _SP, _DPe,
|
|
1228
|
+
[_SA, _DA, _SP, _DPe, _Pro],
|
|
940
1229
|
[() => Address, () => Address, 0, 0, 64 | 0],
|
|
941
1230
|
];
|
|
942
1231
|
export var FlowOperation = [3, n0, _FO, 0, [_MFAIS, _FFl], [1, () => FlowFilters]];
|
|
@@ -1049,6 +1338,8 @@ export var ListAnalysisReportsResponse = [
|
|
|
1049
1338
|
[_ARna, _NT],
|
|
1050
1339
|
[() => AnalysisReports, 0],
|
|
1051
1340
|
];
|
|
1341
|
+
export var ListenerProperty = [3, n0, _LPi, 0, [_Por, _Ty], [1, 0]];
|
|
1342
|
+
export var ListenerPropertyRequest = [3, n0, _LPR, 0, [_Por, _Ty], [1, 0]];
|
|
1052
1343
|
export var ListFirewallPoliciesRequest = [3, n0, _LFPR, 0, [_NT, _MR], [0, 1]];
|
|
1053
1344
|
export var ListFirewallPoliciesResponse = [
|
|
1054
1345
|
3,
|
|
@@ -1092,6 +1383,26 @@ export var ListFlowOperationsResponse = [
|
|
|
1092
1383
|
[_FOl, _NT],
|
|
1093
1384
|
[() => FlowOperations, 0],
|
|
1094
1385
|
];
|
|
1386
|
+
export var ListProxiesRequest = [3, n0, _LPRi, 0, [_NT, _MR], [0, 1]];
|
|
1387
|
+
export var ListProxiesResponse = [3, n0, _LPRis, 0, [_Prox, _NT], [() => Proxies, 0]];
|
|
1388
|
+
export var ListProxyConfigurationsRequest = [3, n0, _LPCR, 0, [_NT, _MR], [0, 1]];
|
|
1389
|
+
export var ListProxyConfigurationsResponse = [
|
|
1390
|
+
3,
|
|
1391
|
+
n0,
|
|
1392
|
+
_LPCRi,
|
|
1393
|
+
0,
|
|
1394
|
+
[_PCr, _NT],
|
|
1395
|
+
[() => ProxyConfigurations, 0],
|
|
1396
|
+
];
|
|
1397
|
+
export var ListProxyRuleGroupsRequest = [3, n0, _LPRGR, 0, [_NT, _MR], [0, 1]];
|
|
1398
|
+
export var ListProxyRuleGroupsResponse = [
|
|
1399
|
+
3,
|
|
1400
|
+
n0,
|
|
1401
|
+
_LPRGRi,
|
|
1402
|
+
0,
|
|
1403
|
+
[_PRGr, _NT],
|
|
1404
|
+
[() => ProxyRuleGroups, 0],
|
|
1405
|
+
];
|
|
1095
1406
|
export var ListRuleGroupsRequest = [
|
|
1096
1407
|
3,
|
|
1097
1408
|
n0,
|
|
@@ -1100,7 +1411,7 @@ export var ListRuleGroupsRequest = [
|
|
|
1100
1411
|
[_NT, _MR, _Sc, _MT, _SSu, _Ty],
|
|
1101
1412
|
[0, 1, 0, 0, 0, 0],
|
|
1102
1413
|
];
|
|
1103
|
-
export var ListRuleGroupsResponse = [3, n0, _LRGRi, 0, [_NT,
|
|
1414
|
+
export var ListRuleGroupsResponse = [3, n0, _LRGRi, 0, [_NT, _RG], [0, () => RuleGroups]];
|
|
1104
1415
|
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_NT, _MR, _RA], [0, 1, 0]];
|
|
1105
1416
|
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_NT, _T], [0, () => TagList]];
|
|
1106
1417
|
export var ListTLSInspectionConfigurationsRequest = [3, n0, _LTLSICR, 0, [_NT, _MR], [0, 1]];
|
|
@@ -1139,13 +1450,70 @@ export var MatchAttributes = [
|
|
|
1139
1450
|
n0,
|
|
1140
1451
|
_MA,
|
|
1141
1452
|
0,
|
|
1142
|
-
[_Sou, _Dest, _SPo, _DPes,
|
|
1453
|
+
[_Sou, _Dest, _SPo, _DPes, _Pro, _TCPF],
|
|
1143
1454
|
[() => Addresses, () => Addresses, () => PortRanges, () => PortRanges, 64 | 1, () => TCPFlags],
|
|
1144
1455
|
];
|
|
1145
1456
|
export var PerObjectStatus = [3, n0, _POS, 0, [_SSy, _UT], [0, 0]];
|
|
1146
1457
|
export var PolicyVariables = [3, n0, _PV, 0, [_RV], [() => IPSets]];
|
|
1147
|
-
export var PortRange = [3, n0,
|
|
1148
|
-
export var PortSet = [3, n0,
|
|
1458
|
+
export var PortRange = [3, n0, _PRo, 0, [_FPr, _TP], [1, 1]];
|
|
1459
|
+
export var PortSet = [3, n0, _PSo, 0, [_Def], [64 | 0]];
|
|
1460
|
+
export var Proxy = [
|
|
1461
|
+
3,
|
|
1462
|
+
n0,
|
|
1463
|
+
_Pr,
|
|
1464
|
+
0,
|
|
1465
|
+
[_CT, _DT, _UTp, _FC, _FM, _PS, _PMS, _NGI, _PCN, _PCA, _PN, _PA, _LP, _TIP, _T],
|
|
1466
|
+
[4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => ListenerProperties, () => TlsInterceptProperties, () => TagList],
|
|
1467
|
+
];
|
|
1468
|
+
export var ProxyConfigDefaultRulePhaseActionsRequest = [
|
|
1469
|
+
3,
|
|
1470
|
+
n0,
|
|
1471
|
+
_PCDRPAR,
|
|
1472
|
+
0,
|
|
1473
|
+
[_PDNS, _PREQUEST, _PRESPONSE],
|
|
1474
|
+
[0, 0, 0],
|
|
1475
|
+
];
|
|
1476
|
+
export var ProxyConfigRuleGroup = [3, n0, _PCRG, 0, [_PRGN, _PRGA, _Ty, _Pri], [0, 0, 0, 1]];
|
|
1477
|
+
export var ProxyConfiguration = [
|
|
1478
|
+
3,
|
|
1479
|
+
n0,
|
|
1480
|
+
_PC,
|
|
1481
|
+
0,
|
|
1482
|
+
[_PCN, _PCA, _De, _CT, _DT, _RG, _DRPA, _T],
|
|
1483
|
+
[0, 0, 0, 4, 4, () => ProxyConfigRuleGroupSet, () => ProxyConfigDefaultRulePhaseActionsRequest, () => TagList],
|
|
1484
|
+
];
|
|
1485
|
+
export var ProxyConfigurationMetadata = [3, n0, _PCM, 0, [_N, _Ar], [0, 0]];
|
|
1486
|
+
export var ProxyMetadata = [3, n0, _PM, 0, [_N, _Ar], [0, 0]];
|
|
1487
|
+
export var ProxyRule = [
|
|
1488
|
+
3,
|
|
1489
|
+
n0,
|
|
1490
|
+
_PR,
|
|
1491
|
+
0,
|
|
1492
|
+
[_PRN, _De, _Ac, _C],
|
|
1493
|
+
[0, 0, 0, () => ProxyRuleConditionList],
|
|
1494
|
+
];
|
|
1495
|
+
export var ProxyRuleCondition = [3, n0, _PRC, 0, [_CO, _CK, _CV], [0, 0, 64 | 0]];
|
|
1496
|
+
export var ProxyRuleGroup = [
|
|
1497
|
+
3,
|
|
1498
|
+
n0,
|
|
1499
|
+
_PRG,
|
|
1500
|
+
0,
|
|
1501
|
+
[_PRGN, _PRGA, _CT, _DT, _R, _De, _T],
|
|
1502
|
+
[0, 0, 4, 4, () => ProxyRulesByRequestPhase, 0, () => TagList],
|
|
1503
|
+
];
|
|
1504
|
+
export var ProxyRuleGroupAttachment = [3, n0, _PRGAr, 0, [_PRGN, _IP], [0, 1]];
|
|
1505
|
+
export var ProxyRuleGroupMetadata = [3, n0, _PRGM, 0, [_N, _Ar], [0, 0]];
|
|
1506
|
+
export var ProxyRuleGroupPriority = [3, n0, _PRGP, 0, [_PRGN, _NP], [0, 1]];
|
|
1507
|
+
export var ProxyRuleGroupPriorityResult = [3, n0, _PRGPR, 0, [_PRGN, _Pri], [0, 1]];
|
|
1508
|
+
export var ProxyRulePriority = [3, n0, _PRP, 0, [_PRN, _NP], [0, 1]];
|
|
1509
|
+
export var ProxyRulesByRequestPhase = [
|
|
1510
|
+
3,
|
|
1511
|
+
n0,
|
|
1512
|
+
_PRBRP,
|
|
1513
|
+
0,
|
|
1514
|
+
[_PDNS, _PREQUEST, _PRESPONSE],
|
|
1515
|
+
[() => ProxyRuleList, () => ProxyRuleList, () => ProxyRuleList],
|
|
1516
|
+
];
|
|
1149
1517
|
export var PublishMetricAction = [3, n0, _PMA, 0, [_Dim], [() => Dimensions]];
|
|
1150
1518
|
export var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_RA, _Po], [0, 0]];
|
|
1151
1519
|
export var PutResourcePolicyResponse = [3, n0, _PRPRu, 0, [], []];
|
|
@@ -1188,11 +1556,11 @@ export var ResourceOwnerCheckException = [
|
|
|
1188
1556
|
[0],
|
|
1189
1557
|
];
|
|
1190
1558
|
TypeRegistry.for(n0).registerError(ResourceOwnerCheckException, __ResourceOwnerCheckException);
|
|
1191
|
-
export var RuleDefinition = [3, n0, _RD, 0, [_MA,
|
|
1559
|
+
export var RuleDefinition = [3, n0, _RD, 0, [_MA, _Act], [() => MatchAttributes, 64 | 0]];
|
|
1192
1560
|
export var RuleGroup = [
|
|
1193
1561
|
3,
|
|
1194
1562
|
n0,
|
|
1195
|
-
|
|
1563
|
+
_RGu,
|
|
1196
1564
|
0,
|
|
1197
1565
|
[_RV, _RS, _RSu, _SRO],
|
|
1198
1566
|
[() => RuleVariables, () => ReferenceSets, () => RulesSource, () => StatefulRuleOptions],
|
|
@@ -1203,7 +1571,7 @@ export var RuleGroupResponse = [
|
|
|
1203
1571
|
n0,
|
|
1204
1572
|
_RGR,
|
|
1205
1573
|
0,
|
|
1206
|
-
[
|
|
1574
|
+
[_RGAu, _RGNu, _RGI, _De, _Ty, _Ca, _RGS, _T, _CC, _NOA, _EC, _SMo, _STn, _LMT, _ARnal, _SC],
|
|
1207
1575
|
[
|
|
1208
1576
|
0,
|
|
1209
1577
|
0,
|
|
@@ -1234,7 +1602,7 @@ export var RulesSource = [
|
|
|
1234
1602
|
];
|
|
1235
1603
|
export var RulesSourceList = [3, n0, _RSL, 0, [_Ta, _TT, _GRT], [64 | 0, 64 | 0, 0]];
|
|
1236
1604
|
export var RuleSummary = [3, n0, _RSule, 0, [_SID, _Ms, _Me], [0, 0, 0]];
|
|
1237
|
-
export var RuleVariables = [3, n0, _RV, 0, [_IPSe,
|
|
1605
|
+
export var RuleVariables = [3, n0, _RV, 0, [_IPSe, _PSor], [() => IPSets, () => PortSets]];
|
|
1238
1606
|
export var ServerCertificate = [3, n0, _SCe, 0, [_RA], [0]];
|
|
1239
1607
|
export var ServerCertificateConfiguration = [
|
|
1240
1608
|
3,
|
|
@@ -1249,7 +1617,7 @@ export var ServerCertificateScope = [
|
|
|
1249
1617
|
n0,
|
|
1250
1618
|
_SCS,
|
|
1251
1619
|
0,
|
|
1252
|
-
[_Sou, _Dest, _SPo, _DPes,
|
|
1620
|
+
[_Sou, _Dest, _SPo, _DPes, _Pro],
|
|
1253
1621
|
[() => Addresses, () => Addresses, () => PortRanges, () => PortRanges, 64 | 1],
|
|
1254
1622
|
];
|
|
1255
1623
|
export var SourceMetadata = [3, n0, _SMo, 0, [_SAo, _SUT], [0, 0]];
|
|
@@ -1286,10 +1654,10 @@ export var StatefulRule = [
|
|
|
1286
1654
|
n0,
|
|
1287
1655
|
_SRt,
|
|
1288
1656
|
0,
|
|
1289
|
-
[
|
|
1657
|
+
[_Ac, _He, _ROul],
|
|
1290
1658
|
[0, () => Header, () => RuleOptions],
|
|
1291
1659
|
];
|
|
1292
|
-
export var StatefulRuleGroupOverride = [3, n0, _SRGO, 0, [
|
|
1660
|
+
export var StatefulRuleGroupOverride = [3, n0, _SRGO, 0, [_Ac], [0]];
|
|
1293
1661
|
export var StatefulRuleGroupReference = [
|
|
1294
1662
|
3,
|
|
1295
1663
|
n0,
|
|
@@ -1346,6 +1714,8 @@ export var TLSInspectionConfigurationResponse = [
|
|
|
1346
1714
|
[_TLSICA, _TLSICN, _TLSICI, _TLSICS, _De, _T, _LMT, _NOA, _EC, _Ce, _CAer],
|
|
1347
1715
|
[0, 0, 0, 0, 0, () => TagList, 4, 1, () => EncryptionConfiguration, () => Certificates, () => TlsCertificateData],
|
|
1348
1716
|
];
|
|
1717
|
+
export var TlsInterceptProperties = [3, n0, _TIP, 0, [_PAc, _TIM], [0, 0]];
|
|
1718
|
+
export var TlsInterceptPropertiesRequest = [3, n0, _TIPR, 0, [_PAc, _TIM], [0, 0]];
|
|
1349
1719
|
export var TransitGatewayAttachmentSyncState = [3, n0, _TGASS, 0, [_AI, _TGAS, _SMt], [0, 0, 0]];
|
|
1350
1720
|
export var UniqueSources = [3, n0, _US, 0, [_Co], [1]];
|
|
1351
1721
|
export var UnsupportedOperationException = [
|
|
@@ -1489,12 +1859,85 @@ export var UpdateLoggingConfigurationResponse = [
|
|
|
1489
1859
|
[_FAi, _FN, _LC, _EMD],
|
|
1490
1860
|
[0, 0, () => LoggingConfiguration, 2],
|
|
1491
1861
|
];
|
|
1862
|
+
export var UpdateProxyConfigurationRequest = [
|
|
1863
|
+
3,
|
|
1864
|
+
n0,
|
|
1865
|
+
_UPCR,
|
|
1866
|
+
0,
|
|
1867
|
+
[_PCN, _PCA, _DRPA, _UT],
|
|
1868
|
+
[0, 0, () => ProxyConfigDefaultRulePhaseActionsRequest, 0],
|
|
1869
|
+
];
|
|
1870
|
+
export var UpdateProxyConfigurationResponse = [
|
|
1871
|
+
3,
|
|
1872
|
+
n0,
|
|
1873
|
+
_UPCRp,
|
|
1874
|
+
0,
|
|
1875
|
+
[_PC, _UT],
|
|
1876
|
+
[() => ProxyConfiguration, 0],
|
|
1877
|
+
];
|
|
1878
|
+
export var UpdateProxyRequest = [
|
|
1879
|
+
3,
|
|
1880
|
+
n0,
|
|
1881
|
+
_UPR,
|
|
1882
|
+
0,
|
|
1883
|
+
[_NGI, _PN, _PA, _LPTA, _LPTR, _TIP, _UT],
|
|
1884
|
+
[0, 0, 0, () => ListenerPropertiesRequest, () => ListenerPropertiesRequest, () => TlsInterceptPropertiesRequest, 0],
|
|
1885
|
+
];
|
|
1886
|
+
export var UpdateProxyResponse = [3, n0, _UPRp, 0, [_Pr, _UT], [() => Proxy, 0]];
|
|
1887
|
+
export var UpdateProxyRuleGroupPrioritiesRequest = [
|
|
1888
|
+
3,
|
|
1889
|
+
n0,
|
|
1890
|
+
_UPRGPR,
|
|
1891
|
+
0,
|
|
1892
|
+
[_PCN, _PCA, _RG, _UT],
|
|
1893
|
+
[0, 0, () => ProxyRuleGroupPriorityList, 0],
|
|
1894
|
+
];
|
|
1895
|
+
export var UpdateProxyRuleGroupPrioritiesResponse = [
|
|
1896
|
+
3,
|
|
1897
|
+
n0,
|
|
1898
|
+
_UPRGPRp,
|
|
1899
|
+
0,
|
|
1900
|
+
[_PRGr, _UT],
|
|
1901
|
+
[() => ProxyRuleGroupPriorityResultList, 0],
|
|
1902
|
+
];
|
|
1903
|
+
export var UpdateProxyRulePrioritiesRequest = [
|
|
1904
|
+
3,
|
|
1905
|
+
n0,
|
|
1906
|
+
_UPRPR,
|
|
1907
|
+
0,
|
|
1908
|
+
[_PRGN, _PRGA, _RGRP, _R, _UT],
|
|
1909
|
+
[0, 0, 0, () => ProxyRulePriorityList, 0],
|
|
1910
|
+
];
|
|
1911
|
+
export var UpdateProxyRulePrioritiesResponse = [
|
|
1912
|
+
3,
|
|
1913
|
+
n0,
|
|
1914
|
+
_UPRPRp,
|
|
1915
|
+
0,
|
|
1916
|
+
[_PRGN, _PRGA, _RGRP, _R, _UT],
|
|
1917
|
+
[0, 0, 0, () => ProxyRulePriorityList, 0],
|
|
1918
|
+
];
|
|
1919
|
+
export var UpdateProxyRuleRequest = [
|
|
1920
|
+
3,
|
|
1921
|
+
n0,
|
|
1922
|
+
_UPRR,
|
|
1923
|
+
0,
|
|
1924
|
+
[_PRGN, _PRGA, _PRN, _De, _Ac, _AC, _RC, _UT],
|
|
1925
|
+
[0, 0, 0, 0, 0, () => ProxyRuleConditionList, () => ProxyRuleConditionList, 0],
|
|
1926
|
+
];
|
|
1927
|
+
export var UpdateProxyRuleResponse = [
|
|
1928
|
+
3,
|
|
1929
|
+
n0,
|
|
1930
|
+
_UPRRp,
|
|
1931
|
+
0,
|
|
1932
|
+
[_PR, _RCe, _UT],
|
|
1933
|
+
[() => ProxyRule, () => ProxyRuleConditionList, 0],
|
|
1934
|
+
];
|
|
1492
1935
|
export var UpdateRuleGroupRequest = [
|
|
1493
1936
|
3,
|
|
1494
1937
|
n0,
|
|
1495
1938
|
_URGR,
|
|
1496
1939
|
0,
|
|
1497
|
-
[_UT,
|
|
1940
|
+
[_UT, _RGAu, _RGNu, _RGu, _R, _Ty, _De, _DR, _EC, _SMo, _ARG, _SC],
|
|
1498
1941
|
[
|
|
1499
1942
|
0,
|
|
1500
1943
|
0,
|
|
@@ -1577,6 +2020,7 @@ export var AnalysisResultList = [1, n0, _ARL, 0, () => AnalysisResult];
|
|
|
1577
2020
|
export var AvailabilityZoneMappings = [1, n0, _AZM, 0, () => AvailabilityZoneMapping];
|
|
1578
2021
|
export var AzSubnets = 64 | 0;
|
|
1579
2022
|
export var Certificates = [1, n0, _Ce, 0, () => TlsCertificateData];
|
|
2023
|
+
export var CreateProxyRuleList = [1, n0, _CPRL, 0, () => CreateProxyRule];
|
|
1580
2024
|
export var CustomActions = [1, n0, _CAu, 0, () => CustomAction];
|
|
1581
2025
|
export var Dimensions = [1, n0, _Dim, 0, () => Dimension];
|
|
1582
2026
|
export var EnabledAnalysisTypes = 64 | 0;
|
|
@@ -1586,11 +2030,26 @@ export var Flags = 64 | 0;
|
|
|
1586
2030
|
export var FlowFilters = [1, n0, _FFl, 0, () => FlowFilter];
|
|
1587
2031
|
export var FlowOperations = [1, n0, _FOl, 0, () => FlowOperationMetadata];
|
|
1588
2032
|
export var Flows = [1, n0, _Flo, 0, () => Flow];
|
|
2033
|
+
export var ListenerProperties = [1, n0, _LP, 0, () => ListenerProperty];
|
|
2034
|
+
export var ListenerPropertiesRequest = [1, n0, _LPRist, 0, () => ListenerPropertyRequest];
|
|
1589
2035
|
export var LogDestinationConfigs = [1, n0, _LDCo, 0, () => LogDestinationConfig];
|
|
1590
|
-
export var PortRanges = [1, n0,
|
|
2036
|
+
export var PortRanges = [1, n0, _PRor, 0, () => PortRange];
|
|
1591
2037
|
export var ProtocolNumbers = 64 | 1;
|
|
1592
2038
|
export var ProtocolStrings = 64 | 0;
|
|
1593
|
-
export var
|
|
2039
|
+
export var Proxies = [1, n0, _Prox, 0, () => ProxyMetadata];
|
|
2040
|
+
export var ProxyConditionValueList = 64 | 0;
|
|
2041
|
+
export var ProxyConfigRuleGroupSet = [1, n0, _PCRGS, 0, () => ProxyConfigRuleGroup];
|
|
2042
|
+
export var ProxyConfigurations = [1, n0, _PCr, 0, () => ProxyConfigurationMetadata];
|
|
2043
|
+
export var ProxyRuleConditionList = [1, n0, _PRCL, 0, () => ProxyRuleCondition];
|
|
2044
|
+
export var ProxyRuleGroupAttachmentList = [1, n0, _PRGAL, 0, () => ProxyRuleGroupAttachment];
|
|
2045
|
+
export var ProxyRuleGroupPriorityList = [1, n0, _PRGPL, 0, () => ProxyRuleGroupPriority];
|
|
2046
|
+
export var ProxyRuleGroupPriorityResultList = [1, n0, _PRGPRL, 0, () => ProxyRuleGroupPriorityResult];
|
|
2047
|
+
export var ProxyRuleGroups = [1, n0, _PRGr, 0, () => ProxyRuleGroupMetadata];
|
|
2048
|
+
export var ProxyRuleList = [1, n0, _PRL, 0, () => ProxyRule];
|
|
2049
|
+
export var ProxyRulePriorityList = [1, n0, _PRPL, 0, () => ProxyRulePriority];
|
|
2050
|
+
export var ResourceArnList = 64 | 0;
|
|
2051
|
+
export var ResourceNameList = 64 | 0;
|
|
2052
|
+
export var RuleGroups = [1, n0, _RG, 0, () => RuleGroupMetadata];
|
|
1594
2053
|
export var RuleIdList = 64 | 0;
|
|
1595
2054
|
export var RuleOptions = [1, n0, _ROul, 0, () => RuleOption];
|
|
1596
2055
|
export var RuleSummaries = [1, n0, _RSuleu, 0, () => RuleSummary];
|
|
@@ -1626,7 +2085,7 @@ export var IPSetMetadataMap = [2, n0, _IPSMM, 0, 0, () => IPSetMetadata];
|
|
|
1626
2085
|
export var IPSetReferenceMap = [2, n0, _IPSRM, 0, 0, () => IPSetReference];
|
|
1627
2086
|
export var IPSets = [2, n0, _IPSe, 0, 0, () => IPSet];
|
|
1628
2087
|
export var LogDestinationMap = 128 | 0;
|
|
1629
|
-
export var PortSets = [2, n0,
|
|
2088
|
+
export var PortSets = [2, n0, _PSor, 0, 0, () => PortSet];
|
|
1630
2089
|
export var SupportedAvailabilityZones = [2, n0, _SAZ, 0, 0, () => AvailabilityZoneMetadata];
|
|
1631
2090
|
export var SyncStateConfig = [2, n0, _SSC, 0, 0, () => PerObjectStatus];
|
|
1632
2091
|
export var SyncStates = [2, n0, _SS, 0, 0, () => SyncState];
|
|
@@ -1662,6 +2121,14 @@ export var AssociateSubnets = [
|
|
|
1662
2121
|
() => AssociateSubnetsRequest,
|
|
1663
2122
|
() => AssociateSubnetsResponse,
|
|
1664
2123
|
];
|
|
2124
|
+
export var AttachRuleGroupsToProxyConfiguration = [
|
|
2125
|
+
9,
|
|
2126
|
+
n0,
|
|
2127
|
+
_ARGTPC,
|
|
2128
|
+
0,
|
|
2129
|
+
() => AttachRuleGroupsToProxyConfigurationRequest,
|
|
2130
|
+
() => AttachRuleGroupsToProxyConfigurationResponse,
|
|
2131
|
+
];
|
|
1665
2132
|
export var CreateFirewall = [
|
|
1666
2133
|
9,
|
|
1667
2134
|
n0,
|
|
@@ -1678,6 +2145,31 @@ export var CreateFirewallPolicy = [
|
|
|
1678
2145
|
() => CreateFirewallPolicyRequest,
|
|
1679
2146
|
() => CreateFirewallPolicyResponse,
|
|
1680
2147
|
];
|
|
2148
|
+
export var CreateProxy = [9, n0, _CP, 0, () => CreateProxyRequest, () => CreateProxyResponse];
|
|
2149
|
+
export var CreateProxyConfiguration = [
|
|
2150
|
+
9,
|
|
2151
|
+
n0,
|
|
2152
|
+
_CPC,
|
|
2153
|
+
0,
|
|
2154
|
+
() => CreateProxyConfigurationRequest,
|
|
2155
|
+
() => CreateProxyConfigurationResponse,
|
|
2156
|
+
];
|
|
2157
|
+
export var CreateProxyRuleGroup = [
|
|
2158
|
+
9,
|
|
2159
|
+
n0,
|
|
2160
|
+
_CPRG,
|
|
2161
|
+
0,
|
|
2162
|
+
() => CreateProxyRuleGroupRequest,
|
|
2163
|
+
() => CreateProxyRuleGroupResponse,
|
|
2164
|
+
];
|
|
2165
|
+
export var CreateProxyRules = [
|
|
2166
|
+
9,
|
|
2167
|
+
n0,
|
|
2168
|
+
_CPRrea,
|
|
2169
|
+
0,
|
|
2170
|
+
() => CreateProxyRulesRequest,
|
|
2171
|
+
() => CreateProxyRulesResponse,
|
|
2172
|
+
];
|
|
1681
2173
|
export var CreateRuleGroup = [
|
|
1682
2174
|
9,
|
|
1683
2175
|
n0,
|
|
@@ -1726,6 +2218,31 @@ export var DeleteNetworkFirewallTransitGatewayAttachment = [
|
|
|
1726
2218
|
() => DeleteNetworkFirewallTransitGatewayAttachmentRequest,
|
|
1727
2219
|
() => DeleteNetworkFirewallTransitGatewayAttachmentResponse,
|
|
1728
2220
|
];
|
|
2221
|
+
export var DeleteProxy = [9, n0, _DPel, 0, () => DeleteProxyRequest, () => DeleteProxyResponse];
|
|
2222
|
+
export var DeleteProxyConfiguration = [
|
|
2223
|
+
9,
|
|
2224
|
+
n0,
|
|
2225
|
+
_DPC,
|
|
2226
|
+
0,
|
|
2227
|
+
() => DeleteProxyConfigurationRequest,
|
|
2228
|
+
() => DeleteProxyConfigurationResponse,
|
|
2229
|
+
];
|
|
2230
|
+
export var DeleteProxyRuleGroup = [
|
|
2231
|
+
9,
|
|
2232
|
+
n0,
|
|
2233
|
+
_DPRG,
|
|
2234
|
+
0,
|
|
2235
|
+
() => DeleteProxyRuleGroupRequest,
|
|
2236
|
+
() => DeleteProxyRuleGroupResponse,
|
|
2237
|
+
];
|
|
2238
|
+
export var DeleteProxyRules = [
|
|
2239
|
+
9,
|
|
2240
|
+
n0,
|
|
2241
|
+
_DPRel,
|
|
2242
|
+
0,
|
|
2243
|
+
() => DeleteProxyRulesRequest,
|
|
2244
|
+
() => DeleteProxyRulesResponse,
|
|
2245
|
+
];
|
|
1729
2246
|
export var DeleteResourcePolicy = [
|
|
1730
2247
|
9,
|
|
1731
2248
|
n0,
|
|
@@ -1798,6 +2315,38 @@ export var DescribeLoggingConfiguration = [
|
|
|
1798
2315
|
() => DescribeLoggingConfigurationRequest,
|
|
1799
2316
|
() => DescribeLoggingConfigurationResponse,
|
|
1800
2317
|
];
|
|
2318
|
+
export var DescribeProxy = [
|
|
2319
|
+
9,
|
|
2320
|
+
n0,
|
|
2321
|
+
_DPesc,
|
|
2322
|
+
0,
|
|
2323
|
+
() => DescribeProxyRequest,
|
|
2324
|
+
() => DescribeProxyResponse,
|
|
2325
|
+
];
|
|
2326
|
+
export var DescribeProxyConfiguration = [
|
|
2327
|
+
9,
|
|
2328
|
+
n0,
|
|
2329
|
+
_DPCe,
|
|
2330
|
+
0,
|
|
2331
|
+
() => DescribeProxyConfigurationRequest,
|
|
2332
|
+
() => DescribeProxyConfigurationResponse,
|
|
2333
|
+
];
|
|
2334
|
+
export var DescribeProxyRule = [
|
|
2335
|
+
9,
|
|
2336
|
+
n0,
|
|
2337
|
+
_DPRescri,
|
|
2338
|
+
0,
|
|
2339
|
+
() => DescribeProxyRuleRequest,
|
|
2340
|
+
() => DescribeProxyRuleResponse,
|
|
2341
|
+
];
|
|
2342
|
+
export var DescribeProxyRuleGroup = [
|
|
2343
|
+
9,
|
|
2344
|
+
n0,
|
|
2345
|
+
_DPRGe,
|
|
2346
|
+
0,
|
|
2347
|
+
() => DescribeProxyRuleGroupRequest,
|
|
2348
|
+
() => DescribeProxyRuleGroupResponse,
|
|
2349
|
+
];
|
|
1801
2350
|
export var DescribeResourcePolicy = [
|
|
1802
2351
|
9,
|
|
1803
2352
|
n0,
|
|
@@ -1846,6 +2395,14 @@ export var DescribeVpcEndpointAssociation = [
|
|
|
1846
2395
|
() => DescribeVpcEndpointAssociationRequest,
|
|
1847
2396
|
() => DescribeVpcEndpointAssociationResponse,
|
|
1848
2397
|
];
|
|
2398
|
+
export var DetachRuleGroupsFromProxyConfiguration = [
|
|
2399
|
+
9,
|
|
2400
|
+
n0,
|
|
2401
|
+
_DRGFPC,
|
|
2402
|
+
0,
|
|
2403
|
+
() => DetachRuleGroupsFromProxyConfigurationRequest,
|
|
2404
|
+
() => DetachRuleGroupsFromProxyConfigurationResponse,
|
|
2405
|
+
];
|
|
1849
2406
|
export var DisassociateAvailabilityZones = [
|
|
1850
2407
|
9,
|
|
1851
2408
|
n0,
|
|
@@ -1910,6 +2467,23 @@ export var ListFlowOperations = [
|
|
|
1910
2467
|
() => ListFlowOperationsRequest,
|
|
1911
2468
|
() => ListFlowOperationsResponse,
|
|
1912
2469
|
];
|
|
2470
|
+
export var ListProxies = [9, n0, _LPis, 0, () => ListProxiesRequest, () => ListProxiesResponse];
|
|
2471
|
+
export var ListProxyConfigurations = [
|
|
2472
|
+
9,
|
|
2473
|
+
n0,
|
|
2474
|
+
_LPC,
|
|
2475
|
+
0,
|
|
2476
|
+
() => ListProxyConfigurationsRequest,
|
|
2477
|
+
() => ListProxyConfigurationsResponse,
|
|
2478
|
+
];
|
|
2479
|
+
export var ListProxyRuleGroups = [
|
|
2480
|
+
9,
|
|
2481
|
+
n0,
|
|
2482
|
+
_LPRG,
|
|
2483
|
+
0,
|
|
2484
|
+
() => ListProxyRuleGroupsRequest,
|
|
2485
|
+
() => ListProxyRuleGroupsResponse,
|
|
2486
|
+
];
|
|
1913
2487
|
export var ListRuleGroups = [
|
|
1914
2488
|
9,
|
|
1915
2489
|
n0,
|
|
@@ -1945,7 +2519,7 @@ export var ListVpcEndpointAssociations = [
|
|
|
1945
2519
|
export var PutResourcePolicy = [
|
|
1946
2520
|
9,
|
|
1947
2521
|
n0,
|
|
1948
|
-
|
|
2522
|
+
_PRPu,
|
|
1949
2523
|
0,
|
|
1950
2524
|
() => PutResourcePolicyRequest,
|
|
1951
2525
|
() => PutResourcePolicyResponse,
|
|
@@ -2055,6 +2629,39 @@ export var UpdateLoggingConfiguration = [
|
|
|
2055
2629
|
() => UpdateLoggingConfigurationRequest,
|
|
2056
2630
|
() => UpdateLoggingConfigurationResponse,
|
|
2057
2631
|
];
|
|
2632
|
+
export var UpdateProxy = [9, n0, _UP, 0, () => UpdateProxyRequest, () => UpdateProxyResponse];
|
|
2633
|
+
export var UpdateProxyConfiguration = [
|
|
2634
|
+
9,
|
|
2635
|
+
n0,
|
|
2636
|
+
_UPC,
|
|
2637
|
+
0,
|
|
2638
|
+
() => UpdateProxyConfigurationRequest,
|
|
2639
|
+
() => UpdateProxyConfigurationResponse,
|
|
2640
|
+
];
|
|
2641
|
+
export var UpdateProxyRule = [
|
|
2642
|
+
9,
|
|
2643
|
+
n0,
|
|
2644
|
+
_UPRpd,
|
|
2645
|
+
0,
|
|
2646
|
+
() => UpdateProxyRuleRequest,
|
|
2647
|
+
() => UpdateProxyRuleResponse,
|
|
2648
|
+
];
|
|
2649
|
+
export var UpdateProxyRuleGroupPriorities = [
|
|
2650
|
+
9,
|
|
2651
|
+
n0,
|
|
2652
|
+
_UPRGP,
|
|
2653
|
+
0,
|
|
2654
|
+
() => UpdateProxyRuleGroupPrioritiesRequest,
|
|
2655
|
+
() => UpdateProxyRuleGroupPrioritiesResponse,
|
|
2656
|
+
];
|
|
2657
|
+
export var UpdateProxyRulePriorities = [
|
|
2658
|
+
9,
|
|
2659
|
+
n0,
|
|
2660
|
+
_UPRP,
|
|
2661
|
+
0,
|
|
2662
|
+
() => UpdateProxyRulePrioritiesRequest,
|
|
2663
|
+
() => UpdateProxyRulePrioritiesResponse,
|
|
2664
|
+
];
|
|
2058
2665
|
export var UpdateRuleGroup = [
|
|
2059
2666
|
9,
|
|
2060
2667
|
n0,
|