@@ -68,6 +68,11 @@ import {
6868 DeleteAuthPolicyCommandInput ,
6969 DeleteAuthPolicyCommandOutput ,
7070} from "./commands/DeleteAuthPolicyCommand" ;
71+ import {
72+ DeleteDomainVerificationCommand ,
73+ DeleteDomainVerificationCommandInput ,
74+ DeleteDomainVerificationCommandOutput ,
75+ } from "./commands/DeleteDomainVerificationCommand" ;
7176import {
7277 DeleteListenerCommand ,
7378 DeleteListenerCommandInput ,
@@ -139,6 +144,11 @@ import {
139144 GetAuthPolicyCommandInput ,
140145 GetAuthPolicyCommandOutput ,
141146} from "./commands/GetAuthPolicyCommand" ;
147+ import {
148+ GetDomainVerificationCommand ,
149+ GetDomainVerificationCommandInput ,
150+ GetDomainVerificationCommandOutput ,
151+ } from "./commands/GetDomainVerificationCommand" ;
142152import { GetListenerCommand , GetListenerCommandInput , GetListenerCommandOutput } from "./commands/GetListenerCommand" ;
143153import {
144154 GetResourceConfigurationCommand ,
@@ -187,6 +197,11 @@ import {
187197 ListAccessLogSubscriptionsCommandInput ,
188198 ListAccessLogSubscriptionsCommandOutput ,
189199} from "./commands/ListAccessLogSubscriptionsCommand" ;
200+ import {
201+ ListDomainVerificationsCommand ,
202+ ListDomainVerificationsCommandInput ,
203+ ListDomainVerificationsCommandOutput ,
204+ } from "./commands/ListDomainVerificationsCommand" ;
190205import {
191206 ListListenersCommand ,
192207 ListListenersCommandInput ,
@@ -264,6 +279,11 @@ import {
264279 RegisterTargetsCommandInput ,
265280 RegisterTargetsCommandOutput ,
266281} from "./commands/RegisterTargetsCommand" ;
282+ import {
283+ StartDomainVerificationCommand ,
284+ StartDomainVerificationCommandInput ,
285+ StartDomainVerificationCommandOutput ,
286+ } from "./commands/StartDomainVerificationCommand" ;
267287import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
268288import {
269289 UntagResourceCommand ,
@@ -328,6 +348,7 @@ const commands = {
328348 CreateTargetGroupCommand,
329349 DeleteAccessLogSubscriptionCommand,
330350 DeleteAuthPolicyCommand,
351+ DeleteDomainVerificationCommand,
331352 DeleteListenerCommand,
332353 DeleteResourceConfigurationCommand,
333354 DeleteResourceEndpointAssociationCommand,
@@ -343,6 +364,7 @@ const commands = {
343364 DeregisterTargetsCommand,
344365 GetAccessLogSubscriptionCommand,
345366 GetAuthPolicyCommand,
367+ GetDomainVerificationCommand,
346368 GetListenerCommand,
347369 GetResourceConfigurationCommand,
348370 GetResourceGatewayCommand,
@@ -355,6 +377,7 @@ const commands = {
355377 GetServiceNetworkVpcAssociationCommand,
356378 GetTargetGroupCommand,
357379 ListAccessLogSubscriptionsCommand,
380+ ListDomainVerificationsCommand,
358381 ListListenersCommand,
359382 ListResourceConfigurationsCommand,
360383 ListResourceEndpointAssociationsCommand,
@@ -372,6 +395,7 @@ const commands = {
372395 PutAuthPolicyCommand,
373396 PutResourcePolicyCommand,
374397 RegisterTargetsCommand,
398+ StartDomainVerificationCommand,
375399 TagResourceCommand,
376400 UntagResourceCommand,
377401 UpdateAccessLogSubscriptionCommand,
@@ -606,6 +630,23 @@ export interface VPCLattice {
606630 cb : ( err : any , data ?: DeleteAuthPolicyCommandOutput ) => void
607631 ) : void ;
608632
633+ /**
634+ * @see {@link DeleteDomainVerificationCommand }
635+ */
636+ deleteDomainVerification (
637+ args : DeleteDomainVerificationCommandInput ,
638+ options ?: __HttpHandlerOptions
639+ ) : Promise < DeleteDomainVerificationCommandOutput > ;
640+ deleteDomainVerification (
641+ args : DeleteDomainVerificationCommandInput ,
642+ cb : ( err : any , data ?: DeleteDomainVerificationCommandOutput ) => void
643+ ) : void ;
644+ deleteDomainVerification (
645+ args : DeleteDomainVerificationCommandInput ,
646+ options : __HttpHandlerOptions ,
647+ cb : ( err : any , data ?: DeleteDomainVerificationCommandOutput ) => void
648+ ) : void ;
649+
609650 /**
610651 * @see {@link DeleteListenerCommand }
611652 */
@@ -840,6 +881,23 @@ export interface VPCLattice {
840881 cb : ( err : any , data ?: GetAuthPolicyCommandOutput ) => void
841882 ) : void ;
842883
884+ /**
885+ * @see {@link GetDomainVerificationCommand }
886+ */
887+ getDomainVerification (
888+ args : GetDomainVerificationCommandInput ,
889+ options ?: __HttpHandlerOptions
890+ ) : Promise < GetDomainVerificationCommandOutput > ;
891+ getDomainVerification (
892+ args : GetDomainVerificationCommandInput ,
893+ cb : ( err : any , data ?: GetDomainVerificationCommandOutput ) => void
894+ ) : void ;
895+ getDomainVerification (
896+ args : GetDomainVerificationCommandInput ,
897+ options : __HttpHandlerOptions ,
898+ cb : ( err : any , data ?: GetDomainVerificationCommandOutput ) => void
899+ ) : void ;
900+
843901 /**
844902 * @see {@link GetListenerCommand }
845903 */
@@ -1023,6 +1081,24 @@ export interface VPCLattice {
10231081 cb : ( err : any , data ?: ListAccessLogSubscriptionsCommandOutput ) => void
10241082 ) : void ;
10251083
1084+ /**
1085+ * @see {@link ListDomainVerificationsCommand }
1086+ */
1087+ listDomainVerifications ( ) : Promise < ListDomainVerificationsCommandOutput > ;
1088+ listDomainVerifications (
1089+ args : ListDomainVerificationsCommandInput ,
1090+ options ?: __HttpHandlerOptions
1091+ ) : Promise < ListDomainVerificationsCommandOutput > ;
1092+ listDomainVerifications (
1093+ args : ListDomainVerificationsCommandInput ,
1094+ cb : ( err : any , data ?: ListDomainVerificationsCommandOutput ) => void
1095+ ) : void ;
1096+ listDomainVerifications (
1097+ args : ListDomainVerificationsCommandInput ,
1098+ options : __HttpHandlerOptions ,
1099+ cb : ( err : any , data ?: ListDomainVerificationsCommandOutput ) => void
1100+ ) : void ;
1101+
10261102 /**
10271103 * @see {@link ListListenersCommand }
10281104 */
@@ -1287,6 +1363,23 @@ export interface VPCLattice {
12871363 cb : ( err : any , data ?: RegisterTargetsCommandOutput ) => void
12881364 ) : void ;
12891365
1366+ /**
1367+ * @see {@link StartDomainVerificationCommand }
1368+ */
1369+ startDomainVerification (
1370+ args : StartDomainVerificationCommandInput ,
1371+ options ?: __HttpHandlerOptions
1372+ ) : Promise < StartDomainVerificationCommandOutput > ;
1373+ startDomainVerification (
1374+ args : StartDomainVerificationCommandInput ,
1375+ cb : ( err : any , data ?: StartDomainVerificationCommandOutput ) => void
1376+ ) : void ;
1377+ startDomainVerification (
1378+ args : StartDomainVerificationCommandInput ,
1379+ options : __HttpHandlerOptions ,
1380+ cb : ( err : any , data ?: StartDomainVerificationCommandOutput ) => void
1381+ ) : void ;
1382+
12901383 /**
12911384 * @see {@link TagResourceCommand }
12921385 */
0 commit comments