Skip to content

Commit f3fbd9d

Browse files
1 parent 365483e commit f3fbd9d

File tree

6 files changed

+255
-6
lines changed

6 files changed

+255
-6
lines changed

clients/google-api-services-transcoder/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-transcoder</artifactId>
25-
<version>v1-rev20250630-2.0.0</version>
25+
<version>v1-rev20250723-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-transcoder:v1-rev20250630-2.0.0'
38+
implementation 'com.google.apis:google-api-services-transcoder:v1-rev20250723-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-transcoder/v1/2.0.0/com/google/api/services/transcoder/v1/model/Input.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class Input extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Input Attributes.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private InputAttributes attributes;
38+
3239
/**
3340
* A unique key for this input. Must be specified when using advanced mapping and edit lists.
3441
* The value may be {@code null}.
@@ -53,6 +60,23 @@ public final class Input extends com.google.api.client.json.GenericJson {
5360
@com.google.api.client.util.Key
5461
private java.lang.String uri;
5562

63+
/**
64+
* Optional. Input Attributes.
65+
* @return value or {@code null} for none
66+
*/
67+
public InputAttributes getAttributes() {
68+
return attributes;
69+
}
70+
71+
/**
72+
* Optional. Input Attributes.
73+
* @param attributes attributes or {@code null} for none
74+
*/
75+
public Input setAttributes(InputAttributes attributes) {
76+
this.attributes = attributes;
77+
return this;
78+
}
79+
5680
/**
5781
* A unique key for this input. Must be specified when using advanced mapping and edit lists.
5882
* @return value or {@code null} for none
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.transcoder.v1.model;
18+
19+
/**
20+
* Input attributes that provide additional information about the input asset.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Transcoder API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class InputAttributes extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. A list of track definitions for the input asset.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<TrackDefinition> trackDefinitions;
38+
39+
/**
40+
* Optional. A list of track definitions for the input asset.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<TrackDefinition> getTrackDefinitions() {
44+
return trackDefinitions;
45+
}
46+
47+
/**
48+
* Optional. A list of track definitions for the input asset.
49+
* @param trackDefinitions trackDefinitions or {@code null} for none
50+
*/
51+
public InputAttributes setTrackDefinitions(java.util.List<TrackDefinition> trackDefinitions) {
52+
this.trackDefinitions = trackDefinitions;
53+
return this;
54+
}
55+
56+
@Override
57+
public InputAttributes set(String fieldName, Object value) {
58+
return (InputAttributes) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public InputAttributes clone() {
63+
return (InputAttributes) super.clone();
64+
}
65+
66+
}
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.transcoder.v1.model;
18+
19+
/**
20+
* Track definition for the input asset.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Transcoder API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class TrackDefinition extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Whether to automatically detect the languages present in the track. If true, the
34+
* system will attempt to identify all the languages present in the track and populate the
35+
* languages field.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.Boolean detectLanguages;
40+
41+
/**
42+
* Output only. A list of languages detected in the input asset, represented by a BCP 47 language
43+
* code, such as "en-US" or "sr-Latn". For more information, see
44+
* https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. This field is only populated
45+
* if the detect_languages field is set to true.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.util.List<java.lang.String> detectedLanguages;
50+
51+
/**
52+
* The input track.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.Integer inputTrack;
57+
58+
/**
59+
* Optional. A list of languages spoken in the input asset, represented by a BCP 47 language code,
60+
* such as "en-US" or "sr-Latn". For more information, see
61+
* https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private java.util.List<java.lang.String> languages;
66+
67+
/**
68+
* Optional. Whether to automatically detect the languages present in the track. If true, the
69+
* system will attempt to identify all the languages present in the track and populate the
70+
* languages field.
71+
* @return value or {@code null} for none
72+
*/
73+
public java.lang.Boolean getDetectLanguages() {
74+
return detectLanguages;
75+
}
76+
77+
/**
78+
* Optional. Whether to automatically detect the languages present in the track. If true, the
79+
* system will attempt to identify all the languages present in the track and populate the
80+
* languages field.
81+
* @param detectLanguages detectLanguages or {@code null} for none
82+
*/
83+
public TrackDefinition setDetectLanguages(java.lang.Boolean detectLanguages) {
84+
this.detectLanguages = detectLanguages;
85+
return this;
86+
}
87+
88+
/**
89+
* Output only. A list of languages detected in the input asset, represented by a BCP 47 language
90+
* code, such as "en-US" or "sr-Latn". For more information, see
91+
* https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. This field is only populated
92+
* if the detect_languages field is set to true.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getDetectedLanguages() {
96+
return detectedLanguages;
97+
}
98+
99+
/**
100+
* Output only. A list of languages detected in the input asset, represented by a BCP 47 language
101+
* code, such as "en-US" or "sr-Latn". For more information, see
102+
* https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. This field is only populated
103+
* if the detect_languages field is set to true.
104+
* @param detectedLanguages detectedLanguages or {@code null} for none
105+
*/
106+
public TrackDefinition setDetectedLanguages(java.util.List<java.lang.String> detectedLanguages) {
107+
this.detectedLanguages = detectedLanguages;
108+
return this;
109+
}
110+
111+
/**
112+
* The input track.
113+
* @return value or {@code null} for none
114+
*/
115+
public java.lang.Integer getInputTrack() {
116+
return inputTrack;
117+
}
118+
119+
/**
120+
* The input track.
121+
* @param inputTrack inputTrack or {@code null} for none
122+
*/
123+
public TrackDefinition setInputTrack(java.lang.Integer inputTrack) {
124+
this.inputTrack = inputTrack;
125+
return this;
126+
}
127+
128+
/**
129+
* Optional. A list of languages spoken in the input asset, represented by a BCP 47 language code,
130+
* such as "en-US" or "sr-Latn". For more information, see
131+
* https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
132+
* @return value or {@code null} for none
133+
*/
134+
public java.util.List<java.lang.String> getLanguages() {
135+
return languages;
136+
}
137+
138+
/**
139+
* Optional. A list of languages spoken in the input asset, represented by a BCP 47 language code,
140+
* such as "en-US" or "sr-Latn". For more information, see
141+
* https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
142+
* @param languages languages or {@code null} for none
143+
*/
144+
public TrackDefinition setLanguages(java.util.List<java.lang.String> languages) {
145+
this.languages = languages;
146+
return this;
147+
}
148+
149+
@Override
150+
public TrackDefinition set(String fieldName, Object value) {
151+
return (TrackDefinition) super.set(fieldName, value);
152+
}
153+
154+
@Override
155+
public TrackDefinition clone() {
156+
return (TrackDefinition) super.clone();
157+
}
158+
159+
}

clients/google-api-services-transcoder/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-transcoder</artifactId>
11-
<version>v1-rev20250630-2.0.0</version>
12-
<name>Transcoder API v1-rev20250630-2.0.0</name>
11+
<version>v1-rev20250723-2.0.0</version>
12+
<name>Transcoder API v1-rev20250723-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-transcoder/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-transcoder</artifactId>
25-
<version>v1-rev20250630-2.0.0</version>
25+
<version>v1-rev20250723-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-transcoder:v1-rev20250630-2.0.0'
38+
implementation 'com.google.apis:google-api-services-transcoder:v1-rev20250723-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)