@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.
Files changed (39) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +241 -8
  3. package/dist-es/APIGateway.js +8 -0
  4. package/dist-es/commands/CreateDomainNameAccessAssociationCommand.js +22 -0
  5. package/dist-es/commands/DeleteDomainNameAccessAssociationCommand.js +22 -0
  6. package/dist-es/commands/GetDomainNameAccessAssociationsCommand.js +22 -0
  7. package/dist-es/commands/RejectDomainNameAccessAssociationCommand.js +22 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +7 -0
  10. package/dist-es/protocols/Aws_restJson1.js +153 -6
  11. package/dist-types/APIGateway.d.ts +29 -0
  12. package/dist-types/APIGatewayClient.d.ts +6 -2
  13. package/dist-types/commands/CreateBasePathMappingCommand.d.ts +1 -0
  14. package/dist-types/commands/CreateDomainNameAccessAssociationCommand.d.ts +98 -0
  15. package/dist-types/commands/CreateDomainNameCommand.d.ts +5 -0
  16. package/dist-types/commands/DeleteBasePathMappingCommand.d.ts +1 -0
  17. package/dist-types/commands/DeleteDomainNameAccessAssociationCommand.d.ts +85 -0
  18. package/dist-types/commands/DeleteDomainNameCommand.d.ts +1 -0
  19. package/dist-types/commands/GetBasePathMappingCommand.d.ts +1 -0
  20. package/dist-types/commands/GetBasePathMappingsCommand.d.ts +1 -0
  21. package/dist-types/commands/GetDomainNameAccessAssociationsCommand.d.ts +96 -0
  22. package/dist-types/commands/GetDomainNameCommand.d.ts +5 -0
  23. package/dist-types/commands/GetDomainNamesCommand.d.ts +5 -0
  24. package/dist-types/commands/RejectDomainNameAccessAssociationCommand.d.ts +86 -0
  25. package/dist-types/commands/UpdateBasePathMappingCommand.d.ts +1 -0
  26. package/dist-types/commands/UpdateDomainNameCommand.d.ts +5 -0
  27. package/dist-types/commands/index.d.ts +4 -0
  28. package/dist-types/models/models_0.d.ts +259 -6
  29. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  30. package/dist-types/ts3.4/APIGateway.d.ts +87 -0
  31. package/dist-types/ts3.4/APIGatewayClient.d.ts +24 -0
  32. package/dist-types/ts3.4/commands/CreateDomainNameAccessAssociationCommand.d.ts +51 -0
  33. package/dist-types/ts3.4/commands/DeleteDomainNameAccessAssociationCommand.d.ts +47 -0
  34. package/dist-types/ts3.4/commands/GetDomainNameAccessAssociationsCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/RejectDomainNameAccessAssociationCommand.d.ts +47 -0
  36. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +53 -0
  38. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  39. package/package.json +4 -4
