@aws-sdk/client-vpc-lattice 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 +171 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +145 -0
- package/dist-es/models/models_0.js +1 -145
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +585 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +1 -585
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +190 -0
- package/dist-types/ts3.4/models/errors.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +26 -190
- package/package.json +12 -12
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
export declare const ServiceNetworkLogType: {
|
|
2
|
+
readonly RESOURCE: "RESOURCE";
|
|
3
|
+
readonly SERVICE: "SERVICE";
|
|
4
|
+
};
|
|
5
|
+
export type ServiceNetworkLogType =
|
|
6
|
+
(typeof ServiceNetworkLogType)[keyof typeof ServiceNetworkLogType];
|
|
7
|
+
export declare const ValidationExceptionReason: {
|
|
8
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
9
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
10
|
+
readonly OTHER: "other";
|
|
11
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
12
|
+
};
|
|
13
|
+
export type ValidationExceptionReason =
|
|
14
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
15
|
+
export declare const AuthPolicyState: {
|
|
16
|
+
readonly Active: "Active";
|
|
17
|
+
readonly Inactive: "Inactive";
|
|
18
|
+
};
|
|
19
|
+
export type AuthPolicyState =
|
|
20
|
+
(typeof AuthPolicyState)[keyof typeof AuthPolicyState];
|
|
21
|
+
export declare const AuthType: {
|
|
22
|
+
readonly AWS_IAM: "AWS_IAM";
|
|
23
|
+
readonly NONE: "NONE";
|
|
24
|
+
};
|
|
25
|
+
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
26
|
+
export declare const ListenerProtocol: {
|
|
27
|
+
readonly HTTP: "HTTP";
|
|
28
|
+
readonly HTTPS: "HTTPS";
|
|
29
|
+
readonly TLS_PASSTHROUGH: "TLS_PASSTHROUGH";
|
|
30
|
+
};
|
|
31
|
+
export type ListenerProtocol =
|
|
32
|
+
(typeof ListenerProtocol)[keyof typeof ListenerProtocol];
|
|
33
|
+
export declare const ProtocolType: {
|
|
34
|
+
readonly TCP: "TCP";
|
|
35
|
+
};
|
|
36
|
+
export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
|
|
37
|
+
export declare const ResourceConfigurationIpAddressType: {
|
|
38
|
+
readonly DUALSTACK: "DUALSTACK";
|
|
39
|
+
readonly IPV4: "IPV4";
|
|
40
|
+
readonly IPV6: "IPV6";
|
|
41
|
+
};
|
|
42
|
+
export type ResourceConfigurationIpAddressType =
|
|
43
|
+
(typeof ResourceConfigurationIpAddressType)[keyof typeof ResourceConfigurationIpAddressType];
|
|
44
|
+
export declare const ResourceConfigurationType: {
|
|
45
|
+
readonly ARN: "ARN";
|
|
46
|
+
readonly CHILD: "CHILD";
|
|
47
|
+
readonly GROUP: "GROUP";
|
|
48
|
+
readonly SINGLE: "SINGLE";
|
|
49
|
+
};
|
|
50
|
+
export type ResourceConfigurationType =
|
|
51
|
+
(typeof ResourceConfigurationType)[keyof typeof ResourceConfigurationType];
|
|
52
|
+
export declare const ResourceConfigurationStatus: {
|
|
53
|
+
readonly ACTIVE: "ACTIVE";
|
|
54
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
55
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
56
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
57
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
58
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
59
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
60
|
+
};
|
|
61
|
+
export type ResourceConfigurationStatus =
|
|
62
|
+
(typeof ResourceConfigurationStatus)[keyof typeof ResourceConfigurationStatus];
|
|
63
|
+
export declare const ResourceGatewayIpAddressType: {
|
|
64
|
+
readonly DUALSTACK: "DUALSTACK";
|
|
65
|
+
readonly IPV4: "IPV4";
|
|
66
|
+
readonly IPV6: "IPV6";
|
|
67
|
+
};
|
|
68
|
+
export type ResourceGatewayIpAddressType =
|
|
69
|
+
(typeof ResourceGatewayIpAddressType)[keyof typeof ResourceGatewayIpAddressType];
|
|
70
|
+
export declare const ResourceGatewayStatus: {
|
|
71
|
+
readonly ACTIVE: "ACTIVE";
|
|
72
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
73
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
74
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
75
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
76
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
77
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
78
|
+
};
|
|
79
|
+
export type ResourceGatewayStatus =
|
|
80
|
+
(typeof ResourceGatewayStatus)[keyof typeof ResourceGatewayStatus];
|
|
81
|
+
export declare const ServiceStatus: {
|
|
82
|
+
readonly ACTIVE: "ACTIVE";
|
|
83
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
84
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
85
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
86
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
87
|
+
};
|
|
88
|
+
export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
|
|
89
|
+
export declare const ServiceNetworkResourceAssociationStatus: {
|
|
90
|
+
readonly ACTIVE: "ACTIVE";
|
|
91
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
92
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
93
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
94
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
95
|
+
readonly PARTIAL: "PARTIAL";
|
|
96
|
+
};
|
|
97
|
+
export type ServiceNetworkResourceAssociationStatus =
|
|
98
|
+
(typeof ServiceNetworkResourceAssociationStatus)[keyof typeof ServiceNetworkResourceAssociationStatus];
|
|
99
|
+
export declare const ServiceNetworkServiceAssociationStatus: {
|
|
100
|
+
readonly ACTIVE: "ACTIVE";
|
|
101
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
102
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
103
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
104
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
105
|
+
};
|
|
106
|
+
export type ServiceNetworkServiceAssociationStatus =
|
|
107
|
+
(typeof ServiceNetworkServiceAssociationStatus)[keyof typeof ServiceNetworkServiceAssociationStatus];
|
|
108
|
+
export declare const PrivateDnsPreference: {
|
|
109
|
+
readonly ALL_DOMAINS: "ALL_DOMAINS";
|
|
110
|
+
readonly SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY";
|
|
111
|
+
readonly VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS";
|
|
112
|
+
readonly VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY";
|
|
113
|
+
};
|
|
114
|
+
export type PrivateDnsPreference =
|
|
115
|
+
(typeof PrivateDnsPreference)[keyof typeof PrivateDnsPreference];
|
|
116
|
+
export declare const ServiceNetworkVpcAssociationStatus: {
|
|
117
|
+
readonly ACTIVE: "ACTIVE";
|
|
118
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
119
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
120
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
121
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
122
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
123
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
124
|
+
};
|
|
125
|
+
export type ServiceNetworkVpcAssociationStatus =
|
|
126
|
+
(typeof ServiceNetworkVpcAssociationStatus)[keyof typeof ServiceNetworkVpcAssociationStatus];
|
|
127
|
+
export declare const TargetGroupProtocol: {
|
|
128
|
+
readonly HTTP: "HTTP";
|
|
129
|
+
readonly HTTPS: "HTTPS";
|
|
130
|
+
readonly TCP: "TCP";
|
|
131
|
+
};
|
|
132
|
+
export type TargetGroupProtocol =
|
|
133
|
+
(typeof TargetGroupProtocol)[keyof typeof TargetGroupProtocol];
|
|
134
|
+
export declare const HealthCheckProtocolVersion: {
|
|
135
|
+
readonly HTTP1: "HTTP1";
|
|
136
|
+
readonly HTTP2: "HTTP2";
|
|
137
|
+
};
|
|
138
|
+
export type HealthCheckProtocolVersion =
|
|
139
|
+
(typeof HealthCheckProtocolVersion)[keyof typeof HealthCheckProtocolVersion];
|
|
140
|
+
export declare const IpAddressType: {
|
|
141
|
+
readonly IPV4: "IPV4";
|
|
142
|
+
readonly IPV6: "IPV6";
|
|
143
|
+
};
|
|
144
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
145
|
+
export declare const LambdaEventStructureVersion: {
|
|
146
|
+
readonly V1: "V1";
|
|
147
|
+
readonly V2: "V2";
|
|
148
|
+
};
|
|
149
|
+
export type LambdaEventStructureVersion =
|
|
150
|
+
(typeof LambdaEventStructureVersion)[keyof typeof LambdaEventStructureVersion];
|
|
151
|
+
export declare const TargetGroupProtocolVersion: {
|
|
152
|
+
readonly GRPC: "GRPC";
|
|
153
|
+
readonly HTTP1: "HTTP1";
|
|
154
|
+
readonly HTTP2: "HTTP2";
|
|
155
|
+
};
|
|
156
|
+
export type TargetGroupProtocolVersion =
|
|
157
|
+
(typeof TargetGroupProtocolVersion)[keyof typeof TargetGroupProtocolVersion];
|
|
158
|
+
export declare const TargetGroupType: {
|
|
159
|
+
readonly ALB: "ALB";
|
|
160
|
+
readonly INSTANCE: "INSTANCE";
|
|
161
|
+
readonly IP: "IP";
|
|
162
|
+
readonly LAMBDA: "LAMBDA";
|
|
163
|
+
};
|
|
164
|
+
export type TargetGroupType =
|
|
165
|
+
(typeof TargetGroupType)[keyof typeof TargetGroupType];
|
|
166
|
+
export declare const TargetGroupStatus: {
|
|
167
|
+
readonly ACTIVE: "ACTIVE";
|
|
168
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
169
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
170
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
171
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
172
|
+
};
|
|
173
|
+
export type TargetGroupStatus =
|
|
174
|
+
(typeof TargetGroupStatus)[keyof typeof TargetGroupStatus];
|
|
175
|
+
export declare const VerificationStatus: {
|
|
176
|
+
readonly PENDING: "PENDING";
|
|
177
|
+
readonly VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT";
|
|
178
|
+
readonly VERIFIED: "VERIFIED";
|
|
179
|
+
};
|
|
180
|
+
export type VerificationStatus =
|
|
181
|
+
(typeof VerificationStatus)[keyof typeof VerificationStatus];
|
|
182
|
+
export declare const TargetStatus: {
|
|
183
|
+
readonly DRAINING: "DRAINING";
|
|
184
|
+
readonly HEALTHY: "HEALTHY";
|
|
185
|
+
readonly INITIAL: "INITIAL";
|
|
186
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
187
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
188
|
+
readonly UNUSED: "UNUSED";
|
|
189
|
+
};
|
|
190
|
+
export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ValidationExceptionReason,
|
|
5
|
-
} from "./models_0";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { ValidationExceptionField } from "./models_0";
|
|
6
4
|
import { VPCLatticeServiceException as __BaseException } from "./VPCLatticeServiceException";
|
|
7
5
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
6
|
readonly name: "AccessDeniedException";
|
|
@@ -1,9 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
AuthPolicyState,
|
|
3
|
+
AuthType,
|
|
4
|
+
HealthCheckProtocolVersion,
|
|
5
|
+
IpAddressType,
|
|
6
|
+
LambdaEventStructureVersion,
|
|
7
|
+
ListenerProtocol,
|
|
8
|
+
PrivateDnsPreference,
|
|
9
|
+
ProtocolType,
|
|
10
|
+
ResourceConfigurationIpAddressType,
|
|
11
|
+
ResourceConfigurationStatus,
|
|
12
|
+
ResourceConfigurationType,
|
|
13
|
+
ResourceGatewayIpAddressType,
|
|
14
|
+
ResourceGatewayStatus,
|
|
15
|
+
ServiceNetworkLogType,
|
|
16
|
+
ServiceNetworkResourceAssociationStatus,
|
|
17
|
+
ServiceNetworkServiceAssociationStatus,
|
|
18
|
+
ServiceNetworkVpcAssociationStatus,
|
|
19
|
+
ServiceStatus,
|
|
20
|
+
TargetGroupProtocol,
|
|
21
|
+
TargetGroupProtocolVersion,
|
|
22
|
+
TargetGroupStatus,
|
|
23
|
+
TargetGroupType,
|
|
24
|
+
TargetStatus,
|
|
25
|
+
VerificationStatus,
|
|
26
|
+
} from "./enums";
|
|
7
27
|
export interface CreateAccessLogSubscriptionRequest {
|
|
8
28
|
clientToken?: string | undefined;
|
|
9
29
|
resourceIdentifier: string | undefined;
|
|
@@ -23,14 +43,6 @@ export interface ValidationExceptionField {
|
|
|
23
43
|
name: string | undefined;
|
|
24
44
|
message: string | undefined;
|
|
25
45
|
}
|
|
26
|
-
export declare const ValidationExceptionReason: {
|
|
27
|
-
readonly CANNOT_PARSE: "cannotParse";
|
|
28
|
-
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
29
|
-
readonly OTHER: "other";
|
|
30
|
-
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
31
|
-
};
|
|
32
|
-
export type ValidationExceptionReason =
|
|
33
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
34
46
|
export interface DeleteAccessLogSubscriptionRequest {
|
|
35
47
|
accessLogSubscriptionIdentifier: string | undefined;
|
|
36
48
|
}
|
|
@@ -81,17 +93,6 @@ export interface UpdateAccessLogSubscriptionResponse {
|
|
|
81
93
|
export interface ArnResource {
|
|
82
94
|
arn?: string | undefined;
|
|
83
95
|
}
|
|
84
|
-
export declare const AuthPolicyState: {
|
|
85
|
-
readonly Active: "Active";
|
|
86
|
-
readonly Inactive: "Inactive";
|
|
87
|
-
};
|
|
88
|
-
export type AuthPolicyState =
|
|
89
|
-
(typeof AuthPolicyState)[keyof typeof AuthPolicyState];
|
|
90
|
-
export declare const AuthType: {
|
|
91
|
-
readonly AWS_IAM: "AWS_IAM";
|
|
92
|
-
readonly NONE: "NONE";
|
|
93
|
-
};
|
|
94
|
-
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
95
96
|
export interface FixedResponseAction {
|
|
96
97
|
statusCode: number | undefined;
|
|
97
98
|
}
|
|
@@ -249,13 +250,6 @@ export interface BatchUpdateRuleResponse {
|
|
|
249
250
|
successful?: RuleUpdateSuccess[] | undefined;
|
|
250
251
|
unsuccessful?: RuleUpdateFailure[] | undefined;
|
|
251
252
|
}
|
|
252
|
-
export declare const ListenerProtocol: {
|
|
253
|
-
readonly HTTP: "HTTP";
|
|
254
|
-
readonly HTTPS: "HTTPS";
|
|
255
|
-
readonly TLS_PASSTHROUGH: "TLS_PASSTHROUGH";
|
|
256
|
-
};
|
|
257
|
-
export type ListenerProtocol =
|
|
258
|
-
(typeof ListenerProtocol)[keyof typeof ListenerProtocol];
|
|
259
253
|
export interface CreateListenerRequest {
|
|
260
254
|
serviceIdentifier: string | undefined;
|
|
261
255
|
name: string | undefined;
|
|
@@ -275,17 +269,6 @@ export interface CreateListenerResponse {
|
|
|
275
269
|
serviceId?: string | undefined;
|
|
276
270
|
defaultAction?: RuleAction | undefined;
|
|
277
271
|
}
|
|
278
|
-
export declare const ProtocolType: {
|
|
279
|
-
readonly TCP: "TCP";
|
|
280
|
-
};
|
|
281
|
-
export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
|
|
282
|
-
export declare const ResourceConfigurationIpAddressType: {
|
|
283
|
-
readonly DUALSTACK: "DUALSTACK";
|
|
284
|
-
readonly IPV4: "IPV4";
|
|
285
|
-
readonly IPV6: "IPV6";
|
|
286
|
-
};
|
|
287
|
-
export type ResourceConfigurationIpAddressType =
|
|
288
|
-
(typeof ResourceConfigurationIpAddressType)[keyof typeof ResourceConfigurationIpAddressType];
|
|
289
272
|
export interface DnsResource {
|
|
290
273
|
domainName?: string | undefined;
|
|
291
274
|
ipAddressType?: ResourceConfigurationIpAddressType | undefined;
|
|
@@ -330,14 +313,6 @@ export declare namespace ResourceConfigurationDefinition {
|
|
|
330
313
|
_: (name: string, value: any) => T;
|
|
331
314
|
}
|
|
332
315
|
}
|
|
333
|
-
export declare const ResourceConfigurationType: {
|
|
334
|
-
readonly ARN: "ARN";
|
|
335
|
-
readonly CHILD: "CHILD";
|
|
336
|
-
readonly GROUP: "GROUP";
|
|
337
|
-
readonly SINGLE: "SINGLE";
|
|
338
|
-
};
|
|
339
|
-
export type ResourceConfigurationType =
|
|
340
|
-
(typeof ResourceConfigurationType)[keyof typeof ResourceConfigurationType];
|
|
341
316
|
export interface CreateResourceConfigurationRequest {
|
|
342
317
|
name: string | undefined;
|
|
343
318
|
type: ResourceConfigurationType | undefined;
|
|
@@ -353,17 +328,6 @@ export interface CreateResourceConfigurationRequest {
|
|
|
353
328
|
clientToken?: string | undefined;
|
|
354
329
|
tags?: Record<string, string> | undefined;
|
|
355
330
|
}
|
|
356
|
-
export declare const ResourceConfigurationStatus: {
|
|
357
|
-
readonly ACTIVE: "ACTIVE";
|
|
358
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
359
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
360
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
361
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
362
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
363
|
-
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
364
|
-
};
|
|
365
|
-
export type ResourceConfigurationStatus =
|
|
366
|
-
(typeof ResourceConfigurationStatus)[keyof typeof ResourceConfigurationStatus];
|
|
367
331
|
export interface CreateResourceConfigurationResponse {
|
|
368
332
|
id?: string | undefined;
|
|
369
333
|
name?: string | undefined;
|
|
@@ -383,13 +347,6 @@ export interface CreateResourceConfigurationResponse {
|
|
|
383
347
|
groupDomain?: string | undefined;
|
|
384
348
|
domainVerificationArn?: string | undefined;
|
|
385
349
|
}
|
|
386
|
-
export declare const ResourceGatewayIpAddressType: {
|
|
387
|
-
readonly DUALSTACK: "DUALSTACK";
|
|
388
|
-
readonly IPV4: "IPV4";
|
|
389
|
-
readonly IPV6: "IPV6";
|
|
390
|
-
};
|
|
391
|
-
export type ResourceGatewayIpAddressType =
|
|
392
|
-
(typeof ResourceGatewayIpAddressType)[keyof typeof ResourceGatewayIpAddressType];
|
|
393
350
|
export interface CreateResourceGatewayRequest {
|
|
394
351
|
clientToken?: string | undefined;
|
|
395
352
|
name: string | undefined;
|
|
@@ -400,17 +357,6 @@ export interface CreateResourceGatewayRequest {
|
|
|
400
357
|
ipv4AddressesPerEni?: number | undefined;
|
|
401
358
|
tags?: Record<string, string> | undefined;
|
|
402
359
|
}
|
|
403
|
-
export declare const ResourceGatewayStatus: {
|
|
404
|
-
readonly ACTIVE: "ACTIVE";
|
|
405
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
406
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
407
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
408
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
409
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
410
|
-
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
411
|
-
};
|
|
412
|
-
export type ResourceGatewayStatus =
|
|
413
|
-
(typeof ResourceGatewayStatus)[keyof typeof ResourceGatewayStatus];
|
|
414
360
|
export interface CreateResourceGatewayResponse {
|
|
415
361
|
name?: string | undefined;
|
|
416
362
|
id?: string | undefined;
|
|
@@ -452,14 +398,6 @@ export interface DnsEntry {
|
|
|
452
398
|
domainName?: string | undefined;
|
|
453
399
|
hostedZoneId?: string | undefined;
|
|
454
400
|
}
|
|
455
|
-
export declare const ServiceStatus: {
|
|
456
|
-
readonly ACTIVE: "ACTIVE";
|
|
457
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
458
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
459
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
460
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
461
|
-
};
|
|
462
|
-
export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
|
|
463
401
|
export interface CreateServiceResponse {
|
|
464
402
|
id?: string | undefined;
|
|
465
403
|
arn?: string | undefined;
|
|
@@ -494,16 +432,6 @@ export interface CreateServiceNetworkResourceAssociationRequest {
|
|
|
494
432
|
privateDnsEnabled?: boolean | undefined;
|
|
495
433
|
tags?: Record<string, string> | undefined;
|
|
496
434
|
}
|
|
497
|
-
export declare const ServiceNetworkResourceAssociationStatus: {
|
|
498
|
-
readonly ACTIVE: "ACTIVE";
|
|
499
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
500
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
501
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
502
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
503
|
-
readonly PARTIAL: "PARTIAL";
|
|
504
|
-
};
|
|
505
|
-
export type ServiceNetworkResourceAssociationStatus =
|
|
506
|
-
(typeof ServiceNetworkResourceAssociationStatus)[keyof typeof ServiceNetworkResourceAssociationStatus];
|
|
507
435
|
export interface CreateServiceNetworkResourceAssociationResponse {
|
|
508
436
|
id?: string | undefined;
|
|
509
437
|
arn?: string | undefined;
|
|
@@ -517,15 +445,6 @@ export interface CreateServiceNetworkServiceAssociationRequest {
|
|
|
517
445
|
serviceNetworkIdentifier: string | undefined;
|
|
518
446
|
tags?: Record<string, string> | undefined;
|
|
519
447
|
}
|
|
520
|
-
export declare const ServiceNetworkServiceAssociationStatus: {
|
|
521
|
-
readonly ACTIVE: "ACTIVE";
|
|
522
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
523
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
524
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
525
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
526
|
-
};
|
|
527
|
-
export type ServiceNetworkServiceAssociationStatus =
|
|
528
|
-
(typeof ServiceNetworkServiceAssociationStatus)[keyof typeof ServiceNetworkServiceAssociationStatus];
|
|
529
448
|
export interface CreateServiceNetworkServiceAssociationResponse {
|
|
530
449
|
id?: string | undefined;
|
|
531
450
|
status?: ServiceNetworkServiceAssociationStatus | undefined;
|
|
@@ -534,14 +453,6 @@ export interface CreateServiceNetworkServiceAssociationResponse {
|
|
|
534
453
|
customDomainName?: string | undefined;
|
|
535
454
|
dnsEntry?: DnsEntry | undefined;
|
|
536
455
|
}
|
|
537
|
-
export declare const PrivateDnsPreference: {
|
|
538
|
-
readonly ALL_DOMAINS: "ALL_DOMAINS";
|
|
539
|
-
readonly SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY";
|
|
540
|
-
readonly VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS";
|
|
541
|
-
readonly VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY";
|
|
542
|
-
};
|
|
543
|
-
export type PrivateDnsPreference =
|
|
544
|
-
(typeof PrivateDnsPreference)[keyof typeof PrivateDnsPreference];
|
|
545
456
|
export interface DnsOptions {
|
|
546
457
|
privateDnsPreference?: PrivateDnsPreference | undefined;
|
|
547
458
|
privateDnsSpecifiedDomains?: string[] | undefined;
|
|
@@ -555,17 +466,6 @@ export interface CreateServiceNetworkVpcAssociationRequest {
|
|
|
555
466
|
tags?: Record<string, string> | undefined;
|
|
556
467
|
dnsOptions?: DnsOptions | undefined;
|
|
557
468
|
}
|
|
558
|
-
export declare const ServiceNetworkVpcAssociationStatus: {
|
|
559
|
-
readonly ACTIVE: "ACTIVE";
|
|
560
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
561
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
562
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
563
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
564
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
565
|
-
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
566
|
-
};
|
|
567
|
-
export type ServiceNetworkVpcAssociationStatus =
|
|
568
|
-
(typeof ServiceNetworkVpcAssociationStatus)[keyof typeof ServiceNetworkVpcAssociationStatus];
|
|
569
469
|
export interface CreateServiceNetworkVpcAssociationResponse {
|
|
570
470
|
id?: string | undefined;
|
|
571
471
|
status?: ServiceNetworkVpcAssociationStatus | undefined;
|
|
@@ -590,19 +490,6 @@ export declare namespace Matcher {
|
|
|
590
490
|
_: (name: string, value: any) => T;
|
|
591
491
|
}
|
|
592
492
|
}
|
|
593
|
-
export declare const TargetGroupProtocol: {
|
|
594
|
-
readonly HTTP: "HTTP";
|
|
595
|
-
readonly HTTPS: "HTTPS";
|
|
596
|
-
readonly TCP: "TCP";
|
|
597
|
-
};
|
|
598
|
-
export type TargetGroupProtocol =
|
|
599
|
-
(typeof TargetGroupProtocol)[keyof typeof TargetGroupProtocol];
|
|
600
|
-
export declare const HealthCheckProtocolVersion: {
|
|
601
|
-
readonly HTTP1: "HTTP1";
|
|
602
|
-
readonly HTTP2: "HTTP2";
|
|
603
|
-
};
|
|
604
|
-
export type HealthCheckProtocolVersion =
|
|
605
|
-
(typeof HealthCheckProtocolVersion)[keyof typeof HealthCheckProtocolVersion];
|
|
606
493
|
export interface HealthCheckConfig {
|
|
607
494
|
enabled?: boolean | undefined;
|
|
608
495
|
protocol?: TargetGroupProtocol | undefined;
|
|
@@ -615,24 +502,6 @@ export interface HealthCheckConfig {
|
|
|
615
502
|
unhealthyThresholdCount?: number | undefined;
|
|
616
503
|
matcher?: Matcher | undefined;
|
|
617
504
|
}
|
|
618
|
-
export declare const IpAddressType: {
|
|
619
|
-
readonly IPV4: "IPV4";
|
|
620
|
-
readonly IPV6: "IPV6";
|
|
621
|
-
};
|
|
622
|
-
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
623
|
-
export declare const LambdaEventStructureVersion: {
|
|
624
|
-
readonly V1: "V1";
|
|
625
|
-
readonly V2: "V2";
|
|
626
|
-
};
|
|
627
|
-
export type LambdaEventStructureVersion =
|
|
628
|
-
(typeof LambdaEventStructureVersion)[keyof typeof LambdaEventStructureVersion];
|
|
629
|
-
export declare const TargetGroupProtocolVersion: {
|
|
630
|
-
readonly GRPC: "GRPC";
|
|
631
|
-
readonly HTTP1: "HTTP1";
|
|
632
|
-
readonly HTTP2: "HTTP2";
|
|
633
|
-
};
|
|
634
|
-
export type TargetGroupProtocolVersion =
|
|
635
|
-
(typeof TargetGroupProtocolVersion)[keyof typeof TargetGroupProtocolVersion];
|
|
636
505
|
export interface TargetGroupConfig {
|
|
637
506
|
port?: number | undefined;
|
|
638
507
|
protocol?: TargetGroupProtocol | undefined;
|
|
@@ -642,14 +511,6 @@ export interface TargetGroupConfig {
|
|
|
642
511
|
healthCheck?: HealthCheckConfig | undefined;
|
|
643
512
|
lambdaEventStructureVersion?: LambdaEventStructureVersion | undefined;
|
|
644
513
|
}
|
|
645
|
-
export declare const TargetGroupType: {
|
|
646
|
-
readonly ALB: "ALB";
|
|
647
|
-
readonly INSTANCE: "INSTANCE";
|
|
648
|
-
readonly IP: "IP";
|
|
649
|
-
readonly LAMBDA: "LAMBDA";
|
|
650
|
-
};
|
|
651
|
-
export type TargetGroupType =
|
|
652
|
-
(typeof TargetGroupType)[keyof typeof TargetGroupType];
|
|
653
514
|
export interface CreateTargetGroupRequest {
|
|
654
515
|
name: string | undefined;
|
|
655
516
|
type: TargetGroupType | undefined;
|
|
@@ -657,15 +518,6 @@ export interface CreateTargetGroupRequest {
|
|
|
657
518
|
clientToken?: string | undefined;
|
|
658
519
|
tags?: Record<string, string> | undefined;
|
|
659
520
|
}
|
|
660
|
-
export declare const TargetGroupStatus: {
|
|
661
|
-
readonly ACTIVE: "ACTIVE";
|
|
662
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
663
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
664
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
665
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
666
|
-
};
|
|
667
|
-
export type TargetGroupStatus =
|
|
668
|
-
(typeof TargetGroupStatus)[keyof typeof TargetGroupStatus];
|
|
669
521
|
export interface CreateTargetGroupResponse {
|
|
670
522
|
id?: string | undefined;
|
|
671
523
|
arn?: string | undefined;
|
|
@@ -786,13 +638,6 @@ export interface DeregisterTargetsResponse {
|
|
|
786
638
|
export interface GetDomainVerificationRequest {
|
|
787
639
|
domainVerificationIdentifier: string | undefined;
|
|
788
640
|
}
|
|
789
|
-
export declare const VerificationStatus: {
|
|
790
|
-
readonly PENDING: "PENDING";
|
|
791
|
-
readonly VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT";
|
|
792
|
-
readonly VERIFIED: "VERIFIED";
|
|
793
|
-
};
|
|
794
|
-
export type VerificationStatus =
|
|
795
|
-
(typeof VerificationStatus)[keyof typeof VerificationStatus];
|
|
796
641
|
export interface TxtMethodConfig {
|
|
797
642
|
value: string | undefined;
|
|
798
643
|
name: string | undefined;
|
|
@@ -1327,15 +1172,6 @@ export interface ListTargetsRequest {
|
|
|
1327
1172
|
nextToken?: string | undefined;
|
|
1328
1173
|
targets?: Target[] | undefined;
|
|
1329
1174
|
}
|
|
1330
|
-
export declare const TargetStatus: {
|
|
1331
|
-
readonly DRAINING: "DRAINING";
|
|
1332
|
-
readonly HEALTHY: "HEALTHY";
|
|
1333
|
-
readonly INITIAL: "INITIAL";
|
|
1334
|
-
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
1335
|
-
readonly UNHEALTHY: "UNHEALTHY";
|
|
1336
|
-
readonly UNUSED: "UNUSED";
|
|
1337
|
-
};
|
|
1338
|
-
export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
|
|
1339
1175
|
export interface TargetSummary {
|
|
1340
1176
|
id?: string | undefined;
|
|
1341
1177
|
port?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-vpc-lattice",
|
|
3
3
|
"description": "AWS SDK for JavaScript Vpc Lattice Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.939.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-vpc-lattice",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.939.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|