-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [video-stitcher] add apis for Create, Read, Update, Delete for …
…VODConfigs (#5378) * feat: add apis for Create, Read, Update, Delete for VODConfigs feat: allowed usage for VODConfigs in VODSession feat: added token config for MediaCdnKey feat: added targetting parameter support to Livesession feat: added adtracking to Livesession feat: added fetchoptions with custom headers for Live and VODConfigs docs: Added apis for Create, Read, Update, Delete For VODConfigs. Added vodConfig usage in VODSession. Added TokenConfig for MediaCdnKey. Added targeting_parameter and ad_tracking for Livesession. Added FetchOptions for Live and VOD configs. PiperOrigin-RevId: 636368401 Source-Link: googleapis/googleapis@30717c0 Source-Link: googleapis/googleapis-gen@cc30711 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLXZpZGVvLXN0aXRjaGVyLy5Pd2xCb3QueWFtbCIsImgiOiJjYzMwNzExZWY4ZTE2ZDQ4ODdkMTlmNjc3YjkzODJkZjBhZTYwZWQ4In0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Daniel Bankhead <[email protected]> Co-authored-by: danieljbruce <[email protected]>
- Loading branch information
1 parent
81e759d
commit 10d9310
Showing
26 changed files
with
16,105 additions
and
7,605 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
...ges/google-cloud-video-stitcher/protos/google/cloud/video/stitcher/v1/fetch_options.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
syntax = "proto3"; | ||
|
||
package google.cloud.video.stitcher.v1; | ||
|
||
option go_package = "cloud.google.com/go/video/stitcher/apiv1/stitcherpb;stitcherpb"; | ||
option java_multiple_files = true; | ||
option java_outer_classname = "FetchOptionsProto"; | ||
option java_package = "com.google.cloud.video.stitcher.v1"; | ||
|
||
// Options on how fetches should be made. | ||
message FetchOptions { | ||
// Custom headers to pass into fetch request. | ||
// Headers must have a maximum of 3 key value pairs. | ||
// Each key value pair must have a maximum of 256 characters per key and 256 | ||
// characters per value. | ||
map<string, string> headers = 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.