data_item_payload.proto 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. // Copyright 2021 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.v1beta1.schema;
  16. import "google/api/field_behavior.proto";
  17. option csharp_namespace = "Google.Cloud.AIPlatform.V1Beta1.Schema";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1beta1/schema;schema";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "DataItemPayloadProto";
  21. option java_package = "com.google.cloud.aiplatform.v1beta1.schema";
  22. option php_namespace = "Google\\Cloud\\AIPlatform\\V1beta1\\Schema";
  23. option ruby_package = "Google::Cloud::AIPlatform::V1beta1::Schema";
  24. // Payload of Image DataItem.
  25. message ImageDataItem {
  26. // Required. Google Cloud Storage URI points to the original image in user's bucket.
  27. // The image is up to 30MB in size.
  28. string gcs_uri = 1 [(google.api.field_behavior) = REQUIRED];
  29. // Output only. The mime type of the content of the image. Only the images in below listed
  30. // mime types are supported.
  31. // - image/jpeg
  32. // - image/gif
  33. // - image/png
  34. // - image/webp
  35. // - image/bmp
  36. // - image/tiff
  37. // - image/vnd.microsoft.icon
  38. string mime_type = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  39. }
  40. // Payload of Video DataItem.
  41. message VideoDataItem {
  42. // Required. Google Cloud Storage URI points to the original video in user's bucket.
  43. // The video is up to 50 GB in size and up to 3 hour in duration.
  44. string gcs_uri = 1 [(google.api.field_behavior) = REQUIRED];
  45. // Output only. The mime type of the content of the video. Only the videos in below listed
  46. // mime types are supported.
  47. // Supported mime_type:
  48. // - video/mp4
  49. // - video/avi
  50. // - video/quicktime
  51. string mime_type = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  52. }
  53. // Payload of Text DataItem.
  54. message TextDataItem {
  55. // Output only. Google Cloud Storage URI points to the original text in user's bucket.
  56. // The text file is up to 10MB in size.
  57. string gcs_uri = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  58. }