Skip to content

Commit 993f887

Browse files
1 parent ab0e158 commit 993f887

File tree

5 files changed

+43
-70
lines changed

5 files changed

+43
-70
lines changed

clients/google-api-services-youtube/v3/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-youtube</artifactId>
25-
<version>v3-rev20251125-2.0.0</version>
25+
<version>v3-rev20251217-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-youtube:v3-rev20251125-2.0.0'
38+
implementation 'com.google.apis:google-api-services-youtube:v3-rev20251217-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/YouTube.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18550,6 +18550,22 @@ public BatchGetStats setUploadProtocol(java.lang.String uploadProtocol) {
1855018550
return (BatchGetStats) super.setUploadProtocol(uploadProtocol);
1855118551
}
1855218552

18553+
/** Required. Return videos with the given ids. */
18554+
@com.google.api.client.util.Key
18555+
private java.util.List<java.lang.String> id;
18556+
18557+
/** Required. Return videos with the given ids.
18558+
*/
18559+
public java.util.List<java.lang.String> getId() {
18560+
return id;
18561+
}
18562+
18563+
/** Required. Return videos with the given ids. */
18564+
public BatchGetStats setId(java.util.List<java.lang.String> id) {
18565+
this.id = id;
18566+
return this;
18567+
}
18568+
1855318569
/**
1855418570
* Optional. **Note:** This parameter is intended exclusively for YouTube content
1855518571
* partners. The `onBehalfOfContentOwner` parameter indicates that the request's
@@ -18626,22 +18642,6 @@ public BatchGetStats setPart(java.util.List<java.lang.String> part) {
1862618642
return this;
1862718643
}
1862818644

18629-
/** Required. Return videos with the given ids. */
18630-
@com.google.api.client.util.Key
18631-
private java.util.List<java.lang.String> videoIds;
18632-
18633-
/** Required. Return videos with the given ids.
18634-
*/
18635-
public java.util.List<java.lang.String> getVideoIds() {
18636-
return videoIds;
18637-
}
18638-
18639-
/** Required. Return videos with the given ids. */
18640-
public BatchGetStats setVideoIds(java.util.List<java.lang.String> videoIds) {
18641-
this.videoIds = videoIds;
18642-
return this;
18643-
}
18644-
1864518645
@Override
1864618646
public BatchGetStats set(String parameterName, Object value) {
1864718647
return (BatchGetStats) super.set(parameterName, value);

clients/google-api-services-youtube/v3/2.0.0/com/google/api/services/youtube/model/VideoStat.java

Lines changed: 21 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,19 @@ public final class VideoStat extends com.google.api.client.json.GenericJson {
4545
private java.lang.String etag;
4646

4747
/**
48-
* Output only. Identifies what kind of resource this is. Value: the fixed string
49-
* "youtube#videoStats".
48+
* Output only. The ID that YouTube uses to uniquely identify the video.
5049
* The value may be {@code null}.
5150
*/
5251
@com.google.api.client.util.Key
53-
private java.lang.String kind;
52+
private java.lang.String id;
5453

5554
/**
56-
* Output only. Identifier. The resource name for the `VideoStats` resource, in the format
57-
* `videoStats/{video_stat}`.
55+
* Output only. Identifies what kind of resource this is. Value: the fixed string
56+
* "youtube#videoStats".
5857
* The value may be {@code null}.
5958
*/
6059
@com.google.api.client.util.Key
61-
private java.lang.String name;
60+
private java.lang.String kind;
6261

6362
/**
6463
* Output only. The VideoStatsSnippet object contains basic details about the video, such publish
@@ -75,13 +74,6 @@ public final class VideoStat extends com.google.api.client.json.GenericJson {
7574
@com.google.api.client.util.Key
7675
private VideoStatsStatistics statistics;
7776

78-
/**
79-
* Output only. The ID that YouTube uses to uniquely identify the video.
80-
* The value may be {@code null}.
81-
*/
82-
@com.google.api.client.util.Key
83-
private java.lang.String videoId;
84-
8577
/**
8678
* Output only. The VideoStatsContentDetails object contains information about the video content,
8779
* including the length of the video.
@@ -119,40 +111,38 @@ public VideoStat setEtag(java.lang.String etag) {
119111
}
120112

121113
/**
122-
* Output only. Identifies what kind of resource this is. Value: the fixed string
123-
* "youtube#videoStats".
114+
* Output only. The ID that YouTube uses to uniquely identify the video.
124115
* @return value or {@code null} for none
125116
*/
126-
public java.lang.String getKind() {
127-
return kind;
117+
public java.lang.String getId() {
118+
return id;
128119
}
129120

130121
/**
131-
* Output only. Identifies what kind of resource this is. Value: the fixed string
132-
* "youtube#videoStats".
133-
* @param kind kind or {@code null} for none
122+
* Output only. The ID that YouTube uses to uniquely identify the video.
123+
* @param id id or {@code null} for none
134124
*/
135-
public VideoStat setKind(java.lang.String kind) {
136-
this.kind = kind;
125+
public VideoStat setId(java.lang.String id) {
126+
this.id = id;
137127
return this;
138128
}
139129

140130
/**
141-
* Output only. Identifier. The resource name for the `VideoStats` resource, in the format
142-
* `videoStats/{video_stat}`.
131+
* Output only. Identifies what kind of resource this is. Value: the fixed string
132+
* "youtube#videoStats".
143133
* @return value or {@code null} for none
144134
*/
145-
public java.lang.String getName() {
146-
return name;
135+
public java.lang.String getKind() {
136+
return kind;
147137
}
148138

149139
/**
150-
* Output only. Identifier. The resource name for the `VideoStats` resource, in the format
151-
* `videoStats/{video_stat}`.
152-
* @param name name or {@code null} for none
140+
* Output only. Identifies what kind of resource this is. Value: the fixed string
141+
* "youtube#videoStats".
142+
* @param kind kind or {@code null} for none
153143
*/
154-
public VideoStat setName(java.lang.String name) {
155-
this.name = name;
144+
public VideoStat setKind(java.lang.String kind) {
145+
this.kind = kind;
156146
return this;
157147
}
158148

@@ -192,23 +182,6 @@ public VideoStat setStatistics(VideoStatsStatistics statistics) {
192182
return this;
193183
}
194184

195-
/**
196-
* Output only. The ID that YouTube uses to uniquely identify the video.
197-
* @return value or {@code null} for none
198-
*/
199-
public java.lang.String getVideoId() {
200-
return videoId;
201-
}
202-
203-
/**
204-
* Output only. The ID that YouTube uses to uniquely identify the video.
205-
* @param videoId videoId or {@code null} for none
206-
*/
207-
public VideoStat setVideoId(java.lang.String videoId) {
208-
this.videoId = videoId;
209-
return this;
210-
}
211-
212185
@Override
213186
public VideoStat set(String fieldName, Object value) {
214187
return (VideoStat) super.set(fieldName, value);

clients/google-api-services-youtube/v3/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-youtube</artifactId>
11-
<version>v3-rev20251125-2.0.0</version>
12-
<name>YouTube Data API v3 v3-rev20251125-2.0.0</name>
11+
<version>v3-rev20251217-2.0.0</version>
12+
<name>YouTube Data API v3 v3-rev20251217-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-youtube/v3/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-youtube</artifactId>
25-
<version>v3-rev20251125-2.0.0</version>
25+
<version>v3-rev20251217-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-youtube:v3-rev20251125-2.0.0'
38+
implementation 'com.google.apis:google-api-services-youtube:v3-rev20251217-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)