-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
084de25
commit 26f031e
Showing
3 changed files
with
10 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
configured_endpoints: 15 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/riza%2Friza-api-53d443fce326642ac4579e178d39bd12a49ed8230f1264bda8da4c805d4ae71f.yml | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/riza%2Friza-api-fb88a69cdf1c683229e1b4955389acf571be1cb9c2724bd2e03375c314e5d564.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from typing import Optional | ||
|
||
from .._models import BaseModel | ||
|
||
__all__ = ["CommandExecResponse"] | ||
|
||
|
||
class CommandExecResponse(BaseModel): | ||
exit_code: Optional[int] = None | ||
exit_code: int | ||
"""The exit code returned by the script. | ||
Will often be '0' on success and non-zero on failure. | ||
""" | ||
|
||
stderr: Optional[str] = None | ||
stderr: str | ||
"""The contents of 'stderr' after executing the script.""" | ||
|
||
stdout: Optional[str] = None | ||
stdout: str | ||
"""The contents of 'stdout' after executing the script.""" |