Skip to content

Commit db54598

Browse files
authored
fix: Generate Python Code from plugin-pb (#68)
This PR was created by a scheduled workflow to regenerate the Python code from `plugin-pb`.
1 parent 1eb6117 commit db54598

File tree

2 files changed

+59
-57
lines changed

2 files changed

+59
-57
lines changed

cloudquery/plugin_v3/plugin_pb2.py

Lines changed: 55 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cloudquery/plugin_v3/plugin_pb2.pyi

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,14 @@ class GetSpecSchema(_message.Message):
4646
class Init(_message.Message):
4747
__slots__ = ()
4848
class Request(_message.Message):
49-
__slots__ = ("spec", "no_connection")
49+
__slots__ = ("spec", "no_connection", "invocation_id")
5050
SPEC_FIELD_NUMBER: _ClassVar[int]
5151
NO_CONNECTION_FIELD_NUMBER: _ClassVar[int]
52+
INVOCATION_ID_FIELD_NUMBER: _ClassVar[int]
5253
spec: bytes
5354
no_connection: bool
54-
def __init__(self, spec: _Optional[bytes] = ..., no_connection: bool = ...) -> None: ...
55+
invocation_id: str
56+
def __init__(self, spec: _Optional[bytes] = ..., no_connection: bool = ..., invocation_id: _Optional[str] = ...) -> None: ...
5557
class Response(_message.Message):
5658
__slots__ = ()
5759
def __init__(self) -> None: ...

0 commit comments

Comments
 (0)