123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- syntax = "proto3";
- package google.cloud.aiplatform.v1;
- import "google/api/field_behavior.proto";
- option csharp_namespace = "Google.Cloud.AIPlatform.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1;aiplatform";
- option java_multiple_files = true;
- option java_outer_classname = "IoProto";
- option java_package = "com.google.cloud.aiplatform.v1";
- option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
- option ruby_package = "Google::Cloud::AIPlatform::V1";
- message AvroSource {
-
- GcsSource gcs_source = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message CsvSource {
-
- GcsSource gcs_source = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message GcsSource {
-
-
-
- repeated string uris = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message GcsDestination {
-
-
-
- string output_uri_prefix = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message BigQuerySource {
-
-
-
-
- string input_uri = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message BigQueryDestination {
-
-
-
-
-
-
-
-
-
-
-
- string output_uri = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message CsvDestination {
-
- GcsDestination gcs_destination = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message TFRecordDestination {
-
- GcsDestination gcs_destination = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message ContainerRegistryDestination {
-
-
-
-
-
-
-
-
-
-
-
- string output_uri = 1 [(google.api.field_behavior) = REQUIRED];
- }
|