@aws-sdk/client-vpc-lattice 3.926.0 → 3.927.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 +32 -0
- package/dist-cjs/index.js +250 -0
- package/dist-es/VPCLattice.js +8 -0
- package/dist-es/commands/DeleteDomainVerificationCommand.js +22 -0
- package/dist-es/commands/GetDomainVerificationCommand.js +22 -0
- package/dist-es/commands/ListDomainVerificationsCommand.js +22 -0
- package/dist-es/commands/StartDomainVerificationCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +11 -0
- package/dist-es/pagination/ListDomainVerificationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +158 -0
- package/dist-types/VPCLattice.d.ts +29 -0
- package/dist-types/VPCLatticeClient.d.ts +6 -2
- package/dist-types/commands/CreateResourceConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/CreateServiceNetworkResourceAssociationCommand.d.ts +2 -0
- package/dist-types/commands/CreateServiceNetworkVpcAssociationCommand.d.ts +14 -0
- package/dist-types/commands/DeleteDomainVerificationCommand.d.ts +87 -0
- package/dist-types/commands/GetDomainVerificationCommand.d.ts +101 -0
- package/dist-types/commands/GetResourceConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/GetServiceNetworkResourceAssociationCommand.d.ts +2 -0
- package/dist-types/commands/GetServiceNetworkVpcAssociationCommand.d.ts +7 -0
- package/dist-types/commands/ListDomainVerificationsCommand.d.ts +107 -0
- package/dist-types/commands/ListResourceConfigurationsCommand.d.ts +4 -0
- package/dist-types/commands/ListServiceNetworkResourceAssociationsCommand.d.ts +1 -0
- package/dist-types/commands/ListServiceNetworkVpcAssociationsCommand.d.ts +7 -0
- package/dist-types/commands/StartDomainVerificationCommand.d.ts +103 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +395 -0
- package/dist-types/pagination/ListDomainVerificationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/VPCLattice.d.ts +69 -0
- package/dist-types/ts3.4/VPCLatticeClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteDomainVerificationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDomainVerificationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDomainVerificationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartDomainVerificationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +98 -0
- package/dist-types/ts3.4/pagination/ListDomainVerificationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +5 -5
|
@@ -55,6 +55,10 @@ import {
|
|
|
55
55
|
DeleteAuthPolicyCommandInput,
|
|
56
56
|
DeleteAuthPolicyCommandOutput,
|
|
57
57
|
} from "./commands/DeleteAuthPolicyCommand";
|
|
58
|
+
import {
|
|
59
|
+
DeleteDomainVerificationCommandInput,
|
|
60
|
+
DeleteDomainVerificationCommandOutput,
|
|
61
|
+
} from "./commands/DeleteDomainVerificationCommand";
|
|
58
62
|
import {
|
|
59
63
|
DeleteListenerCommandInput,
|
|
60
64
|
DeleteListenerCommandOutput,
|
|
@@ -115,6 +119,10 @@ import {
|
|
|
115
119
|
GetAuthPolicyCommandInput,
|
|
116
120
|
GetAuthPolicyCommandOutput,
|
|
117
121
|
} from "./commands/GetAuthPolicyCommand";
|
|
122
|
+
import {
|
|
123
|
+
GetDomainVerificationCommandInput,
|
|
124
|
+
GetDomainVerificationCommandOutput,
|
|
125
|
+
} from "./commands/GetDomainVerificationCommand";
|
|
118
126
|
import {
|
|
119
127
|
GetListenerCommandInput,
|
|
120
128
|
GetListenerCommandOutput,
|
|
@@ -163,6 +171,10 @@ import {
|
|
|
163
171
|
ListAccessLogSubscriptionsCommandInput,
|
|
164
172
|
ListAccessLogSubscriptionsCommandOutput,
|
|
165
173
|
} from "./commands/ListAccessLogSubscriptionsCommand";
|
|
174
|
+
import {
|
|
175
|
+
ListDomainVerificationsCommandInput,
|
|
176
|
+
ListDomainVerificationsCommandOutput,
|
|
177
|
+
} from "./commands/ListDomainVerificationsCommand";
|
|
166
178
|
import {
|
|
167
179
|
ListListenersCommandInput,
|
|
168
180
|
ListListenersCommandOutput,
|
|
@@ -231,6 +243,10 @@ import {
|
|
|
231
243
|
RegisterTargetsCommandInput,
|
|
232
244
|
RegisterTargetsCommandOutput,
|
|
233
245
|
} from "./commands/RegisterTargetsCommand";
|
|
246
|
+
import {
|
|
247
|
+
StartDomainVerificationCommandInput,
|
|
248
|
+
StartDomainVerificationCommandOutput,
|
|
249
|
+
} from "./commands/StartDomainVerificationCommand";
|
|
234
250
|
import {
|
|
235
251
|
TagResourceCommandInput,
|
|
236
252
|
TagResourceCommandOutput,
|
|
@@ -477,6 +493,19 @@ export interface VPCLattice {
|
|
|
477
493
|
options: __HttpHandlerOptions,
|
|
478
494
|
cb: (err: any, data?: DeleteAuthPolicyCommandOutput) => void
|
|
479
495
|
): void;
|
|
496
|
+
deleteDomainVerification(
|
|
497
|
+
args: DeleteDomainVerificationCommandInput,
|
|
498
|
+
options?: __HttpHandlerOptions
|
|
499
|
+
): Promise<DeleteDomainVerificationCommandOutput>;
|
|
500
|
+
deleteDomainVerification(
|
|
501
|
+
args: DeleteDomainVerificationCommandInput,
|
|
502
|
+
cb: (err: any, data?: DeleteDomainVerificationCommandOutput) => void
|
|
503
|
+
): void;
|
|
504
|
+
deleteDomainVerification(
|
|
505
|
+
args: DeleteDomainVerificationCommandInput,
|
|
506
|
+
options: __HttpHandlerOptions,
|
|
507
|
+
cb: (err: any, data?: DeleteDomainVerificationCommandOutput) => void
|
|
508
|
+
): void;
|
|
480
509
|
deleteListener(
|
|
481
510
|
args: DeleteListenerCommandInput,
|
|
482
511
|
options?: __HttpHandlerOptions
|
|
@@ -696,6 +725,19 @@ export interface VPCLattice {
|
|
|
696
725
|
options: __HttpHandlerOptions,
|
|
697
726
|
cb: (err: any, data?: GetAuthPolicyCommandOutput) => void
|
|
698
727
|
): void;
|
|
728
|
+
getDomainVerification(
|
|
729
|
+
args: GetDomainVerificationCommandInput,
|
|
730
|
+
options?: __HttpHandlerOptions
|
|
731
|
+
): Promise<GetDomainVerificationCommandOutput>;
|
|
732
|
+
getDomainVerification(
|
|
733
|
+
args: GetDomainVerificationCommandInput,
|
|
734
|
+
cb: (err: any, data?: GetDomainVerificationCommandOutput) => void
|
|
735
|
+
): void;
|
|
736
|
+
getDomainVerification(
|
|
737
|
+
args: GetDomainVerificationCommandInput,
|
|
738
|
+
options: __HttpHandlerOptions,
|
|
739
|
+
cb: (err: any, data?: GetDomainVerificationCommandOutput) => void
|
|
740
|
+
): void;
|
|
699
741
|
getListener(
|
|
700
742
|
args: GetListenerCommandInput,
|
|
701
743
|
options?: __HttpHandlerOptions
|
|
@@ -864,6 +906,20 @@ export interface VPCLattice {
|
|
|
864
906
|
options: __HttpHandlerOptions,
|
|
865
907
|
cb: (err: any, data?: ListAccessLogSubscriptionsCommandOutput) => void
|
|
866
908
|
): void;
|
|
909
|
+
listDomainVerifications(): Promise<ListDomainVerificationsCommandOutput>;
|
|
910
|
+
listDomainVerifications(
|
|
911
|
+
args: ListDomainVerificationsCommandInput,
|
|
912
|
+
options?: __HttpHandlerOptions
|
|
913
|
+
): Promise<ListDomainVerificationsCommandOutput>;
|
|
914
|
+
listDomainVerifications(
|
|
915
|
+
args: ListDomainVerificationsCommandInput,
|
|
916
|
+
cb: (err: any, data?: ListDomainVerificationsCommandOutput) => void
|
|
917
|
+
): void;
|
|
918
|
+
listDomainVerifications(
|
|
919
|
+
args: ListDomainVerificationsCommandInput,
|
|
920
|
+
options: __HttpHandlerOptions,
|
|
921
|
+
cb: (err: any, data?: ListDomainVerificationsCommandOutput) => void
|
|
922
|
+
): void;
|
|
867
923
|
listListeners(
|
|
868
924
|
args: ListListenersCommandInput,
|
|
869
925
|
options?: __HttpHandlerOptions
|
|
@@ -1117,6 +1173,19 @@ export interface VPCLattice {
|
|
|
1117
1173
|
options: __HttpHandlerOptions,
|
|
1118
1174
|
cb: (err: any, data?: RegisterTargetsCommandOutput) => void
|
|
1119
1175
|
): void;
|
|
1176
|
+
startDomainVerification(
|
|
1177
|
+
args: StartDomainVerificationCommandInput,
|
|
1178
|
+
options?: __HttpHandlerOptions
|
|
1179
|
+
): Promise<StartDomainVerificationCommandOutput>;
|
|
1180
|
+
startDomainVerification(
|
|
1181
|
+
args: StartDomainVerificationCommandInput,
|
|
1182
|
+
cb: (err: any, data?: StartDomainVerificationCommandOutput) => void
|
|
1183
|
+
): void;
|
|
1184
|
+
startDomainVerification(
|
|
1185
|
+
args: StartDomainVerificationCommandInput,
|
|
1186
|
+
options: __HttpHandlerOptions,
|
|
1187
|
+
cb: (err: any, data?: StartDomainVerificationCommandOutput) => void
|
|
1188
|
+
): void;
|
|
1120
1189
|
tagResource(
|
|
1121
1190
|
args: TagResourceCommandInput,
|
|
1122
1191
|
options?: __HttpHandlerOptions
|
|
@@ -101,6 +101,10 @@ import {
|
|
|
101
101
|
DeleteAuthPolicyCommandInput,
|
|
102
102
|
DeleteAuthPolicyCommandOutput,
|
|
103
103
|
} from "./commands/DeleteAuthPolicyCommand";
|
|
104
|
+
import {
|
|
105
|
+
DeleteDomainVerificationCommandInput,
|
|
106
|
+
DeleteDomainVerificationCommandOutput,
|
|
107
|
+
} from "./commands/DeleteDomainVerificationCommand";
|
|
104
108
|
import {
|
|
105
109
|
DeleteListenerCommandInput,
|
|
106
110
|
DeleteListenerCommandOutput,
|
|
@@ -161,6 +165,10 @@ import {
|
|
|
161
165
|
GetAuthPolicyCommandInput,
|
|
162
166
|
GetAuthPolicyCommandOutput,
|
|
163
167
|
} from "./commands/GetAuthPolicyCommand";
|
|
168
|
+
import {
|
|
169
|
+
GetDomainVerificationCommandInput,
|
|
170
|
+
GetDomainVerificationCommandOutput,
|
|
171
|
+
} from "./commands/GetDomainVerificationCommand";
|
|
164
172
|
import {
|
|
165
173
|
GetListenerCommandInput,
|
|
166
174
|
GetListenerCommandOutput,
|
|
@@ -209,6 +217,10 @@ import {
|
|
|
209
217
|
ListAccessLogSubscriptionsCommandInput,
|
|
210
218
|
ListAccessLogSubscriptionsCommandOutput,
|
|
211
219
|
} from "./commands/ListAccessLogSubscriptionsCommand";
|
|
220
|
+
import {
|
|
221
|
+
ListDomainVerificationsCommandInput,
|
|
222
|
+
ListDomainVerificationsCommandOutput,
|
|
223
|
+
} from "./commands/ListDomainVerificationsCommand";
|
|
212
224
|
import {
|
|
213
225
|
ListListenersCommandInput,
|
|
214
226
|
ListListenersCommandOutput,
|
|
@@ -277,6 +289,10 @@ import {
|
|
|
277
289
|
RegisterTargetsCommandInput,
|
|
278
290
|
RegisterTargetsCommandOutput,
|
|
279
291
|
} from "./commands/RegisterTargetsCommand";
|
|
292
|
+
import {
|
|
293
|
+
StartDomainVerificationCommandInput,
|
|
294
|
+
StartDomainVerificationCommandOutput,
|
|
295
|
+
} from "./commands/StartDomainVerificationCommand";
|
|
280
296
|
import {
|
|
281
297
|
TagResourceCommandInput,
|
|
282
298
|
TagResourceCommandOutput,
|
|
@@ -343,6 +359,7 @@ export type ServiceInputTypes =
|
|
|
343
359
|
| CreateTargetGroupCommandInput
|
|
344
360
|
| DeleteAccessLogSubscriptionCommandInput
|
|
345
361
|
| DeleteAuthPolicyCommandInput
|
|
362
|
+
| DeleteDomainVerificationCommandInput
|
|
346
363
|
| DeleteListenerCommandInput
|
|
347
364
|
| DeleteResourceConfigurationCommandInput
|
|
348
365
|
| DeleteResourceEndpointAssociationCommandInput
|
|
@@ -358,6 +375,7 @@ export type ServiceInputTypes =
|
|
|
358
375
|
| DeregisterTargetsCommandInput
|
|
359
376
|
| GetAccessLogSubscriptionCommandInput
|
|
360
377
|
| GetAuthPolicyCommandInput
|
|
378
|
+
| GetDomainVerificationCommandInput
|
|
361
379
|
| GetListenerCommandInput
|
|
362
380
|
| GetResourceConfigurationCommandInput
|
|
363
381
|
| GetResourceGatewayCommandInput
|
|
@@ -370,6 +388,7 @@ export type ServiceInputTypes =
|
|
|
370
388
|
| GetServiceNetworkVpcAssociationCommandInput
|
|
371
389
|
| GetTargetGroupCommandInput
|
|
372
390
|
| ListAccessLogSubscriptionsCommandInput
|
|
391
|
+
| ListDomainVerificationsCommandInput
|
|
373
392
|
| ListListenersCommandInput
|
|
374
393
|
| ListResourceConfigurationsCommandInput
|
|
375
394
|
| ListResourceEndpointAssociationsCommandInput
|
|
@@ -387,6 +406,7 @@ export type ServiceInputTypes =
|
|
|
387
406
|
| PutAuthPolicyCommandInput
|
|
388
407
|
| PutResourcePolicyCommandInput
|
|
389
408
|
| RegisterTargetsCommandInput
|
|
409
|
+
| StartDomainVerificationCommandInput
|
|
390
410
|
| TagResourceCommandInput
|
|
391
411
|
| UntagResourceCommandInput
|
|
392
412
|
| UpdateAccessLogSubscriptionCommandInput
|
|
@@ -413,6 +433,7 @@ export type ServiceOutputTypes =
|
|
|
413
433
|
| CreateTargetGroupCommandOutput
|
|
414
434
|
| DeleteAccessLogSubscriptionCommandOutput
|
|
415
435
|
| DeleteAuthPolicyCommandOutput
|
|
436
|
+
| DeleteDomainVerificationCommandOutput
|
|
416
437
|
| DeleteListenerCommandOutput
|
|
417
438
|
| DeleteResourceConfigurationCommandOutput
|
|
418
439
|
| DeleteResourceEndpointAssociationCommandOutput
|
|
@@ -428,6 +449,7 @@ export type ServiceOutputTypes =
|
|
|
428
449
|
| DeregisterTargetsCommandOutput
|
|
429
450
|
| GetAccessLogSubscriptionCommandOutput
|
|
430
451
|
| GetAuthPolicyCommandOutput
|
|
452
|
+
| GetDomainVerificationCommandOutput
|
|
431
453
|
| GetListenerCommandOutput
|
|
432
454
|
| GetResourceConfigurationCommandOutput
|
|
433
455
|
| GetResourceGatewayCommandOutput
|
|
@@ -440,6 +462,7 @@ export type ServiceOutputTypes =
|
|
|
440
462
|
| GetServiceNetworkVpcAssociationCommandOutput
|
|
441
463
|
| GetTargetGroupCommandOutput
|
|
442
464
|
| ListAccessLogSubscriptionsCommandOutput
|
|
465
|
+
| ListDomainVerificationsCommandOutput
|
|
443
466
|
| ListListenersCommandOutput
|
|
444
467
|
| ListResourceConfigurationsCommandOutput
|
|
445
468
|
| ListResourceEndpointAssociationsCommandOutput
|
|
@@ -457,6 +480,7 @@ export type ServiceOutputTypes =
|
|
|
457
480
|
| PutAuthPolicyCommandOutput
|
|
458
481
|
| PutResourcePolicyCommandOutput
|
|
459
482
|
| RegisterTargetsCommandOutput
|
|
483
|
+
| StartDomainVerificationCommandOutput
|
|
460
484
|
| TagResourceCommandOutput
|
|
461
485
|
| UntagResourceCommandOutput
|
|
462
486
|
| UpdateAccessLogSubscriptionCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteDomainVerificationRequest,
|
|
5
|
+
DeleteDomainVerificationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
VPCLatticeClientResolvedConfig,
|
|
11
|
+
} from "../VPCLatticeClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDomainVerificationCommandInput
|
|
15
|
+
extends DeleteDomainVerificationRequest {}
|
|
16
|
+
export interface DeleteDomainVerificationCommandOutput
|
|
17
|
+
extends DeleteDomainVerificationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteDomainVerificationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteDomainVerificationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteDomainVerificationCommandInput,
|
|
24
|
+
DeleteDomainVerificationCommandOutput,
|
|
25
|
+
VPCLatticeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteDomainVerificationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteDomainVerificationCommandInput,
|
|
33
|
+
DeleteDomainVerificationCommandOutput,
|
|
34
|
+
VPCLatticeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteDomainVerificationCommand extends DeleteDomainVerificationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteDomainVerificationRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteDomainVerificationCommandInput;
|
|
48
|
+
output: DeleteDomainVerificationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetDomainVerificationRequest,
|
|
5
|
+
GetDomainVerificationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
VPCLatticeClientResolvedConfig,
|
|
11
|
+
} from "../VPCLatticeClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDomainVerificationCommandInput
|
|
15
|
+
extends GetDomainVerificationRequest {}
|
|
16
|
+
export interface GetDomainVerificationCommandOutput
|
|
17
|
+
extends GetDomainVerificationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDomainVerificationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDomainVerificationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDomainVerificationCommandInput,
|
|
24
|
+
GetDomainVerificationCommandOutput,
|
|
25
|
+
VPCLatticeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetDomainVerificationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDomainVerificationCommandInput,
|
|
33
|
+
GetDomainVerificationCommandOutput,
|
|
34
|
+
VPCLatticeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDomainVerificationCommand extends GetDomainVerificationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDomainVerificationRequest;
|
|
44
|
+
output: GetDomainVerificationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDomainVerificationCommandInput;
|
|
48
|
+
output: GetDomainVerificationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListDomainVerificationsRequest,
|
|
5
|
+
ListDomainVerificationsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
VPCLatticeClientResolvedConfig,
|
|
11
|
+
} from "../VPCLatticeClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDomainVerificationsCommandInput
|
|
15
|
+
extends ListDomainVerificationsRequest {}
|
|
16
|
+
export interface ListDomainVerificationsCommandOutput
|
|
17
|
+
extends ListDomainVerificationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDomainVerificationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDomainVerificationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDomainVerificationsCommandInput,
|
|
24
|
+
ListDomainVerificationsCommandOutput,
|
|
25
|
+
VPCLatticeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListDomainVerificationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDomainVerificationsCommandInput,
|
|
33
|
+
ListDomainVerificationsCommandOutput,
|
|
34
|
+
VPCLatticeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDomainVerificationsCommand extends ListDomainVerificationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDomainVerificationsRequest;
|
|
44
|
+
output: ListDomainVerificationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDomainVerificationsCommandInput;
|
|
48
|
+
output: ListDomainVerificationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
StartDomainVerificationRequest,
|
|
5
|
+
StartDomainVerificationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
VPCLatticeClientResolvedConfig,
|
|
11
|
+
} from "../VPCLatticeClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartDomainVerificationCommandInput
|
|
15
|
+
extends StartDomainVerificationRequest {}
|
|
16
|
+
export interface StartDomainVerificationCommandOutput
|
|
17
|
+
extends StartDomainVerificationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartDomainVerificationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartDomainVerificationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartDomainVerificationCommandInput,
|
|
24
|
+
StartDomainVerificationCommandOutput,
|
|
25
|
+
VPCLatticeClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StartDomainVerificationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartDomainVerificationCommandInput,
|
|
33
|
+
StartDomainVerificationCommandOutput,
|
|
34
|
+
VPCLatticeClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartDomainVerificationCommand extends StartDomainVerificationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartDomainVerificationRequest;
|
|
44
|
+
output: StartDomainVerificationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartDomainVerificationCommandInput;
|
|
48
|
+
output: StartDomainVerificationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -12,6 +12,7 @@ export * from "./CreateServiceNetworkVpcAssociationCommand";
|
|
|
12
12
|
export * from "./CreateTargetGroupCommand";
|
|
13
13
|
export * from "./DeleteAccessLogSubscriptionCommand";
|
|
14
14
|
export * from "./DeleteAuthPolicyCommand";
|
|
15
|
+
export * from "./DeleteDomainVerificationCommand";
|
|
15
16
|
export * from "./DeleteListenerCommand";
|
|
16
17
|
export * from "./DeleteResourceConfigurationCommand";
|
|
17
18
|
export * from "./DeleteResourceEndpointAssociationCommand";
|
|
@@ -27,6 +28,7 @@ export * from "./DeleteTargetGroupCommand";
|
|
|
27
28
|
export * from "./DeregisterTargetsCommand";
|
|
28
29
|
export * from "./GetAccessLogSubscriptionCommand";
|
|
29
30
|
export * from "./GetAuthPolicyCommand";
|
|
31
|
+
export * from "./GetDomainVerificationCommand";
|
|
30
32
|
export * from "./GetListenerCommand";
|
|
31
33
|
export * from "./GetResourceConfigurationCommand";
|
|
32
34
|
export * from "./GetResourceGatewayCommand";
|
|
@@ -39,6 +41,7 @@ export * from "./GetServiceNetworkServiceAssociationCommand";
|
|
|
39
41
|
export * from "./GetServiceNetworkVpcAssociationCommand";
|
|
40
42
|
export * from "./GetTargetGroupCommand";
|
|
41
43
|
export * from "./ListAccessLogSubscriptionsCommand";
|
|
44
|
+
export * from "./ListDomainVerificationsCommand";
|
|
42
45
|
export * from "./ListListenersCommand";
|
|
43
46
|
export * from "./ListResourceConfigurationsCommand";
|
|
44
47
|
export * from "./ListResourceEndpointAssociationsCommand";
|
|
@@ -56,6 +59,7 @@ export * from "./ListTargetsCommand";
|
|
|
56
59
|
export * from "./PutAuthPolicyCommand";
|
|
57
60
|
export * from "./PutResourcePolicyCommand";
|
|
58
61
|
export * from "./RegisterTargetsCommand";
|
|
62
|
+
export * from "./StartDomainVerificationCommand";
|
|
59
63
|
export * from "./TagResourceCommand";
|
|
60
64
|
export * from "./UntagResourceCommand";
|
|
61
65
|
export * from "./UpdateAccessLogSubscriptionCommand";
|
|
@@ -422,6 +422,9 @@ export interface CreateResourceConfigurationRequest {
|
|
|
422
422
|
resourceConfigurationGroupIdentifier?: string | undefined;
|
|
423
423
|
resourceConfigurationDefinition?: ResourceConfigurationDefinition | undefined;
|
|
424
424
|
allowAssociationToShareableServiceNetwork?: boolean | undefined;
|
|
425
|
+
customDomainName?: string | undefined;
|
|
426
|
+
groupDomain?: string | undefined;
|
|
427
|
+
domainVerificationIdentifier?: string | undefined;
|
|
425
428
|
clientToken?: string | undefined;
|
|
426
429
|
tags?: Record<string, string> | undefined;
|
|
427
430
|
}
|
|
@@ -450,6 +453,10 @@ export interface CreateResourceConfigurationResponse {
|
|
|
450
453
|
allowAssociationToShareableServiceNetwork?: boolean | undefined;
|
|
451
454
|
createdAt?: Date | undefined;
|
|
452
455
|
failureReason?: string | undefined;
|
|
456
|
+
customDomainName?: string | undefined;
|
|
457
|
+
domainVerificationId?: string | undefined;
|
|
458
|
+
groupDomain?: string | undefined;
|
|
459
|
+
domainVerificationArn?: string | undefined;
|
|
453
460
|
}
|
|
454
461
|
export declare const ResourceGatewayIpAddressType: {
|
|
455
462
|
readonly DUALSTACK: "DUALSTACK";
|
|
@@ -559,6 +566,7 @@ export interface CreateServiceNetworkResourceAssociationRequest {
|
|
|
559
566
|
clientToken?: string | undefined;
|
|
560
567
|
resourceConfigurationIdentifier: string | undefined;
|
|
561
568
|
serviceNetworkIdentifier: string | undefined;
|
|
569
|
+
privateDnsEnabled?: boolean | undefined;
|
|
562
570
|
tags?: Record<string, string> | undefined;
|
|
563
571
|
}
|
|
564
572
|
export declare const ServiceNetworkResourceAssociationStatus: {
|
|
@@ -576,6 +584,7 @@ export interface CreateServiceNetworkResourceAssociationResponse {
|
|
|
576
584
|
arn?: string | undefined;
|
|
577
585
|
status?: ServiceNetworkResourceAssociationStatus | undefined;
|
|
578
586
|
createdBy?: string | undefined;
|
|
587
|
+
privateDnsEnabled?: boolean | undefined;
|
|
579
588
|
}
|
|
580
589
|
export interface CreateServiceNetworkServiceAssociationRequest {
|
|
581
590
|
clientToken?: string | undefined;
|
|
@@ -600,12 +609,26 @@ export interface CreateServiceNetworkServiceAssociationResponse {
|
|
|
600
609
|
customDomainName?: string | undefined;
|
|
601
610
|
dnsEntry?: DnsEntry | undefined;
|
|
602
611
|
}
|
|
612
|
+
export declare const PrivateDnsPreference: {
|
|
613
|
+
readonly ALL_DOMAINS: "ALL_DOMAINS";
|
|
614
|
+
readonly SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY";
|
|
615
|
+
readonly VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS";
|
|
616
|
+
readonly VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY";
|
|
617
|
+
};
|
|
618
|
+
export type PrivateDnsPreference =
|
|
619
|
+
(typeof PrivateDnsPreference)[keyof typeof PrivateDnsPreference];
|
|
620
|
+
export interface DnsOptions {
|
|
621
|
+
privateDnsPreference?: PrivateDnsPreference | undefined;
|
|
622
|
+
privateDnsSpecifiedDomains?: string[] | undefined;
|
|
623
|
+
}
|
|
603
624
|
export interface CreateServiceNetworkVpcAssociationRequest {
|
|
604
625
|
clientToken?: string | undefined;
|
|
605
626
|
serviceNetworkIdentifier: string | undefined;
|
|
606
627
|
vpcIdentifier: string | undefined;
|
|
628
|
+
privateDnsEnabled?: boolean | undefined;
|
|
607
629
|
securityGroupIds?: string[] | undefined;
|
|
608
630
|
tags?: Record<string, string> | undefined;
|
|
631
|
+
dnsOptions?: DnsOptions | undefined;
|
|
609
632
|
}
|
|
610
633
|
export declare const ServiceNetworkVpcAssociationStatus: {
|
|
611
634
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -624,6 +647,8 @@ export interface CreateServiceNetworkVpcAssociationResponse {
|
|
|
624
647
|
arn?: string | undefined;
|
|
625
648
|
createdBy?: string | undefined;
|
|
626
649
|
securityGroupIds?: string[] | undefined;
|
|
650
|
+
privateDnsEnabled?: boolean | undefined;
|
|
651
|
+
dnsOptions?: DnsOptions | undefined;
|
|
627
652
|
}
|
|
628
653
|
export type Matcher = Matcher.HttpCodeMember | Matcher.$UnknownMember;
|
|
629
654
|
export declare namespace Matcher {
|
|
@@ -729,6 +754,10 @@ export interface DeleteAuthPolicyRequest {
|
|
|
729
754
|
resourceIdentifier: string | undefined;
|
|
730
755
|
}
|
|
731
756
|
export interface DeleteAuthPolicyResponse {}
|
|
757
|
+
export interface DeleteDomainVerificationRequest {
|
|
758
|
+
domainVerificationIdentifier: string | undefined;
|
|
759
|
+
}
|
|
760
|
+
export interface DeleteDomainVerificationResponse {}
|
|
732
761
|
export interface DeleteListenerRequest {
|
|
733
762
|
serviceIdentifier: string | undefined;
|
|
734
763
|
listenerIdentifier: string | undefined;
|
|
@@ -830,6 +859,60 @@ export interface DeregisterTargetsResponse {
|
|
|
830
859
|
successful?: Target[] | undefined;
|
|
831
860
|
unsuccessful?: TargetFailure[] | undefined;
|
|
832
861
|
}
|
|
862
|
+
export interface GetDomainVerificationRequest {
|
|
863
|
+
domainVerificationIdentifier: string | undefined;
|
|
864
|
+
}
|
|
865
|
+
export declare const VerificationStatus: {
|
|
866
|
+
readonly PENDING: "PENDING";
|
|
867
|
+
readonly VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT";
|
|
868
|
+
readonly VERIFIED: "VERIFIED";
|
|
869
|
+
};
|
|
870
|
+
export type VerificationStatus =
|
|
871
|
+
(typeof VerificationStatus)[keyof typeof VerificationStatus];
|
|
872
|
+
export interface TxtMethodConfig {
|
|
873
|
+
value: string | undefined;
|
|
874
|
+
name: string | undefined;
|
|
875
|
+
}
|
|
876
|
+
export interface GetDomainVerificationResponse {
|
|
877
|
+
id: string | undefined;
|
|
878
|
+
arn: string | undefined;
|
|
879
|
+
domainName: string | undefined;
|
|
880
|
+
status: VerificationStatus | undefined;
|
|
881
|
+
txtMethodConfig?: TxtMethodConfig | undefined;
|
|
882
|
+
createdAt: Date | undefined;
|
|
883
|
+
lastVerifiedTime?: Date | undefined;
|
|
884
|
+
tags?: Record<string, string> | undefined;
|
|
885
|
+
}
|
|
886
|
+
export interface ListDomainVerificationsRequest {
|
|
887
|
+
maxResults?: number | undefined;
|
|
888
|
+
nextToken?: string | undefined;
|
|
889
|
+
}
|
|
890
|
+
export interface DomainVerificationSummary {
|
|
891
|
+
id: string | undefined;
|
|
892
|
+
arn: string | undefined;
|
|
893
|
+
domainName: string | undefined;
|
|
894
|
+
status: VerificationStatus | undefined;
|
|
895
|
+
txtMethodConfig?: TxtMethodConfig | undefined;
|
|
896
|
+
createdAt: Date | undefined;
|
|
897
|
+
lastVerifiedTime?: Date | undefined;
|
|
898
|
+
tags?: Record<string, string> | undefined;
|
|
899
|
+
}
|
|
900
|
+
export interface ListDomainVerificationsResponse {
|
|
901
|
+
items: DomainVerificationSummary[] | undefined;
|
|
902
|
+
nextToken?: string | undefined;
|
|
903
|
+
}
|
|
904
|
+
export interface StartDomainVerificationRequest {
|
|
905
|
+
clientToken?: string | undefined;
|
|
906
|
+
domainName: string | undefined;
|
|
907
|
+
tags?: Record<string, string> | undefined;
|
|
908
|
+
}
|
|
909
|
+
export interface StartDomainVerificationResponse {
|
|
910
|
+
id: string | undefined;
|
|
911
|
+
arn: string | undefined;
|
|
912
|
+
domainName: string | undefined;
|
|
913
|
+
status: VerificationStatus | undefined;
|
|
914
|
+
txtMethodConfig?: TxtMethodConfig | undefined;
|
|
915
|
+
}
|
|
833
916
|
export interface GetAuthPolicyRequest {
|
|
834
917
|
resourceIdentifier: string | undefined;
|
|
835
918
|
}
|
|
@@ -875,6 +958,10 @@ export interface GetResourceConfigurationResponse {
|
|
|
875
958
|
amazonManaged?: boolean | undefined;
|
|
876
959
|
failureReason?: string | undefined;
|
|
877
960
|
lastUpdatedAt?: Date | undefined;
|
|
961
|
+
domainVerificationId?: string | undefined;
|
|
962
|
+
domainVerificationArn?: string | undefined;
|
|
963
|
+
domainVerificationStatus?: VerificationStatus | undefined;
|
|
964
|
+
groupDomain?: string | undefined;
|
|
878
965
|
}
|
|
879
966
|
export interface GetResourceGatewayRequest {
|
|
880
967
|
resourceGatewayIdentifier: string | undefined;
|
|
@@ -964,8 +1051,10 @@ export interface GetServiceNetworkResourceAssociationResponse {
|
|
|
964
1051
|
failureCode?: string | undefined;
|
|
965
1052
|
lastUpdatedAt?: Date | undefined;
|
|
966
1053
|
privateDnsEntry?: DnsEntry | undefined;
|
|
1054
|
+
privateDnsEnabled?: boolean | undefined;
|
|
967
1055
|
dnsEntry?: DnsEntry | undefined;
|
|
968
1056
|
isManagedAssociation?: boolean | undefined;
|
|
1057
|
+
domainVerificationStatus?: VerificationStatus | undefined;
|
|
969
1058
|
}
|
|
970
1059
|
export interface GetServiceNetworkServiceAssociationRequest {
|
|
971
1060
|
serviceNetworkServiceAssociationIdentifier: string | undefined;
|
|
@@ -1001,9 +1090,11 @@ export interface GetServiceNetworkVpcAssociationResponse {
|
|
|
1001
1090
|
serviceNetworkArn?: string | undefined;
|
|
1002
1091
|
vpcId?: string | undefined;
|
|
1003
1092
|
securityGroupIds?: string[] | undefined;
|
|
1093
|
+
privateDnsEnabled?: boolean | undefined;
|
|
1004
1094
|
failureMessage?: string | undefined;
|
|
1005
1095
|
failureCode?: string | undefined;
|
|
1006
1096
|
lastUpdatedAt?: Date | undefined;
|
|
1097
|
+
dnsOptions?: DnsOptions | undefined;
|
|
1007
1098
|
}
|
|
1008
1099
|
export interface GetTargetGroupRequest {
|
|
1009
1100
|
targetGroupIdentifier: string | undefined;
|
|
@@ -1057,6 +1148,7 @@ export interface UpdateListenerResponse {
|
|
|
1057
1148
|
export interface ListResourceConfigurationsRequest {
|
|
1058
1149
|
resourceGatewayIdentifier?: string | undefined;
|
|
1059
1150
|
resourceConfigurationGroupIdentifier?: string | undefined;
|
|
1151
|
+
domainVerificationIdentifier?: string | undefined;
|
|
1060
1152
|
maxResults?: number | undefined;
|
|
1061
1153
|
nextToken?: string | undefined;
|
|
1062
1154
|
}
|
|
@@ -1071,6 +1163,9 @@ export interface ResourceConfigurationSummary {
|
|
|
1071
1163
|
amazonManaged?: boolean | undefined;
|
|
1072
1164
|
createdAt?: Date | undefined;
|
|
1073
1165
|
lastUpdatedAt?: Date | undefined;
|
|
1166
|
+
customDomainName?: string | undefined;
|
|
1167
|
+
domainVerificationId?: string | undefined;
|
|
1168
|
+
groupDomain?: string | undefined;
|
|
1074
1169
|
}
|
|
1075
1170
|
export interface ListResourceConfigurationsResponse {
|
|
1076
1171
|
items?: ResourceConfigurationSummary[] | undefined;
|
|
@@ -1162,6 +1257,7 @@ export interface ServiceNetworkResourceAssociationSummary {
|
|
|
1162
1257
|
privateDnsEntry?: DnsEntry | undefined;
|
|
1163
1258
|
isManagedAssociation?: boolean | undefined;
|
|
1164
1259
|
failureCode?: string | undefined;
|
|
1260
|
+
privateDnsEnabled?: boolean | undefined;
|
|
1165
1261
|
}
|
|
1166
1262
|
export interface ListServiceNetworkResourceAssociationsResponse {
|
|
1167
1263
|
items: ServiceNetworkResourceAssociationSummary[] | undefined;
|
|
@@ -1225,6 +1321,8 @@ export interface ServiceNetworkVpcAssociationSummary {
|
|
|
1225
1321
|
serviceNetworkId?: string | undefined;
|
|
1226
1322
|
serviceNetworkName?: string | undefined;
|
|
1227
1323
|
serviceNetworkArn?: string | undefined;
|
|
1324
|
+
privateDnsEnabled?: boolean | undefined;
|
|
1325
|
+
dnsOptions?: DnsOptions | undefined;
|
|
1228
1326
|
vpcId?: string | undefined;
|
|
1229
1327
|
lastUpdatedAt?: Date | undefined;
|
|
1230
1328
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDomainVerificationsCommandInput,
|
|
4
|
+
ListDomainVerificationsCommandOutput,
|
|
5
|
+
} from "../commands/ListDomainVerificationsCommand";
|
|
6
|
+
import { VPCLatticePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDomainVerifications: (
|
|
8
|
+
config: VPCLatticePaginationConfiguration,
|
|
9
|
+
input: ListDomainVerificationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDomainVerificationsCommandOutput>;
|