@@ -1,5 +1,16 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { APIGatewayServiceException as __BaseException } from "./APIGatewayServiceException";
3
+ /**
4
+ * @public
5
+ * @enum
6
+ */
7
+ export declare const AccessAssociationSourceType: {
8
+ readonly VPCE: "VPCE";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type AccessAssociationSourceType = (typeof AccessAssociationSourceType)[keyof typeof AccessAssociationSourceType];
3
14
  /**
4
15
  * <p>Access log settings, including the access log format and access log destination ARN.</p>
5
16
  * @public
@@ -533,6 +544,11 @@ export interface CreateBasePathMappingRequest {
533
544
  * @public
534
545
  */
535
546
  domainName: string | undefined;
547
+ /**
548
+ * <p>The identifier for the domain name resource. Supported only for private custom domain names.</p>
549
+ * @public
550
+ */
551
+ domainNameId?: string | undefined;
536
552
  /**
537
553
  * <p>The base path name that callers of the API must provide as part of the URL after the domain name. This value must be unique for all of the mappings across a single API. Specify '(none)' if you do not want callers to specify a base path name after the domain name.</p>
538
554
  * @public
@@ -912,12 +928,12 @@ export interface CreateDomainNameRequest {
912
928
  */
913
929
  domainName: string | undefined;
914
930
  /**
915
- * <p>The user-friendly name of the certificate that will be used by edge-optimized endpoint for this domain name.</p>
931
+ * <p>The user-friendly name of the certificate that will be used by edge-optimized endpoint or private endpoint for this domain name.</p>
916
932
  * @public
917
933
  */
918
934
  certificateName?: string | undefined;
919
935
  /**
920
- * <p>[Deprecated] The body of the server certificate that will be used by edge-optimized endpoint for this domain name provided by your certificate authority.</p>
936
+ * <p>[Deprecated] The body of the server certificate that will be used by edge-optimized endpoint or private endpoint for this domain name provided by your certificate authority.</p>
921
937
  * @public
922
938
  */
923
939
  certificateBody?: string | undefined;
@@ -932,7 +948,7 @@ export interface CreateDomainNameRequest {
932
948
  */
933
949
  certificateChain?: string | undefined;
934
950
  /**
935
- * <p>The reference to an Amazon Web Services-managed certificate that will be used by edge-optimized endpoint for this domain name. Certificate Manager is the only supported source.</p>
951
+ * <p>The reference to an Amazon Web Services-managed certificate that will be used by edge-optimized endpoint or private endpoint for this domain name. Certificate Manager is the only supported source.</p>
936
952
  * @public
937
953
  */
938
954
  certificateArn?: string | undefined;
@@ -975,6 +991,13 @@ export interface CreateDomainNameRequest {
975
991
  * @public
976
992
  */
977
993
  ownershipVerificationCertificateArn?: string | undefined;
994
+ /**
995
+ * <p>A stringified JSON policy document that applies to the <code>execute-api</code> service for this DomainName regardless of the caller and Method
996
+ * configuration. Supported only for private custom
997
+ * domain names.</p>
998
+ * @public
999
+ */
1000
+ policy?: string | undefined;
978
1001
  }
979
1002
  /**
980
1003
  * @public
@@ -1032,17 +1055,28 @@ export interface DomainName {
1032
1055
  */
1033
1056
  domainName?: string | undefined;
1034
1057
  /**
1035
- * <p>The name of the certificate that will be used by edge-optimized endpoint for this domain name.</p>
1058
+ * <p>The identifier for the domain name resource. Supported only for private custom domain names.</p>
1059
+ * @public
1060
+ */
1061
+ domainNameId?: string | undefined;
1062
+ /**
1063
+ * <p>The ARN of the domain name. Supported only for private custom domain names.
1064
+ * </p>
1065
+ * @public
1066
+ */
1067
+ domainNameArn?: string | undefined;
1068
+ /**
1069
+ * <p>The name of the certificate that will be used by edge-optimized endpoint or private endpoint for this domain name.</p>
1036
1070
  * @public
1037
1071
  */
1038
1072
  certificateName?: string | undefined;
1039
1073
  /**
1040
- * <p>The reference to an Amazon Web Services-managed certificate that will be used by edge-optimized endpoint for this domain name. Certificate Manager is the only supported source.</p>
1074
+ * <p>The reference to an Amazon Web Services-managed certificate that will be used by edge-optimized endpoint or private endpoint for this domain name. Certificate Manager is the only supported source.</p>
1041
1075
  * @public
1042
1076
  */
1043
1077
  certificateArn?: string | undefined;
1044
1078
  /**
1045
- * <p>The timestamp when the certificate that was used by edge-optimized endpoint for this domain name was uploaded. API Gateway doesn't change this value if you update the certificate.</p>
1079
+ * <p>The timestamp when the certificate that was used by edge-optimized endpoint or private endpoint for this domain name was uploaded.</p>
1046
1080
  * @public
1047
1081
  */
1048
1082
  certificateUploadDate?: Date | undefined;
@@ -1115,6 +1149,88 @@ export interface DomainName {
1115
1149
  * @public
1116
1150
  */
1117
1151
  ownershipVerificationCertificateArn?: string | undefined;
1152
+ /**
1153
+ * <p>A stringified JSON policy document that applies to the API Gateway Management service for this DomainName. This policy document controls access for access association sources to create domain name access associations with this DomainName. Supported only for private custom domain names.</p>
1154
+ * @public
1155
+ */
1156
+ managementPolicy?: string | undefined;
1157
+ /**
1158
+ * <p>A stringified JSON policy document that applies to the <code>execute-api</code> service for this DomainName regardless of the caller and Method
1159
+ * configuration. Supported only for private custom
1160
+ * domain names.</p>
1161
+ * @public
1162
+ */
1163
+ policy?: string | undefined;
1164
+ }
1165
+ /**
1166
+ * @public
1167
+ */
1168
+ export interface CreateDomainNameAccessAssociationRequest {
1169
+ /**
1170
+ * <p>
1171
+ * The ARN of the domain name.
1172
+ * </p>
1173
+ * @public
1174
+ */
1175
+ domainNameArn: string | undefined;
1176
+ /**
1177
+ * <p>
1178
+ * The type of the domain name access association source.
1179
+ * </p>
1180
+ * @public
1181
+ */
1182
+ accessAssociationSourceType: AccessAssociationSourceType | undefined;
1183
+ /**
1184
+ * <p>
1185
+ * The identifier of the domain name access association source. For a VPCE, the value is the VPC endpoint ID.
1186
+ * </p>
1187
+ * @public
1188
+ */
1189
+ accessAssociationSource: string | undefined;
1190
+ /**
1191
+ * <p>The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with <code>aws:</code>. The tag value can be up to 256 characters.</p>
1192
+ * @public
1193
+ */
1194
+ tags?: Record<string, string> | undefined;
1195
+ }
1196
+ /**
1197
+ * <p>Represents a domain name access association between an access association source and a private custom domain name. With a domain name access association, an access association source can invoke a private custom domain name while isolated from the public internet.</p>
1198
+ * @public
1199
+ */
1200
+ export interface DomainNameAccessAssociation {
1201
+ /**
1202
+ * <p>The ARN of the domain name access association resource.
1203
+ * </p>
1204
+ * @public
1205
+ */
1206
+ domainNameAccessAssociationArn?: string | undefined;
1207
+ /**
1208
+ * <p>The ARN of the domain name.
1209
+ * </p>
1210
+ * @public
1211
+ */
1212
+ domainNameArn?: string | undefined;
1213
+ /**
1214
+ * <p>
1215
+ * The type of the domain name access association source.
1216
+ * </p>
1217
+ * @public
1218
+ */
1219
+ accessAssociationSourceType?: AccessAssociationSourceType | undefined;
1220
+ /**
1221
+ * <p>
1222
+ * The ARN of the domain name access association source. For a VPCE, the ARN must be a VPC endpoint.
1223
+ * </p>
1224
+ * @public
1225
+ */
1226
+ accessAssociationSource?: string | undefined;
1227
+ /**
1228
+ * <p>
1229
+ * The collection of tags. Each tag element is associated with a given resource.
1230
+ * </p>
1231
+ * @public
1232
+ */
1233
+ tags?: Record<string, string> | undefined;
1118
1234
  }
1119
1235
  /**
1120
1236
  * <p>Request to add a new Model to an existing RestApi resource.</p>
@@ -2274,6 +2390,13 @@ export interface DeleteBasePathMappingRequest {
2274
2390
  * @public
2275
2391
  */
2276
2392
  domainName: string | undefined;
2393
+ /**
2394
+ * <p>
2395
+ * The identifier for the domain name resource. Supported only for private custom domain names.
2396
+ * </p>
2397
+ * @public
2398
+ */
2399
+ domainNameId?: string | undefined;
2277
2400
  /**
2278
2401
  * <p>The base path name of the BasePathMapping resource to delete.</p>
2279
2402
  * <p>To specify an empty base path, set this parameter to <code>'(none)'</code>.</p>
@@ -2350,6 +2473,24 @@ export interface DeleteDomainNameRequest {
2350
2473
  * @public
2351
2474
  */
2352
2475
  domainName: string | undefined;
2476
+ /**
2477
+ * <p>
2478
+ * The identifier for the domain name resource. Supported only for private custom domain names.
2479
+ * </p>
2480
+ * @public
2481
+ */
2482
+ domainNameId?: string | undefined;
2483
+ }
2484
+ /**
2485
+ * @public
2486
+ */
2487
+ export interface DeleteDomainNameAccessAssociationRequest {
2488
+ /**
2489
+ * <p>
2490
+ * The ARN of the domain name access association resource.</p>
2491
+ * @public
2492
+ */
2493
+ domainNameAccessAssociationArn: string | undefined;
2353
2494
  }
2354
2495
  /**
2355
2496
  * @public
@@ -2789,6 +2930,12 @@ export interface GetBasePathMappingRequest {
2789
2930
  * @public
2790
2931
  */
2791
2932
  domainName: string | undefined;
2933
+ /**
2934
+ * <p>The identifier for the domain name resource. Supported only for private custom domain names.
2935
+ * </p>
2936
+ * @public
2937
+ */
2938
+ domainNameId?: string | undefined;
2792
2939
  /**
2793
2940
  * <p>The base path name that callers of the API must provide as part of the URL after the domain name. This value must be unique for all of the mappings across a single API. Specify '(none)' if you do not want callers to specify any base path name after the domain name.</p>
2794
2941
  * @public
@@ -2821,6 +2968,13 @@ export interface GetBasePathMappingsRequest {
2821
2968
  * @public
2822
2969
  */
2823
2970
  domainName: string | undefined;
2971
+ /**
2972
+ * <p>
2973
+ * The identifier for the domain name resource. Supported only for private custom domain names.
2974
+ * </p>
2975
+ * @public
2976
+ */
2977
+ domainNameId?: string | undefined;
2824
2978
  /**
2825
2979
  * <p>The current pagination position in the paged result set.</p>
2826
2980
  * @public
@@ -3081,6 +3235,67 @@ export interface GetDomainNameRequest {
3081
3235
  * @public
3082
3236
  */
3083
3237
  domainName: string | undefined;
3238
+ /**
3239
+ * <p>
3240
+ * The identifier for the domain name resource. Supported only for private custom domain names.
3241
+ * </p>
3242
+ * @public
3243
+ */
3244
+ domainNameId?: string | undefined;
3245
+ }
3246
+ /**
3247
+ * @public
3248
+ */
3249
+ export interface DomainNameAccessAssociations {
3250
+ /**
3251
+ * <p>
3252
+ * The current page of elements from this collection.
3253
+ * </p>
3254
+ * @public
3255
+ */
3256
+ items?: DomainNameAccessAssociation[] | undefined;
3257
+ /**
3258
+ * <p>The current pagination position in the paged result set.
3259
+ * </p>
3260
+ * @public
3261
+ */
3262
+ position?: string | undefined;
3263
+ }
3264
+ /**
3265
+ * @public
3266
+ * @enum
3267
+ */
3268
+ export declare const ResourceOwner: {
3269
+ readonly OTHER_ACCOUNTS: "OTHER_ACCOUNTS";
3270
+ readonly SELF: "SELF";
3271
+ };
3272
+ /**
3273
+ * @public
3274
+ */
3275
+ export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
3276
+ /**
3277
+ * @public
3278
+ */
3279
+ export interface GetDomainNameAccessAssociationsRequest {
3280
+ /**
3281
+ * <p>The current pagination position in the paged result set.
3282
+ * </p>
3283
+ * @public
3284
+ */
3285
+ position?: string | undefined;
3286
+ /**
3287
+ * <p>The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
3288
+ * </p>
3289
+ * @public
3290
+ */
3291
+ limit?: number | undefined;
3292
+ /**
3293
+ * <p> The owner of the domain name access association. Use <code>SELF</code> to only list the domain name access associations owned by your own account.
3294
+ * Use <code>OTHER_ACCOUNTS</code> to list the domain name access associations with your private custom domain names that are owned by other AWS
3295
+ * accounts.</p>
3296
+ * @public
3297
+ */
3298
+ resourceOwner?: ResourceOwner | undefined;
3084
3299
  }
