Skip to content

Commit

Permalink
chore: auto-gen by protobufs
Browse files Browse the repository at this point in the history
triggered by commit: instill-ai/protobufs@b70a51d
  • Loading branch information
droplet-bot committed Nov 15, 2024
1 parent 535be7b commit e8cc73a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 14 deletions.
20 changes: 12 additions & 8 deletions vdp/pipeline/v1beta/component_definition_pb2.py

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

20 changes: 14 additions & 6 deletions vdp/pipeline/v1beta/component_definition_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -358,12 +358,18 @@ class EventSpecification(google.protobuf.message.Message):

DESCRIPTOR: google.protobuf.descriptor.Descriptor

SETUP_SCHEMA_FIELD_NUMBER: builtins.int
TITLE_FIELD_NUMBER: builtins.int
DESCRIPTION_FIELD_NUMBER: builtins.int
CONFIG_SCHEMA_FIELD_NUMBER: builtins.int
MESSAGE_SCHEMA_FIELD_NUMBER: builtins.int
MESSAGE_EXAMPLES_FIELD_NUMBER: builtins.int
title: builtins.str
"""Event title."""
description: builtins.str
"""Event description."""
@property
def setup_schema(self) -> google.protobuf.struct_pb2.Struct:
"""JSON schema describing the component event setup data."""
def config_schema(self) -> google.protobuf.struct_pb2.Struct:
"""JSON schema describing the component event config data."""
@property
def message_schema(self) -> google.protobuf.struct_pb2.Struct:
"""JSON schema describing the component event message data."""
Expand All @@ -373,12 +379,14 @@ class EventSpecification(google.protobuf.message.Message):
def __init__(
self,
*,
setup_schema: google.protobuf.struct_pb2.Struct | None = ...,
title: builtins.str = ...,
description: builtins.str = ...,
config_schema: google.protobuf.struct_pb2.Struct | None = ...,
message_schema: google.protobuf.struct_pb2.Struct | None = ...,
message_examples: collections.abc.Iterable[google.protobuf.struct_pb2.Struct] | None = ...,
) -> None: ...
def HasField(self, field_name: typing_extensions.Literal["message_schema", b"message_schema", "setup_schema", b"setup_schema"]) -> builtins.bool: ...
def ClearField(self, field_name: typing_extensions.Literal["message_examples", b"message_examples", "message_schema", b"message_schema", "setup_schema", b"setup_schema"]) -> None: ...
def HasField(self, field_name: typing_extensions.Literal["config_schema", b"config_schema", "message_schema", b"message_schema"]) -> builtins.bool: ...
def ClearField(self, field_name: typing_extensions.Literal["config_schema", b"config_schema", "description", b"description", "message_examples", b"message_examples", "message_schema", b"message_schema", "title", b"title"]) -> None: ...

global___EventSpecification = EventSpecification

Expand Down

0 comments on commit e8cc73a

Please sign in to comment.