Skip to content

Commit 719e8a0

Browse files
yoshi-automationsofisl
authored andcommitted
fix(transcoder): update the API
#### transcoder:v1 The following keys were changed: - schemas.AudioStream.properties.displayName.description - schemas.AudioStream.properties.languageCode.description - schemas.Job.properties.templateId.description - schemas.TextStream.properties.displayName.description - schemas.TextStream.properties.languageCode.description
1 parent e053547 commit 719e8a0

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

discovery/transcoder-v1.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@
385385
}
386386
}
387387
},
388-
"revision": "20230222",
388+
"revision": "20230308",
389389
"rootUrl": "https://transcoder.googleapis.com/",
390390
"schemas": {
391391
"AdBreak": {
@@ -563,11 +563,11 @@
563563
"type": "string"
564564
},
565565
"displayName": {
566-
"description": "The name for this particular audio stream that will be added to the HLS/DASH manifest.",
566+
"description": "The name for this particular audio stream that will be added to the HLS/DASH manifest. Not supported in MP4 files.",
567567
"type": "string"
568568
},
569569
"languageCode": {
570-
"description": "The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.",
570+
"description": "The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. Not supported in MP4 files.",
571571
"type": "string"
572572
},
573573
"mapping": {
@@ -1058,7 +1058,7 @@
10581058
"type": "string"
10591059
},
10601060
"templateId": {
1061-
"description": "Input only. Specify the `template_id` to use for populating `Job.config`. The default is `preset/web-hd`. Preset Transcoder templates: - `preset/{preset_id}` - User defined JobTemplate: `{job_template_id}`",
1061+
"description": "Input only. Specify the `template_id` to use for populating `Job.config`. The default is `preset/web-hd`, which is the only supported preset. User defined JobTemplate: `{job_template_id}`",
10621062
"type": "string"
10631063
},
10641064
"ttlAfterCompletionDays": {
@@ -1525,11 +1525,11 @@
15251525
"type": "string"
15261526
},
15271527
"displayName": {
1528-
"description": "The name for this particular text stream that will be added to the HLS/DASH manifest.",
1528+
"description": "The name for this particular text stream that will be added to the HLS/DASH manifest. Not supported in MP4 files.",
15291529
"type": "string"
15301530
},
15311531
"languageCode": {
1532-
"description": "The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.",
1532+
"description": "The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. Not supported in MP4 files.",
15331533
"type": "string"
15341534
},
15351535
"mapping": {

src/apis/transcoder/v1.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -260,11 +260,11 @@ export namespace transcoder_v1 {
260260
*/
261261
codec?: string | null;
262262
/**
263-
* The name for this particular audio stream that will be added to the HLS/DASH manifest.
263+
* The name for this particular audio stream that will be added to the HLS/DASH manifest. Not supported in MP4 files.
264264
*/
265265
displayName?: string | null;
266266
/**
267-
* The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
267+
* The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. Not supported in MP4 files.
268268
*/
269269
languageCode?: string | null;
270270
/**
@@ -661,7 +661,7 @@ export namespace transcoder_v1 {
661661
*/
662662
state?: string | null;
663663
/**
664-
* Input only. Specify the `template_id` to use for populating `Job.config`. The default is `preset/web-hd`. Preset Transcoder templates: - `preset/{preset_id\}` - User defined JobTemplate: `{job_template_id\}`
664+
* Input only. Specify the `template_id` to use for populating `Job.config`. The default is `preset/web-hd`, which is the only supported preset. User defined JobTemplate: `{job_template_id\}`
665665
*/
666666
templateId?: string | null;
667667
/**
@@ -1010,11 +1010,11 @@ export namespace transcoder_v1 {
10101010
*/
10111011
codec?: string | null;
10121012
/**
1013-
* The name for this particular text stream that will be added to the HLS/DASH manifest.
1013+
* The name for this particular text stream that will be added to the HLS/DASH manifest. Not supported in MP4 files.
10141014
*/
10151015
displayName?: string | null;
10161016
/**
1017-
* The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
1017+
* The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. Not supported in MP4 files.
10181018
*/
10191019
languageCode?: string | null;
10201020
/**

0 commit comments

Comments
 (0)