1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- syntax = "proto3";
- package google.cloud.retail.v2alpha;
- import "google/protobuf/timestamp.proto";
- import "google/rpc/status.proto";
- option csharp_namespace = "Google.Cloud.Retail.V2Alpha";
- option go_package = "google.golang.org/genproto/googleapis/cloud/retail/v2alpha;retail";
- option java_multiple_files = true;
- option java_outer_classname = "ExportConfigProto";
- option java_package = "com.google.cloud.retail.v2alpha";
- option objc_class_prefix = "RETAIL";
- option php_namespace = "Google\\Cloud\\Retail\\V2alpha";
- option ruby_package = "Google::Cloud::Retail::V2alpha";
- 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;
- }
|