metadata_store.proto 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.aiplatform.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/cloud/aiplatform/v1/encryption_spec.proto";
  19. import "google/protobuf/timestamp.proto";
  20. option csharp_namespace = "Google.Cloud.AIPlatform.V1";
  21. option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1;aiplatform";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "MetadataProto";
  24. option java_package = "com.google.cloud.aiplatform.v1";
  25. option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
  26. option ruby_package = "Google::Cloud::AIPlatform::V1";
  27. // Instance of a metadata store. Contains a set of metadata that can be
  28. // queried.
  29. message MetadataStore {
  30. option (google.api.resource) = {
  31. type: "aiplatform.googleapis.com/MetadataStore"
  32. pattern: "projects/{project}/locations/{location}/metadataStores/{metadata_store}"
  33. };
  34. // Represents state information for a MetadataStore.
  35. message MetadataStoreState {
  36. // The disk utilization of the MetadataStore in bytes.
  37. int64 disk_utilization_bytes = 1;
  38. }
  39. // Output only. The resource name of the MetadataStore instance.
  40. string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  41. // Output only. Timestamp when this MetadataStore was created.
  42. google.protobuf.Timestamp create_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  43. // Output only. Timestamp when this MetadataStore was last updated.
  44. google.protobuf.Timestamp update_time = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  45. // Customer-managed encryption key spec for a Metadata Store. If set, this
  46. // Metadata Store and all sub-resources of this Metadata Store are secured
  47. // using this key.
  48. EncryptionSpec encryption_spec = 5;
  49. // Description of the MetadataStore.
  50. string description = 6;
  51. // Output only. State information of the MetadataStore.
  52. MetadataStoreState state = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
  53. }