Skip to content

Commit cafb7e5

Browse files
1 parent 788f491 commit cafb7e5

15 files changed

Lines changed: 375 additions & 18 deletions

File tree

clients/google-api-services-displayvideo/v2/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-displayvideo</artifactId>
25-
<version>v2-rev20260601-2.0.0</version>
25+
<version>v2-rev20260606-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-displayvideo:v2-rev20260601-2.0.0'
38+
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20260606-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-displayvideo/v2/2.0.0/com/google/api/services/displayvideo/v2/model/AssignedTargetingOption.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,14 @@ public final class AssignedTargetingOption extends com.google.api.client.json.Ge
463463
@com.google.api.client.util.Key
464464
private YoutubeChannelAssignedTargetingOptionDetails youtubeChannelDetails;
465465

466+
/**
467+
* YouTube channel pack details. This field will be populated when the targeting_type is
468+
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
469+
* The value may be {@code null}.
470+
*/
471+
@com.google.api.client.util.Key
472+
private YoutubeChannelPackAssignedTargetingOptionDetails youtubeChannelPackDetails;
473+
466474
/**
467475
* YouTube video details. This field will be populated when the targeting_type is
468476
* `TARGETING_TYPE_YOUTUBE_VIDEO`.
@@ -1491,6 +1499,25 @@ public AssignedTargetingOption setYoutubeChannelDetails(YoutubeChannelAssignedTa
14911499
return this;
14921500
}
14931501

1502+
/**
1503+
* YouTube channel pack details. This field will be populated when the targeting_type is
1504+
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
1505+
* @return value or {@code null} for none
1506+
*/
1507+
public YoutubeChannelPackAssignedTargetingOptionDetails getYoutubeChannelPackDetails() {
1508+
return youtubeChannelPackDetails;
1509+
}
1510+
1511+
/**
1512+
* YouTube channel pack details. This field will be populated when the targeting_type is
1513+
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
1514+
* @param youtubeChannelPackDetails youtubeChannelPackDetails or {@code null} for none
1515+
*/
1516+
public AssignedTargetingOption setYoutubeChannelPackDetails(YoutubeChannelPackAssignedTargetingOptionDetails youtubeChannelPackDetails) {
1517+
this.youtubeChannelPackDetails = youtubeChannelPackDetails;
1518+
return this;
1519+
}
1520+
14941521
/**
14951522
* YouTube video details. This field will be populated when the targeting_type is
14961523
* `TARGETING_TYPE_YOUTUBE_VIDEO`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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.displayvideo.v2.model;
18+
19+
/**
20+
* Details for YouTube channel pack assigned targeting option. This will be populated in the
21+
* youtube_channel_pack_details field when targeting_type is `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Display & Video 360 API. For a detailed explanation
25+
* see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class YoutubeChannelPackAssignedTargetingOptionDetails extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Required. The ID of the YouTube channel pack.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
39+
private java.lang.Long channelPackId;
40+
41+
/**
42+
* Optional. Indicates if this option is being negatively targeted.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.Boolean negative;
47+
48+
/**
49+
* Required. The ID of the YouTube channel pack.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.Long getChannelPackId() {
53+
return channelPackId;
54+
}
55+
56+
/**
57+
* Required. The ID of the YouTube channel pack.
58+
* @param channelPackId channelPackId or {@code null} for none
59+
*/
60+
public YoutubeChannelPackAssignedTargetingOptionDetails setChannelPackId(java.lang.Long channelPackId) {
61+
this.channelPackId = channelPackId;
62+
return this;
63+
}
64+
65+
/**
66+
* Optional. Indicates if this option is being negatively targeted.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.Boolean getNegative() {
70+
return negative;
71+
}
72+
73+
/**
74+
* Optional. Indicates if this option is being negatively targeted.
75+
* @param negative negative or {@code null} for none
76+
*/
77+
public YoutubeChannelPackAssignedTargetingOptionDetails setNegative(java.lang.Boolean negative) {
78+
this.negative = negative;
79+
return this;
80+
}
81+
82+
@Override
83+
public YoutubeChannelPackAssignedTargetingOptionDetails set(String fieldName, Object value) {
84+
return (YoutubeChannelPackAssignedTargetingOptionDetails) super.set(fieldName, value);
85+
}
86+
87+
@Override
88+
public YoutubeChannelPackAssignedTargetingOptionDetails clone() {
89+
return (YoutubeChannelPackAssignedTargetingOptionDetails) super.clone();
90+
}
91+
92+
}

