Skip to content

Commit

Permalink
fix: Generate Python Code from plugin-pb (#68)
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 Mar 25, 2024
1 parent 1eb6117 commit db54598
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 57 deletions.
110 changes: 55 additions & 55 deletions cloudquery/plugin_v3/plugin_pb2.py

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

6 changes: 4 additions & 2 deletions cloudquery/plugin_v3/plugin_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@ class GetSpecSchema(_message.Message):
class Init(_message.Message):
__slots__ = ()
class Request(_message.Message):
__slots__ = ("spec", "no_connection")
__slots__ = ("spec", "no_connection", "invocation_id")
SPEC_FIELD_NUMBER: _ClassVar[int]
NO_CONNECTION_FIELD_NUMBER: _ClassVar[int]
INVOCATION_ID_FIELD_NUMBER: _ClassVar[int]
spec: bytes
no_connection: bool
def __init__(self, spec: _Optional[bytes] = ..., no_connection: bool = ...) -> None: ...
invocation_id: str
def __init__(self, spec: _Optional[bytes] = ..., no_connection: bool = ..., invocation_id: _Optional[str] = ...) -> None: ...
class Response(_message.Message):
__slots__ = ()
def __init__(self) -> None: ...
Expand Down

0 comments on commit db54598

Please sign in to comment.