12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- syntax = "proto3";
- package google.cloud.batch.v1;
- option csharp_namespace = "Google.Cloud.Batch.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/batch/v1;batch";
- option java_multiple_files = true;
- option java_outer_classname = "VolumeProto";
- option java_package = "com.google.cloud.batch.v1";
- option objc_class_prefix = "GCB";
- option php_namespace = "Google\\Cloud\\Batch\\V1";
- option ruby_package = "Google::Cloud::Batch::V1";
- message Volume {
-
- oneof source {
-
-
- NFS nfs = 1;
-
- GCS gcs = 3;
-
-
-
-
-
- string device_name = 6;
- }
-
- string mount_path = 4;
-
-
-
-
-
-
-
-
-
- repeated string mount_options = 5;
- }
- message NFS {
-
- string server = 1;
-
- string remote_path = 2;
- }
- message GCS {
-
-
- string remote_path = 1;
- }
|