Skip to content

Commit af8bca7

Browse files
1 parent 0afc505 commit af8bca7

File tree

15 files changed

+435
-18
lines changed

15 files changed

+435
-18
lines changed

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

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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+
* The video ad inventory control used in certain YouTube line item types.
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 Display & Video 360 API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class VideoAdInventoryControl extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Whether ads can serve as in-feed format.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean allowInFeed;
39+
40+
/**
41+
* Optional. Whether ads can serve as in-stream format.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean allowInStream;
46+
47+
/**
48+
* Optional. Whether ads can serve as shorts format.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.Boolean allowShorts;
53+
54+
/**
55+
* Optional. Whether ads can serve as in-feed format.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.Boolean getAllowInFeed() {
59+
return allowInFeed;
60+
}
61+
62+
/**
63+
* Optional. Whether ads can serve as in-feed format.
64+
* @param allowInFeed allowInFeed or {@code null} for none
65+
*/
66+
public VideoAdInventoryControl setAllowInFeed(java.lang.Boolean allowInFeed) {
67+
this.allowInFeed = allowInFeed;
68+
return this;
69+
}
70+
71+
/**
72+
* Optional. Whether ads can serve as in-stream format.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.Boolean getAllowInStream() {
76+
return allowInStream;
77+
}
78+
79+
/**
80+
* Optional. Whether ads can serve as in-stream format.
81+
* @param allowInStream allowInStream or {@code null} for none
82+
*/
83+
public VideoAdInventoryControl setAllowInStream(java.lang.Boolean allowInStream) {
84+
this.allowInStream = allowInStream;
85+
return this;
86+
}
87+
88+
/**
89+
* Optional. Whether ads can serve as shorts format.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.Boolean getAllowShorts() {
93+
return allowShorts;
94+
}
95+
96+
/**
97+
* Optional. Whether ads can serve as shorts format.
98+
* @param allowShorts allowShorts or {@code null} for none
99+
*/
100+
public VideoAdInventoryControl setAllowShorts(java.lang.Boolean allowShorts) {
101+
this.allowShorts = allowShorts;
102+
return this;
103+
}
104+
105+
@Override
106+
public VideoAdInventoryControl set(String fieldName, Object value) {
107+
return (VideoAdInventoryControl) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public VideoAdInventoryControl clone() {
112+
return (VideoAdInventoryControl) super.clone();
113+
}
114+
115+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,13 @@ public final class YoutubeAndPartnersSettings extends com.google.api.client.json
9999
@com.google.api.client.util.Key
100100
private YoutubeAndPartnersThirdPartyMeasurementSettings thirdPartyMeasurementSettings;
101101

102+
/**
103+
* Optional. The settings to control which inventory is allowed for this line item.
104+
* The value may be {@code null}.
105+
*/
106+
@com.google.api.client.util.Key
107+
private VideoAdInventoryControl videoAdInventoryControl;
108+
102109
/**
103110
* Optional. The settings related to VideoAdSequence.
104111
* The value may be {@code null}.
@@ -279,6 +286,23 @@ public YoutubeAndPartnersSettings setThirdPartyMeasurementSettings(YoutubeAndPar
279286
return this;
280287
}
281288

289+
/**
290+
* Optional. The settings to control which inventory is allowed for this line item.
291+
* @return value or {@code null} for none
292+
*/
293+
public VideoAdInventoryControl getVideoAdInventoryControl() {
294+
return videoAdInventoryControl;
295+
}
296+
297+
/**
298+
* Optional. The settings to control which inventory is allowed for this line item.
299+
* @param videoAdInventoryControl videoAdInventoryControl or {@code null} for none
300+
*/
301+
public YoutubeAndPartnersSettings setVideoAdInventoryControl(VideoAdInventoryControl videoAdInventoryControl) {
302+
this.videoAdInventoryControl = videoAdInventoryControl;
303+
return this;
304+
}
305+
282306
/**
283307
* Optional. The settings related to VideoAdSequence.
284308
* @return value or {@code null} for none

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-rev20250625-2.0.0</version>
12-
<name>Display &amp; Video 360 API v2-rev20250625-2.0.0</name>
11+
<version>v2-rev20250709-2.0.0</version>
12+
<name>Display &amp; Video 360 API v2-rev20250709-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-rev20250625-2.0.0</version>
25+
<version>v2-rev20250709-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-rev20250625-2.0.0'
38+
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20250709-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-rev20250625-2.0.0</version>
25+
<version>v3-rev20250709-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-rev20250625-2.0.0'
38+
implementation 'com.google.apis:google-api-services-displayvideo:v3-rev20250709-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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+
* The video ad inventory control used in certain YouTube line item types.
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 Display & Video 360 API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class VideoAdInventoryControl extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Whether ads can serve as in-feed format.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean allowInFeed;
39+
40+
/**
41+
* Optional. Whether ads can serve as in-stream format.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean allowInStream;
46+
47+
/**
48+
* Optional. Whether ads can serve as shorts format.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.Boolean allowShorts;
53+
54+
/**
55+
* Optional. Whether ads can serve as in-feed format.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.Boolean getAllowInFeed() {
59+
return allowInFeed;
60+
}
61+
62+
/**
63+
* Optional. Whether ads can serve as in-feed format.
64+
* @param allowInFeed allowInFeed or {@code null} for none
65+
*/
66+
public VideoAdInventoryControl setAllowInFeed(java.lang.Boolean allowInFeed) {
67+
this.allowInFeed = allowInFeed;
68+
return this;
69+
}
70+
71+
/**
72+
* Optional. Whether ads can serve as in-stream format.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.Boolean getAllowInStream() {
76+
return allowInStream;
77+
}
78+
79+
/**
80+
* Optional. Whether ads can serve as in-stream format.
81+
* @param allowInStream allowInStream or {@code null} for none
82+
*/
83+
public VideoAdInventoryControl setAllowInStream(java.lang.Boolean allowInStream) {
84+
this.allowInStream = allowInStream;
85+
return this;
86+
}
87+
88+
/**
89+
* Optional. Whether ads can serve as shorts format.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.Boolean getAllowShorts() {
93+
return allowShorts;
94+
}
95+
96+
/**
97+
* Optional. Whether ads can serve as shorts format.
98+
* @param allowShorts allowShorts or {@code null} for none
99+
*/
100+
public VideoAdInventoryControl setAllowShorts(java.lang.Boolean allowShorts) {
101+
this.allowShorts = allowShorts;
102+
return this;
103+
}
104+
105+
@Override
106+
public VideoAdInventoryControl set(String fieldName, Object value) {
107+
return (VideoAdInventoryControl) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public VideoAdInventoryControl clone() {
112+
return (VideoAdInventoryControl) super.clone();
113+
}
114+
115+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,13 @@ public final class YoutubeAndPartnersSettings extends com.google.api.client.json
9292
@com.google.api.client.util.Key
9393
private ThirdPartyMeasurementConfigs thirdPartyMeasurementConfigs;
9494

95+
/**
96+
* Optional. The settings to control which inventory is allowed for this line item.
97+
* The value may be {@code null}.
98+
*/
99+
@com.google.api.client.util.Key
100+
private VideoAdInventoryControl videoAdInventoryControl;
101+
95102
/**
96103
* Optional. The settings related to VideoAdSequence.
97104
* The value may be {@code null}.
@@ -255,6 +262,23 @@ public YoutubeAndPartnersSettings setThirdPartyMeasurementConfigs(ThirdPartyMeas
255262
return this;
256263
}
257264

265+
/**
266+
* Optional. The settings to control which inventory is allowed for this line item.
267+
* @return value or {@code null} for none
268+
*/
269+
public VideoAdInventoryControl getVideoAdInventoryControl() {
270+
return videoAdInventoryControl;
271+
}
272+
273+
/**
274+
* Optional. The settings to control which inventory is allowed for this line item.
275+
* @param videoAdInventoryControl videoAdInventoryControl or {@code null} for none
276+
*/
277+
public YoutubeAndPartnersSettings setVideoAdInventoryControl(VideoAdInventoryControl videoAdInventoryControl) {
278+
this.videoAdInventoryControl = videoAdInventoryControl;
279+
return this;
280+
}
281+
258282
/**
259283
* Optional. The settings related to VideoAdSequence.
260284
* @return value or {@code null} for none

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-rev20250625-2.0.0</version>
12-
<name>Display &amp; Video 360 API v3-rev20250625-2.0.0</name>
11+
<version>v3-rev20250709-2.0.0</version>
12+
<name>Display &amp; Video 360 API v3-rev20250709-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)