clients/google-api-services-displayvideo/v2/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-displayvideo</artifactId>
11-
<version>v2-rev20260601-2.0.0</version>
12-
<name>Display &amp; Video 360 API v2-rev20260601-2.0.0</name>
11+
<version>v2-rev20260606-2.0.0</version>
12+
<name>Display &amp; Video 360 API v2-rev20260606-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-displayvideo/v2/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-displayvideo</artifactId>
25-
<version>v2-rev20260601-2.0.0</version>
25+
<version>v2-rev20260606-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-displayvideo:v2-rev20260601-2.0.0'
38+
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20260606-2.0.0'
3939
}
4040
```
4141

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

clients/google-api-services-displayvideo/v3/2.0.0/com/google/api/services/displayvideo/v3/model/AssignedTargetingOption.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,14 @@ public final class AssignedTargetingOption extends com.google.api.client.json.Ge
474474
@com.google.api.client.util.Key
475475
private YoutubeChannelAssignedTargetingOptionDetails youtubeChannelDetails;
476476

477+
/**
478+
* YouTube channel pack details. This field will be populated when the targeting_type is
479+
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
480+
* The value may be {@code null}.
481+
*/
482+
@com.google.api.client.util.Key
483+
private YoutubeChannelPackAssignedTargetingOptionDetails youtubeChannelPackDetails;
484+
477485
/**
478486
* YouTube video details. This field will be populated when the targeting_type is
479487
* `TARGETING_TYPE_YOUTUBE_VIDEO`.
@@ -1527,6 +1535,25 @@ public AssignedTargetingOption setYoutubeChannelDetails(YoutubeChannelAssignedTa
15271535
return this;
15281536
}
15291537

1538+
/**
1539+
* YouTube channel pack details. This field will be populated when the targeting_type is
1540+
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
1541+
* @return value or {@code null} for none
1542+
*/
1543+
public YoutubeChannelPackAssignedTargetingOptionDetails getYoutubeChannelPackDetails() {
1544+
return youtubeChannelPackDetails;
1545+
}
1546+
1547+
/**
1548+
* YouTube channel pack details. This field will be populated when the targeting_type is
1549+
* `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
1550+
* @param youtubeChannelPackDetails youtubeChannelPackDetails or {@code null} for none
1551+
*/
1552+
public AssignedTargetingOption setYoutubeChannelPackDetails(YoutubeChannelPackAssignedTargetingOptionDetails youtubeChannelPackDetails) {
1553+
this.youtubeChannelPackDetails = youtubeChannelPackDetails;
1554+
return this;
1555+
}
1556+
15301557
/**
15311558
* YouTube video details. This field will be populated when the targeting_type is
15321559
* `TARGETING_TYPE_YOUTUBE_VIDEO`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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.displayvideo.v3.model;
18+
19+
/**
20+
* Details for YouTube channel pack assigned targeting option. This will be populated in the
21+
* youtube_channel_pack_details field when targeting_type is `TARGETING_TYPE_YOUTUBE_CHANNEL_PACK`.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Display & Video 360 API. For a detailed explanation
25+
* see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class YoutubeChannelPackAssignedTargetingOptionDetails extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Required. The ID of the YouTube channel pack.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
39+
private java.lang.Long channelPackId;
40+
41+
/**
42+
* Optional. Indicates if this option is being negatively targeted.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.Boolean negative;
47+
48+
/**
49+
* Required. The ID of the YouTube channel pack.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.Long getChannelPackId() {
53+
return channelPackId;
54+
}
55+
56+
/**
57+
* Required. The ID of the YouTube channel pack.
58+
* @param channelPackId channelPackId or {@code null} for none
59+
*/
60+
public YoutubeChannelPackAssignedTargetingOptionDetails setChannelPackId(java.lang.Long channelPackId) {
61+
this.channelPackId = channelPackId;
62+
return this;
63+
}
64+
65+
/**
66+
* Optional. Indicates if this option is being negatively targeted.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.Boolean getNegative() {
70+
return negative;
71+
}
72+
73+
/**
74+
* Optional. Indicates if this option is being negatively targeted.
75+
* @param negative negative or {@code null} for none
76+
*/
77+
public YoutubeChannelPackAssignedTargetingOptionDetails setNegative(java.lang.Boolean negative) {
78+
this.negative = negative;
79+
return this;
80+
}
81+
82+
@Override
83+
public YoutubeChannelPackAssignedTargetingOptionDetails set(String fieldName, Object value) {
84+
return (YoutubeChannelPackAssignedTargetingOptionDetails) super.set(fieldName, value);
85+
}
86+
87+
@Override
88+
public YoutubeChannelPackAssignedTargetingOptionDetails clone() {
89+
return (YoutubeChannelPackAssignedTargetingOptionDetails) super.clone();
90+
}
91+
92+
}

clients/google-api-services-displayvideo/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-displayvideo</artifactId>
11-
<version>v3-rev20260601-2.0.0</version>
12-
<name>Display &amp; Video 360 API v3-rev20260601-2.0.0</name>
11+
<version>v3-rev20260606-2.0.0</version>
12+
<name>Display &amp; Video 360 API v3-rev20260606-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)