go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/resultdb/internal/tasks/taskspb/tasks.proto (about) 1 // Copyright 2020 The LUCI Authors. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 syntax = "proto3"; 16 17 package luci.resultdb.internal.tasks; 18 19 import "go.chromium.org/luci/resultdb/proto/v1/invocation.proto"; 20 import "go.chromium.org/luci/resultdb/proto/v1/notification.proto"; 21 22 option go_package = "go.chromium.org/luci/resultdb/internal/tasks/taskspb"; 23 24 message TryFinalizeInvocation { 25 string invocation_id = 1; 26 } 27 28 message NotifyInvocationFinalized { 29 // The message to publish to Cloud Pub/Sub. 30 luci.resultdb.v1.InvocationFinalizedNotification message = 1; 31 } 32 33 message ExportInvocationTestResultsToBQ { 34 string invocation_id = 1; 35 luci.resultdb.v1.BigQueryExport bq_export = 2; 36 } 37 38 message ExportInvocationArtifactsToBQ { 39 string invocation_id = 1; 40 luci.resultdb.v1.BigQueryExport bq_export = 2; 41 } 42 43 message UpdateTestMetadata { 44 string invocation_id = 1; 45 } 46 47 message MarkInvocationSubmitted { 48 string invocation_id = 1; 49 }