Skip to content

Commit 3cb9902

Browse files
committed
feat(codegen): shorten internal serde function names
1 parent 268362c commit 3cb9902

File tree

13,837 files changed

+504521
-327702
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

13,837 files changed

+504521
-327702
lines changed

CHANGELOG.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,6 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6-
# [3.308.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.307.0...v3.308.0) (2023-04-06)
7-
8-
9-
### Bug Fixes
10-
11-
* **client-rekognitionstreaming:** update rekognitionstreaming endpoints ([#4621](https://github.com/aws/aws-sdk-js-v3/issues/4621)) ([c64cf47](https://github.com/aws/aws-sdk-js-v3/commit/c64cf471fdcf7aee3a969a7dcdf92ecce077506e))
12-
13-
14-
### Features
15-
16-
* **client-cloudformation:** Including UPDATE_COMPLETE as a failed status for DeleteStack waiter. ([b0abf2e](https://github.com/aws/aws-sdk-js-v3/commit/b0abf2e7cbbdfce857b22f91b6a96eef61d1cb3c))
17-
* **client-greengrassv2:** Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2. ([ce2abb1](https://github.com/aws/aws-sdk-js-v3/commit/ce2abb153465c6c2acd103807c51d146ff4ff97b))
18-
* **client-proton:** This release adds support for the AWS Proton service sync feature. Service sync enables managing an AWS Proton service (creating and updating instances) and all of it's corresponding service instances from a Git repository. ([e0edc8b](https://github.com/aws/aws-sdk-js-v3/commit/e0edc8b2dd3a4821a32509d328759ebdc43b1509))
19-
* **clients:** update client endpoints as of 2023-04-06 ([7092042](https://github.com/aws/aws-sdk-js-v3/commit/70920424bb9a304603398d13e8bed99a299c3c41))
20-
* **middleware-sdk-rekognitionstreaming:** create port middleware ([#4622](https://github.com/aws/aws-sdk-js-v3/issues/4622)) ([adf3353](https://github.com/aws/aws-sdk-js-v3/commit/adf33539eeafa78a7cb5eadbcae616f8c76a31c8))
21-
22-
23-
24-
25-
266
# [3.307.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.306.0...v3.307.0) (2023-04-05)
277

288

benchmark/size/report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
|@aws-sdk/client-application-insights|3.306.0|578.8 KB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
66
|@aws-sdk/client-athena|3.306.0|1.2 MB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
77
|@aws-sdk/client-auto-scaling|3.306.0|1.8 MB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
8-
|@aws-sdk/client-cloudformation|3.306.0|2 MB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
8+
|@aws-sdk/client-cloudformation|3.306.0|1.9 MB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
99
|@aws-sdk/client-cloudhsm-v2|3.306.0|370.4 KB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
1010
|@aws-sdk/client-cloudwatch|3.306.0|1 MB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
1111
|@aws-sdk/client-cloudwatch-logs|3.306.0|997.2 KB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|

clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { ApplyArchiveRuleRequest } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1ApplyArchiveRuleCommand,
20-
serializeAws_restJson1ApplyArchiveRuleCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_ApplyArchiveRuleCommand, se_ApplyArchiveRuleCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -138,14 +135,14 @@ export class ApplyArchiveRuleCommand extends $Command<
138135
* @internal
139136
*/
140137
private serialize(input: ApplyArchiveRuleCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
141-
return serializeAws_restJson1ApplyArchiveRuleCommand(input, context);
138+
return se_ApplyArchiveRuleCommand(input, context);
142139
}
143140

144141
/**
145142
* @internal
146143
*/
147144
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<ApplyArchiveRuleCommandOutput> {
148-
return deserializeAws_restJson1ApplyArchiveRuleCommand(output, context);
145+
return de_ApplyArchiveRuleCommand(output, context);
149146
}
150147

151148
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { CancelPolicyGenerationRequest, CancelPolicyGenerationResponse } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1CancelPolicyGenerationCommand,
20-
serializeAws_restJson1CancelPolicyGenerationCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_CancelPolicyGenerationCommand, se_CancelPolicyGenerationCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -132,14 +129,14 @@ export class CancelPolicyGenerationCommand extends $Command<
132129
* @internal
133130
*/
134131
private serialize(input: CancelPolicyGenerationCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
135-
return serializeAws_restJson1CancelPolicyGenerationCommand(input, context);
132+
return se_CancelPolicyGenerationCommand(input, context);
136133
}
137134

138135
/**
139136
* @internal
140137
*/
141138
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<CancelPolicyGenerationCommandOutput> {
142-
return deserializeAws_restJson1CancelPolicyGenerationCommand(output, context);
139+
return de_CancelPolicyGenerationCommand(output, context);
143140
}
144141

145142
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { CreateAccessPreviewRequest, CreateAccessPreviewResponse } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1CreateAccessPreviewCommand,
20-
serializeAws_restJson1CreateAccessPreviewCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_CreateAccessPreviewCommand, se_CreateAccessPreviewCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -249,14 +246,14 @@ export class CreateAccessPreviewCommand extends $Command<
249246
* @internal
250247
*/
251248
private serialize(input: CreateAccessPreviewCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
252-
return serializeAws_restJson1CreateAccessPreviewCommand(input, context);
249+
return se_CreateAccessPreviewCommand(input, context);
253250
}
254251

255252
/**
256253
* @internal
257254
*/
258255
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<CreateAccessPreviewCommandOutput> {
259-
return deserializeAws_restJson1CreateAccessPreviewCommand(output, context);
256+
return de_CreateAccessPreviewCommand(output, context);
260257
}
261258

262259
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { CreateAnalyzerRequest, CreateAnalyzerResponse } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1CreateAnalyzerCommand,
20-
serializeAws_restJson1CreateAnalyzerCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_CreateAnalyzerCommand, se_CreateAnalyzerCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -162,14 +159,14 @@ export class CreateAnalyzerCommand extends $Command<
162159
* @internal
163160
*/
164161
private serialize(input: CreateAnalyzerCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
165-
return serializeAws_restJson1CreateAnalyzerCommand(input, context);
162+
return se_CreateAnalyzerCommand(input, context);
166163
}
167164

168165
/**
169166
* @internal
170167
*/
171168
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<CreateAnalyzerCommandOutput> {
172-
return deserializeAws_restJson1CreateAnalyzerCommand(output, context);
169+
return de_CreateAnalyzerCommand(output, context);
173170
}
174171

175172
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { CreateArchiveRuleRequest } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1CreateArchiveRuleCommand,
20-
serializeAws_restJson1CreateArchiveRuleCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_CreateArchiveRuleCommand, se_CreateArchiveRuleCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -159,14 +156,14 @@ export class CreateArchiveRuleCommand extends $Command<
159156
* @internal
160157
*/
161158
private serialize(input: CreateArchiveRuleCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
162-
return serializeAws_restJson1CreateArchiveRuleCommand(input, context);
159+
return se_CreateArchiveRuleCommand(input, context);
163160
}
164161

165162
/**
166163
* @internal
167164
*/
168165
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<CreateArchiveRuleCommandOutput> {
169-
return deserializeAws_restJson1CreateArchiveRuleCommand(output, context);
166+
return de_CreateArchiveRuleCommand(output, context);
170167
}
171168

172169
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { DeleteAnalyzerRequest } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1DeleteAnalyzerCommand,
20-
serializeAws_restJson1DeleteAnalyzerCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_DeleteAnalyzerCommand, se_DeleteAnalyzerCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -138,14 +135,14 @@ export class DeleteAnalyzerCommand extends $Command<
138135
* @internal
139136
*/
140137
private serialize(input: DeleteAnalyzerCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
141-
return serializeAws_restJson1DeleteAnalyzerCommand(input, context);
138+
return se_DeleteAnalyzerCommand(input, context);
142139
}
143140

144141
/**
145142
* @internal
146143
*/
147144
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<DeleteAnalyzerCommandOutput> {
148-
return deserializeAws_restJson1DeleteAnalyzerCommand(output, context);
145+
return de_DeleteAnalyzerCommand(output, context);
149146
}
150147

151148
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { DeleteArchiveRuleRequest } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1DeleteArchiveRuleCommand,
20-
serializeAws_restJson1DeleteArchiveRuleCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_DeleteArchiveRuleCommand, se_DeleteArchiveRuleCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -137,14 +134,14 @@ export class DeleteArchiveRuleCommand extends $Command<
137134
* @internal
138135
*/
139136
private serialize(input: DeleteArchiveRuleCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
140-
return serializeAws_restJson1DeleteArchiveRuleCommand(input, context);
137+
return se_DeleteArchiveRuleCommand(input, context);
141138
}
142139

143140
/**
144141
* @internal
145142
*/
146143
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<DeleteArchiveRuleCommandOutput> {
147-
return deserializeAws_restJson1DeleteArchiveRuleCommand(output, context);
144+
return de_DeleteArchiveRuleCommand(output, context);
148145
}
149146

150147
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { GetAccessPreviewRequest, GetAccessPreviewResponse } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1GetAccessPreviewCommand,
20-
serializeAws_restJson1GetAccessPreviewCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_GetAccessPreviewCommand, se_GetAccessPreviewCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -136,14 +133,14 @@ export class GetAccessPreviewCommand extends $Command<
136133
* @internal
137134
*/
138135
private serialize(input: GetAccessPreviewCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
139-
return serializeAws_restJson1GetAccessPreviewCommand(input, context);
136+
return se_GetAccessPreviewCommand(input, context);
140137
}
141138

142139
/**
143140
* @internal
144141
*/
145142
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<GetAccessPreviewCommandOutput> {
146-
return deserializeAws_restJson1GetAccessPreviewCommand(output, context);
143+
return de_GetAccessPreviewCommand(output, context);
147144
}
148145

149146
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { GetAnalyzedResourceRequest, GetAnalyzedResourceResponse } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1GetAnalyzedResourceCommand,
20-
serializeAws_restJson1GetAnalyzedResourceCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_GetAnalyzedResourceCommand, se_GetAnalyzedResourceCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -136,14 +133,14 @@ export class GetAnalyzedResourceCommand extends $Command<
136133
* @internal
137134
*/
138135
private serialize(input: GetAnalyzedResourceCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
139-
return serializeAws_restJson1GetAnalyzedResourceCommand(input, context);
136+
return se_GetAnalyzedResourceCommand(input, context);
140137
}
141138

142139
/**
143140
* @internal
144141
*/
145142
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<GetAnalyzedResourceCommandOutput> {
146-
return deserializeAws_restJson1GetAnalyzedResourceCommand(output, context);
143+
return de_GetAnalyzedResourceCommand(output, context);
147144
}
148145

149146
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { GetAnalyzerRequest, GetAnalyzerResponse } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1GetAnalyzerCommand,
20-
serializeAws_restJson1GetAnalyzerCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_GetAnalyzerCommand, se_GetAnalyzerCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -133,14 +130,14 @@ export class GetAnalyzerCommand extends $Command<
133130
* @internal
134131
*/
135132
private serialize(input: GetAnalyzerCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
136-
return serializeAws_restJson1GetAnalyzerCommand(input, context);
133+
return se_GetAnalyzerCommand(input, context);
137134
}
138135

139136
/**
140137
* @internal
141138
*/
142139
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<GetAnalyzerCommandOutput> {
143-
return deserializeAws_restJson1GetAnalyzerCommand(output, context);
140+
return de_GetAnalyzerCommand(output, context);
144141
}
145142

146143
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { GetArchiveRuleRequest, GetArchiveRuleResponse } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1GetArchiveRuleCommand,
20-
serializeAws_restJson1GetArchiveRuleCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_GetArchiveRuleCommand, se_GetArchiveRuleCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -137,14 +134,14 @@ export class GetArchiveRuleCommand extends $Command<
137134
* @internal
138135
*/
139136
private serialize(input: GetArchiveRuleCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
140-
return serializeAws_restJson1GetArchiveRuleCommand(input, context);
137+
return se_GetArchiveRuleCommand(input, context);
141138
}
142139

143140
/**
144141
* @internal
145142
*/
146143
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<GetArchiveRuleCommandOutput> {
147-
return deserializeAws_restJson1GetArchiveRuleCommand(output, context);
144+
return de_GetArchiveRuleCommand(output, context);
148145
}
149146

150147
// Start section: command_body_extra

clients/client-accessanalyzer/src/commands/GetFindingCommand.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import {
1515

1616
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
1717
import { GetFindingRequest, GetFindingResponse } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1GetFindingCommand,
20-
serializeAws_restJson1GetFindingCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_GetFindingCommand, se_GetFindingCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -134,14 +131,14 @@ export class GetFindingCommand extends $Command<
134131
* @internal
135132
*/
136133
private serialize(input: GetFindingCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
137-
return serializeAws_restJson1GetFindingCommand(input, context);
134+
return se_GetFindingCommand(input, context);
138135
}
139136

140137
/**
141138
* @internal
142139
*/
143140
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<GetFindingCommandOutput> {
144-
return deserializeAws_restJson1GetFindingCommand(output, context);
141+
return de_GetFindingCommand(output, context);
145142
}
146143

147144
// Start section: command_body_extra

0 commit comments

Comments
 (0)