Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(pipeline): add tags field in pipeline #337

Merged
merged 2 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions openapiv2/vdp/service.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,12 @@ paths:
$ref: '#/definitions/v1betaDataSpecification'
description: Data specifications.
readOnly: true
tags:
type: array
items:
type: string
description: Tags.
readOnly: true
title: The pipeline fields that will replace the existing ones.
tags:
- Pipeline
Expand Down Expand Up @@ -1418,6 +1424,12 @@ paths:
$ref: '#/definitions/v1betaDataSpecification'
description: Data specifications.
readOnly: true
tags:
type: array
items:
type: string
description: Tags.
readOnly: true
title: The pipeline fields that will replace the existing ones.
tags:
- Pipeline
Expand Down Expand Up @@ -4365,6 +4377,12 @@ definitions:
$ref: '#/definitions/v1betaDataSpecification'
description: Data specifications.
readOnly: true
tags:
type: array
items:
type: string
description: Tags.
readOnly: true
description: |-
A Pipeline is an end-to-end workflow that automates a sequence of components
to process data.
Expand Down
2 changes: 2 additions & 0 deletions vdp/pipeline/v1beta/pipeline.proto
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,8 @@ message Pipeline {
];
// Data specifications.
DataSpecification data_specification = 24 [(google.api.field_behavior) = OUTPUT_ONLY];
// Tags.
repeated string tags = 25 [(google.api.field_behavior) = OUTPUT_ONLY];
}

// TriggerMetadata contains the traces of the pipeline inference.
Expand Down