cdn_keys.proto 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. option go_package = "google.golang.org/genproto/googleapis/cloud/video/stitcher/v1;stitcher";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "CdnKeysProto";
  21. option java_package = "com.google.cloud.video.stitcher.v1";
  22. // Configuration for a CDN key. Used by the Video Stitcher
  23. // to sign URIs for fetching video manifests and signing
  24. // media segments for playback.
  25. message CdnKey {
  26. option (google.api.resource) = {
  27. type: "videostitcher.googleapis.com/CdnKey"
  28. pattern: "projects/{project}/locations/{location}/cdnKeys/{cdn_key}"
  29. };
  30. // Configuration associated with the CDN key.
  31. oneof cdn_key_config {
  32. // The configuration for a Google Cloud CDN key.
  33. GoogleCdnKey google_cdn_key = 5;
  34. // The configuration for an Akamai CDN key.
  35. AkamaiCdnKey akamai_cdn_key = 6;
  36. // The configuration for a Media CDN key.
  37. MediaCdnKey media_cdn_key = 8;
  38. }
  39. // The resource name of the CDN key, in the form of
  40. // `projects/{project}/locations/{location}/cdnKeys/{id}`.
  41. // The name is ignored when creating a CDN key.
  42. string name = 1;
  43. // The hostname this key applies to.
  44. string hostname = 4;
  45. }
  46. // Configuration for a Google Cloud CDN key.
  47. message GoogleCdnKey {
  48. // Input only. Secret for this Google Cloud CDN key.
  49. bytes private_key = 1 [(google.api.field_behavior) = INPUT_ONLY];
  50. // The public name of the Google Cloud CDN key.
  51. string key_name = 2;
  52. }
  53. // Configuration for an Akamai CDN key.
  54. message AkamaiCdnKey {
  55. // Input only. Token key for the Akamai CDN edge configuration.
  56. bytes token_key = 1 [(google.api.field_behavior) = INPUT_ONLY];
  57. }
  58. // Configuration for a Media CDN key.
  59. message MediaCdnKey {
  60. // Input only. 64-byte ed25519 private key for this Media CDN key.
  61. bytes private_key = 1 [(google.api.field_behavior) = INPUT_ONLY];
  62. // The keyset name of the Media CDN key.
  63. string key_name = 2;
  64. }