@@ -115,6 +115,7 @@ def update(
115115 self ,
116116 entry_id : str ,
117117 * ,
118+ active : Optional [bool ] | NotGiven = NOT_GIVEN ,
118119 aliases : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
119120 definition : Optional [str ] | NotGiven = NOT_GIVEN ,
120121 payload : Optional [object ] | NotGiven = NOT_GIVEN ,
@@ -130,6 +131,8 @@ def update(
130131 更新业务术语
131132
132133 Args:
134+ active: 业务术语是否生效
135+
133136 aliases: 业务术语同义词
134137
135138 definition: 业务术语定义
@@ -152,6 +155,7 @@ def update(
152155 f"/v1/business-glossary/{ entry_id } " ,
153156 body = maybe_transform (
154157 {
158+ "active" : active ,
155159 "aliases" : aliases ,
156160 "definition" : definition ,
157161 "payload" : payload ,
@@ -339,6 +343,7 @@ async def update(
339343 self ,
340344 entry_id : str ,
341345 * ,
346+ active : Optional [bool ] | NotGiven = NOT_GIVEN ,
342347 aliases : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
343348 definition : Optional [str ] | NotGiven = NOT_GIVEN ,
344349 payload : Optional [object ] | NotGiven = NOT_GIVEN ,
@@ -354,6 +359,8 @@ async def update(
354359 更新业务术语
355360
356361 Args:
362+ active: 业务术语是否生效
363+
357364 aliases: 业务术语同义词
358365
359366 definition: 业务术语定义
@@ -376,6 +383,7 @@ async def update(
376383 f"/v1/business-glossary/{ entry_id } " ,
377384 body = await async_maybe_transform (
378385 {
386+ "active" : active ,
379387 "aliases" : aliases ,
380388 "definition" : definition ,
381389 "payload" : payload ,
0 commit comments