3085
3300
  /**
3086
3301
  * <p>Represents a collection of DomainName resources.</p>
@@ -3113,6 +3328,12 @@ export interface GetDomainNamesRequest {
3113
3328
  * @public
3114
3329
  */
3115
3330
  limit?: number | undefined;
3331
+ /**
3332
+ * <p>The owner of the domain name access association.
3333
+ * </p>
3334
+ * @public
3335
+ */
3336
+ resourceOwner?: ResourceOwner | undefined;
3116
3337
  }
3117
3338
  /**
3118
3339
  * <p>The binary blob response to GetExport, which contains the generated SDK.</p>
@@ -4440,6 +4661,24 @@ export interface PutRestApiRequest {
4440
4661
  */
4441
4662
  body: Uint8Array | undefined;
4442
4663
  }
4664
+ /**
4665
+ * @public
4666
+ */
4667
+ export interface RejectDomainNameAccessAssociationRequest {
4668
+ /**
4669
+ * <p>The ARN of the domain name access association resource.
4670
+ * </p>
4671
+ * @public
4672
+ */
4673
+ domainNameAccessAssociationArn: string | undefined;
4674
+ /**
4675
+ * <p>
4676
+ * The ARN of the domain name.
4677
+ * </p>
4678
+ * @public
4679
+ */
4680
+ domainNameArn: string | undefined;
4681
+ }
4443
4682
  /**
4444
4683
  * <p>Adds or updates a tag on a given resource.</p>
4445
4684
  * @public
@@ -4761,6 +5000,13 @@ export interface UpdateBasePathMappingRequest {
4761
5000
  * @public
4762
5001
  */
