From 800dbccebd308c297b85a3b8a0cc38c15f91bdd7 Mon Sep 17 00:00:00 2001 From: Nicholas Cook Date: Wed, 12 Oct 2022 12:58:34 -0700 Subject: [PATCH] docs(samples): Fix Video Stitcher region tag prefix (#36) --- media/video-stitcher/createCdnKey.js | 4 ++-- media/video-stitcher/createLiveSession.js | 4 ++-- media/video-stitcher/createSlate.js | 4 ++-- media/video-stitcher/createVodSession.js | 4 ++-- media/video-stitcher/deleteCdnKey.js | 4 ++-- media/video-stitcher/deleteSlate.js | 4 ++-- media/video-stitcher/getCdnKey.js | 4 ++-- media/video-stitcher/getLiveAdTagDetail.js | 4 ++-- media/video-stitcher/getLiveSession.js | 4 ++-- media/video-stitcher/getSlate.js | 4 ++-- media/video-stitcher/getVodAdTagDetail.js | 4 ++-- media/video-stitcher/getVodSession.js | 4 ++-- media/video-stitcher/getVodStitchDetail.js | 4 ++-- media/video-stitcher/listCdnKeys.js | 4 ++-- media/video-stitcher/listLiveAdTagDetails.js | 4 ++-- media/video-stitcher/listSlates.js | 4 ++-- media/video-stitcher/listVodAdTagDetails.js | 4 ++-- media/video-stitcher/listVodStitchDetails.js | 4 ++-- media/video-stitcher/updateCdnKey.js | 4 ++-- media/video-stitcher/updateSlate.js | 4 ++-- 20 files changed, 40 insertions(+), 40 deletions(-) diff --git a/media/video-stitcher/createCdnKey.js b/media/video-stitcher/createCdnKey.js index bb456575be..debcf573ec 100644 --- a/media/video-stitcher/createCdnKey.js +++ b/media/video-stitcher/createCdnKey.js @@ -24,7 +24,7 @@ function main( gCdnPrivateKey, akamaiTokenKey = '' ) { - // [START video_stitcher_create_cdn_key] + // [START videostitcher_create_cdn_key] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -68,7 +68,7 @@ function main( } createCdnKey(); - // [END video_stitcher_create_cdn_key] + // [END videostitcher_create_cdn_key] } // node createCdnKey.js diff --git a/media/video-stitcher/createLiveSession.js b/media/video-stitcher/createLiveSession.js index 4b9ee5c0f3..2f9dc62e7a 100644 --- a/media/video-stitcher/createLiveSession.js +++ b/media/video-stitcher/createLiveSession.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sourceUri, adTagUri, slateId) { - // [START video_stitcher_create_live_session] + // [START videostitcher_create_live_session] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -55,7 +55,7 @@ function main(projectId, location, sourceUri, adTagUri, slateId) { } createLiveSession(); - // [END video_stitcher_create_live_session] + // [END videostitcher_create_live_session] } // node createLiveSession.js diff --git a/media/video-stitcher/createSlate.js b/media/video-stitcher/createSlate.js index 763aaed14c..d273e33e3e 100644 --- a/media/video-stitcher/createSlate.js +++ b/media/video-stitcher/createSlate.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, slateId, slateUri) { - // [START video_stitcher_create_slate] + // [START videostitcher_create_slate] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -45,7 +45,7 @@ function main(projectId, location, slateId, slateUri) { } createSlate(); - // [END video_stitcher_create_slate] + // [END videostitcher_create_slate] } // node createSlate.js diff --git a/media/video-stitcher/createVodSession.js b/media/video-stitcher/createVodSession.js index 728a8b1a94..acc9d29de4 100644 --- a/media/video-stitcher/createVodSession.js +++ b/media/video-stitcher/createVodSession.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sourceUri, adTagUri) { - // [START video_stitcher_create_vod_session] + // [START videostitcher_create_vod_session] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -47,7 +47,7 @@ function main(projectId, location, sourceUri, adTagUri) { } createVodSession(); - // [END video_stitcher_create_vod_session] + // [END videostitcher_create_vod_session] } // node createVodSession.js diff --git a/media/video-stitcher/deleteCdnKey.js b/media/video-stitcher/deleteCdnKey.js index 2e71cac996..6c179ffe76 100644 --- a/media/video-stitcher/deleteCdnKey.js +++ b/media/video-stitcher/deleteCdnKey.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, cdnKeyId) { - // [START video_stitcher_delete_cdn_key] + // [START videostitcher_delete_cdn_key] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -40,7 +40,7 @@ function main(projectId, location, cdnKeyId) { } deleteCdnKey(); - // [END video_stitcher_delete_cdn_key] + // [END videostitcher_delete_cdn_key] } // node deleteCdnKey.js diff --git a/media/video-stitcher/deleteSlate.js b/media/video-stitcher/deleteSlate.js index 0dd0536b0a..f295653b3f 100644 --- a/media/video-stitcher/deleteSlate.js +++ b/media/video-stitcher/deleteSlate.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, slateId) { - // [START video_stitcher_delete_slate] + // [START videostitcher_delete_slate] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -40,7 +40,7 @@ function main(projectId, location, slateId) { } deleteSlate(); - // [END video_stitcher_delete_slate] + // [END videostitcher_delete_slate] } // node deleteSlate.js diff --git a/media/video-stitcher/getCdnKey.js b/media/video-stitcher/getCdnKey.js index 57a27c6de2..9666b944ff 100644 --- a/media/video-stitcher/getCdnKey.js +++ b/media/video-stitcher/getCdnKey.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, cdnKeyId) { - // [START video_stitcher_get_cdn_key] + // [START videostitcher_get_cdn_key] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -40,7 +40,7 @@ function main(projectId, location, cdnKeyId) { } getCdnKey(); - // [END video_stitcher_get_cdn_key] + // [END videostitcher_get_cdn_key] } // node getCdnKey.js diff --git a/media/video-stitcher/getLiveAdTagDetail.js b/media/video-stitcher/getLiveAdTagDetail.js index bd0489cefd..00b3913307 100644 --- a/media/video-stitcher/getLiveAdTagDetail.js +++ b/media/video-stitcher/getLiveAdTagDetail.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sessionId, adTagDetailId) { - // [START video_stitcher_get_live_ad_tag_detail] + // [START videostitcher_get_live_ad_tag_detail] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -46,7 +46,7 @@ function main(projectId, location, sessionId, adTagDetailId) { } getLiveAdTagDetail(); - // [END video_stitcher_get_live_ad_tag_detail] + // [END videostitcher_get_live_ad_tag_detail] } // node getLiveAdTagDetail.js diff --git a/media/video-stitcher/getLiveSession.js b/media/video-stitcher/getLiveSession.js index 99ea1c6016..b933b63e4a 100644 --- a/media/video-stitcher/getLiveSession.js +++ b/media/video-stitcher/getLiveSession.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sessionId) { - // [START video_stitcher_get_live_session] + // [START videostitcher_get_live_session] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -40,7 +40,7 @@ function main(projectId, location, sessionId) { } getLiveSession(); - // [END video_stitcher_get_live_session] + // [END videostitcher_get_live_session] } // node getLiveSession.js diff --git a/media/video-stitcher/getSlate.js b/media/video-stitcher/getSlate.js index 36908d8f41..5cc2161001 100644 --- a/media/video-stitcher/getSlate.js +++ b/media/video-stitcher/getSlate.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, slateId) { - // [START video_stitcher_get_slate] + // [START videostitcher_get_slate] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -40,7 +40,7 @@ function main(projectId, location, slateId) { } getSlate(); - // [END video_stitcher_get_slate] + // [END videostitcher_get_slate] } // node getSlate.js diff --git a/media/video-stitcher/getVodAdTagDetail.js b/media/video-stitcher/getVodAdTagDetail.js index ec1fcdabea..2004c6609b 100644 --- a/media/video-stitcher/getVodAdTagDetail.js +++ b/media/video-stitcher/getVodAdTagDetail.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sessionId, adTagDetailId) { - // [START video_stitcher_get_vod_ad_tag_detail] + // [START videostitcher_get_vod_ad_tag_detail] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -46,7 +46,7 @@ function main(projectId, location, sessionId, adTagDetailId) { } getVodAdTagDetail(); - // [END video_stitcher_get_vod_ad_tag_detail] + // [END videostitcher_get_vod_ad_tag_detail] } // node getVodAdTagDetail.js diff --git a/media/video-stitcher/getVodSession.js b/media/video-stitcher/getVodSession.js index 9ad4fe3a01..17e2bb7f12 100644 --- a/media/video-stitcher/getVodSession.js +++ b/media/video-stitcher/getVodSession.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sessionId) { - // [START video_stitcher_get_vod_session] + // [START videostitcher_get_vod_session] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -40,7 +40,7 @@ function main(projectId, location, sessionId) { } getVodSession(); - // [END video_stitcher_get_vod_session] + // [END videostitcher_get_vod_session] } // node getVodSession.js diff --git a/media/video-stitcher/getVodStitchDetail.js b/media/video-stitcher/getVodStitchDetail.js index 1480189787..e31f5bbba3 100644 --- a/media/video-stitcher/getVodStitchDetail.js +++ b/media/video-stitcher/getVodStitchDetail.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sessionId, stitchDetailId) { - // [START video_stitcher_get_vod_stitch_detail] + // [START videostitcher_get_vod_stitch_detail] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -46,7 +46,7 @@ function main(projectId, location, sessionId, stitchDetailId) { } getVodStitchDetail(); - // [END video_stitcher_get_vod_stitch_detail] + // [END videostitcher_get_vod_stitch_detail] } // node getVodStitchDetail.js diff --git a/media/video-stitcher/listCdnKeys.js b/media/video-stitcher/listCdnKeys.js index 70372888e0..9ec5f97f9f 100644 --- a/media/video-stitcher/listCdnKeys.js +++ b/media/video-stitcher/listCdnKeys.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location) { - // [START video_stitcher_list_cdn_keys] + // [START videostitcher_list_cdn_keys] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -40,7 +40,7 @@ function main(projectId, location) { } listCdnKeys(); - // [END video_stitcher_list_cdn_keys] + // [END videostitcher_list_cdn_keys] } // node listCdnKeys.js diff --git a/media/video-stitcher/listLiveAdTagDetails.js b/media/video-stitcher/listLiveAdTagDetails.js index 0316d2eec7..1fe9d06c70 100644 --- a/media/video-stitcher/listLiveAdTagDetails.js +++ b/media/video-stitcher/listLiveAdTagDetails.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sessionId) { - // [START video_stitcher_list_live_ad_tag_details] + // [START videostitcher_list_live_ad_tag_details] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -43,7 +43,7 @@ function main(projectId, location, sessionId) { } listLiveAdTagDetails(); - // [END video_stitcher_list_live_ad_tag_details] + // [END videostitcher_list_live_ad_tag_details] } // node listLiveAdTagDetails.js diff --git a/media/video-stitcher/listSlates.js b/media/video-stitcher/listSlates.js index bffbd917d0..3a49b6bd89 100644 --- a/media/video-stitcher/listSlates.js +++ b/media/video-stitcher/listSlates.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location) { - // [START video_stitcher_list_slates] + // [START videostitcher_list_slates] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -40,7 +40,7 @@ function main(projectId, location) { } listSlates(); - // [END video_stitcher_list_slates] + // [END videostitcher_list_slates] } // node listSlates.js diff --git a/media/video-stitcher/listVodAdTagDetails.js b/media/video-stitcher/listVodAdTagDetails.js index eaedc91be8..3b80e1d2bd 100644 --- a/media/video-stitcher/listVodAdTagDetails.js +++ b/media/video-stitcher/listVodAdTagDetails.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sessionId) { - // [START video_stitcher_list_vod_ad_tag_details] + // [START videostitcher_list_vod_ad_tag_details] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -43,7 +43,7 @@ function main(projectId, location, sessionId) { } listVodAdTagDetails(); - // [END video_stitcher_list_vod_ad_tag_details] + // [END videostitcher_list_vod_ad_tag_details] } // node listVodAdTagDetails.js diff --git a/media/video-stitcher/listVodStitchDetails.js b/media/video-stitcher/listVodStitchDetails.js index 6e84f40673..842d63fe7a 100644 --- a/media/video-stitcher/listVodStitchDetails.js +++ b/media/video-stitcher/listVodStitchDetails.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, sessionId) { - // [START video_stitcher_list_vod_stitch_details] + // [START videostitcher_list_vod_stitch_details] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -43,7 +43,7 @@ function main(projectId, location, sessionId) { } listVodStitchDetails(); - // [END video_stitcher_list_vod_stitch_details] + // [END videostitcher_list_vod_stitch_details] } // node listVodStitchDetails.js diff --git a/media/video-stitcher/updateCdnKey.js b/media/video-stitcher/updateCdnKey.js index 5d1cfe9256..2ae161be71 100644 --- a/media/video-stitcher/updateCdnKey.js +++ b/media/video-stitcher/updateCdnKey.js @@ -24,7 +24,7 @@ function main( gCdnPrivateKey, akamaiTokenKey = '' ) { - // [START video_stitcher_update_cdn_key] + // [START videostitcher_update_cdn_key] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -73,7 +73,7 @@ function main( } updateCdnKey(); - // [END video_stitcher_update_cdn_key] + // [END videostitcher_update_cdn_key] } // node updateCdnKey.js diff --git a/media/video-stitcher/updateSlate.js b/media/video-stitcher/updateSlate.js index bd15424ebf..9b6b0aa92d 100644 --- a/media/video-stitcher/updateSlate.js +++ b/media/video-stitcher/updateSlate.js @@ -16,7 +16,7 @@ 'use strict'; function main(projectId, location, slateId, slateUri) { - // [START video_stitcher_update_slate] + // [START videostitcher_update_slate] /** * TODO(developer): Uncomment these variables before running the sample. */ @@ -48,7 +48,7 @@ function main(projectId, location, slateId, slateUri) { } updateSlate(); - // [END video_stitcher_update_slate] + // [END videostitcher_update_slate] } // node updateSlate.js