Skip to content

Commit 4045248

Browse files
authored
Lex Service V2 renaming.
Rename runtime.lex.v2 to lexv2-runtime. Rename models.lex.v2 to lexv2-models.
1 parent d2b97c5 commit 4045248

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

cmake/sdksCommon.cmake

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ function(build_sdk_list)
8181
if ("${svc}" STREQUAL "runtime.lex")
8282
LIST(APPEND C2J_SPECIAL_NAME_LIST "lex:runtime.lex")
8383
set(svc "lex")
84+
elseif("${svc}" STREQUAL "runtime.lex.v2")
85+
LIST(APPEND C2J_SPECIAL_NAME_LIST "lexv2-runtime:runtime.lex.v2")
86+
set(svc "lexv2-runtime")
87+
elseif("${svc}" STREQUAL "models.lex.v2")
88+
LIST(APPEND C2J_SPECIAL_NAME_LIST "lexv2-models:models.lex.v2")
89+
set(svc "lexv2-models")
8490
elseif ("${svc}" STREQUAL "transfer")
8591
LIST(APPEND C2J_SPECIAL_NAME_LIST "awstransfer:transfer")
8692
set(svc "awstransfer")

scripts/generate_sdks.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ def ParseArguments():
4747

4848
serviceNameRemaps = {
4949
"runtime.lex" : "lex",
50+
"runtime.lex.v2" : "lexv2-runtime",
51+
"models.lex.v2" : "lexv2-models",
5052
"entitlement.marketplace" : "marketplace-entitlement",
5153
"runtime.sagemaker" : "sagemaker-runtime",
5254
"transfer" : "awstransfer",

0 commit comments

Comments
 (0)