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@d11f8c4
  • Loading branch information
droplet-bot committed Jan 29, 2024
1 parent f23a73a commit 9e7d41f
Show file tree
Hide file tree
Showing 5 changed files with 385 additions and 147 deletions.
306 changes: 161 additions & 145 deletions vdp/pipeline/v1beta/pipeline_pb2.py

Large diffs are not rendered by default.

94 changes: 94 additions & 0 deletions vdp/pipeline/v1beta/pipeline_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -1092,6 +1092,53 @@ class RenameUserPipelineResponse(google.protobuf.message.Message):

global___RenameUserPipelineResponse = RenameUserPipelineResponse

@typing_extensions.final
class CloneUserPipelineRequest(google.protobuf.message.Message):
"""CloneUserPipelineRequest represents a request to clone a pipeline owned by a user."""

DESCRIPTOR: google.protobuf.descriptor.Descriptor

NAME_FIELD_NUMBER: builtins.int
TARGET_FIELD_NUMBER: builtins.int
name: builtins.str
"""The resource name of the pipeline, which allows its access by parent user
and ID.
- Format: `users/{user.id}/pipelines/{pipeline.id}`.
"""
target: builtins.str
"""The target pipeline
- Format: `users/{user.id}/pipelines/{pipeline.id}` or `organizations/{org.id}/pipelines/{pipeline.id}`
"""
def __init__(
self,
*,
name: builtins.str = ...,
target: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "target", b"target"]) -> None: ...

global___CloneUserPipelineRequest = CloneUserPipelineRequest

@typing_extensions.final
class CloneUserPipelineResponse(google.protobuf.message.Message):
"""CloneUserPipelineResponse contains a cloned pipeline."""

DESCRIPTOR: google.protobuf.descriptor.Descriptor

PIPELINE_FIELD_NUMBER: builtins.int
@property
def pipeline(self) -> global___Pipeline:
"""The cloned pipeline resource."""
def __init__(
self,
*,
pipeline: global___Pipeline | None = ...,
) -> None: ...
def HasField(self, field_name: typing_extensions.Literal["pipeline", b"pipeline"]) -> builtins.bool: ...
def ClearField(self, field_name: typing_extensions.Literal["pipeline", b"pipeline"]) -> None: ...

global___CloneUserPipelineResponse = CloneUserPipelineResponse

@typing_extensions.final
class TriggerUserPipelineRequest(google.protobuf.message.Message):
"""TriggerUserPipelineRequest represents a request to trigger a user-owned
Expand Down Expand Up @@ -2077,6 +2124,53 @@ class RenameOrganizationPipelineResponse(google.protobuf.message.Message):

global___RenameOrganizationPipelineResponse = RenameOrganizationPipelineResponse

@typing_extensions.final
class CloneOrganizationPipelineRequest(google.protobuf.message.Message):
"""CloneOrganizationPipelineRequest represents a request to clone a pipeline owned by a organization."""

DESCRIPTOR: google.protobuf.descriptor.Descriptor

NAME_FIELD_NUMBER: builtins.int
TARGET_FIELD_NUMBER: builtins.int
name: builtins.str
"""The resource name of the pipeline, which allows its access by parent user
and ID.
- Format: `organizations/{org.id}/pipelines/{pipeline.id}`.
"""
target: builtins.str
"""The target pipeline
- Format: `users/{user.id}/pipelines/{pipeline.id}` or `organizations/{org.id}/pipelines/{pipeline.id}`
"""
def __init__(
self,
*,
name: builtins.str = ...,
target: builtins.str = ...,
) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "target", b"target"]) -> None: ...

global___CloneOrganizationPipelineRequest = CloneOrganizationPipelineRequest

@typing_extensions.final
class CloneOrganizationPipelineResponse(google.protobuf.message.Message):
"""CloneOrganizationPipelineResponse contains a cloned pipeline."""

DESCRIPTOR: google.protobuf.descriptor.Descriptor

PIPELINE_FIELD_NUMBER: builtins.int
@property
def pipeline(self) -> global___Pipeline:
"""The cloned pipeline resource."""
def __init__(
self,
*,
pipeline: global___Pipeline | None = ...,
) -> None: ...
def HasField(self, field_name: typing_extensions.Literal["pipeline", b"pipeline"]) -> builtins.bool: ...
def ClearField(self, field_name: typing_extensions.Literal["pipeline", b"pipeline"]) -> None: ...

global___CloneOrganizationPipelineResponse = CloneOrganizationPipelineResponse

@typing_extensions.final
class TriggerOrganizationPipelineRequest(google.protobuf.message.Message):
"""TriggerOrganizationPipelineRequest represents a request to trigger an
Expand Down
Loading

0 comments on commit 9e7d41f

Please sign in to comment.