go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/swarming/server/bq/taskspb/bq.proto (about) 1 // Copyright 2023 The LUCI Authors. All rights reserved. 2 // Use of this source code is governed under the Apache License, Version 2.0 3 // that can be found in the LICENSE file. 4 5 syntax = "proto3"; 6 7 package swarming.bq.tasks; 8 9 option go_package = "go.chromium.org/luci/swarming/server/bq/taskspb;taskspb"; 10 11 import "google/protobuf/timestamp.proto"; 12 import "google/protobuf/duration.proto"; 13 14 message CreateExportTask { 15 google.protobuf.Timestamp start = 1; 16 google.protobuf.Duration duration = 2; 17 string cloud_project = 3; 18 string dataset = 4; 19 string table_name = 5; 20 }