@aws-sdk/client-api-gateway 3.696.0 → 3.699.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 +241 -8
- package/dist-es/APIGateway.js +8 -0
- package/dist-es/commands/CreateDomainNameAccessAssociationCommand.js +22 -0
- package/dist-es/commands/DeleteDomainNameAccessAssociationCommand.js +22 -0
- package/dist-es/commands/GetDomainNameAccessAssociationsCommand.js +22 -0
- package/dist-es/commands/RejectDomainNameAccessAssociationCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +153 -6
- package/dist-types/APIGateway.d.ts +29 -0
- package/dist-types/APIGatewayClient.d.ts +6 -2
- package/dist-types/commands/CreateBasePathMappingCommand.d.ts +1 -0
- package/dist-types/commands/CreateDomainNameAccessAssociationCommand.d.ts +98 -0
- package/dist-types/commands/CreateDomainNameCommand.d.ts +5 -0
- package/dist-types/commands/DeleteBasePathMappingCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDomainNameAccessAssociationCommand.d.ts +85 -0
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +1 -0
- package/dist-types/commands/GetBasePathMappingCommand.d.ts +1 -0
- package/dist-types/commands/GetBasePathMappingsCommand.d.ts +1 -0
- package/dist-types/commands/GetDomainNameAccessAssociationsCommand.d.ts +96 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +5 -0
- package/dist-types/commands/GetDomainNamesCommand.d.ts +5 -0
- package/dist-types/commands/RejectDomainNameAccessAssociationCommand.d.ts +86 -0
- package/dist-types/commands/UpdateBasePathMappingCommand.d.ts +1 -0
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +5 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +259 -6
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/APIGateway.d.ts +87 -0
- package/dist-types/ts3.4/APIGatewayClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateDomainNameAccessAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainNameAccessAssociationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDomainNameAccessAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RejectDomainNameAccessAssociationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +53 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +4 -4
|
@@ -69,6 +69,10 @@ import {
|
|
|
69
69
|
CreateDocumentationVersionCommandInput,
|
|
70
70
|
CreateDocumentationVersionCommandOutput,
|
|
71
71
|
} from "./commands/CreateDocumentationVersionCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateDomainNameAccessAssociationCommandInput,
|
|
74
|
+
CreateDomainNameAccessAssociationCommandOutput,
|
|
75
|
+
} from "./commands/CreateDomainNameAccessAssociationCommand";
|
|
72
76
|
import {
|
|
73
77
|
CreateDomainNameCommandInput,
|
|
74
78
|
CreateDomainNameCommandOutput,
|
|
@@ -133,6 +137,10 @@ import {
|
|
|
133
137
|
DeleteDocumentationVersionCommandInput,
|
|
134
138
|
DeleteDocumentationVersionCommandOutput,
|
|
135
139
|
} from "./commands/DeleteDocumentationVersionCommand";
|
|
140
|
+
import {
|
|
141
|
+
DeleteDomainNameAccessAssociationCommandInput,
|
|
142
|
+
DeleteDomainNameAccessAssociationCommandOutput,
|
|
143
|
+
} from "./commands/DeleteDomainNameAccessAssociationCommand";
|
|
136
144
|
import {
|
|
137
145
|
DeleteDomainNameCommandInput,
|
|
138
146
|
DeleteDomainNameCommandOutput,
|
|
@@ -261,6 +269,10 @@ import {
|
|
|
261
269
|
GetDocumentationVersionsCommandInput,
|
|
262
270
|
GetDocumentationVersionsCommandOutput,
|
|
263
271
|
} from "./commands/GetDocumentationVersionsCommand";
|
|
272
|
+
import {
|
|
273
|
+
GetDomainNameAccessAssociationsCommandInput,
|
|
274
|
+
GetDomainNameAccessAssociationsCommandOutput,
|
|
275
|
+
} from "./commands/GetDomainNameAccessAssociationsCommand";
|
|
264
276
|
import {
|
|
265
277
|
GetDomainNameCommandInput,
|
|
266
278
|
GetDomainNameCommandOutput,
|
|
@@ -421,6 +433,10 @@ import {
|
|
|
421
433
|
PutRestApiCommandInput,
|
|
422
434
|
PutRestApiCommandOutput,
|
|
423
435
|
} from "./commands/PutRestApiCommand";
|
|
436
|
+
import {
|
|
437
|
+
RejectDomainNameAccessAssociationCommandInput,
|
|
438
|
+
RejectDomainNameAccessAssociationCommandOutput,
|
|
439
|
+
} from "./commands/RejectDomainNameAccessAssociationCommand";
|
|
424
440
|
import {
|
|
425
441
|
TagResourceCommandInput,
|
|
426
442
|
TagResourceCommandOutput,
|
|
@@ -539,6 +555,7 @@ export type ServiceInputTypes =
|
|
|
539
555
|
| CreateDeploymentCommandInput
|
|
540
556
|
| CreateDocumentationPartCommandInput
|
|
541
557
|
| CreateDocumentationVersionCommandInput
|
|
558
|
+
| CreateDomainNameAccessAssociationCommandInput
|
|
542
559
|
| CreateDomainNameCommandInput
|
|
543
560
|
| CreateModelCommandInput
|
|
544
561
|
| CreateRequestValidatorCommandInput
|
|
@@ -555,6 +572,7 @@ export type ServiceInputTypes =
|
|
|
555
572
|
| DeleteDeploymentCommandInput
|
|
556
573
|
| DeleteDocumentationPartCommandInput
|
|
557
574
|
| DeleteDocumentationVersionCommandInput
|
|
575
|
+
| DeleteDomainNameAccessAssociationCommandInput
|
|
558
576
|
| DeleteDomainNameCommandInput
|
|
559
577
|
| DeleteGatewayResponseCommandInput
|
|
560
578
|
| DeleteIntegrationCommandInput
|
|
@@ -587,6 +605,7 @@ export type ServiceInputTypes =
|
|
|
587
605
|
| GetDocumentationPartsCommandInput
|
|
588
606
|
| GetDocumentationVersionCommandInput
|
|
589
607
|
| GetDocumentationVersionsCommandInput
|
|
608
|
+
| GetDomainNameAccessAssociationsCommandInput
|
|
590
609
|
| GetDomainNameCommandInput
|
|
591
610
|
| GetDomainNamesCommandInput
|
|
592
611
|
| GetExportCommandInput
|
|
@@ -627,6 +646,7 @@ export type ServiceInputTypes =
|
|
|
627
646
|
| PutMethodCommandInput
|
|
628
647
|
| PutMethodResponseCommandInput
|
|
629
648
|
| PutRestApiCommandInput
|
|
649
|
+
| RejectDomainNameAccessAssociationCommandInput
|
|
630
650
|
| TagResourceCommandInput
|
|
631
651
|
| TestInvokeAuthorizerCommandInput
|
|
632
652
|
| TestInvokeMethodCommandInput
|
|
@@ -660,6 +680,7 @@ export type ServiceOutputTypes =
|
|
|
660
680
|
| CreateDeploymentCommandOutput
|
|
661
681
|
| CreateDocumentationPartCommandOutput
|
|
662
682
|
| CreateDocumentationVersionCommandOutput
|
|
683
|
+
| CreateDomainNameAccessAssociationCommandOutput
|
|
663
684
|
| CreateDomainNameCommandOutput
|
|
664
685
|
| CreateModelCommandOutput
|
|
665
686
|
| CreateRequestValidatorCommandOutput
|
|
@@ -676,6 +697,7 @@ export type ServiceOutputTypes =
|
|
|
676
697
|
| DeleteDeploymentCommandOutput
|
|
677
698
|
| DeleteDocumentationPartCommandOutput
|
|
678
699
|
| DeleteDocumentationVersionCommandOutput
|
|
700
|
+
| DeleteDomainNameAccessAssociationCommandOutput
|
|
679
701
|
| DeleteDomainNameCommandOutput
|
|
680
702
|
| DeleteGatewayResponseCommandOutput
|
|
681
703
|
| DeleteIntegrationCommandOutput
|
|
@@ -708,6 +730,7 @@ export type ServiceOutputTypes =
|
|
|
708
730
|
| GetDocumentationPartsCommandOutput
|
|
709
731
|
| GetDocumentationVersionCommandOutput
|
|
710
732
|
| GetDocumentationVersionsCommandOutput
|
|
733
|
+
| GetDomainNameAccessAssociationsCommandOutput
|
|
711
734
|
| GetDomainNameCommandOutput
|
|
712
735
|
| GetDomainNamesCommandOutput
|
|
713
736
|
| GetExportCommandOutput
|
|
@@ -748,6 +771,7 @@ export type ServiceOutputTypes =
|
|
|
748
771
|
| PutMethodCommandOutput
|
|
749
772
|
| PutMethodResponseCommandOutput
|
|
750
773
|
| PutRestApiCommandOutput
|
|
774
|
+
| RejectDomainNameAccessAssociationCommandOutput
|
|
751
775
|
| TagResourceCommandOutput
|
|
752
776
|
| TestInvokeAuthorizerCommandOutput
|
|
753
777
|
| TestInvokeMethodCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
APIGatewayClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../APIGatewayClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateDomainNameAccessAssociationRequest,
|
|
10
|
+
DomainNameAccessAssociation,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateDomainNameAccessAssociationCommandInput
|
|
15
|
+
extends CreateDomainNameAccessAssociationRequest {}
|
|
16
|
+
export interface CreateDomainNameAccessAssociationCommandOutput
|
|
17
|
+
extends DomainNameAccessAssociation,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateDomainNameAccessAssociationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateDomainNameAccessAssociationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateDomainNameAccessAssociationCommandInput,
|
|
24
|
+
CreateDomainNameAccessAssociationCommandOutput,
|
|
25
|
+
APIGatewayClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateDomainNameAccessAssociationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateDomainNameAccessAssociationCommandInput,
|
|
33
|
+
CreateDomainNameAccessAssociationCommandOutput,
|
|
34
|
+
APIGatewayClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateDomainNameAccessAssociationCommand extends CreateDomainNameAccessAssociationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateDomainNameAccessAssociationRequest;
|
|
44
|
+
output: DomainNameAccessAssociation;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateDomainNameAccessAssociationCommandInput;
|
|
48
|
+
output: CreateDomainNameAccessAssociationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
APIGatewayClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../APIGatewayClient";
|
|
8
|
+
import { DeleteDomainNameAccessAssociationRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteDomainNameAccessAssociationCommandInput
|
|
12
|
+
extends DeleteDomainNameAccessAssociationRequest {}
|
|
13
|
+
export interface DeleteDomainNameAccessAssociationCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteDomainNameAccessAssociationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteDomainNameAccessAssociationCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteDomainNameAccessAssociationCommandInput,
|
|
20
|
+
DeleteDomainNameAccessAssociationCommandOutput,
|
|
21
|
+
APIGatewayClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: DeleteDomainNameAccessAssociationCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteDomainNameAccessAssociationCommandInput,
|
|
29
|
+
DeleteDomainNameAccessAssociationCommandOutput,
|
|
30
|
+
APIGatewayClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteDomainNameAccessAssociationCommand extends DeleteDomainNameAccessAssociationCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteDomainNameAccessAssociationRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteDomainNameAccessAssociationCommandInput;
|
|
44
|
+
output: DeleteDomainNameAccessAssociationCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
APIGatewayClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../APIGatewayClient";
|
|
8
|
+
import {
|
|
9
|
+
DomainNameAccessAssociations,
|
|
10
|
+
GetDomainNameAccessAssociationsRequest,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDomainNameAccessAssociationsCommandInput
|
|
15
|
+
extends GetDomainNameAccessAssociationsRequest {}
|
|
16
|
+
export interface GetDomainNameAccessAssociationsCommandOutput
|
|
17
|
+
extends DomainNameAccessAssociations,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDomainNameAccessAssociationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDomainNameAccessAssociationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDomainNameAccessAssociationsCommandInput,
|
|
24
|
+
GetDomainNameAccessAssociationsCommandOutput,
|
|
25
|
+
APIGatewayClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [GetDomainNameAccessAssociationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDomainNameAccessAssociationsCommandInput,
|
|
33
|
+
GetDomainNameAccessAssociationsCommandOutput,
|
|
34
|
+
APIGatewayClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDomainNameAccessAssociationsCommand extends GetDomainNameAccessAssociationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDomainNameAccessAssociationsRequest;
|
|
44
|
+
output: DomainNameAccessAssociations;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDomainNameAccessAssociationsCommandInput;
|
|
48
|
+
output: GetDomainNameAccessAssociationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
APIGatewayClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../APIGatewayClient";
|
|
8
|
+
import { RejectDomainNameAccessAssociationRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface RejectDomainNameAccessAssociationCommandInput
|
|
12
|
+
extends RejectDomainNameAccessAssociationRequest {}
|
|
13
|
+
export interface RejectDomainNameAccessAssociationCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const RejectDomainNameAccessAssociationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: RejectDomainNameAccessAssociationCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
RejectDomainNameAccessAssociationCommandInput,
|
|
20
|
+
RejectDomainNameAccessAssociationCommandOutput,
|
|
21
|
+
APIGatewayClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: RejectDomainNameAccessAssociationCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
RejectDomainNameAccessAssociationCommandInput,
|
|
29
|
+
RejectDomainNameAccessAssociationCommandOutput,
|
|
30
|
+
APIGatewayClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class RejectDomainNameAccessAssociationCommand extends RejectDomainNameAccessAssociationCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: RejectDomainNameAccessAssociationRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: RejectDomainNameAccessAssociationCommandInput;
|
|
44
|
+
output: RejectDomainNameAccessAssociationCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -4,6 +4,7 @@ export * from "./CreateBasePathMappingCommand";
|
|
|
4
4
|
export * from "./CreateDeploymentCommand";
|
|
5
5
|
export * from "./CreateDocumentationPartCommand";
|
|
6
6
|
export * from "./CreateDocumentationVersionCommand";
|
|
7
|
+
export * from "./CreateDomainNameAccessAssociationCommand";
|
|
7
8
|
export * from "./CreateDomainNameCommand";
|
|
8
9
|
export * from "./CreateModelCommand";
|
|
9
10
|
export * from "./CreateRequestValidatorCommand";
|
|
@@ -20,6 +21,7 @@ export * from "./DeleteClientCertificateCommand";
|
|
|
20
21
|
export * from "./DeleteDeploymentCommand";
|
|
21
22
|
export * from "./DeleteDocumentationPartCommand";
|
|
22
23
|
export * from "./DeleteDocumentationVersionCommand";
|
|
24
|
+
export * from "./DeleteDomainNameAccessAssociationCommand";
|
|
23
25
|
export * from "./DeleteDomainNameCommand";
|
|
24
26
|
export * from "./DeleteGatewayResponseCommand";
|
|
25
27
|
export * from "./DeleteIntegrationCommand";
|
|
@@ -52,6 +54,7 @@ export * from "./GetDocumentationPartCommand";
|
|
|
52
54
|
export * from "./GetDocumentationPartsCommand";
|
|
53
55
|
export * from "./GetDocumentationVersionCommand";
|
|
54
56
|
export * from "./GetDocumentationVersionsCommand";
|
|
57
|
+
export * from "./GetDomainNameAccessAssociationsCommand";
|
|
55
58
|
export * from "./GetDomainNameCommand";
|
|
56
59
|
export * from "./GetDomainNamesCommand";
|
|
57
60
|
export * from "./GetExportCommand";
|
|
@@ -92,6 +95,7 @@ export * from "./PutIntegrationResponseCommand";
|
|
|
92
95
|
export * from "./PutMethodCommand";
|
|
93
96
|
export * from "./PutMethodResponseCommand";
|
|
94
97
|
export * from "./PutRestApiCommand";
|
|
98
|
+
export * from "./RejectDomainNameAccessAssociationCommand";
|
|
95
99
|
export * from "./TagResourceCommand";
|
|
96
100
|
export * from "./TestInvokeAuthorizerCommand";
|
|
97
101
|
export * from "./TestInvokeMethodCommand";
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { APIGatewayServiceException as __BaseException } from "./APIGatewayServiceException";
|
|
3
|
+
export declare const AccessAssociationSourceType: {
|
|
4
|
+
readonly VPCE: "VPCE";
|
|
5
|
+
};
|
|
6
|
+
export type AccessAssociationSourceType =
|
|
7
|
+
(typeof AccessAssociationSourceType)[keyof typeof AccessAssociationSourceType];
|
|
3
8
|
export interface AccessLogSettings {
|
|
4
9
|
format?: string | undefined;
|
|
5
10
|
destinationArn?: string | undefined;
|
|
@@ -146,6 +151,7 @@ export interface BasePathMapping {
|
|
|
146
151
|
}
|
|
147
152
|
export interface CreateBasePathMappingRequest {
|
|
148
153
|
domainName: string | undefined;
|
|
154
|
+
domainNameId?: string | undefined;
|
|
149
155
|
basePath?: string | undefined;
|
|
150
156
|
restApiId: string | undefined;
|
|
151
157
|
stage?: string | undefined;
|
|
@@ -274,6 +280,7 @@ export interface CreateDomainNameRequest {
|
|
|
274
280
|
securityPolicy?: SecurityPolicy | undefined;
|
|
275
281
|
mutualTlsAuthentication?: MutualTlsAuthenticationInput | undefined;
|
|
276
282
|
ownershipVerificationCertificateArn?: string | undefined;
|
|
283
|
+
policy?: string | undefined;
|
|
277
284
|
}
|
|
278
285
|
export declare const DomainNameStatus: {
|
|
279
286
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -291,6 +298,8 @@ export interface MutualTlsAuthentication {
|
|
|
291
298
|
}
|
|
292
299
|
export interface DomainName {
|
|
293
300
|
domainName?: string | undefined;
|
|
301
|
+
domainNameId?: string | undefined;
|
|
302
|
+
domainNameArn?: string | undefined;
|
|
294
303
|
certificateName?: string | undefined;
|
|
295
304
|
certificateArn?: string | undefined;
|
|
296
305
|
certificateUploadDate?: Date | undefined;
|
|
@@ -307,6 +316,21 @@ export interface DomainName {
|
|
|
307
316
|
tags?: Record<string, string> | undefined;
|
|
308
317
|
mutualTlsAuthentication?: MutualTlsAuthentication | undefined;
|
|
309
318
|
ownershipVerificationCertificateArn?: string | undefined;
|
|
319
|
+
managementPolicy?: string | undefined;
|
|
320
|
+
policy?: string | undefined;
|
|
321
|
+
}
|
|
322
|
+
export interface CreateDomainNameAccessAssociationRequest {
|
|
323
|
+
domainNameArn: string | undefined;
|
|
324
|
+
accessAssociationSourceType: AccessAssociationSourceType | undefined;
|
|
325
|
+
accessAssociationSource: string | undefined;
|
|
326
|
+
tags?: Record<string, string> | undefined;
|
|
327
|
+
}
|
|
328
|
+
export interface DomainNameAccessAssociation {
|
|
329
|
+
domainNameAccessAssociationArn?: string | undefined;
|
|
330
|
+
domainNameArn?: string | undefined;
|
|
331
|
+
accessAssociationSourceType?: AccessAssociationSourceType | undefined;
|
|
332
|
+
accessAssociationSource?: string | undefined;
|
|
333
|
+
tags?: Record<string, string> | undefined;
|
|
310
334
|
}
|
|
311
335
|
export interface CreateModelRequest {
|
|
312
336
|
restApiId: string | undefined;
|
|
@@ -581,6 +605,7 @@ export interface DeleteAuthorizerRequest {
|
|
|
581
605
|
}
|
|
582
606
|
export interface DeleteBasePathMappingRequest {
|
|
583
607
|
domainName: string | undefined;
|
|
608
|
+
domainNameId?: string | undefined;
|
|
584
609
|
basePath: string | undefined;
|
|
585
610
|
}
|
|
586
611
|
export interface DeleteClientCertificateRequest {
|
|
@@ -600,6 +625,10 @@ export interface DeleteDocumentationVersionRequest {
|
|
|
600
625
|
}
|
|
601
626
|
export interface DeleteDomainNameRequest {
|
|
602
627
|
domainName: string | undefined;
|
|
628
|
+
domainNameId?: string | undefined;
|
|
629
|
+
}
|
|
630
|
+
export interface DeleteDomainNameAccessAssociationRequest {
|
|
631
|
+
domainNameAccessAssociationArn: string | undefined;
|
|
603
632
|
}
|
|
604
633
|
export declare const GatewayResponseType: {
|
|
605
634
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
@@ -724,6 +753,7 @@ export interface GetAuthorizersRequest {
|
|
|
724
753
|
}
|
|
725
754
|
export interface GetBasePathMappingRequest {
|
|
726
755
|
domainName: string | undefined;
|
|
756
|
+
domainNameId?: string | undefined;
|
|
727
757
|
basePath: string | undefined;
|
|
728
758
|
}
|
|
729
759
|
export interface BasePathMappings {
|
|
@@ -732,6 +762,7 @@ export interface BasePathMappings {
|
|
|
732
762
|
}
|
|
733
763
|
export interface GetBasePathMappingsRequest {
|
|
734
764
|
domainName: string | undefined;
|
|
765
|
+
domainNameId?: string | undefined;
|
|
735
766
|
position?: string | undefined;
|
|
736
767
|
limit?: number | undefined;
|
|
737
768
|
}
|
|
@@ -798,6 +829,21 @@ export interface GetDocumentationVersionsRequest {
|
|
|
798
829
|
}
|
|
799
830
|
export interface GetDomainNameRequest {
|
|
800
831
|
domainName: string | undefined;
|
|
832
|
+
domainNameId?: string | undefined;
|
|
833
|
+
}
|
|
834
|
+
export interface DomainNameAccessAssociations {
|
|
835
|
+
items?: DomainNameAccessAssociation[] | undefined;
|
|
836
|
+
position?: string | undefined;
|
|
837
|
+
}
|
|
838
|
+
export declare const ResourceOwner: {
|
|
839
|
+
readonly OTHER_ACCOUNTS: "OTHER_ACCOUNTS";
|
|
840
|
+
readonly SELF: "SELF";
|
|
841
|
+
};
|
|
842
|
+
export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
|
|
843
|
+
export interface GetDomainNameAccessAssociationsRequest {
|
|
844
|
+
position?: string | undefined;
|
|
845
|
+
limit?: number | undefined;
|
|
846
|
+
resourceOwner?: ResourceOwner | undefined;
|
|
801
847
|
}
|
|
802
848
|
export interface DomainNames {
|
|
803
849
|
items?: DomainName[] | undefined;
|
|
@@ -806,6 +852,7 @@ export interface DomainNames {
|
|
|
806
852
|
export interface GetDomainNamesRequest {
|
|
807
853
|
position?: string | undefined;
|
|
808
854
|
limit?: number | undefined;
|
|
855
|
+
resourceOwner?: ResourceOwner | undefined;
|
|
809
856
|
}
|
|
810
857
|
export interface ExportResponse {
|
|
811
858
|
contentType?: string | undefined;
|
|
@@ -1115,6 +1162,10 @@ export interface PutRestApiRequest {
|
|
|
1115
1162
|
parameters?: Record<string, string> | undefined;
|
|
1116
1163
|
body: Uint8Array | undefined;
|
|
1117
1164
|
}
|
|
1165
|
+
export interface RejectDomainNameAccessAssociationRequest {
|
|
1166
|
+
domainNameAccessAssociationArn: string | undefined;
|
|
1167
|
+
domainNameArn: string | undefined;
|
|
1168
|
+
}
|
|
1118
1169
|
export interface TagResourceRequest {
|
|
1119
1170
|
resourceArn: string | undefined;
|
|
1120
1171
|
tags: Record<string, string> | undefined;
|
|
@@ -1190,6 +1241,7 @@ export interface UpdateAuthorizerRequest {
|
|
|
1190
1241
|
}
|
|
1191
1242
|
export interface UpdateBasePathMappingRequest {
|
|
1192
1243
|
domainName: string | undefined;
|
|
1244
|
+
domainNameId?: string | undefined;
|
|
1193
1245
|
basePath: string | undefined;
|
|
1194
1246
|
patchOperations?: PatchOperation[] | undefined;
|
|
1195
1247
|
}
|
|
@@ -1214,6 +1266,7 @@ export interface UpdateDocumentationVersionRequest {
|
|
|
1214
1266
|
}
|
|
1215
1267
|
export interface UpdateDomainNameRequest {
|
|
1216
1268
|
domainName: string | undefined;
|
|
1269
|
+
domainNameId?: string | undefined;
|
|
1217
1270
|
patchOperations?: PatchOperation[] | undefined;
|
|
1218
1271
|
}
|
|
1219
1272
|
export interface UpdateGatewayResponseRequest {
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
CreateDocumentationVersionCommandInput,
|
|
28
28
|
CreateDocumentationVersionCommandOutput,
|
|
29
29
|
} from "../commands/CreateDocumentationVersionCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateDomainNameAccessAssociationCommandInput,
|
|
32
|
+
CreateDomainNameAccessAssociationCommandOutput,
|
|
33
|
+
} from "../commands/CreateDomainNameAccessAssociationCommand";
|
|
30
34
|
import {
|
|
31
35
|
CreateDomainNameCommandInput,
|
|
32
36
|
CreateDomainNameCommandOutput,
|
|
@@ -91,6 +95,10 @@ import {
|
|
|
91
95
|
DeleteDocumentationVersionCommandInput,
|
|
92
96
|
DeleteDocumentationVersionCommandOutput,
|
|
93
97
|
} from "../commands/DeleteDocumentationVersionCommand";
|
|
98
|
+
import {
|
|
99
|
+
DeleteDomainNameAccessAssociationCommandInput,
|
|
100
|
+
DeleteDomainNameAccessAssociationCommandOutput,
|
|
101
|
+
} from "../commands/DeleteDomainNameAccessAssociationCommand";
|
|
94
102
|
import {
|
|
95
103
|
DeleteDomainNameCommandInput,
|
|
96
104
|
DeleteDomainNameCommandOutput,
|
|
@@ -219,6 +227,10 @@ import {
|
|
|
219
227
|
GetDocumentationVersionsCommandInput,
|
|
220
228
|
GetDocumentationVersionsCommandOutput,
|
|
221
229
|
} from "../commands/GetDocumentationVersionsCommand";
|
|
230
|
+
import {
|
|
231
|
+
GetDomainNameAccessAssociationsCommandInput,
|
|
232
|
+
GetDomainNameAccessAssociationsCommandOutput,
|
|
233
|
+
} from "../commands/GetDomainNameAccessAssociationsCommand";
|
|
222
234
|
import {
|
|
223
235
|
GetDomainNameCommandInput,
|
|
224
236
|
GetDomainNameCommandOutput,
|
|
@@ -379,6 +391,10 @@ import {
|
|
|
379
391
|
PutRestApiCommandInput,
|
|
380
392
|
PutRestApiCommandOutput,
|
|
381
393
|
} from "../commands/PutRestApiCommand";
|
|
394
|
+
import {
|
|
395
|
+
RejectDomainNameAccessAssociationCommandInput,
|
|
396
|
+
RejectDomainNameAccessAssociationCommandOutput,
|
|
397
|
+
} from "../commands/RejectDomainNameAccessAssociationCommand";
|
|
382
398
|
import {
|
|
383
399
|
TagResourceCommandInput,
|
|
384
400
|
TagResourceCommandOutput,
|
|
@@ -511,6 +527,10 @@ export declare const se_CreateDomainNameCommand: (
|
|
|
511
527
|
input: CreateDomainNameCommandInput,
|
|
512
528
|
context: __SerdeContext
|
|
513
529
|
) => Promise<__HttpRequest>;
|
|
530
|
+
export declare const se_CreateDomainNameAccessAssociationCommand: (
|
|
531
|
+
input: CreateDomainNameAccessAssociationCommandInput,
|
|
532
|
+
context: __SerdeContext
|
|
533
|
+
) => Promise<__HttpRequest>;
|
|
514
534
|
export declare const se_CreateModelCommand: (
|
|
515
535
|
input: CreateModelCommandInput,
|
|
516
536
|
context: __SerdeContext
|
|
@@ -575,6 +595,10 @@ export declare const se_DeleteDomainNameCommand: (
|
|
|
575
595
|
input: DeleteDomainNameCommandInput,
|
|
576
596
|
context: __SerdeContext
|
|
577
597
|
) => Promise<__HttpRequest>;
|
|
598
|
+
export declare const se_DeleteDomainNameAccessAssociationCommand: (
|
|
599
|
+
input: DeleteDomainNameAccessAssociationCommandInput,
|
|
600
|
+
context: __SerdeContext
|
|
601
|
+
) => Promise<__HttpRequest>;
|
|
578
602
|
export declare const se_DeleteGatewayResponseCommand: (
|
|
579
603
|
input: DeleteGatewayResponseCommandInput,
|
|
580
604
|
context: __SerdeContext
|
|
@@ -703,6 +727,10 @@ export declare const se_GetDomainNameCommand: (
|
|
|
703
727
|
input: GetDomainNameCommandInput,
|
|
704
728
|
context: __SerdeContext
|
|
705
729
|
) => Promise<__HttpRequest>;
|
|
730
|
+
export declare const se_GetDomainNameAccessAssociationsCommand: (
|
|
731
|
+
input: GetDomainNameAccessAssociationsCommandInput,
|
|
732
|
+
context: __SerdeContext
|
|
733
|
+
) => Promise<__HttpRequest>;
|
|
706
734
|
export declare const se_GetDomainNamesCommand: (
|
|
707
735
|
input: GetDomainNamesCommandInput,
|
|
708
736
|
context: __SerdeContext
|
|
@@ -859,6 +887,10 @@ export declare const se_PutRestApiCommand: (
|
|
|
859
887
|
input: PutRestApiCommandInput,
|
|
860
888
|
context: __SerdeContext
|
|
861
889
|
) => Promise<__HttpRequest>;
|
|
890
|
+
export declare const se_RejectDomainNameAccessAssociationCommand: (
|
|
891
|
+
input: RejectDomainNameAccessAssociationCommandInput,
|
|
892
|
+
context: __SerdeContext
|
|
893
|
+
) => Promise<__HttpRequest>;
|
|
862
894
|
export declare const se_TagResourceCommand: (
|
|
863
895
|
input: TagResourceCommandInput,
|
|
864
896
|
context: __SerdeContext
|
|
@@ -991,6 +1023,10 @@ export declare const de_CreateDomainNameCommand: (
|
|
|
991
1023
|
output: __HttpResponse,
|
|
992
1024
|
context: __SerdeContext
|
|
993
1025
|
) => Promise<CreateDomainNameCommandOutput>;
|
|
1026
|
+
export declare const de_CreateDomainNameAccessAssociationCommand: (
|
|
1027
|
+
output: __HttpResponse,
|
|
1028
|
+
context: __SerdeContext
|
|
1029
|
+
) => Promise<CreateDomainNameAccessAssociationCommandOutput>;
|
|
994
1030
|
export declare const de_CreateModelCommand: (
|
|
995
1031
|
output: __HttpResponse,
|
|
996
1032
|
context: __SerdeContext
|
|
@@ -1055,6 +1091,10 @@ export declare const de_DeleteDomainNameCommand: (
|
|
|
1055
1091
|
output: __HttpResponse,
|
|
1056
1092
|
context: __SerdeContext
|
|
1057
1093
|
) => Promise<DeleteDomainNameCommandOutput>;
|
|
1094
|
+
export declare const de_DeleteDomainNameAccessAssociationCommand: (
|
|
1095
|
+
output: __HttpResponse,
|
|
1096
|
+
context: __SerdeContext
|
|
1097
|
+
) => Promise<DeleteDomainNameAccessAssociationCommandOutput>;
|
|
1058
1098
|
export declare const de_DeleteGatewayResponseCommand: (
|
|
1059
1099
|
output: __HttpResponse,
|
|
1060
1100
|
context: __SerdeContext
|
|
@@ -1183,6 +1223,10 @@ export declare const de_GetDomainNameCommand: (
|
|
|
1183
1223
|
output: __HttpResponse,
|
|
1184
1224
|
context: __SerdeContext
|
|
1185
1225
|
) => Promise<GetDomainNameCommandOutput>;
|
|
1226
|
+
export declare const de_GetDomainNameAccessAssociationsCommand: (
|
|
1227
|
+
output: __HttpResponse,
|
|
1228
|
+
context: __SerdeContext
|
|
1229
|
+
) => Promise<GetDomainNameAccessAssociationsCommandOutput>;
|
|
1186
1230
|
export declare const de_GetDomainNamesCommand: (
|
|
1187
1231
|
output: __HttpResponse,
|
|
1188
1232
|
context: __SerdeContext
|
|
@@ -1339,6 +1383,10 @@ export declare const de_PutRestApiCommand: (
|
|
|
1339
1383
|
output: __HttpResponse,
|
|
1340
1384
|
context: __SerdeContext
|
|
1341
1385
|
) => Promise<PutRestApiCommandOutput>;
|
|
1386
|
+
export declare const de_RejectDomainNameAccessAssociationCommand: (
|
|
1387
|
+
output: __HttpResponse,
|
|
1388
|
+
context: __SerdeContext
|
|
1389
|
+
) => Promise<RejectDomainNameAccessAssociationCommandOutput>;
|
|
1342
1390
|
export declare const de_TagResourceCommand: (
|
|
1343
1391
|
output: __HttpResponse,
|
|
1344
1392
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-api-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Api Gateway Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.699.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-api-gateway",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
25
25
|
"@aws-sdk/core": "3.696.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|