4763
5002
  domainName: string | undefined;
5003
+ /**
5004
+ * <p>
5005
+ * The identifier for the domain name resource. Supported only for private custom domain names.
5006
+ * </p>
5007
+ * @public
5008
+ */
5009
+ domainNameId?: string | undefined;
4764
5010
  /**
4765
5011
  * <p>The base path of the BasePathMapping resource to change.</p>
4766
5012
  * <p>To specify an empty base path, set this parameter to <code>'(none)'</code>.</p>
@@ -4862,6 +5108,13 @@ export interface UpdateDomainNameRequest {
4862
5108
  * @public
4863
5109
  */
4864
5110
  domainName: string | undefined;
5111
+ /**
5112
+ * <p>
5113
+ * The identifier for the domain name resource. Supported only for private custom domain names.
5114
+ * </p>
5115
+ * @public
5116
+ */
5117
+ domainNameId?: string | undefined;
4865
5118
  /**
4866
5119
  * <p>For more information about supported patch operations, see <a href="https://docs.aws.amazon.com/apigateway/latest/api/patch-operations.html">Patch Operations</a>.</p>
4867
5120
  * @public
@@ -6,6 +6,7 @@ import { CreateBasePathMappingCommandInput, CreateBasePathMappingCommandOutput }
6
6
  import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "../commands/CreateDeploymentCommand";
7
7
  import { CreateDocumentationPartCommandInput, CreateDocumentationPartCommandOutput } from "../commands/CreateDocumentationPartCommand";
8
8
  import { CreateDocumentationVersionCommandInput, CreateDocumentationVersionCommandOutput } from "../commands/CreateDocumentationVersionCommand";
9
+ import { CreateDomainNameAccessAssociationCommandInput, CreateDomainNameAccessAssociationCommandOutput } from "../commands/CreateDomainNameAccessAssociationCommand";
9
10
  import { CreateDomainNameCommandInput, CreateDomainNameCommandOutput } from "../commands/CreateDomainNameCommand";
10
11
  import { CreateModelCommandInput, CreateModelCommandOutput } from "../commands/CreateModelCommand";
11
12
  import { CreateRequestValidatorCommandInput, CreateRequestValidatorCommandOutput } from "../commands/CreateRequestValidatorCommand";
@@ -22,6 +23,7 @@ import { DeleteClientCertificateCommandInput, DeleteClientCertificateCommandOutp
22
23
  import { DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput } from "../commands/DeleteDeploymentCommand";
23
24
  import { DeleteDocumentationPartCommandInput, DeleteDocumentationPartCommandOutput } from "../commands/DeleteDocumentationPartCommand";
24
25
  import { DeleteDocumentationVersionCommandInput, DeleteDocumentationVersionCommandOutput } from "../commands/DeleteDocumentationVersionCommand";
26
+ import { DeleteDomainNameAccessAssociationCommandInput, DeleteDomainNameAccessAssociationCommandOutput } from "../commands/DeleteDomainNameAccessAssociationCommand";
25
27
  import { DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput } from "../commands/DeleteDomainNameCommand";
26
28
  import { DeleteGatewayResponseCommandInput, DeleteGatewayResponseCommandOutput } from "../commands/DeleteGatewayResponseCommand";
27
29
  import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "../commands/DeleteIntegrationCommand";
@@ -54,6 +56,7 @@ import { GetDocumentationPartCommandInput, GetDocumentationPartCommandOutput } f
54
56
  import { GetDocumentationPartsCommandInput, GetDocumentationPartsCommandOutput } from "../commands/GetDocumentationPartsCommand";
55
57
  import { GetDocumentationVersionCommandInput, GetDocumentationVersionCommandOutput } from "../commands/GetDocumentationVersionCommand";
56
58
  import { GetDocumentationVersionsCommandInput, GetDocumentationVersionsCommandOutput } from "../commands/GetDocumentationVersionsCommand";
59
+ import { GetDomainNameAccessAssociationsCommandInput, GetDomainNameAccessAssociationsCommandOutput } from "../commands/GetDomainNameAccessAssociationsCommand";
57
60
  import { GetDomainNameCommandInput, GetDomainNameCommandOutput } from "../commands/GetDomainNameCommand";
58
61
  import { GetDomainNamesCommandInput, GetDomainNamesCommandOutput } from "../commands/GetDomainNamesCommand";
59
62
  import { GetExportCommandInput, GetExportCommandOutput } from "../commands/GetExportCommand";
@@ -94,6 +97,7 @@ import { PutIntegrationResponseCommandInput, PutIntegrationResponseCommandOutput
94
97
  import { PutMethodCommandInput, PutMethodCommandOutput } from "../commands/PutMethodCommand";
95
98
  import { PutMethodResponseCommandInput, PutMethodResponseCommandOutput } from "../commands/PutMethodResponseCommand";
96
99
  import { PutRestApiCommandInput, PutRestApiCommandOutput } from "../commands/PutRestApiCommand";
100
+ import { RejectDomainNameAccessAssociationCommandInput, RejectDomainNameAccessAssociationCommandOutput } from "../commands/RejectDomainNameAccessAssociationCommand";
97
101
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
98
102
  import { TestInvokeAuthorizerCommandInput, TestInvokeAuthorizerCommandOutput } from "../commands/TestInvokeAuthorizerCommand";
99
103
  import { TestInvokeMethodCommandInput, TestInvokeMethodCommandOutput } from "../commands/TestInvokeMethodCommand";
@@ -148,6 +152,10 @@ export declare const se_CreateDocumentationVersionCommand: (input: CreateDocumen
148
152
  * serializeAws_restJson1CreateDomainNameCommand
149
153
  */
