summaryrefslogtreecommitdiff
path: root/third_party/googleapis/google/cloud/dialogflow/v2beta1/gcs.proto
diff options
context:
space:
mode:
authorn1c00o <git.n1c00o@gmail.com>2022-10-12 18:05:45 +0200
committern1c00o <git.n1c00o@gmail.com>2022-10-12 18:05:45 +0200
commit9bcf3fedd50bd6c8dfef1673482d9b61fab49cd0 (patch)
tree45f3b754ece09b90bde859bc6e7eae4d3c31a848 /third_party/googleapis/google/cloud/dialogflow/v2beta1/gcs.proto
parent2e1a2ee3d6c12d8367cbbe005fe7dcf8d253d9ac (diff)
Revendor correctly googleapis
Diffstat (limited to 'third_party/googleapis/google/cloud/dialogflow/v2beta1/gcs.proto')
-rw-r--r--third_party/googleapis/google/cloud/dialogflow/v2beta1/gcs.proto55
1 files changed, 55 insertions, 0 deletions
diff --git a/third_party/googleapis/google/cloud/dialogflow/v2beta1/gcs.proto b/third_party/googleapis/google/cloud/dialogflow/v2beta1/gcs.proto
new file mode 100644
index 0000000..debb578
--- /dev/null
+++ b/third_party/googleapis/google/cloud/dialogflow/v2beta1/gcs.proto
@@ -0,0 +1,55 @@
+// Copyright 2022 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.dialogflow.v2beta1;
+
+import "google/api/field_behavior.proto";
+
+option cc_enable_arenas = true;
+option csharp_namespace = "Google.Cloud.Dialogflow.V2beta1";
+option go_package = "google.golang.org/genproto/googleapis/cloud/dialogflow/v2beta1;dialogflow";
+option java_multiple_files = true;
+option java_outer_classname = "GcsProto";
+option java_package = "com.google.cloud.dialogflow.v2beta1";
+option objc_class_prefix = "DF";
+
+// Google Cloud Storage locations for the inputs.
+message GcsSources {
+ // Required. Google Cloud Storage URIs for the inputs. A URI is of the
+ // form:
+ // gs://bucket/object-prefix-or-name
+ // Whether a prefix or name is used depends on the use case.
+ repeated string uris = 2 [(google.api.field_behavior) = REQUIRED];
+}
+
+// Google Cloud Storage location for single input.
+message GcsSource {
+ // Required. The Google Cloud Storage URIs for the inputs. A URI is of the
+ // form:
+ // gs://bucket/object-prefix-or-name
+ // Whether a prefix or name is used depends on the use case.
+ string uri = 1;
+}
+
+// Google Cloud Storage location for the output.
+message GcsDestination {
+ // Required. The Google Cloud Storage URIs for the output. A URI is of the
+ // form:
+ // gs://bucket/object-prefix-or-name
+ // Whether a prefix or name is used depends on the use case. The requesting
+ // user must have "write-permission" to the bucket.
+ string uri = 1;
+}