physical_schema.proto 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.datacatalog.v1;
  16. option cc_enable_arenas = true;
  17. option csharp_namespace = "Google.Cloud.DataCatalog.V1";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/datacatalog/v1;datacatalog";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "PhysicalSchemaProto";
  21. option java_package = "com.google.cloud.datacatalog.v1";
  22. option php_namespace = "Google\\Cloud\\DataCatalog\\V1";
  23. option ruby_package = "Google::Cloud::DataCatalog::V1";
  24. // Native schema used by a resource represented as an entry. Used by query
  25. // engines for deserializing and parsing source data.
  26. message PhysicalSchema {
  27. // Schema in Avro JSON format.
  28. message AvroSchema {
  29. // JSON source of the Avro schema.
  30. string text = 1;
  31. }
  32. // Schema in Thrift format.
  33. message ThriftSchema {
  34. // Thrift IDL source of the schema.
  35. string text = 1;
  36. }
  37. // Schema in protocol buffer format.
  38. message ProtobufSchema {
  39. // Protocol buffer source of the schema.
  40. string text = 1;
  41. }
  42. // Marks a Parquet-encoded data source.
  43. message ParquetSchema {
  44. }
  45. // Marks an ORC-encoded data source.
  46. message OrcSchema {
  47. }
  48. // Marks a CSV-encoded data source.
  49. message CsvSchema {
  50. }
  51. oneof schema {
  52. // Schema in Avro JSON format.
  53. AvroSchema avro = 1;
  54. // Schema in Thrift format.
  55. ThriftSchema thrift = 2;
  56. // Schema in protocol buffer format.
  57. ProtobufSchema protobuf = 3;
  58. // Marks a Parquet-encoded data source.
  59. ParquetSchema parquet = 4;
  60. // Marks an ORC-encoded data source.
  61. OrcSchema orc = 5;
  62. // Marks a CSV-encoded data source.
  63. CsvSchema csv = 6;
  64. }
  65. }