150
154
  export declare const se_CreateDomainNameCommand: (input: CreateDomainNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
155
+ /**
156
+ * serializeAws_restJson1CreateDomainNameAccessAssociationCommand
157
+ */
158
+ export declare const se_CreateDomainNameAccessAssociationCommand: (input: CreateDomainNameAccessAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
151
159
  /**
152
160
  * serializeAws_restJson1CreateModelCommand
153
161
  */
@@ -212,6 +220,10 @@ export declare const se_DeleteDocumentationVersionCommand: (input: DeleteDocumen
212
220
  * serializeAws_restJson1DeleteDomainNameCommand
213
221
  */
214
222
  export declare const se_DeleteDomainNameCommand: (input: DeleteDomainNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
223
+ /**
224
+ * serializeAws_restJson1DeleteDomainNameAccessAssociationCommand
225
+ */
226
+ export declare const se_DeleteDomainNameAccessAssociationCommand: (input: DeleteDomainNameAccessAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
215
227
  /**
216
228
  * serializeAws_restJson1DeleteGatewayResponseCommand
217
229
  */
@@ -340,6 +352,10 @@ export declare const se_GetDocumentationVersionsCommand: (input: GetDocumentatio
340
352
  * serializeAws_restJson1GetDomainNameCommand
341
353
  */
342
354
  export declare const se_GetDomainNameCommand: (input: GetDomainNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
355
+ /**
356
+ * serializeAws_restJson1GetDomainNameAccessAssociationsCommand
357
+ */
358
+ export declare const se_GetDomainNameAccessAssociationsCommand: (input: GetDomainNameAccessAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
343
359
  /**
344
360
  * serializeAws_restJson1GetDomainNamesCommand
345
361
  */
@@ -496,6 +512,10 @@ export declare const se_PutMethodResponseCommand: (input: PutMethodResponseComma
496
512
  * serializeAws_restJson1PutRestApiCommand
497
513
  */
498
514
  export declare const se_PutRestApiCommand: (input: PutRestApiCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
515
+ /**
516
+ * serializeAws_restJson1RejectDomainNameAccessAssociationCommand
517
+ */
518
+ export declare const se_RejectDomainNameAccessAssociationCommand: (input: RejectDomainNameAccessAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
499
519
  /**
500
520
  * serializeAws_restJson1TagResourceCommand
501
521
  */
@@ -628,6 +648,10 @@ export declare const de_CreateDocumentationVersionCommand: (output: __HttpRespon
628
648
  * deserializeAws_restJson1CreateDomainNameCommand
629
649
  */
630
650
  export declare const de_CreateDomainNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainNameCommandOutput>;
651
+ /**
652
+ * deserializeAws_restJson1CreateDomainNameAccessAssociationCommand
653
+ */
654
+ export declare const de_CreateDomainNameAccessAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainNameAccessAssociationCommandOutput>;
631
655
  /**
632
656
  * deserializeAws_restJson1CreateModelCommand
633
657
  */
@@ -692,6 +716,10 @@ export declare const de_DeleteDocumentationVersionCommand: (output: __HttpRespon
692
716
  * deserializeAws_restJson1DeleteDomainNameCommand
693
717
  */
694
718
  export declare const de_DeleteDomainNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainNameCommandOutput>;
719
+ /**
720
+ * deserializeAws_restJson1DeleteDomainNameAccessAssociationCommand
721
+ */
722
+ export declare const de_DeleteDomainNameAccessAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainNameAccessAssociationCommandOutput>;
695
723
  /**
696
724
  * deserializeAws_restJson1DeleteGatewayResponseCommand
697
725
  */
@@ -820,6 +848,10 @@ export declare const de_GetDocumentationVersionsCommand: (output: __HttpResponse
820
848
  * deserializeAws_restJson1GetDomainNameCommand
821
849
  */
822
850
  export declare const de_GetDomainNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainNameCommandOutput>;
851
+ /**
852
+ * deserializeAws_restJson1GetDomainNameAccessAssociationsCommand
853
+ */
854
+ export declare const de_GetDomainNameAccessAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainNameAccessAssociationsCommandOutput>;
823
855
  /**
824
856
  * deserializeAws_restJson1GetDomainNamesCommand
825
857
  */
@@ -976,6 +1008,10 @@ export declare const de_PutMethodResponseCommand: (output: __HttpResponse, conte
976
1008
  * deserializeAws_restJson1PutRestApiCommand
977
1009
  */
978
1010
  export declare const de_PutRestApiCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutRestApiCommandOutput>;
1011
+ /**
1012
+ * deserializeAws_restJson1RejectDomainNameAccessAssociationCommand
1013
+ */
1014
+ export declare const de_RejectDomainNameAccessAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectDomainNameAccessAssociationCommandOutput>;
979
1015
  /**
980
1016
  * deserializeAws_restJson1TagResourceCommand
981
1017
  */
@@ -24,6 +24,10 @@ import {
24
24
  CreateDocumentationVersionCommandInput,
25
25
  CreateDocumentationVersionCommandOutput,
26
26
  } from "./commands/CreateDocumentationVersionCommand";
27
+ import {
28
+ CreateDomainNameAccessAssociationCommandInput,
29
+ CreateDomainNameAccessAssociationCommandOutput,
30
+ } from "./commands/CreateDomainNameAccessAssociationCommand";
27
31
  import {
28
32
  CreateDomainNameCommandInput,
29
33
  CreateDomainNameCommandOutput,
@@ -88,6 +92,10 @@ import {
88
92
  DeleteDocumentationVersionCommandInput,
89
93
  DeleteDocumentationVersionCommandOutput,
90
94
  } from "./commands/DeleteDocumentationVersionCommand";
95
+ import {
96
+ DeleteDomainNameAccessAssociationCommandInput,
97
+ DeleteDomainNameAccessAssociationCommandOutput,
98
+ } from "./commands/DeleteDomainNameAccessAssociationCommand";
91
99
  import {
92
100
  DeleteDomainNameCommandInput,
93
101
  DeleteDomainNameCommandOutput,
@@ -216,6 +224,10 @@ import {
216
224
  GetDocumentationVersionsCommandInput,
217
225
  GetDocumentationVersionsCommandOutput,
218
226
  } from "./commands/GetDocumentationVersionsCommand";
227
+ import {
228
+ GetDomainNameAccessAssociationsCommandInput,
229
+ GetDomainNameAccessAssociationsCommandOutput,
230
+ } from "./commands/GetDomainNameAccessAssociationsCommand";
219
231
  import {
220
232
  GetDomainNameCommandInput,
221
233
  GetDomainNameCommandOutput,
@@ -376,6 +388,10 @@ import {
376
388
  PutRestApiCommandInput,
377
389
  PutRestApiCommandOutput,
378
390
  } from "./commands/PutRestApiCommand";
391
+ import {
392
+ RejectDomainNameAccessAssociationCommandInput,
393
+ RejectDomainNameAccessAssociationCommandOutput,
394
+ } from "./commands/RejectDomainNameAccessAssociationCommand";
379
395
  import {
380
396
  TagResourceCommandInput,
381
397
  TagResourceCommandOutput,
@@ -573,6 +589,25 @@ export interface APIGateway {
573
589
  options: __HttpHandlerOptions,
574
590
  cb: (err: any, data?: CreateDomainNameCommandOutput) => void
575
591
  ): void;
592
+ createDomainNameAccessAssociation(
593
+ args: CreateDomainNameAccessAssociationCommandInput,
594
+ options?: __HttpHandlerOptions
595
+ ): Promise<CreateDomainNameAccessAssociationCommandOutput>;
596
+ createDomainNameAccessAssociation(
597
+ args: CreateDomainNameAccessAssociationCommandInput,
598
+ cb: (
599
+ err: any,
600
+ data?: CreateDomainNameAccessAssociationCommandOutput
601
+ ) => void
602
+ ): void;
603
+ createDomainNameAccessAssociation(
604
+ args: CreateDomainNameAccessAssociationCommandInput,
605
+ options: __HttpHandlerOptions,
606
+ cb: (
607
+ err: any,
608
+ data?: CreateDomainNameAccessAssociationCommandOutput
609
+ ) => void
610
+ ): void;
576
611
  createModel(
577
612
  args: CreateModelCommandInput,
578
613
  options?: __HttpHandlerOptions
@@ -781,6 +816,25 @@ export interface APIGateway {
781
816
  options: __HttpHandlerOptions,
782
817
  cb: (err: any, data?: DeleteDomainNameCommandOutput) => void
783
818
  ): void;
819
+ deleteDomainNameAccessAssociation(
820
+ args: DeleteDomainNameAccessAssociationCommandInput,
821
+ options?: __HttpHandlerOptions
822
+ ): Promise<DeleteDomainNameAccessAssociationCommandOutput>;
823
+ deleteDomainNameAccessAssociation(
824
+ args: DeleteDomainNameAccessAssociationCommandInput,
825
+ cb: (
826
+ err: any,
827
+ data?: DeleteDomainNameAccessAssociationCommandOutput
828
+ ) => void
829
+ ): void;
830
+ deleteDomainNameAccessAssociation(
831
+ args: DeleteDomainNameAccessAssociationCommandInput,
832
+ options: __HttpHandlerOptions,
833
+ cb: (
834
+ err: any,
835
+ data?: DeleteDomainNameAccessAssociationCommandOutput
836
+ ) => void
837
+ ): void;
784
838
  deleteGatewayResponse(
785
839
  args: DeleteGatewayResponseCommandInput,
786
840
  options?: __HttpHandlerOptions
@@ -1201,6 +1255,20 @@ export interface APIGateway {
1201
1255
  options: __HttpHandlerOptions,
1202
1256
  cb: (err: any, data?: GetDomainNameCommandOutput) => void
1203
1257
  ): void;
1258
+ getDomainNameAccessAssociations(): Promise<GetDomainNameAccessAssociationsCommandOutput>;
1259
+ getDomainNameAccessAssociations(
1260
+ args: GetDomainNameAccessAssociationsCommandInput,
1261
+ options?: __HttpHandlerOptions
1262
+ ): Promise<GetDomainNameAccessAssociationsCommandOutput>;
1263
+ getDomainNameAccessAssociations(
1264
+ args: GetDomainNameAccessAssociationsCommandInput,
1265
+ cb: (err: any, data?: GetDomainNameAccessAssociationsCommandOutput) => void
1266
+ ): void;
1267
+ getDomainNameAccessAssociations(
1268
+ args: GetDomainNameAccessAssociationsCommandInput,
1269
+ options: __HttpHandlerOptions,
1270
+ cb: (err: any, data?: GetDomainNameAccessAssociationsCommandOutput) => void
1271
+ ): void;
1204
1272
  getDomainNames(): Promise<GetDomainNamesCommandOutput>;
1205
1273
  getDomainNames(
1206
1274
  args: GetDomainNamesCommandInput,
@@ -1713,6 +1781,25 @@ export interface APIGateway {
1713
1781
  options: __HttpHandlerOptions,
1714
1782
  cb: (err: any, data?: PutRestApiCommandOutput) => void
1715
1783
  ): void;
1784
+ rejectDomainNameAccessAssociation(
1785
+ args: RejectDomainNameAccessAssociationCommandInput,
1786
+ options?: __HttpHandlerOptions
1787
+ ): Promise<RejectDomainNameAccessAssociationCommandOutput>;
1788
+ rejectDomainNameAccessAssociation(
1789
+ args: RejectDomainNameAccessAssociationCommandInput,
1790
+ cb: (
1791
+ err: any,
1792
+ data?: RejectDomainNameAccessAssociationCommandOutput
1793
+ ) => void
1794
+ ): void;
1795
+ rejectDomainNameAccessAssociation(
1796
+ args: RejectDomainNameAccessAssociationCommandInput,
1797
+ options: __HttpHandlerOptions,
1798
+ cb: (
1799
+ err: any,
1800
+ data?: RejectDomainNameAccessAssociationCommandOutput
1801
+ ) => void
1802
+ ): void;
1716
1803
  tagResource(
1717
1804
  args: TagResourceCommandInput,
1718
1805
  options?: __HttpHandlerOptions