table_spec.proto 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. // Copyright 2020 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.v1beta1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. option cc_enable_arenas = true;
  19. option csharp_namespace = "Google.Cloud.DataCatalog.V1Beta1";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/datacatalog/v1beta1;datacatalog";
  21. option java_multiple_files = true;
  22. option java_package = "com.google.cloud.datacatalog.v1beta1";
  23. option php_namespace = "Google\\Cloud\\DataCatalog\\V1beta1";
  24. option ruby_package = "Google::Cloud::DataCatalog::V1beta1";
  25. // Describes a BigQuery table.
  26. message BigQueryTableSpec {
  27. // Output only. The table source type.
  28. TableSourceType table_source_type = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  29. // Output only.
  30. oneof type_spec {
  31. // Table view specification. This field should only be populated if
  32. // `table_source_type` is `BIGQUERY_VIEW`.
  33. ViewSpec view_spec = 2;
  34. // Spec of a BigQuery table. This field should only be populated if
  35. // `table_source_type` is `BIGQUERY_TABLE`.
  36. TableSpec table_spec = 3;
  37. }
  38. }
  39. // Table source type.
  40. enum TableSourceType {
  41. // Default unknown type.
  42. TABLE_SOURCE_TYPE_UNSPECIFIED = 0;
  43. // Table view.
  44. BIGQUERY_VIEW = 2;
  45. // BigQuery native table.
  46. BIGQUERY_TABLE = 5;
  47. }
  48. // Table view specification.
  49. message ViewSpec {
  50. // Output only. The query that defines the table view.
  51. string view_query = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  52. }
  53. // Normal BigQuery table spec.
  54. message TableSpec {
  55. // Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
  56. // `grouped_entry` is the Data Catalog resource name of the date sharded
  57. // grouped entry, for example,
  58. // `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
  59. // Otherwise, `grouped_entry` is empty.
  60. string grouped_entry = 1 [
  61. (google.api.field_behavior) = OUTPUT_ONLY,
  62. (google.api.resource_reference) = {
  63. type: "datacatalog.googleapis.com/Entry"
  64. }
  65. ];
  66. }
  67. // Spec for a group of BigQuery tables with name pattern `[prefix]YYYYMMDD`.
  68. // Context:
  69. // https://cloud.google.com/bigquery/docs/partitioned-tables#partitioning_versus_sharding
  70. message BigQueryDateShardedSpec {
  71. // Output only. The Data Catalog resource name of the dataset entry the current table
  72. // belongs to, for example,
  73. // `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
  74. string dataset = 1 [
  75. (google.api.field_behavior) = OUTPUT_ONLY,
  76. (google.api.resource_reference) = {
  77. type: "datacatalog.googleapis.com/Entry"
  78. }
  79. ];
  80. // Output only. The table name prefix of the shards. The name of any given shard is
  81. // `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
  82. // `table_prefix` is `MyTable`.
  83. string table_prefix = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  84. // Output only. Total number of shards.
  85. int64 shard_count = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  86. }