@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
|
@@ -35,6 +35,13 @@ export interface UpdateApiMappingCommandOutput extends UpdateApiMappingResponse,
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UpdateApiMappingCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // UpdateApiMappingResponse
|
|
39
|
+
* // ApiId: "STRING_VALUE",
|
|
40
|
+
* // ApiMappingId: "STRING_VALUE",
|
|
41
|
+
* // ApiMappingKey: "STRING_VALUE",
|
|
42
|
+
* // Stage: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
38
45
|
* ```
|
|
39
46
|
*
|
|
40
47
|
* @param UpdateApiMappingCommandInput - {@link UpdateApiMappingCommandInput}
|
|
@@ -55,6 +62,8 @@ export interface UpdateApiMappingCommandOutput extends UpdateApiMappingResponse,
|
|
|
55
62
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
63
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
57
64
|
*
|
|
65
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
58
67
|
*
|
|
59
68
|
*/
|
|
60
69
|
export declare class UpdateApiMappingCommand extends $Command<UpdateApiMappingCommandInput, UpdateApiMappingCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -49,6 +49,27 @@ export interface UpdateAuthorizerCommandOutput extends UpdateAuthorizerResponse,
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new UpdateAuthorizerCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // UpdateAuthorizerResponse
|
|
53
|
+
* // AuthorizerCredentialsArn: "STRING_VALUE",
|
|
54
|
+
* // AuthorizerId: "STRING_VALUE",
|
|
55
|
+
* // AuthorizerPayloadFormatVersion: "STRING_VALUE",
|
|
56
|
+
* // AuthorizerResultTtlInSeconds: Number("int"),
|
|
57
|
+
* // AuthorizerType: "STRING_VALUE",
|
|
58
|
+
* // AuthorizerUri: "STRING_VALUE",
|
|
59
|
+
* // EnableSimpleResponses: true || false,
|
|
60
|
+
* // IdentitySource: [ // IdentitySourceList
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // IdentityValidationExpression: "STRING_VALUE",
|
|
64
|
+
* // JwtConfiguration: { // JWTConfiguration
|
|
65
|
+
* // Audience: [ // __listOf__string
|
|
66
|
+
* // "STRING_VALUE",
|
|
67
|
+
* // ],
|
|
68
|
+
* // Issuer: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // Name: "STRING_VALUE",
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
52
73
|
* ```
|
|
53
74
|
*
|
|
54
75
|
* @param UpdateAuthorizerCommandInput - {@link UpdateAuthorizerCommandInput}
|
|
@@ -69,6 +90,8 @@ export interface UpdateAuthorizerCommandOutput extends UpdateAuthorizerResponse,
|
|
|
69
90
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
70
91
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
71
92
|
*
|
|
93
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
72
95
|
*
|
|
73
96
|
*/
|
|
74
97
|
export declare class UpdateAuthorizerCommand extends $Command<UpdateAuthorizerCommandInput, UpdateAuthorizerCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -33,6 +33,15 @@ export interface UpdateDeploymentCommandOutput extends UpdateDeploymentResponse,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateDeploymentCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateDeploymentResponse
|
|
37
|
+
* // AutoDeployed: true || false,
|
|
38
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
39
|
+
* // DeploymentId: "STRING_VALUE",
|
|
40
|
+
* // DeploymentStatus: "STRING_VALUE",
|
|
41
|
+
* // DeploymentStatusMessage: "STRING_VALUE",
|
|
42
|
+
* // Description: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
36
45
|
* ```
|
|
37
46
|
*
|
|
38
47
|
* @param UpdateDeploymentCommandInput - {@link UpdateDeploymentCommandInput}
|
|
@@ -53,6 +62,8 @@ export interface UpdateDeploymentCommandOutput extends UpdateDeploymentResponse,
|
|
|
53
62
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
54
63
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
55
64
|
*
|
|
65
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
56
67
|
*
|
|
57
68
|
*/
|
|
58
69
|
export declare class UpdateDeploymentCommand extends $Command<UpdateDeploymentCommandInput, UpdateDeploymentCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -49,6 +49,35 @@ export interface UpdateDomainNameCommandOutput extends UpdateDomainNameResponse,
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new UpdateDomainNameCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // UpdateDomainNameResponse
|
|
53
|
+
* // ApiMappingSelectionExpression: "STRING_VALUE",
|
|
54
|
+
* // DomainName: "STRING_VALUE",
|
|
55
|
+
* // DomainNameConfigurations: [ // DomainNameConfigurations
|
|
56
|
+
* // { // DomainNameConfiguration
|
|
57
|
+
* // ApiGatewayDomainName: "STRING_VALUE",
|
|
58
|
+
* // CertificateArn: "STRING_VALUE",
|
|
59
|
+
* // CertificateName: "STRING_VALUE",
|
|
60
|
+
* // CertificateUploadDate: new Date("TIMESTAMP"),
|
|
61
|
+
* // DomainNameStatus: "STRING_VALUE",
|
|
62
|
+
* // DomainNameStatusMessage: "STRING_VALUE",
|
|
63
|
+
* // EndpointType: "STRING_VALUE",
|
|
64
|
+
* // HostedZoneId: "STRING_VALUE",
|
|
65
|
+
* // SecurityPolicy: "STRING_VALUE",
|
|
66
|
+
* // OwnershipVerificationCertificateArn: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // MutualTlsAuthentication: { // MutualTlsAuthentication
|
|
70
|
+
* // TruststoreUri: "STRING_VALUE",
|
|
71
|
+
* // TruststoreVersion: "STRING_VALUE",
|
|
72
|
+
* // TruststoreWarnings: [ // __listOf__string
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // },
|
|
76
|
+
* // Tags: { // Tags
|
|
77
|
+
* // "<keys>": "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
52
81
|
* ```
|
|
53
82
|
*
|
|
54
83
|
* @param UpdateDomainNameCommandInput - {@link UpdateDomainNameCommandInput}
|
|
@@ -69,6 +98,8 @@ export interface UpdateDomainNameCommandOutput extends UpdateDomainNameResponse,
|
|
|
69
98
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
70
99
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
71
100
|
*
|
|
101
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
102
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
72
103
|
*
|
|
73
104
|
*/
|
|
74
105
|
export declare class UpdateDomainNameCommand extends $Command<UpdateDomainNameCommandInput, UpdateDomainNameCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -59,6 +59,39 @@ export interface UpdateIntegrationCommandOutput extends UpdateIntegrationResult,
|
|
|
59
59
|
* };
|
|
60
60
|
* const command = new UpdateIntegrationCommand(input);
|
|
61
61
|
* const response = await client.send(command);
|
|
62
|
+
* // { // UpdateIntegrationResult
|
|
63
|
+
* // ApiGatewayManaged: true || false,
|
|
64
|
+
* // ConnectionId: "STRING_VALUE",
|
|
65
|
+
* // ConnectionType: "STRING_VALUE",
|
|
66
|
+
* // ContentHandlingStrategy: "STRING_VALUE",
|
|
67
|
+
* // CredentialsArn: "STRING_VALUE",
|
|
68
|
+
* // Description: "STRING_VALUE",
|
|
69
|
+
* // IntegrationId: "STRING_VALUE",
|
|
70
|
+
* // IntegrationMethod: "STRING_VALUE",
|
|
71
|
+
* // IntegrationResponseSelectionExpression: "STRING_VALUE",
|
|
72
|
+
* // IntegrationSubtype: "STRING_VALUE",
|
|
73
|
+
* // IntegrationType: "STRING_VALUE",
|
|
74
|
+
* // IntegrationUri: "STRING_VALUE",
|
|
75
|
+
* // PassthroughBehavior: "STRING_VALUE",
|
|
76
|
+
* // PayloadFormatVersion: "STRING_VALUE",
|
|
77
|
+
* // RequestParameters: { // IntegrationParameters
|
|
78
|
+
* // "<keys>": "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // RequestTemplates: { // TemplateMap
|
|
81
|
+
* // "<keys>": "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // ResponseParameters: { // ResponseParameters
|
|
84
|
+
* // "<keys>": {
|
|
85
|
+
* // "<keys>": "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // },
|
|
88
|
+
* // TemplateSelectionExpression: "STRING_VALUE",
|
|
89
|
+
* // TimeoutInMillis: Number("int"),
|
|
90
|
+
* // TlsConfig: { // TlsConfig
|
|
91
|
+
* // ServerNameToVerify: "STRING_VALUE",
|
|
92
|
+
* // },
|
|
93
|
+
* // };
|
|
94
|
+
*
|
|
62
95
|
* ```
|
|
63
96
|
*
|
|
64
97
|
* @param UpdateIntegrationCommandInput - {@link UpdateIntegrationCommandInput}
|
|
@@ -79,6 +112,8 @@ export interface UpdateIntegrationCommandOutput extends UpdateIntegrationResult,
|
|
|
79
112
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
80
113
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
81
114
|
*
|
|
115
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
116
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
82
117
|
*
|
|
83
118
|
*/
|
|
84
119
|
export declare class UpdateIntegrationCommand extends $Command<UpdateIntegrationCommandInput, UpdateIntegrationCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -42,6 +42,19 @@ export interface UpdateIntegrationResponseCommandOutput extends UpdateIntegratio
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new UpdateIntegrationResponseCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // UpdateIntegrationResponseResponse
|
|
46
|
+
* // ContentHandlingStrategy: "STRING_VALUE",
|
|
47
|
+
* // IntegrationResponseId: "STRING_VALUE",
|
|
48
|
+
* // IntegrationResponseKey: "STRING_VALUE",
|
|
49
|
+
* // ResponseParameters: { // IntegrationParameters
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ResponseTemplates: { // TemplateMap
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // TemplateSelectionExpression: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
45
58
|
* ```
|
|
46
59
|
*
|
|
47
60
|
* @param UpdateIntegrationResponseCommandInput - {@link UpdateIntegrationResponseCommandInput}
|
|
@@ -62,6 +75,8 @@ export interface UpdateIntegrationResponseCommandOutput extends UpdateIntegratio
|
|
|
62
75
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
63
76
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
64
77
|
*
|
|
78
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
65
80
|
*
|
|
66
81
|
*/
|
|
67
82
|
export declare class UpdateIntegrationResponseCommand extends $Command<UpdateIntegrationResponseCommandInput, UpdateIntegrationResponseCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -36,6 +36,14 @@ export interface UpdateModelCommandOutput extends UpdateModelResponse, __Metadat
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new UpdateModelCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // UpdateModelResponse
|
|
40
|
+
* // ContentType: "STRING_VALUE",
|
|
41
|
+
* // Description: "STRING_VALUE",
|
|
42
|
+
* // ModelId: "STRING_VALUE",
|
|
43
|
+
* // Name: "STRING_VALUE",
|
|
44
|
+
* // Schema: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
39
47
|
* ```
|
|
40
48
|
*
|
|
41
49
|
* @param UpdateModelCommandInput - {@link UpdateModelCommandInput}
|
|
@@ -56,6 +64,8 @@ export interface UpdateModelCommandOutput extends UpdateModelResponse, __Metadat
|
|
|
56
64
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
57
65
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
58
66
|
*
|
|
67
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
59
69
|
*
|
|
60
70
|
*/
|
|
61
71
|
export declare class UpdateModelCommand extends $Command<UpdateModelCommandInput, UpdateModelCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -51,6 +51,30 @@ export interface UpdateRouteCommandOutput extends UpdateRouteResult, __MetadataB
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new UpdateRouteCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // UpdateRouteResult
|
|
55
|
+
* // ApiGatewayManaged: true || false,
|
|
56
|
+
* // ApiKeyRequired: true || false,
|
|
57
|
+
* // AuthorizationScopes: [ // AuthorizationScopes
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // AuthorizationType: "STRING_VALUE",
|
|
61
|
+
* // AuthorizerId: "STRING_VALUE",
|
|
62
|
+
* // ModelSelectionExpression: "STRING_VALUE",
|
|
63
|
+
* // OperationName: "STRING_VALUE",
|
|
64
|
+
* // RequestModels: { // RouteModels
|
|
65
|
+
* // "<keys>": "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // RequestParameters: { // RouteParameters
|
|
68
|
+
* // "<keys>": { // ParameterConstraints
|
|
69
|
+
* // Required: true || false,
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // RouteId: "STRING_VALUE",
|
|
73
|
+
* // RouteKey: "STRING_VALUE",
|
|
74
|
+
* // RouteResponseSelectionExpression: "STRING_VALUE",
|
|
75
|
+
* // Target: "STRING_VALUE",
|
|
76
|
+
* // };
|
|
77
|
+
*
|
|
54
78
|
* ```
|
|
55
79
|
*
|
|
56
80
|
* @param UpdateRouteCommandInput - {@link UpdateRouteCommandInput}
|
|
@@ -71,6 +95,8 @@ export interface UpdateRouteCommandOutput extends UpdateRouteResult, __MetadataB
|
|
|
71
95
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
72
96
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
73
97
|
*
|
|
98
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
74
100
|
*
|
|
75
101
|
*/
|
|
76
102
|
export declare class UpdateRouteCommand extends $Command<UpdateRouteCommandInput, UpdateRouteCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -43,6 +43,20 @@ export interface UpdateRouteResponseCommandOutput extends UpdateRouteResponseRes
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new UpdateRouteResponseCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // UpdateRouteResponseResponse
|
|
47
|
+
* // ModelSelectionExpression: "STRING_VALUE",
|
|
48
|
+
* // ResponseModels: { // RouteModels
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ResponseParameters: { // RouteParameters
|
|
52
|
+
* // "<keys>": { // ParameterConstraints
|
|
53
|
+
* // Required: true || false,
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // RouteResponseId: "STRING_VALUE",
|
|
57
|
+
* // RouteResponseKey: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
46
60
|
* ```
|
|
47
61
|
*
|
|
48
62
|
* @param UpdateRouteResponseCommandInput - {@link UpdateRouteResponseCommandInput}
|
|
@@ -63,6 +77,8 @@ export interface UpdateRouteResponseCommandOutput extends UpdateRouteResponseRes
|
|
|
63
77
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
64
78
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
65
79
|
*
|
|
80
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
66
82
|
*
|
|
67
83
|
*/
|
|
68
84
|
export declare class UpdateRouteResponseCommand extends $Command<UpdateRouteResponseCommandInput, UpdateRouteResponseCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -59,6 +59,44 @@ export interface UpdateStageCommandOutput extends UpdateStageResponse, __Metadat
|
|
|
59
59
|
* };
|
|
60
60
|
* const command = new UpdateStageCommand(input);
|
|
61
61
|
* const response = await client.send(command);
|
|
62
|
+
* // { // UpdateStageResponse
|
|
63
|
+
* // AccessLogSettings: { // AccessLogSettings
|
|
64
|
+
* // DestinationArn: "STRING_VALUE",
|
|
65
|
+
* // Format: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // ApiGatewayManaged: true || false,
|
|
68
|
+
* // AutoDeploy: true || false,
|
|
69
|
+
* // ClientCertificateId: "STRING_VALUE",
|
|
70
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
71
|
+
* // DefaultRouteSettings: { // RouteSettings
|
|
72
|
+
* // DataTraceEnabled: true || false,
|
|
73
|
+
* // DetailedMetricsEnabled: true || false,
|
|
74
|
+
* // LoggingLevel: "STRING_VALUE",
|
|
75
|
+
* // ThrottlingBurstLimit: Number("int"),
|
|
76
|
+
* // ThrottlingRateLimit: Number("double"),
|
|
77
|
+
* // },
|
|
78
|
+
* // DeploymentId: "STRING_VALUE",
|
|
79
|
+
* // Description: "STRING_VALUE",
|
|
80
|
+
* // LastDeploymentStatusMessage: "STRING_VALUE",
|
|
81
|
+
* // LastUpdatedDate: new Date("TIMESTAMP"),
|
|
82
|
+
* // RouteSettings: { // RouteSettingsMap
|
|
83
|
+
* // "<keys>": {
|
|
84
|
+
* // DataTraceEnabled: true || false,
|
|
85
|
+
* // DetailedMetricsEnabled: true || false,
|
|
86
|
+
* // LoggingLevel: "STRING_VALUE",
|
|
87
|
+
* // ThrottlingBurstLimit: Number("int"),
|
|
88
|
+
* // ThrottlingRateLimit: Number("double"),
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // StageName: "STRING_VALUE",
|
|
92
|
+
* // StageVariables: { // StageVariablesMap
|
|
93
|
+
* // "<keys>": "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // Tags: { // Tags
|
|
96
|
+
* // "<keys>": "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // };
|
|
99
|
+
*
|
|
62
100
|
* ```
|
|
63
101
|
*
|
|
64
102
|
* @param UpdateStageCommandInput - {@link UpdateStageCommandInput}
|
|
@@ -79,6 +117,8 @@ export interface UpdateStageCommandOutput extends UpdateStageResponse, __Metadat
|
|
|
79
117
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
80
118
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
81
119
|
*
|
|
120
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
121
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
82
122
|
*
|
|
83
123
|
*/
|
|
84
124
|
export declare class UpdateStageCommand extends $Command<UpdateStageCommandInput, UpdateStageCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
|
@@ -32,6 +32,24 @@ export interface UpdateVpcLinkCommandOutput extends UpdateVpcLinkResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateVpcLinkCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateVpcLinkResponse
|
|
36
|
+
* // CreatedDate: new Date("TIMESTAMP"),
|
|
37
|
+
* // Name: "STRING_VALUE",
|
|
38
|
+
* // SecurityGroupIds: [ // SecurityGroupIdList
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // SubnetIds: [ // SubnetIdList
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // Tags: { // Tags
|
|
45
|
+
* // "<keys>": "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // VpcLinkId: "STRING_VALUE",
|
|
48
|
+
* // VpcLinkStatus: "STRING_VALUE",
|
|
49
|
+
* // VpcLinkStatusMessage: "STRING_VALUE",
|
|
50
|
+
* // VpcLinkVersion: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
35
53
|
* ```
|
|
36
54
|
*
|
|
37
55
|
* @param UpdateVpcLinkCommandInput - {@link UpdateVpcLinkCommandInput}
|
|
@@ -49,6 +67,8 @@ export interface UpdateVpcLinkCommandOutput extends UpdateVpcLinkResponse, __Met
|
|
|
49
67
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
50
68
|
* <p>A limit has been exceeded. See the accompanying error message for details.</p>
|
|
51
69
|
*
|
|
70
|
+
* @throws {@link ApiGatewayV2ServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ApiGatewayV2 service.</p>
|
|
52
72
|
*
|
|
53
73
|
*/
|
|
54
74
|
export declare class UpdateVpcLinkCommand extends $Command<UpdateVpcLinkCommandInput, UpdateVpcLinkCommandOutput, ApiGatewayV2ClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-apigatewayv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Apigatewayv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|