Skip to content

Commit 4699832

Browse files
committed
fix: update EnvArgsSpec to require value field and add exposed_name alias
1 parent 54a4ddf commit 4699832

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rapyuta_io_sdk_v2/models/deployment.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ class DeploymentMetadata(BaseMetadata):
3939

4040
class EnvArgsSpec(BaseModel):
4141
name: str
42-
value: str | None = None
42+
value: str
43+
exposed: bool | None = None
44+
exposed_name: str | None = Field(default=None, alias='exposedName')
4345

4446

4547
class DeploymentVolume(BaseModel):

0 commit comments

Comments
 (0)