// Copyright 2021 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. syntax = "proto3"; package google.cloud.retail.v2beta; import "google/api/field_behavior.proto"; import "google/api/resource.proto"; import "google/protobuf/timestamp.proto"; import "google/rpc/status.proto"; option csharp_namespace = "Google.Cloud.Retail.V2Beta"; option go_package = "cloud.google.com/go/retail/apiv2beta/retailpb;retailpb"; option java_multiple_files = true; option java_outer_classname = "ExportConfigProto"; option java_package = "com.google.cloud.retail.v2beta"; option objc_class_prefix = "RETAIL"; option php_namespace = "Google\\Cloud\\Retail\\V2beta"; option ruby_package = "Google::Cloud::Retail::V2beta"; // Configuration of destination for Export related errors. message ExportErrorsConfig { // Required. Errors destination. oneof destination { // Google Cloud Storage path for import errors. This must be an empty, // existing Cloud Storage bucket. Export errors will be written to a file in // this bucket, one per line, as a JSON-encoded // `google.rpc.Status` message. string gcs_prefix = 1; } } // Metadata related to the progress of the Export operation. This is // returned by the google.longrunning.Operation.metadata field. message ExportMetadata { // Operation create time. google.protobuf.Timestamp create_time = 1; // Operation last update time. If the operation is done, this is also the // finish time. google.protobuf.Timestamp update_time = 2; } // Response of the ExportProductsRequest. If the long running // operation is done, then this message is returned by the // google.longrunning.Operations.response field if the operation was successful. message ExportProductsResponse { // A sample of errors encountered while processing the request. repeated google.rpc.Status error_samples = 1; // This field is never set. ExportErrorsConfig errors_config = 2; // Output result indicating where the data were exported to. OutputResult output_result = 3; } // Response of the ExportUserEventsRequest. If the long running // operation was successful, then this message is returned by the // google.longrunning.Operations.response field if the operation was successful. message ExportUserEventsResponse { // A sample of errors encountered while processing the request. repeated google.rpc.Status error_samples = 1; // This field is never set. ExportErrorsConfig errors_config = 2; // Output result indicating where the data were exported to. OutputResult output_result = 3; } // Output result that stores the information about where the exported data is // stored. message OutputResult { // The BigQuery location where the result is stored. repeated BigQueryOutputResult bigquery_result = 1; // The Google Cloud Storage location where the result is stored. repeated GcsOutputResult gcs_result = 2; } // A BigQuery output result. message BigQueryOutputResult { // The ID of a BigQuery Dataset. string dataset_id = 1; // The ID of a BigQuery Table. string table_id = 2; } // A Gcs output result. message GcsOutputResult { // The uri of Gcs output string output_uri = 1; }