12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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 = "google.golang.org/genproto/googleapis/cloud/retail/v2beta;retail";
- 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";
- message ExportErrorsConfig {
-
- oneof destination {
-
-
-
-
- string gcs_prefix = 1;
- }
- }
- message ExportMetadata {
-
- google.protobuf.Timestamp create_time = 1;
-
-
- google.protobuf.Timestamp update_time = 2;
- }
- message ExportProductsResponse {
-
- repeated google.rpc.Status error_samples = 1;
-
- ExportErrorsConfig errors_config = 2;
-
- OutputResult output_result = 3;
- }
- message ExportUserEventsResponse {
-
- repeated google.rpc.Status error_samples = 1;
-
- ExportErrorsConfig errors_config = 2;
-
- OutputResult output_result = 3;
- }
- message OutputResult {
-
- repeated BigQueryOutputResult bigquery_result = 1;
- }
- message BigQueryOutputResult {
-
- string dataset_id = 1;
-
- string table_id = 2;
- }
|