Skip to content

Commit 5c4a96b

Browse files
committed
chore: back out service customizations
1 parent e242071 commit 5c4a96b

File tree

6 files changed

+2
-55
lines changed

6 files changed

+2
-55
lines changed

clients/client-workspaces-thin-client/src/index.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,3 @@ export * from "./models";
2828
import "@aws-sdk/util-endpoints";
2929

3030
export { WorkSpacesThinClientServiceException } from "./models/WorkSpacesThinClientServiceException";
31-
32-
import { WorkSpacesThinClient } from "./WorkSpacesThinClient";
33-
34-
/**
35-
* @deprecated use {WorkSpacesThinClient} (renamed) instead.
36-
* The aggregated client is called WorkSpacesThinClient,
37-
* and the barebones client is called WorkSpacesThinClientClient.
38-
*
39-
* Due to some code generation issues with the word "Client" in the service name,
40-
* we are maintaining a few backwards compatible aliases here.
41-
*/
42-
export const WorkSpacesThin = WorkSpacesThinClient;
43-
44-
export type { WorkSpacesThinClientPaginationConfiguration as WorkSpacesThinPaginationConfiguration } from "./pagination/Interfaces";

codegen/config/checkstyle/checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<!-- Files must contain a copyright header. -->
2323
<module name="RegexpHeader">
2424
<property name="header"
25-
value="/\*\n \* Copyright( 20(19|20|21|22|23)|) Amazon\.com, Inc\. or its affiliates\. All Rights Reserved\.\n"/>
25+
value="/\*\n \* Copyright( 20(19|20|21|22)|) Amazon\.com, Inc\. or its affiliates\. All Rights Reserved\.\n"/>
2626
<property name="fileExtensions" value="java"/>
2727
</module>
2828

scripts/generate-clients/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Update this commit when taking up new changes from smithy-typescript.
22
module.exports = {
33
// Use full commit hash as we explicitly fetch it.
4-
SMITHY_TS_COMMIT: "cc922a47da45ed915bf914bdb790eaa885ad4063",
4+
SMITHY_TS_COMMIT: "43d4bfbc329c3db4403b545e2bf518a2a185d7a0",
55
};

scripts/generate-clients/customizations/workspaces-thin-client.js

Lines changed: 0 additions & 33 deletions
This file was deleted.

scripts/generate-clients/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@ const {
132132
emptyDirSync(TEMP_CODE_GEN_INPUT_DIR);
133133
rmdirSync(TEMP_CODE_GEN_INPUT_DIR);
134134
}
135-
136-
require("./customizations/workspaces-thin-client")();
137135
} catch (e) {
138136
console.log(e);
139137
process.exit(1);

scripts/generate-clients/single-service.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ const { solo } = yargs(process.argv.slice(2))
3030
);
3131
await codeOrdering(join(SDK_CLIENTS_DIR, `client-${solo}`));
3232

33-
if (solo === "workspaces-thin-client") {
34-
require("./customizations/workspaces-thin-client")();
35-
}
36-
3733
// post-generation transforms
3834
const clientFolder = join(SDK_CLIENTS_DIR, `client-${solo}`);
3935
const libFolder = join(SDK_CLIENTS_DIR, "..", "lib", `lib-${solo}`);

0 commit comments

Comments
 (0)