@@ -33,6 +33,11 @@ import {
33
33
CreateDocumentationVersionCommandInput ,
34
34
CreateDocumentationVersionCommandOutput ,
35
35
} from "./commands/CreateDocumentationVersionCommand" ;
36
+ import {
37
+ CreateDomainNameAccessAssociationCommand ,
38
+ CreateDomainNameAccessAssociationCommandInput ,
39
+ CreateDomainNameAccessAssociationCommandOutput ,
40
+ } from "./commands/CreateDomainNameAccessAssociationCommand" ;
36
41
import {
37
42
CreateDomainNameCommand ,
38
43
CreateDomainNameCommandInput ,
@@ -105,6 +110,11 @@ import {
105
110
DeleteDocumentationVersionCommandInput ,
106
111
DeleteDocumentationVersionCommandOutput ,
107
112
} from "./commands/DeleteDocumentationVersionCommand" ;
113
+ import {
114
+ DeleteDomainNameAccessAssociationCommand ,
115
+ DeleteDomainNameAccessAssociationCommandInput ,
116
+ DeleteDomainNameAccessAssociationCommandOutput ,
117
+ } from "./commands/DeleteDomainNameAccessAssociationCommand" ;
108
118
import {
109
119
DeleteDomainNameCommand ,
110
120
DeleteDomainNameCommandInput ,
@@ -245,6 +255,11 @@ import {
245
255
GetDocumentationVersionsCommandInput ,
246
256
GetDocumentationVersionsCommandOutput ,
247
257
} from "./commands/GetDocumentationVersionsCommand" ;
258
+ import {
259
+ GetDomainNameAccessAssociationsCommand ,
260
+ GetDomainNameAccessAssociationsCommandInput ,
261
+ GetDomainNameAccessAssociationsCommandOutput ,
262
+ } from "./commands/GetDomainNameAccessAssociationsCommand" ;
248
263
import {
249
264
GetDomainNameCommand ,
250
265
GetDomainNameCommandInput ,
@@ -373,6 +388,11 @@ import {
373
388
PutMethodResponseCommandOutput ,
374
389
} from "./commands/PutMethodResponseCommand" ;
375
390
import { PutRestApiCommand , PutRestApiCommandInput , PutRestApiCommandOutput } from "./commands/PutRestApiCommand" ;
391
+ import {
392
+ RejectDomainNameAccessAssociationCommand ,
393
+ RejectDomainNameAccessAssociationCommandInput ,
394
+ RejectDomainNameAccessAssociationCommandOutput ,
395
+ } from "./commands/RejectDomainNameAccessAssociationCommand" ;
376
396
import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
377
397
import {
378
398
TestInvokeAuthorizerCommand ,
@@ -496,6 +516,7 @@ const commands = {
496
516
CreateDocumentationPartCommand,
497
517
CreateDocumentationVersionCommand,
498
518
CreateDomainNameCommand,
519
+ CreateDomainNameAccessAssociationCommand,
499
520
CreateModelCommand,
500
521
CreateRequestValidatorCommand,
501
522
CreateResourceCommand,
@@ -512,6 +533,7 @@ const commands = {
512
533
DeleteDocumentationPartCommand,
513
534
DeleteDocumentationVersionCommand,
514
535
DeleteDomainNameCommand,
536
+ DeleteDomainNameAccessAssociationCommand,
515
537
DeleteGatewayResponseCommand,
516
538
DeleteIntegrationCommand,
517
539
DeleteIntegrationResponseCommand,
@@ -544,6 +566,7 @@ const commands = {
544
566
GetDocumentationVersionCommand,
545
567
GetDocumentationVersionsCommand,
546
568
GetDomainNameCommand,
569
+ GetDomainNameAccessAssociationsCommand,
547
570
GetDomainNamesCommand,
548
571
GetExportCommand,
549
572
GetGatewayResponseCommand,
@@ -583,6 +606,7 @@ const commands = {
583
606
PutMethodCommand,
584
607
PutMethodResponseCommand,
585
608
PutRestApiCommand,
609
+ RejectDomainNameAccessAssociationCommand,
586
610
TagResourceCommand,
587
611
TestInvokeAuthorizerCommand,
588
612
TestInvokeMethodCommand,
@@ -726,6 +750,23 @@ export interface APIGateway {
726
750
cb : ( err : any , data ?: CreateDomainNameCommandOutput ) => void
727
751
) : void ;
728
752
753
+ /**
754
+ * @see {@link CreateDomainNameAccessAssociationCommand }
755
+ */
756
+ createDomainNameAccessAssociation (
757
+ args : CreateDomainNameAccessAssociationCommandInput ,
758
+ options ?: __HttpHandlerOptions
759
+ ) : Promise < CreateDomainNameAccessAssociationCommandOutput > ;
760
+ createDomainNameAccessAssociation (
761
+ args : CreateDomainNameAccessAssociationCommandInput ,
762
+ cb : ( err : any , data ?: CreateDomainNameAccessAssociationCommandOutput ) => void
763
+ ) : void ;
764
+ createDomainNameAccessAssociation (
765
+ args : CreateDomainNameAccessAssociationCommandInput ,
766
+ options : __HttpHandlerOptions ,
767
+ cb : ( err : any , data ?: CreateDomainNameAccessAssociationCommandOutput ) => void
768
+ ) : void ;
769
+
729
770
/**
730
771
* @see {@link CreateModelCommand }
731
772
*/
@@ -962,6 +1003,23 @@ export interface APIGateway {
962
1003
cb : ( err : any , data ?: DeleteDomainNameCommandOutput ) => void
963
1004
) : void ;
964
1005
1006
+ /**
1007
+ * @see {@link DeleteDomainNameAccessAssociationCommand }
1008
+ */
1009
+ deleteDomainNameAccessAssociation (
1010
+ args : DeleteDomainNameAccessAssociationCommandInput ,
1011
+ options ?: __HttpHandlerOptions
1012
+ ) : Promise < DeleteDomainNameAccessAssociationCommandOutput > ;
1013
+ deleteDomainNameAccessAssociation (
1014
+ args : DeleteDomainNameAccessAssociationCommandInput ,
1015
+ cb : ( err : any , data ?: DeleteDomainNameAccessAssociationCommandOutput ) => void
1016
+ ) : void ;
1017
+ deleteDomainNameAccessAssociation (
1018
+ args : DeleteDomainNameAccessAssociationCommandInput ,
1019
+ options : __HttpHandlerOptions ,
1020
+ cb : ( err : any , data ?: DeleteDomainNameAccessAssociationCommandOutput ) => void
1021
+ ) : void ;
1022
+
965
1023
/**
966
1024
* @see {@link DeleteGatewayResponseCommand }
967
1025
*/
@@ -1429,6 +1487,24 @@ export interface APIGateway {
1429
1487
cb : ( err : any , data ?: GetDomainNameCommandOutput ) => void
1430
1488
) : void ;
1431
1489
1490
+ /**
1491
+ * @see {@link GetDomainNameAccessAssociationsCommand }
1492
+ */
1493
+ getDomainNameAccessAssociations ( ) : Promise < GetDomainNameAccessAssociationsCommandOutput > ;
1494
+ getDomainNameAccessAssociations (
1495
+ args : GetDomainNameAccessAssociationsCommandInput ,
1496
+ options ?: __HttpHandlerOptions
1497
+ ) : Promise < GetDomainNameAccessAssociationsCommandOutput > ;
1498
+ getDomainNameAccessAssociations (
1499
+ args : GetDomainNameAccessAssociationsCommandInput ,
1500
+ cb : ( err : any , data ?: GetDomainNameAccessAssociationsCommandOutput ) => void
1501
+ ) : void ;
1502
+ getDomainNameAccessAssociations (
1503
+ args : GetDomainNameAccessAssociationsCommandInput ,
1504
+ options : __HttpHandlerOptions ,
1505
+ cb : ( err : any , data ?: GetDomainNameAccessAssociationsCommandOutput ) => void
1506
+ ) : void ;
1507
+
1432
1508
/**
1433
1509
* @see {@link GetDomainNamesCommand }
1434
1510
*/
@@ -1947,6 +2023,23 @@ export interface APIGateway {
1947
2023
cb : ( err : any , data ?: PutRestApiCommandOutput ) => void
1948
2024
) : void ;
1949
2025
2026
+ /**
2027
+ * @see {@link RejectDomainNameAccessAssociationCommand }
2028
+ */
2029
+ rejectDomainNameAccessAssociation (
2030
+ args : RejectDomainNameAccessAssociationCommandInput ,
2031
+ options ?: __HttpHandlerOptions
2032
+ ) : Promise < RejectDomainNameAccessAssociationCommandOutput > ;
2033
+ rejectDomainNameAccessAssociation (
2034
+ args : RejectDomainNameAccessAssociationCommandInput ,
2035
+ cb : ( err : any , data ?: RejectDomainNameAccessAssociationCommandOutput ) => void
2036
+ ) : void ;
2037
+ rejectDomainNameAccessAssociation (
2038
+ args : RejectDomainNameAccessAssociationCommandInput ,
2039
+ options : __HttpHandlerOptions ,
2040
+ cb : ( err : any , data ?: RejectDomainNameAccessAssociationCommandOutput ) => void
2041
+ ) : void ;
2042
+
1950
2043
/**
1951
2044
* @see {@link TagResourceCommand }
1952
2045
*/
0 commit comments