@aws-sdk/client-app-mesh 3.935.0 → 3.939.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/dist-cjs/index.js CHANGED
@@ -3264,6 +3264,110 @@ const paginateListVirtualRouters = core.createPaginator(AppMeshClient, ListVirtu
3264
3264
 
3265
3265
  const paginateListVirtualServices = core.createPaginator(AppMeshClient, ListVirtualServicesCommand, "nextToken", "nextToken", "limit");
3266
3266
 
3267
+ const EgressFilterType = {
3268
+ ALLOW_ALL: "ALLOW_ALL",
3269
+ DROP_ALL: "DROP_ALL",
3270
+ };
3271
+ const IpPreference = {
3272
+ IPv4_ONLY: "IPv4_ONLY",
3273
+ IPv4_PREFERRED: "IPv4_PREFERRED",
3274
+ IPv6_ONLY: "IPv6_ONLY",
3275
+ IPv6_PREFERRED: "IPv6_PREFERRED",
3276
+ };
3277
+ const MeshStatusCode = {
3278
+ ACTIVE: "ACTIVE",
3279
+ DELETED: "DELETED",
3280
+ INACTIVE: "INACTIVE",
3281
+ };
3282
+ const VirtualGatewayPortProtocol = {
3283
+ GRPC: "grpc",
3284
+ HTTP: "http",
3285
+ HTTP2: "http2",
3286
+ };
3287
+ const VirtualGatewayListenerTlsMode = {
3288
+ DISABLED: "DISABLED",
3289
+ PERMISSIVE: "PERMISSIVE",
3290
+ STRICT: "STRICT",
3291
+ };
3292
+ const VirtualGatewayStatusCode = {
3293
+ ACTIVE: "ACTIVE",
3294
+ DELETED: "DELETED",
3295
+ INACTIVE: "INACTIVE",
3296
+ };
3297
+ const DefaultGatewayRouteRewrite = {
3298
+ DISABLED: "DISABLED",
3299
+ ENABLED: "ENABLED",
3300
+ };
3301
+ const HttpMethod = {
3302
+ CONNECT: "CONNECT",
3303
+ DELETE: "DELETE",
3304
+ GET: "GET",
3305
+ HEAD: "HEAD",
3306
+ OPTIONS: "OPTIONS",
3307
+ PATCH: "PATCH",
3308
+ POST: "POST",
3309
+ PUT: "PUT",
3310
+ TRACE: "TRACE",
3311
+ };
3312
+ const GatewayRouteStatusCode = {
3313
+ ACTIVE: "ACTIVE",
3314
+ DELETED: "DELETED",
3315
+ INACTIVE: "INACTIVE",
3316
+ };
3317
+ const PortProtocol = {
3318
+ GRPC: "grpc",
3319
+ HTTP: "http",
3320
+ HTTP2: "http2",
3321
+ TCP: "tcp",
3322
+ };
3323
+ const DurationUnit = {
3324
+ MS: "ms",
3325
+ S: "s",
3326
+ };
3327
+ const ListenerTlsMode = {
3328
+ DISABLED: "DISABLED",
3329
+ PERMISSIVE: "PERMISSIVE",
3330
+ STRICT: "STRICT",
3331
+ };
3332
+ const DnsResponseType = {
3333
+ ENDPOINTS: "ENDPOINTS",
3334
+ LOADBALANCER: "LOADBALANCER",
3335
+ };
3336
+ const VirtualNodeStatusCode = {
3337
+ ACTIVE: "ACTIVE",
3338
+ DELETED: "DELETED",
3339
+ INACTIVE: "INACTIVE",
3340
+ };
3341
+ const VirtualRouterStatusCode = {
3342
+ ACTIVE: "ACTIVE",
3343
+ DELETED: "DELETED",
3344
+ INACTIVE: "INACTIVE",
3345
+ };
3346
+ const GrpcRetryPolicyEvent = {
3347
+ CANCELLED: "cancelled",
3348
+ DEADLINE_EXCEEDED: "deadline-exceeded",
3349
+ INTERNAL: "internal",
3350
+ RESOURCE_EXHAUSTED: "resource-exhausted",
3351
+ UNAVAILABLE: "unavailable",
3352
+ };
3353
+ const TcpRetryPolicyEvent = {
3354
+ CONNECTION_ERROR: "connection-error",
3355
+ };
3356
+ const HttpScheme = {
3357
+ HTTP: "http",
3358
+ HTTPS: "https",
3359
+ };
3360
+ const RouteStatusCode = {
3361
+ ACTIVE: "ACTIVE",
3362
+ DELETED: "DELETED",
3363
+ INACTIVE: "INACTIVE",
3364
+ };
3365
+ const VirtualServiceStatusCode = {
3366
+ ACTIVE: "ACTIVE",
3367
+ DELETED: "DELETED",
3368
+ INACTIVE: "INACTIVE",
3369
+ };
3370
+
3267
3371
  Object.defineProperty(exports, "$Command", {
3268
3372
  enumerable: true,
3269
3373
  get: function () { return smithyClient.Command; }
@@ -3284,6 +3388,7 @@ exports.CreateVirtualGatewayCommand = CreateVirtualGatewayCommand;
3284
3388
  exports.CreateVirtualNodeCommand = CreateVirtualNodeCommand;
3285
3389
  exports.CreateVirtualRouterCommand = CreateVirtualRouterCommand;
3286
3390
  exports.CreateVirtualServiceCommand = CreateVirtualServiceCommand;
3391
+ exports.DefaultGatewayRouteRewrite = DefaultGatewayRouteRewrite;
3287
3392
  exports.DeleteGatewayRouteCommand = DeleteGatewayRouteCommand;
3288
3393
  exports.DeleteMeshCommand = DeleteMeshCommand;
3289
3394
  exports.DeleteRouteCommand = DeleteRouteCommand;
@@ -3298,8 +3403,16 @@ exports.DescribeVirtualGatewayCommand = DescribeVirtualGatewayCommand;
3298
3403
  exports.DescribeVirtualNodeCommand = DescribeVirtualNodeCommand;
3299
3404
  exports.DescribeVirtualRouterCommand = DescribeVirtualRouterCommand;
3300
3405
  exports.DescribeVirtualServiceCommand = DescribeVirtualServiceCommand;
3406
+ exports.DnsResponseType = DnsResponseType;
3407
+ exports.DurationUnit = DurationUnit;
3408
+ exports.EgressFilterType = EgressFilterType;
3301
3409
  exports.ForbiddenException = ForbiddenException$1;
3410
+ exports.GatewayRouteStatusCode = GatewayRouteStatusCode;
3411
+ exports.GrpcRetryPolicyEvent = GrpcRetryPolicyEvent;
3412
+ exports.HttpMethod = HttpMethod;
3413
+ exports.HttpScheme = HttpScheme;
3302
3414
  exports.InternalServerErrorException = InternalServerErrorException$1;
3415
+ exports.IpPreference = IpPreference;
3303
3416
  exports.LimitExceededException = LimitExceededException$1;
3304
3417
  exports.ListGatewayRoutesCommand = ListGatewayRoutesCommand;
3305
3418
  exports.ListMeshesCommand = ListMeshesCommand;
@@ -3309,10 +3422,15 @@ exports.ListVirtualGatewaysCommand = ListVirtualGatewaysCommand;
3309
3422
  exports.ListVirtualNodesCommand = ListVirtualNodesCommand;
3310
3423
  exports.ListVirtualRoutersCommand = ListVirtualRoutersCommand;
3311
3424
  exports.ListVirtualServicesCommand = ListVirtualServicesCommand;
3425
+ exports.ListenerTlsMode = ListenerTlsMode;
3426
+ exports.MeshStatusCode = MeshStatusCode;
3312
3427
  exports.NotFoundException = NotFoundException$1;
3428
+ exports.PortProtocol = PortProtocol;
3313
3429
  exports.ResourceInUseException = ResourceInUseException$1;
3430
+ exports.RouteStatusCode = RouteStatusCode;
3314
3431
  exports.ServiceUnavailableException = ServiceUnavailableException$1;
3315
3432
  exports.TagResourceCommand = TagResourceCommand;
3433
+ exports.TcpRetryPolicyEvent = TcpRetryPolicyEvent;
3316
3434
  exports.TooManyRequestsException = TooManyRequestsException$1;
3317
3435
  exports.TooManyTagsException = TooManyTagsException$1;
3318
3436
  exports.UntagResourceCommand = UntagResourceCommand;
@@ -3323,6 +3441,12 @@ exports.UpdateVirtualGatewayCommand = UpdateVirtualGatewayCommand;
3323
3441
  exports.UpdateVirtualNodeCommand = UpdateVirtualNodeCommand;
3324
3442
  exports.UpdateVirtualRouterCommand = UpdateVirtualRouterCommand;
3325
3443
  exports.UpdateVirtualServiceCommand = UpdateVirtualServiceCommand;
3444
+ exports.VirtualGatewayListenerTlsMode = VirtualGatewayListenerTlsMode;
3445
+ exports.VirtualGatewayPortProtocol = VirtualGatewayPortProtocol;
3446
+ exports.VirtualGatewayStatusCode = VirtualGatewayStatusCode;
3447
+ exports.VirtualNodeStatusCode = VirtualNodeStatusCode;
3448
+ exports.VirtualRouterStatusCode = VirtualRouterStatusCode;
3449
+ exports.VirtualServiceStatusCode = VirtualServiceStatusCode;
3326
3450
  exports.paginateListGatewayRoutes = paginateListGatewayRoutes;
3327
3451
  exports.paginateListMeshes = paginateListMeshes;
3328
3452
  exports.paginateListRoutes = paginateListRoutes;
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./AppMeshClient";
2
2
  export * from "./AppMesh";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
+ export * from "./models/enums";
5
6
  export * from "./models/errors";
6
7
  export { AppMeshServiceException } from "./models/AppMeshServiceException";
@@ -0,0 +1,103 @@
1
+ export const EgressFilterType = {
2
+ ALLOW_ALL: "ALLOW_ALL",
3
+ DROP_ALL: "DROP_ALL",
4
+ };
5
+ export const IpPreference = {
6
+ IPv4_ONLY: "IPv4_ONLY",
7
+ IPv4_PREFERRED: "IPv4_PREFERRED",
8
+ IPv6_ONLY: "IPv6_ONLY",
9
+ IPv6_PREFERRED: "IPv6_PREFERRED",
10
+ };
11
+ export const MeshStatusCode = {
12
+ ACTIVE: "ACTIVE",
13
+ DELETED: "DELETED",
14
+ INACTIVE: "INACTIVE",
15
+ };
16
+ export const VirtualGatewayPortProtocol = {
17
+ GRPC: "grpc",
18
+ HTTP: "http",
19
+ HTTP2: "http2",
20
+ };
21
+ export const VirtualGatewayListenerTlsMode = {
22
+ DISABLED: "DISABLED",
23
+ PERMISSIVE: "PERMISSIVE",
24
+ STRICT: "STRICT",
25
+ };
26
+ export const VirtualGatewayStatusCode = {
27
+ ACTIVE: "ACTIVE",
28
+ DELETED: "DELETED",
29
+ INACTIVE: "INACTIVE",
30
+ };
31
+ export const DefaultGatewayRouteRewrite = {
32
+ DISABLED: "DISABLED",
33
+ ENABLED: "ENABLED",
34
+ };
35
+ export const HttpMethod = {
36
+ CONNECT: "CONNECT",
37
+ DELETE: "DELETE",
38
+ GET: "GET",
39
+ HEAD: "HEAD",
40
+ OPTIONS: "OPTIONS",
41
+ PATCH: "PATCH",
42
+ POST: "POST",
43
+ PUT: "PUT",
44
+ TRACE: "TRACE",
45
+ };
46
+ export const GatewayRouteStatusCode = {
47
+ ACTIVE: "ACTIVE",
48
+ DELETED: "DELETED",
49
+ INACTIVE: "INACTIVE",
50
+ };
51
+ export const PortProtocol = {
52
+ GRPC: "grpc",
53
+ HTTP: "http",
54
+ HTTP2: "http2",
55
+ TCP: "tcp",
56
+ };
57
+ export const DurationUnit = {
58
+ MS: "ms",
59
+ S: "s",
60
+ };
61
+ export const ListenerTlsMode = {
62
+ DISABLED: "DISABLED",
63
+ PERMISSIVE: "PERMISSIVE",
64
+ STRICT: "STRICT",
65
+ };
66
+ export const DnsResponseType = {
67
+ ENDPOINTS: "ENDPOINTS",
68
+ LOADBALANCER: "LOADBALANCER",
69
+ };
70
+ export const VirtualNodeStatusCode = {
71
+ ACTIVE: "ACTIVE",
72
+ DELETED: "DELETED",
73
+ INACTIVE: "INACTIVE",
74
+ };
75
+ export const VirtualRouterStatusCode = {
76
+ ACTIVE: "ACTIVE",
77
+ DELETED: "DELETED",
78
+ INACTIVE: "INACTIVE",
79
+ };
80
+ export const GrpcRetryPolicyEvent = {
81
+ CANCELLED: "cancelled",
82
+ DEADLINE_EXCEEDED: "deadline-exceeded",
83
+ INTERNAL: "internal",
84
+ RESOURCE_EXHAUSTED: "resource-exhausted",
85
+ UNAVAILABLE: "unavailable",
86
+ };
87
+ export const TcpRetryPolicyEvent = {
88
+ CONNECTION_ERROR: "connection-error",
89
+ };
90
+ export const HttpScheme = {
91
+ HTTP: "http",
92
+ HTTPS: "https",
93
+ };
94
+ export const RouteStatusCode = {
95
+ ACTIVE: "ACTIVE",
96
+ DELETED: "DELETED",
97
+ INACTIVE: "INACTIVE",
98
+ };
99
+ export const VirtualServiceStatusCode = {
100
+ ACTIVE: "ACTIVE",
101
+ DELETED: "DELETED",
102
+ INACTIVE: "INACTIVE",
103
+ };
@@ -1,103 +1 @@
1
- export const EgressFilterType = {
2
- ALLOW_ALL: "ALLOW_ALL",
3
- DROP_ALL: "DROP_ALL",
4
- };
5
- export const IpPreference = {
6
- IPv4_ONLY: "IPv4_ONLY",
7
- IPv4_PREFERRED: "IPv4_PREFERRED",
8
- IPv6_ONLY: "IPv6_ONLY",
9
- IPv6_PREFERRED: "IPv6_PREFERRED",
10
- };
11
- export const MeshStatusCode = {
12
- ACTIVE: "ACTIVE",
13
- DELETED: "DELETED",
14
- INACTIVE: "INACTIVE",
15
- };
16
- export const VirtualGatewayPortProtocol = {
17
- GRPC: "grpc",
18
- HTTP: "http",
19
- HTTP2: "http2",
20
- };
21
- export const VirtualGatewayListenerTlsMode = {
22
- DISABLED: "DISABLED",
23
- PERMISSIVE: "PERMISSIVE",
24
- STRICT: "STRICT",
25
- };
26
- export const VirtualGatewayStatusCode = {
27
- ACTIVE: "ACTIVE",
28
- DELETED: "DELETED",
29
- INACTIVE: "INACTIVE",
30
- };
31
- export const DefaultGatewayRouteRewrite = {
32
- DISABLED: "DISABLED",
33
- ENABLED: "ENABLED",
34
- };
35
- export const HttpMethod = {
36
- CONNECT: "CONNECT",
37
- DELETE: "DELETE",
38
- GET: "GET",
39
- HEAD: "HEAD",
40
- OPTIONS: "OPTIONS",
41
- PATCH: "PATCH",
42
- POST: "POST",
43
- PUT: "PUT",
44
- TRACE: "TRACE",
45
- };
46
- export const GatewayRouteStatusCode = {
47
- ACTIVE: "ACTIVE",
48
- DELETED: "DELETED",
49
- INACTIVE: "INACTIVE",
50
- };
51
- export const PortProtocol = {
52
- GRPC: "grpc",
53
- HTTP: "http",
54
- HTTP2: "http2",
55
- TCP: "tcp",
56
- };
57
- export const DurationUnit = {
58
- MS: "ms",
59
- S: "s",
60
- };
61
- export const ListenerTlsMode = {
62
- DISABLED: "DISABLED",
63
- PERMISSIVE: "PERMISSIVE",
64
- STRICT: "STRICT",
65
- };
66
- export const DnsResponseType = {
67
- ENDPOINTS: "ENDPOINTS",
68
- LOADBALANCER: "LOADBALANCER",
69
- };
70
- export const VirtualNodeStatusCode = {
71
- ACTIVE: "ACTIVE",
72
- DELETED: "DELETED",
73
- INACTIVE: "INACTIVE",
74
- };
75
- export const VirtualRouterStatusCode = {
76
- ACTIVE: "ACTIVE",
77
- DELETED: "DELETED",
78
- INACTIVE: "INACTIVE",
79
- };
80
- export const GrpcRetryPolicyEvent = {
81
- CANCELLED: "cancelled",
82
- DEADLINE_EXCEEDED: "deadline-exceeded",
83
- INTERNAL: "internal",
84
- RESOURCE_EXHAUSTED: "resource-exhausted",
85
- UNAVAILABLE: "unavailable",
86
- };
87
- export const TcpRetryPolicyEvent = {
88
- CONNECTION_ERROR: "connection-error",
89
- };
90
- export const HttpScheme = {
91
- HTTP: "http",
92
- HTTPS: "https",
93
- };
94
- export const RouteStatusCode = {
95
- ACTIVE: "ACTIVE",
96
- DELETED: "DELETED",
97
- INACTIVE: "INACTIVE",
98
- };
99
- export const VirtualServiceStatusCode = {
100
- ACTIVE: "ACTIVE",
101
- DELETED: "DELETED",
102
- INACTIVE: "INACTIVE",
103
- };
1
+ export {};
@@ -24,6 +24,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
24
24
  export type { AppMeshExtensionConfiguration } from "./extensionConfiguration";
25
25
  export * from "./commands";
26
26
  export * from "./pagination";
27
+ export * from "./models/enums";
27
28
  export * from "./models/errors";
28
29
  export type * from "./models/models_0";
29
30
  export { AppMeshServiceException } from "./models/AppMeshServiceException";
@@ -0,0 +1,263 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const EgressFilterType: {
6
+ readonly ALLOW_ALL: "ALLOW_ALL";
7
+ readonly DROP_ALL: "DROP_ALL";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type EgressFilterType = (typeof EgressFilterType)[keyof typeof EgressFilterType];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const IpPreference: {
18
+ readonly IPv4_ONLY: "IPv4_ONLY";
19
+ readonly IPv4_PREFERRED: "IPv4_PREFERRED";
20
+ readonly IPv6_ONLY: "IPv6_ONLY";
21
+ readonly IPv6_PREFERRED: "IPv6_PREFERRED";
22
+ };
23
+ /**
24
+ * @public
25
+ */
26
+ export type IpPreference = (typeof IpPreference)[keyof typeof IpPreference];
27
+ /**
28
+ * @public
29
+ * @enum
30
+ */
31
+ export declare const MeshStatusCode: {
32
+ readonly ACTIVE: "ACTIVE";
33
+ readonly DELETED: "DELETED";
34
+ readonly INACTIVE: "INACTIVE";
35
+ };
36
+ /**
37
+ * @public
38
+ */
39
+ export type MeshStatusCode = (typeof MeshStatusCode)[keyof typeof MeshStatusCode];
40
+ /**
41
+ * @public
42
+ * @enum
43
+ */
44
+ export declare const VirtualGatewayPortProtocol: {
45
+ readonly GRPC: "grpc";
46
+ readonly HTTP: "http";
47
+ readonly HTTP2: "http2";
48
+ };
49
+ /**
50
+ * @public
51
+ */
52
+ export type VirtualGatewayPortProtocol = (typeof VirtualGatewayPortProtocol)[keyof typeof VirtualGatewayPortProtocol];
53
+ /**
54
+ * @public
55
+ * @enum
56
+ */
57
+ export declare const VirtualGatewayListenerTlsMode: {
58
+ readonly DISABLED: "DISABLED";
59
+ readonly PERMISSIVE: "PERMISSIVE";
60
+ readonly STRICT: "STRICT";
61
+ };
62
+ /**
63
+ * @public
64
+ */
65
+ export type VirtualGatewayListenerTlsMode = (typeof VirtualGatewayListenerTlsMode)[keyof typeof VirtualGatewayListenerTlsMode];
66
+ /**
67
+ * @public
68
+ * @enum
69
+ */
70
+ export declare const VirtualGatewayStatusCode: {
71
+ readonly ACTIVE: "ACTIVE";
72
+ readonly DELETED: "DELETED";
73
+ readonly INACTIVE: "INACTIVE";
74
+ };
75
+ /**
76
+ * @public
77
+ */
78
+ export type VirtualGatewayStatusCode = (typeof VirtualGatewayStatusCode)[keyof typeof VirtualGatewayStatusCode];
79
+ /**
80
+ * @public
81
+ * @enum
82
+ */
83
+ export declare const DefaultGatewayRouteRewrite: {
84
+ readonly DISABLED: "DISABLED";
85
+ readonly ENABLED: "ENABLED";
86
+ };
87
+ /**
88
+ * @public
89
+ */
90
+ export type DefaultGatewayRouteRewrite = (typeof DefaultGatewayRouteRewrite)[keyof typeof DefaultGatewayRouteRewrite];
91
+ /**
92
+ * @public
93
+ * @enum
94
+ */
95
+ export declare const HttpMethod: {
96
+ readonly CONNECT: "CONNECT";
97
+ readonly DELETE: "DELETE";
98
+ readonly GET: "GET";
99
+ readonly HEAD: "HEAD";
100
+ readonly OPTIONS: "OPTIONS";
101
+ readonly PATCH: "PATCH";
102
+ readonly POST: "POST";
103
+ readonly PUT: "PUT";
104
+ readonly TRACE: "TRACE";
105
+ };
106
+ /**
107
+ * @public
108
+ */
109
+ export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod];
110
+ /**
111
+ * @public
112
+ * @enum
113
+ */
114
+ export declare const GatewayRouteStatusCode: {
115
+ readonly ACTIVE: "ACTIVE";
116
+ readonly DELETED: "DELETED";
117
+ readonly INACTIVE: "INACTIVE";
118
+ };
119
+ /**
120
+ * @public
121
+ */
122
+ export type GatewayRouteStatusCode = (typeof GatewayRouteStatusCode)[keyof typeof GatewayRouteStatusCode];
123
+ /**
124
+ * @public
125
+ * @enum
126
+ */
127
+ export declare const PortProtocol: {
128
+ readonly GRPC: "grpc";
129
+ readonly HTTP: "http";
130
+ readonly HTTP2: "http2";
131
+ readonly TCP: "tcp";
132
+ };
133
+ /**
134
+ * @public
135
+ */
136
+ export type PortProtocol = (typeof PortProtocol)[keyof typeof PortProtocol];
137
+ /**
138
+ * @public
139
+ * @enum
140
+ */
141
+ export declare const DurationUnit: {
142
+ readonly MS: "ms";
143
+ readonly S: "s";
144
+ };
145
+ /**
146
+ * @public
147
+ */
148
+ export type DurationUnit = (typeof DurationUnit)[keyof typeof DurationUnit];
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const ListenerTlsMode: {
154
+ readonly DISABLED: "DISABLED";
155
+ readonly PERMISSIVE: "PERMISSIVE";
156
+ readonly STRICT: "STRICT";
157
+ };
158
+ /**
159
+ * @public
160
+ */
161
+ export type ListenerTlsMode = (typeof ListenerTlsMode)[keyof typeof ListenerTlsMode];
162
+ /**
163
+ * @public
164
+ * @enum
165
+ */
166
+ export declare const DnsResponseType: {
167
+ readonly ENDPOINTS: "ENDPOINTS";
168
+ readonly LOADBALANCER: "LOADBALANCER";
169
+ };
170
+ /**
171
+ * @public
172
+ */
173
+ export type DnsResponseType = (typeof DnsResponseType)[keyof typeof DnsResponseType];
174
+ /**
175
+ * @public
176
+ * @enum
177
+ */
178
+ export declare const VirtualNodeStatusCode: {
179
+ readonly ACTIVE: "ACTIVE";
180
+ readonly DELETED: "DELETED";
181
+ readonly INACTIVE: "INACTIVE";
182
+ };
183
+ /**
184
+ * @public
185
+ */
186
+ export type VirtualNodeStatusCode = (typeof VirtualNodeStatusCode)[keyof typeof VirtualNodeStatusCode];
187
+ /**
188
+ * @public
189
+ * @enum
190
+ */
191
+ export declare const VirtualRouterStatusCode: {
192
+ readonly ACTIVE: "ACTIVE";
193
+ readonly DELETED: "DELETED";
194
+ readonly INACTIVE: "INACTIVE";
195
+ };
196
+ /**
197
+ * @public
198
+ */
199
+ export type VirtualRouterStatusCode = (typeof VirtualRouterStatusCode)[keyof typeof VirtualRouterStatusCode];
200
+ /**
201
+ * @public
202
+ * @enum
203
+ */
204
+ export declare const GrpcRetryPolicyEvent: {
205
+ readonly CANCELLED: "cancelled";
206
+ readonly DEADLINE_EXCEEDED: "deadline-exceeded";
207
+ readonly INTERNAL: "internal";
208
+ readonly RESOURCE_EXHAUSTED: "resource-exhausted";
209
+ readonly UNAVAILABLE: "unavailable";
210
+ };
211
+ /**
212
+ * @public
213
+ */
214
+ export type GrpcRetryPolicyEvent = (typeof GrpcRetryPolicyEvent)[keyof typeof GrpcRetryPolicyEvent];
215
+ /**
216
+ * @public
217
+ * @enum
218
+ */
219
+ export declare const TcpRetryPolicyEvent: {
220
+ readonly CONNECTION_ERROR: "connection-error";
221
+ };
222
+ /**
223
+ * @public
224
+ */
225
+ export type TcpRetryPolicyEvent = (typeof TcpRetryPolicyEvent)[keyof typeof TcpRetryPolicyEvent];
226
+ /**
227
+ * @public
228
+ * @enum
229
+ */
230
+ export declare const HttpScheme: {
231
+ readonly HTTP: "http";
232
+ readonly HTTPS: "https";
233
+ };
234
+ /**
235
+ * @public
236
+ */
237
+ export type HttpScheme = (typeof HttpScheme)[keyof typeof HttpScheme];
238
+ /**
239
+ * @public
240
+ * @enum
241
+ */
242
+ export declare const RouteStatusCode: {
243
+ readonly ACTIVE: "ACTIVE";
244
+ readonly DELETED: "DELETED";
245
+ readonly INACTIVE: "INACTIVE";
246
+ };
247
+ /**
248
+ * @public
249
+ */
250
+ export type RouteStatusCode = (typeof RouteStatusCode)[keyof typeof RouteStatusCode];
251
+ /**
252
+ * @public
253
+ * @enum
254
+ */
255
+ export declare const VirtualServiceStatusCode: {
256
+ readonly ACTIVE: "ACTIVE";
257
+ readonly DELETED: "DELETED";
258
+ readonly INACTIVE: "INACTIVE";
259
+ };
260
+ /**
261
+ * @public
262
+ */
263
+ export type VirtualServiceStatusCode = (typeof VirtualServiceStatusCode)[keyof typeof VirtualServiceStatusCode];