Skip to content

Commit 719d097

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

File tree

13,824 files changed

+504549
-327632
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,824 files changed

+504549
-327632
lines changed

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

clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.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 { GetGeneratedPolicyRequest, GetGeneratedPolicyResponse } from "../models/models_0";
18-
import {
19-
deserializeAws_restJson1GetGeneratedPolicyCommand,
20-
serializeAws_restJson1GetGeneratedPolicyCommand,
21-
} from "../protocols/Aws_restJson1";
18+
import { de_GetGeneratedPolicyCommand, se_GetGeneratedPolicyCommand } from "../protocols/Aws_restJson1";
2219

2320
/**
2421
* @public
@@ -135,14 +132,14 @@ export class GetGeneratedPolicyCommand extends $Command<
135132
* @internal
136133
*/
137134
private serialize(input: GetGeneratedPolicyCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
138-
return serializeAws_restJson1GetGeneratedPolicyCommand(input, context);
135+
return se_GetGeneratedPolicyCommand(input, context);
139136
}
140137

141138
/**
142139
* @internal
143140
*/
144141
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<GetGeneratedPolicyCommandOutput> {
145-
return deserializeAws_restJson1GetGeneratedPolicyCommand(output, context);
142+
return de_GetGeneratedPolicyCommand(output, context);
146143
}
147144

148145
// Start section: command_body_extra

0 commit comments

Comments
 (0)