stitch_details.proto 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.video.stitcher.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/protobuf/duration.proto";
  19. import "google/protobuf/struct.proto";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/video/stitcher/v1;stitcher";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "StitchDetailsProto";
  23. option java_package = "com.google.cloud.video.stitcher.v1";
  24. // Detailed information related to the interstitial of a VOD session.
  25. message VodStitchDetail {
  26. option (google.api.resource) = {
  27. type: "videostitcher.googleapis.com/VodStitchDetail"
  28. pattern: "projects/{project}/locations/{location}/vodSessions/{vod_session}/vodStitchDetails/{vod_stitch_detail}"
  29. };
  30. // The name of the stitch detail in the specified VOD session, in the form of
  31. // `projects/{project}/locations/{location}/vodSessions/{vod_session_id}/vodStitchDetails/{id}`.
  32. string name = 1;
  33. // A list of ad processing details for the fetched ad playlist.
  34. repeated AdStitchDetail ad_stitch_details = 3;
  35. }
  36. // Metadata for a stitched ad.
  37. message AdStitchDetail {
  38. // Required. The ad break ID of the processed ad.
  39. string ad_break_id = 1 [(google.api.field_behavior) = REQUIRED];
  40. // Required. The ad ID of the processed ad.
  41. string ad_id = 2 [(google.api.field_behavior) = REQUIRED];
  42. // Required. The time offset of the processed ad.
  43. google.protobuf.Duration ad_time_offset = 3 [(google.api.field_behavior) = REQUIRED];
  44. // Optional. Indicates the reason why the ad has been skipped.
  45. string skip_reason = 4 [(google.api.field_behavior) = OPTIONAL];
  46. // Optional. The metadata of the chosen media file for the ad.
  47. map<string, google.protobuf.Value> media = 5 [(google.api.field_behavior) = OPTIONAL];
  48. }