Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Generate Python Code from plugin-pb #59

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 63 additions & 57 deletions cloudquery/plugin_v3/plugin_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions cloudquery/plugin_v3/plugin_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,18 @@ class GetVersion(_message.Message):
def __init__(self, version: _Optional[str] = ...) -> None: ...
def __init__(self) -> None: ...

class GetSpecSchema(_message.Message):
__slots__ = ()
class Request(_message.Message):
__slots__ = ()
def __init__(self) -> None: ...
class Response(_message.Message):
__slots__ = ("json_schema",)
JSON_SCHEMA_FIELD_NUMBER: _ClassVar[int]
json_schema: str
def __init__(self, json_schema: _Optional[str] = ...) -> None: ...
def __init__(self) -> None: ...

class Init(_message.Message):
__slots__ = ()
class Request(_message.Message):
Expand Down
Loading