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@1702dfc
  • Loading branch information
droplet-bot committed May 21, 2024
1 parent 6be87a1 commit 6fe4747
Show file tree
Hide file tree
Showing 4 changed files with 207 additions and 174 deletions.
4 changes: 3 additions & 1 deletion model/model/v1alpha/common_pb2.py

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

22 changes: 22 additions & 0 deletions model/model/v1alpha/common_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,25 @@ class Message(google.protobuf.message.Message):
def ClearField(self, field_name: typing_extensions.Literal["content", b"content", "role", b"role"]) -> None: ...

global___Message = Message

@typing_extensions.final
class Permission(google.protobuf.message.Message):
"""Permission defines how a pipeline can be used."""

DESCRIPTOR: google.protobuf.descriptor.Descriptor

CAN_EDIT_FIELD_NUMBER: builtins.int
CAN_TRIGGER_FIELD_NUMBER: builtins.int
can_edit: builtins.bool
"""Defines whether the pipeline can be modified."""
can_trigger: builtins.bool
"""Defines whether the pipeline can be executed."""
def __init__(
self,
*,
can_edit: builtins.bool = ...,
can_trigger: builtins.bool = ...,
) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal["can_edit", b"can_edit", "can_trigger", b"can_trigger"]) -> None: ...

global___Permission = Permission
Loading

0 comments on commit 6fe4747

Please sign in to comment.