Skip to content

Commit

Permalink
fix: Generate Python Code from plugin-pb (#59)
Browse files Browse the repository at this point in the history
This PR was created by a scheduled workflow to regenerate the Python code from `plugin-pb`.
  • Loading branch information
cq-bot authored Feb 7, 2024
1 parent 8839607 commit ca2574b
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 57 deletions.
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

0 comments on commit ca2574b

Please sign in to comment.