12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- syntax = "proto3";
- package google.cloud.datacatalog.v1;
- import "google/api/field_behavior.proto";
- option cc_enable_arenas = true;
- option csharp_namespace = "Google.Cloud.DataCatalog.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/datacatalog/v1;datacatalog";
- option java_multiple_files = true;
- option java_package = "com.google.cloud.datacatalog.v1";
- option php_namespace = "Google\\Cloud\\DataCatalog\\V1";
- option ruby_package = "Google::Cloud::DataCatalog::V1";
- message Schema {
-
-
-
-
- repeated ColumnSchema columns = 2;
- }
- message ColumnSchema {
-
-
-
-
- string column = 6 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string type = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string description = 2 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- string mode = 3 [(google.api.field_behavior) = OPTIONAL];
-
- repeated ColumnSchema subcolumns = 7 [(google.api.field_behavior) = OPTIONAL];
- }
|