@aws-sdk/client-apigatewayv2 3.321.1 → 3.326.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/dist-types/commands/CreateApiCommand.d.ts +42 -0
- package/dist-types/commands/CreateApiMappingCommand.d.ts +9 -0
- package/dist-types/commands/CreateAuthorizerCommand.d.ts +23 -0
- package/dist-types/commands/CreateDeploymentCommand.d.ts +11 -0
- package/dist-types/commands/CreateDomainNameCommand.d.ts +31 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +35 -0
- package/dist-types/commands/CreateIntegrationResponseCommand.d.ts +15 -0
- package/dist-types/commands/CreateModelCommand.d.ts +10 -0
- package/dist-types/commands/CreateRouteCommand.d.ts +26 -0
- package/dist-types/commands/CreateRouteResponseCommand.d.ts +16 -0
- package/dist-types/commands/CreateStageCommand.d.ts +40 -0
- package/dist-types/commands/CreateVpcLinkCommand.d.ts +20 -0
- package/dist-types/commands/DeleteAccessLogSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApiCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApiMappingCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAuthorizerCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCorsConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDeploymentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIntegrationResponseCommand.d.ts +4 -0
- package/dist-types/commands/DeleteModelCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRouteCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRouteRequestParameterCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRouteResponseCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRouteSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStageCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVpcLinkCommand.d.ts +4 -0
- package/dist-types/commands/GetApiCommand.d.ts +42 -0
- package/dist-types/commands/GetApiMappingCommand.d.ts +9 -0
- package/dist-types/commands/GetApiMappingsCommand.d.ts +14 -0
- package/dist-types/commands/GetApisCommand.d.ts +47 -0
- package/dist-types/commands/GetAuthorizerCommand.d.ts +23 -0
- package/dist-types/commands/GetAuthorizersCommand.d.ts +28 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +11 -0
- package/dist-types/commands/GetDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +31 -0
- package/dist-types/commands/GetDomainNamesCommand.d.ts +36 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +35 -0
- package/dist-types/commands/GetIntegrationResponseCommand.d.ts +15 -0
- package/dist-types/commands/GetIntegrationResponsesCommand.d.ts +20 -0
- package/dist-types/commands/GetIntegrationsCommand.d.ts +40 -0
- package/dist-types/commands/GetModelCommand.d.ts +10 -0
- package/dist-types/commands/GetModelTemplateCommand.d.ts +6 -0
- package/dist-types/commands/GetModelsCommand.d.ts +15 -0
- package/dist-types/commands/GetRouteCommand.d.ts +26 -0
- package/dist-types/commands/GetRouteResponseCommand.d.ts +16 -0
- package/dist-types/commands/GetRouteResponsesCommand.d.ts +21 -0
- package/dist-types/commands/GetRoutesCommand.d.ts +31 -0
- package/dist-types/commands/GetStageCommand.d.ts +40 -0
- package/dist-types/commands/GetStagesCommand.d.ts +45 -0
- package/dist-types/commands/GetTagsCommand.d.ts +8 -0
- package/dist-types/commands/GetVpcLinkCommand.d.ts +20 -0
- package/dist-types/commands/GetVpcLinksCommand.d.ts +25 -0
- package/dist-types/commands/ImportApiCommand.d.ts +42 -0
- package/dist-types/commands/ReimportApiCommand.d.ts +42 -0
- package/dist-types/commands/ResetAuthorizersCacheCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApiCommand.d.ts +42 -0
- package/dist-types/commands/UpdateApiMappingCommand.d.ts +9 -0
- package/dist-types/commands/UpdateAuthorizerCommand.d.ts +23 -0
- package/dist-types/commands/UpdateDeploymentCommand.d.ts +11 -0
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +31 -0
- package/dist-types/commands/UpdateIntegrationCommand.d.ts +35 -0
- package/dist-types/commands/UpdateIntegrationResponseCommand.d.ts +15 -0
- package/dist-types/commands/UpdateModelCommand.d.ts +10 -0
- package/dist-types/commands/UpdateRouteCommand.d.ts +26 -0
- package/dist-types/commands/UpdateRouteResponseCommand.d.ts +16 -0
- package/dist-types/commands/UpdateStageCommand.d.ts +40 -0
- package/dist-types/commands/UpdateVpcLinkCommand.d.ts +20 -0
- package/package.json +16 -16
|
@@ -32,6 +32,14 @@ export interface GetModelCommandOutput extends GetModelResponse, __MetadataBeare
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetModelCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetModelResponse
|
|
36
|
+
* // ContentType: "STRING_VALUE",
|
|
37
|
+
* // Description: "STRING_VALUE",
|
|
38
|
+
* // ModelId: "STRING_VALUE",
|
|
39
|
+
* // Name: "STRING_VALUE",
|
|
40
|
+
* // Schema: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
35
43
|
* ```
|
|
36
44
|
*
|
|
37
45
|
* @param GetModelCommandInput - {@link GetModelCommandInput}
|
|
@@ -46,6 +54,8 @@ export interface GetModelCommandOutput extends GetModelResponse, __MetadataBeare
|
|
|
46
54
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
55
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
56
|
*
|
|
57
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
59
|
*
|
|
50
60
|
*/
|
|
51
61
|
export declare class GetModelCommand extends $Command<GetModelCommandInput, GetModelCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface GetModelTemplateCommandOutput extends GetModelTemplateResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetModelTemplateCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetModelTemplateResponse
|
|
36
|
+
* // Value: "STRING_VALUE",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param GetModelTemplateCommandInput - {@link GetModelTemplateCommandInput}
|
|
@@ -46,6 +50,8 @@ export interface GetModelTemplateCommandOutput extends GetModelTemplateResponse,
|
|
|
46
50
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
51
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
52
|
*
|
|
53
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
55
|
*
|
|
50
56
|
*/
|
|
51
57
|
export declare class GetModelTemplateCommand extends $Command<GetModelTemplateCommandInput, GetModelTemplateCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,19 @@ export interface GetModelsCommandOutput extends GetModelsResponse, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetModelsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetModelsResponse
|
|
37
|
+
* // Items: [ // __listOfModel
|
|
38
|
+
* // { // Model
|
|
39
|
+
* // ContentType: "STRING_VALUE",
|
|
40
|
+
* // Description: "STRING_VALUE",
|
|
41
|
+
* // ModelId: "STRING_VALUE",
|
|
42
|
+
* // Name: "STRING_VALUE", // required
|
|
43
|
+
* // Schema: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // NextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
36
49
|
* ```
|
|
37
50
|
*
|
|
38
51
|
* @param GetModelsCommandInput - {@link GetModelsCommandInput}
|
|
@@ -50,6 +63,8 @@ export interface GetModelsCommandOutput extends GetModelsResponse, __MetadataBea
|
|
|
50
63
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
51
64
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
52
65
|
*
|
|
66
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
53
68
|
*
|
|
54
69
|
*/
|
|
55
70
|
export declare class GetModelsCommand extends $Command<GetModelsCommandInput, GetModelsCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,30 @@ export interface GetRouteCommandOutput extends GetRouteResult, __MetadataBearer
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetRouteCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetRouteResult
|
|
36
|
+
* // ApiGatewayManaged: true || false,
|
|
37
|
+
* // ApiKeyRequired: true || false,
|
|
38
|
+
* // AuthorizationScopes: [ // AuthorizationScopes
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // AuthorizationType: "STRING_VALUE",
|
|
42
|
+
* // AuthorizerId: "STRING_VALUE",
|
|
43
|
+
* // ModelSelectionExpression: "STRING_VALUE",
|
|
44
|
+
* // OperationName: "STRING_VALUE",
|
|
45
|
+
* // RequestModels: { // RouteModels
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // RequestParameters: { // RouteParameters
|
|
49
|
+
* // "<keys>": { // ParameterConstraints
|
|
50
|
+
* // Required: true || false,
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // RouteId: "STRING_VALUE",
|
|
54
|
+
* // RouteKey: "STRING_VALUE",
|
|
55
|
+
* // RouteResponseSelectionExpression: "STRING_VALUE",
|
|
56
|
+
* // Target: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
35
59
|
* ```
|
|
36
60
|
*
|
|
37
61
|
* @param GetRouteCommandInput - {@link GetRouteCommandInput}
|
|
@@ -46,6 +70,8 @@ export interface GetRouteCommandOutput extends GetRouteResult, __MetadataBearer
|
|
|
46
70
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
71
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
72
|
*
|
|
73
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
75
|
*
|
|
50
76
|
*/
|
|
51
77
|
export declare class GetRouteCommand extends $Command<GetRouteCommandInput, GetRouteCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface GetRouteResponseCommandOutput extends GetRouteResponseResponse,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetRouteResponseCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetRouteResponseResponse
|
|
37
|
+
* // ModelSelectionExpression: "STRING_VALUE",
|
|
38
|
+
* // ResponseModels: { // RouteModels
|
|
39
|
+
* // "<keys>": "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // ResponseParameters: { // RouteParameters
|
|
42
|
+
* // "<keys>": { // ParameterConstraints
|
|
43
|
+
* // Required: true || false,
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // RouteResponseId: "STRING_VALUE",
|
|
47
|
+
* // RouteResponseKey: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param GetRouteResponseCommandInput - {@link GetRouteResponseCommandInput}
|
|
@@ -47,6 +61,8 @@ export interface GetRouteResponseCommandOutput extends GetRouteResponseResponse,
|
|
|
47
61
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
48
62
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
49
63
|
*
|
|
64
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
50
66
|
*
|
|
51
67
|
*/
|
|
52
68
|
export declare class GetRouteResponseCommand extends $Command<GetRouteResponseCommandInput, GetRouteResponseCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -34,6 +34,25 @@ export interface GetRouteResponsesCommandOutput extends GetRouteResponsesRespons
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetRouteResponsesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetRouteResponsesResponse
|
|
38
|
+
* // Items: [ // __listOfRouteResponse
|
|
39
|
+
* // { // RouteResponse
|
|
40
|
+
* // ModelSelectionExpression: "STRING_VALUE",
|
|
41
|
+
* // ResponseModels: { // RouteModels
|
|
42
|
+
* // "<keys>": "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ResponseParameters: { // RouteParameters
|
|
45
|
+
* // "<keys>": { // ParameterConstraints
|
|
46
|
+
* // Required: true || false,
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // RouteResponseId: "STRING_VALUE",
|
|
50
|
+
* // RouteResponseKey: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
37
56
|
* ```
|
|
38
57
|
*
|
|
39
58
|
* @param GetRouteResponsesCommandInput - {@link GetRouteResponsesCommandInput}
|
|
@@ -51,6 +70,8 @@ export interface GetRouteResponsesCommandOutput extends GetRouteResponsesRespons
|
|
|
51
70
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
52
71
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
53
72
|
*
|
|
73
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
54
75
|
*
|
|
55
76
|
*/
|
|
56
77
|
export declare class GetRouteResponsesCommand extends $Command<GetRouteResponsesCommandInput, GetRouteResponsesCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,35 @@ export interface GetRoutesCommandOutput extends GetRoutesResponse, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetRoutesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetRoutesResponse
|
|
37
|
+
* // Items: [ // __listOfRoute
|
|
38
|
+
* // { // Route
|
|
39
|
+
* // ApiGatewayManaged: true || false,
|
|
40
|
+
* // ApiKeyRequired: true || false,
|
|
41
|
+
* // AuthorizationScopes: [ // AuthorizationScopes
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // AuthorizationType: "STRING_VALUE",
|
|
45
|
+
* // AuthorizerId: "STRING_VALUE",
|
|
46
|
+
* // ModelSelectionExpression: "STRING_VALUE",
|
|
47
|
+
* // OperationName: "STRING_VALUE",
|
|
48
|
+
* // RequestModels: { // RouteModels
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // RequestParameters: { // RouteParameters
|
|
52
|
+
* // "<keys>": { // ParameterConstraints
|
|
53
|
+
* // Required: true || false,
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // RouteId: "STRING_VALUE",
|
|
57
|
+
* // RouteKey: "STRING_VALUE", // required
|
|
58
|
+
* // RouteResponseSelectionExpression: "STRING_VALUE",
|
|
59
|
+
* // Target: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // NextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
36
65
|
* ```
|
|
37
66
|
*
|
|
38
67
|
* @param GetRoutesCommandInput - {@link GetRoutesCommandInput}
|
|
@@ -50,6 +79,8 @@ export interface GetRoutesCommandOutput extends GetRoutesResponse, __MetadataBea
|
|
|
50
79
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
51
80
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
52
81
|
*
|
|
82
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
53
84
|
*
|
|
54
85
|
*/
|
|
55
86
|
export declare class GetRoutesCommand extends $Command<GetRoutesCommandInput, GetRoutesCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,44 @@ export interface GetStageCommandOutput extends GetStageResponse, __MetadataBeare
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetStageCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetStageResponse
|
|
36
|
+
* // AccessLogSettings: { // AccessLogSettings
|
|
37
|
+
* // DestinationArn: "STRING_VALUE",
|
|
38
|
+
* // Format: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // ApiGatewayManaged: true || false,
|
|
41
|
+
* // AutoDeploy: true || false,
|
|
42
|
+
* // ClientCertificateId: "STRING_VALUE",
|
|
43
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
44
|
+
* // DefaultRouteSettings: { // RouteSettings
|
|
45
|
+
* // DataTraceEnabled: true || false,
|
|
46
|
+
* // DetailedMetricsEnabled: true || false,
|
|
47
|
+
* // LoggingLevel: "STRING_VALUE",
|
|
48
|
+
* // ThrottlingBurstLimit: Number("int"),
|
|
49
|
+
* // ThrottlingRateLimit: Number("double"),
|
|
50
|
+
* // },
|
|
51
|
+
* // DeploymentId: "STRING_VALUE",
|
|
52
|
+
* // Description: "STRING_VALUE",
|
|
53
|
+
* // LastDeploymentStatusMessage: "STRING_VALUE",
|
|
54
|
+
* // LastUpdatedDate: new Date("TIMESTAMP"),
|
|
55
|
+
* // RouteSettings: { // RouteSettingsMap
|
|
56
|
+
* // "<keys>": {
|
|
57
|
+
* // DataTraceEnabled: true || false,
|
|
58
|
+
* // DetailedMetricsEnabled: true || false,
|
|
59
|
+
* // LoggingLevel: "STRING_VALUE",
|
|
60
|
+
* // ThrottlingBurstLimit: Number("int"),
|
|
61
|
+
* // ThrottlingRateLimit: Number("double"),
|
|
62
|
+
* // },
|
|
63
|
+
* // },
|
|
64
|
+
* // StageName: "STRING_VALUE",
|
|
65
|
+
* // StageVariables: { // StageVariablesMap
|
|
66
|
+
* // "<keys>": "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // Tags: { // Tags
|
|
69
|
+
* // "<keys>": "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
35
73
|
* ```
|
|
36
74
|
*
|
|
37
75
|
* @param GetStageCommandInput - {@link GetStageCommandInput}
|
|
@@ -46,6 +84,8 @@ export interface GetStageCommandOutput extends GetStageResponse, __MetadataBeare
|
|
|
46
84
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
85
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
86
|
*
|
|
87
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
89
|
*
|
|
50
90
|
*/
|
|
51
91
|
export declare class GetStageCommand extends $Command<GetStageCommandInput, GetStageCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,49 @@ export interface GetStagesCommandOutput extends GetStagesResponse, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetStagesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetStagesResponse
|
|
37
|
+
* // Items: [ // __listOfStage
|
|
38
|
+
* // { // Stage
|
|
39
|
+
* // AccessLogSettings: { // AccessLogSettings
|
|
40
|
+
* // DestinationArn: "STRING_VALUE",
|
|
41
|
+
* // Format: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // ApiGatewayManaged: true || false,
|
|
44
|
+
* // AutoDeploy: true || false,
|
|
45
|
+
* // ClientCertificateId: "STRING_VALUE",
|
|
46
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
47
|
+
* // DefaultRouteSettings: { // RouteSettings
|
|
48
|
+
* // DataTraceEnabled: true || false,
|
|
49
|
+
* // DetailedMetricsEnabled: true || false,
|
|
50
|
+
* // LoggingLevel: "STRING_VALUE",
|
|
51
|
+
* // ThrottlingBurstLimit: Number("int"),
|
|
52
|
+
* // ThrottlingRateLimit: Number("double"),
|
|
53
|
+
* // },
|
|
54
|
+
* // DeploymentId: "STRING_VALUE",
|
|
55
|
+
* // Description: "STRING_VALUE",
|
|
56
|
+
* // LastDeploymentStatusMessage: "STRING_VALUE",
|
|
57
|
+
* // LastUpdatedDate: new Date("TIMESTAMP"),
|
|
58
|
+
* // RouteSettings: { // RouteSettingsMap
|
|
59
|
+
* // "<keys>": {
|
|
60
|
+
* // DataTraceEnabled: true || false,
|
|
61
|
+
* // DetailedMetricsEnabled: true || false,
|
|
62
|
+
* // LoggingLevel: "STRING_VALUE",
|
|
63
|
+
* // ThrottlingBurstLimit: Number("int"),
|
|
64
|
+
* // ThrottlingRateLimit: Number("double"),
|
|
65
|
+
* // },
|
|
66
|
+
* // },
|
|
67
|
+
* // StageName: "STRING_VALUE", // required
|
|
68
|
+
* // StageVariables: { // StageVariablesMap
|
|
69
|
+
* // "<keys>": "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // Tags: { // Tags
|
|
72
|
+
* // "<keys>": "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // NextToken: "STRING_VALUE",
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
36
79
|
* ```
|
|
37
80
|
*
|
|
38
81
|
* @param GetStagesCommandInput - {@link GetStagesCommandInput}
|
|
@@ -50,6 +93,8 @@ export interface GetStagesCommandOutput extends GetStagesResponse, __MetadataBea
|
|
|
50
93
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
51
94
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
52
95
|
*
|
|
96
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
53
98
|
*
|
|
54
99
|
*/
|
|
55
100
|
export declare class GetStagesCommand extends $Command<GetStagesCommandInput, GetStagesCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface GetTagsCommandOutput extends GetTagsResponse, __MetadataBearer
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetTagsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetTagsResponse
|
|
35
|
+
* // Tags: { // Tags
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param GetTagsCommandInput - {@link GetTagsCommandInput}
|
|
@@ -51,6 +57,8 @@ export interface GetTagsCommandOutput extends GetTagsResponse, __MetadataBearer
|
|
|
51
57
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
52
58
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
53
59
|
*
|
|
60
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
54
62
|
*
|
|
55
63
|
*/
|
|
56
64
|
export declare class GetTagsCommand extends $Command<GetTagsCommandInput, GetTagsCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -31,6 +31,24 @@ export interface GetVpcLinkCommandOutput extends GetVpcLinkResponse, __MetadataB
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetVpcLinkCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetVpcLinkResponse
|
|
35
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
36
|
+
* // Name: "STRING_VALUE",
|
|
37
|
+
* // SecurityGroupIds: [ // SecurityGroupIdList
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // SubnetIds: [ // SubnetIdList
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // Tags: { // Tags
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // VpcLinkId: "STRING_VALUE",
|
|
47
|
+
* // VpcLinkStatus: "STRING_VALUE",
|
|
48
|
+
* // VpcLinkStatusMessage: "STRING_VALUE",
|
|
49
|
+
* // VpcLinkVersion: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
34
52
|
* ```
|
|
35
53
|
*
|
|
36
54
|
* @param GetVpcLinkCommandInput - {@link GetVpcLinkCommandInput}
|
|
@@ -45,6 +63,8 @@ export interface GetVpcLinkCommandOutput extends GetVpcLinkResponse, __MetadataB
|
|
|
45
63
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
46
64
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
47
65
|
*
|
|
66
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
48
68
|
*
|
|
49
69
|
*/
|
|
50
70
|
export declare class GetVpcLinkCommand extends $Command<GetVpcLinkCommandInput, GetVpcLinkCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,29 @@ export interface GetVpcLinksCommandOutput extends GetVpcLinksResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetVpcLinksCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetVpcLinksResponse
|
|
36
|
+
* // Items: [ // __listOfVpcLink
|
|
37
|
+
* // { // VpcLink
|
|
38
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
39
|
+
* // Name: "STRING_VALUE", // required
|
|
40
|
+
* // SecurityGroupIds: [ // SecurityGroupIdList // required
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // SubnetIds: [ // SubnetIdList // required
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // Tags: { // Tags
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // VpcLinkId: "STRING_VALUE", // required
|
|
50
|
+
* // VpcLinkStatus: "STRING_VALUE",
|
|
51
|
+
* // VpcLinkStatusMessage: "STRING_VALUE",
|
|
52
|
+
* // VpcLinkVersion: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // NextToken: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
35
58
|
* ```
|
|
36
59
|
*
|
|
37
60
|
* @param GetVpcLinksCommandInput - {@link GetVpcLinksCommandInput}
|
|
@@ -46,6 +69,8 @@ export interface GetVpcLinksCommandOutput extends GetVpcLinksResponse, __Metadat
|
|
|
46
69
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
70
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
71
|
*
|
|
72
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
74
|
*
|
|
50
75
|
*/
|
|
51
76
|
export declare class GetVpcLinksCommand extends $Command<GetVpcLinksCommandInput, GetVpcLinksCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,46 @@ export interface ImportApiCommandOutput extends ImportApiResponse, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ImportApiCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ImportApiResponse
|
|
37
|
+
* // ApiEndpoint: "STRING_VALUE",
|
|
38
|
+
* // ApiGatewayManaged: true || false,
|
|
39
|
+
* // ApiId: "STRING_VALUE",
|
|
40
|
+
* // ApiKeySelectionExpression: "STRING_VALUE",
|
|
41
|
+
* // CorsConfiguration: { // Cors
|
|
42
|
+
* // AllowCredentials: true || false,
|
|
43
|
+
* // AllowHeaders: [ // CorsHeaderList
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // AllowMethods: [ // CorsMethodList
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // AllowOrigins: [ // CorsOriginList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // ExposeHeaders: [
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // MaxAge: Number("int"),
|
|
56
|
+
* // },
|
|
57
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
58
|
+
* // Description: "STRING_VALUE",
|
|
59
|
+
* // DisableSchemaValidation: true || false,
|
|
60
|
+
* // DisableExecuteApiEndpoint: true || false,
|
|
61
|
+
* // ImportInfo: [ // __listOf__string
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // Name: "STRING_VALUE",
|
|
65
|
+
* // ProtocolType: "STRING_VALUE",
|
|
66
|
+
* // RouteSelectionExpression: "STRING_VALUE",
|
|
67
|
+
* // Tags: { // Tags
|
|
68
|
+
* // "<keys>": "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // Version: "STRING_VALUE",
|
|
71
|
+
* // Warnings: [
|
|
72
|
+
* // "STRING_VALUE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
36
76
|
* ```
|
|
37
77
|
*
|
|
38
78
|
* @param ImportApiCommandInput - {@link ImportApiCommandInput}
|
|
@@ -53,6 +93,8 @@ export interface ImportApiCommandOutput extends ImportApiResponse, __MetadataBea
|
|
|
53
93
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
54
94
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
55
95
|
*
|
|
96
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
56
98
|
*
|
|
57
99
|
*/
|
|
58
100
|
export declare class ImportApiCommand extends $Command<ImportApiCommandInput, ImportApiCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -34,6 +34,46 @@ export interface ReimportApiCommandOutput extends ReimportApiResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ReimportApiCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ReimportApiResponse
|
|
38
|
+
* // ApiEndpoint: "STRING_VALUE",
|
|
39
|
+
* // ApiGatewayManaged: true || false,
|
|
40
|
+
* // ApiId: "STRING_VALUE",
|
|
41
|
+
* // ApiKeySelectionExpression: "STRING_VALUE",
|
|
42
|
+
* // CorsConfiguration: { // Cors
|
|
43
|
+
* // AllowCredentials: true || false,
|
|
44
|
+
* // AllowHeaders: [ // CorsHeaderList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // AllowMethods: [ // CorsMethodList
|
|
48
|
+
* // "STRING_VALUE",
|
|
49
|
+
* // ],
|
|
50
|
+
* // AllowOrigins: [ // CorsOriginList
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // ExposeHeaders: [
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // MaxAge: Number("int"),
|
|
57
|
+
* // },
|
|
58
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
59
|
+
* // Description: "STRING_VALUE",
|
|
60
|
+
* // DisableSchemaValidation: true || false,
|
|
61
|
+
* // DisableExecuteApiEndpoint: true || false,
|
|
62
|
+
* // ImportInfo: [ // __listOf__string
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // Name: "STRING_VALUE",
|
|
66
|
+
* // ProtocolType: "STRING_VALUE",
|
|
67
|
+
* // RouteSelectionExpression: "STRING_VALUE",
|
|
68
|
+
* // Tags: { // Tags
|
|
69
|
+
* // "<keys>": "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // Version: "STRING_VALUE",
|
|
72
|
+
* // Warnings: [
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
37
77
|
* ```
|
|
38
78
|
*
|
|
39
79
|
* @param ReimportApiCommandInput - {@link ReimportApiCommandInput}
|
|
@@ -54,6 +94,8 @@ export interface ReimportApiCommandOutput extends ReimportApiResponse, __Metadat
|
|
|
54
94
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
95
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
56
96
|
*
|
|
97
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
57
99
|
*
|
|
58
100
|
*/
|
|
59
101
|
export declare class ReimportApiCommand extends $Command<ReimportApiCommandInput, ReimportApiCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface ResetAuthorizersCacheCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ResetAuthorizersCacheCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param ResetAuthorizersCacheCommandInput - {@link ResetAuthorizersCacheCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface ResetAuthorizersCacheCommandOutput extends __MetadataBearer {
|
|
|
46
48
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
47
49
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
49
53
|
*
|
|
50
54
|
*/
|
|
51
55
|
export declare class ResetAuthorizersCacheCommand extends $Command<ResetAuthorizersCacheCommandInput, ResetAuthorizersCacheCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
54
56
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
57
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
57
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -57,6 +57,46 @@ export interface UpdateApiCommandOutput extends UpdateApiResponse, __MetadataBea
|
|
|
57
57
|
* };
|
|
58
58
|
* const command = new UpdateApiCommand(input);
|
|
59
59
|
* const response = await client.send(command);
|
|
60
|
+
* // { // UpdateApiResponse
|
|
61
|
+
* // ApiEndpoint: "STRING_VALUE",
|
|
62
|
+
* // ApiGatewayManaged: true || false,
|
|
63
|
+
* // ApiId: "STRING_VALUE",
|
|
64
|
+
* // ApiKeySelectionExpression: "STRING_VALUE",
|
|
65
|
+
* // CorsConfiguration: { // Cors
|
|
66
|
+
* // AllowCredentials: true || false,
|
|
67
|
+
* // AllowHeaders: [ // CorsHeaderList
|
|
68
|
+
* // "STRING_VALUE",
|
|
69
|
+
* // ],
|
|
70
|
+
* // AllowMethods: [ // CorsMethodList
|
|
71
|
+
* // "STRING_VALUE",
|
|
72
|
+
* // ],
|
|
73
|
+
* // AllowOrigins: [ // CorsOriginList
|
|
74
|
+
* // "STRING_VALUE",
|
|
75
|
+
* // ],
|
|
76
|
+
* // ExposeHeaders: [
|
|
77
|
+
* // "STRING_VALUE",
|
|
78
|
+
* // ],
|
|
79
|
+
* // MaxAge: Number("int"),
|
|
80
|
+
* // },
|
|
81
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
82
|
+
* // Description: "STRING_VALUE",
|
|
83
|
+
* // DisableSchemaValidation: true || false,
|
|
84
|
+
* // DisableExecuteApiEndpoint: true || false,
|
|
85
|
+
* // ImportInfo: [ // __listOf__string
|
|
86
|
+
* // "STRING_VALUE",
|
|
87
|
+
* // ],
|
|
88
|
+
* // Name: "STRING_VALUE",
|
|
89
|
+
* // ProtocolType: "STRING_VALUE",
|
|
90
|
+
* // RouteSelectionExpression: "STRING_VALUE",
|
|
91
|
+
* // Tags: { // Tags
|
|
92
|
+
* // "<keys>": "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // Version: "STRING_VALUE",
|
|
95
|
+
* // Warnings: [
|
|
96
|
+
* // "STRING_VALUE",
|
|
97
|
+
* // ],
|
|
98
|
+
* // };
|
|
99
|
+
*
|
|
60
100
|
* ```
|
|
61
101
|
*
|
|
62
102
|
* @param UpdateApiCommandInput - {@link UpdateApiCommandInput}
|
|
@@ -77,6 +117,8 @@ export interface UpdateApiCommandOutput extends UpdateApiResponse, __MetadataBea
|
|
|
77
117
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
78
118
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
79
119
|
*
|
|
120
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
121
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
80
122
|
*
|
|
81
123
|
*/
|
|
82
124
|
export declare class UpdateApiCommand extends $Command<UpdateApiCommandInput, UpdateApiCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|