Skip to content

Commit 8de1b82

Browse files
1 parent 236532c commit 8de1b82

File tree

12 files changed

+120
-120
lines changed

12 files changed

+120
-120
lines changed

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

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

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1471,7 +1471,7 @@ public class AdGroupAds {
14711471
* parameters, call the {@link Get#execute()} method to invoke the remote operation.
14721472
*
14731473
* @param advertiserId Required. The ID of the advertiser this ad group ad belongs to.
1474-
* @param adGroupAdId Required. The ID of the ad group ad to fetch.
1474+
* @param adGroupAdId Required. The ID of the ad to fetch.
14751475
* @return the request
14761476
*/
14771477
public Get get(java.lang.Long advertiserId, java.lang.Long adGroupAdId) throws java.io.IOException {
@@ -1501,7 +1501,7 @@ public class Get extends DisplayVideoRequest<com.google.api.services.displayvide
15011501
* must be called to initialize this instance immediately after invoking the constructor. </p>
15021502
*
15031503
* @param advertiserId Required. The ID of the advertiser this ad group ad belongs to.
1504-
* @param adGroupAdId Required. The ID of the ad group ad to fetch.
1504+
* @param adGroupAdId Required. The ID of the ad to fetch.
15051505
* @since 1.13
15061506
*/
15071507
protected Get(java.lang.Long advertiserId, java.lang.Long adGroupAdId) {
@@ -1591,17 +1591,17 @@ public Get setAdvertiserId(java.lang.Long advertiserId) {
15911591
return this;
15921592
}
15931593

1594-
/** Required. The ID of the ad group ad to fetch. */
1594+
/** Required. The ID of the ad to fetch. */
15951595
@com.google.api.client.util.Key
15961596
private java.lang.Long adGroupAdId;
15971597

1598-
/** Required. The ID of the ad group ad to fetch.
1598+
/** Required. The ID of the ad to fetch.
15991599
*/
16001600
public java.lang.Long getAdGroupAdId() {
16011601
return adGroupAdId;
16021602
}
16031603

1604-
/** Required. The ID of the ad group ad to fetch. */
1604+
/** Required. The ID of the ad to fetch. */
16051605
public Get setAdGroupAdId(java.lang.Long adGroupAdId) {
16061606
this.adGroupAdId = adGroupAdId;
16071607
return this;
@@ -1620,7 +1620,7 @@ public Get set(String parameterName, Object value) {
16201620
* This request holds the parameters needed by the displayvideo server. After setting any optional
16211621
* parameters, call the {@link List#execute()} method to invoke the remote operation.
16221622
*
1623-
* @param advertiserId Required. The ID of the advertiser the ad groups belongs to.
1623+
* @param advertiserId Required. The ID of the advertiser the ads belong to.
16241624
* @return the request
16251625
*/
16261626
public List list(java.lang.Long advertiserId) throws java.io.IOException {
@@ -1646,7 +1646,7 @@ public class List extends DisplayVideoRequest<com.google.api.services.displayvid
16461646
* {@link List#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
16471647
* must be called to initialize this instance immediately after invoking the constructor. </p>
16481648
*
1649-
* @param advertiserId Required. The ID of the advertiser the ad groups belongs to.
1649+
* @param advertiserId Required. The ID of the advertiser the ads belong to.
16501650
* @since 1.13
16511651
*/
16521652
protected List(java.lang.Long advertiserId) {
@@ -1719,45 +1719,45 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
17191719
return (List) super.setUploadProtocol(uploadProtocol);
17201720
}
17211721

1722-
/** Required. The ID of the advertiser the ad groups belongs to. */
1722+
/** Required. The ID of the advertiser the ads belong to. */
17231723
@com.google.api.client.util.Key
17241724
private java.lang.Long advertiserId;
17251725

1726-
/** Required. The ID of the advertiser the ad groups belongs to.
1726+
/** Required. The ID of the advertiser the ads belong to.
17271727
*/
17281728
public java.lang.Long getAdvertiserId() {
17291729
return advertiserId;
17301730
}
17311731

1732-
/** Required. The ID of the advertiser the ad groups belongs to. */
1732+
/** Required. The ID of the advertiser the ads belong to. */
17331733
public List setAdvertiserId(java.lang.Long advertiserId) {
17341734
this.advertiserId = advertiserId;
17351735
return this;
17361736
}
17371737

17381738
/**
1739-
* Optional. Allows filtering by custom ad group ad fields. Supported syntax: * Filter
1740-
* expressions are made up of one or more restrictions. * Restrictions can be combined by
1741-
* `AND` and `OR`. A sequence of restrictions implicitly uses `AND`. * A restriction has the
1742-
* form of `{field} {operator} {value}`. * All fields must use the `EQUALS (=)` operator.
1743-
* Supported fields: * `adGroupId` * `displayName` * `entityStatus` * `adGroupAdId`
1744-
* Examples: * All ad group ads under an ad group: `adGroupId="1234"` * All ad group ads
1745-
* under an ad group with an entityStatus of `ENTITY_STATUS_ACTIVE` or
1746-
* `ENTITY_STATUS_PAUSED`: `(entityStatus="ENTITY_STATUS_ACTIVE" OR
1747-
* entityStatus="ENTITY_STATUS_PAUSED") AND adGroupId="12345"` The length of this field
1748-
* should be no more than 500 characters. Reference our [filter `LIST` requests](/display-
1749-
* video/api/guides/how-tos/filters) guide for more information.
1739+
* Optional. Allows filtering by ad group ad fields. Supported syntax: * Filter expressions
1740+
* are made up of one or more restrictions. * Restrictions can be combined by `AND` and
1741+
* `OR`. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of
1742+
* `{field} {operator} {value}`. * All fields must use the `EQUALS (=)` operator. Supported
1743+
* fields: * `adGroupId` * `displayName` * `entityStatus` * `adGroupAdId` Examples: * All ad
1744+
* group ads under an ad group: `adGroupId="1234"` * All ad group ads under an ad group with
1745+
* an entityStatus of `ENTITY_STATUS_ACTIVE` or `ENTITY_STATUS_PAUSED`:
1746+
* `(entityStatus="ENTITY_STATUS_ACTIVE" OR entityStatus="ENTITY_STATUS_PAUSED") AND
1747+
* adGroupId="12345"` The length of this field should be no more than 500 characters.
1748+
* Reference our [filter `LIST` requests](/display-video/api/guides/how-tos/filters) guide
1749+
* for more information.
17501750
*/
17511751
@com.google.api.client.util.Key
17521752
private java.lang.String filter;
17531753

1754-
/** Optional. Allows filtering by custom ad group ad fields. Supported syntax: * Filter expressions are
1755-
made up of one or more restrictions. * Restrictions can be combined by `AND` and `OR`. A sequence
1756-
of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator}
1757-
{value}`. * All fields must use the `EQUALS (=)` operator. Supported fields: * `adGroupId` *
1758-
`displayName` * `entityStatus` * `adGroupAdId` Examples: * All ad group ads under an ad group:
1759-
`adGroupId="1234"` * All ad group ads under an ad group with an entityStatus of
1760-
`ENTITY_STATUS_ACTIVE` or `ENTITY_STATUS_PAUSED`: `(entityStatus="ENTITY_STATUS_ACTIVE" OR
1754+
/** Optional. Allows filtering by ad group ad fields. Supported syntax: * Filter expressions are made
1755+
up of one or more restrictions. * Restrictions can be combined by `AND` and `OR`. A sequence of
1756+
restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. *
1757+
All fields must use the `EQUALS (=)` operator. Supported fields: * `adGroupId` * `displayName` *
1758+
`entityStatus` * `adGroupAdId` Examples: * All ad group ads under an ad group: `adGroupId="1234"` *
1759+
All ad group ads under an ad group with an entityStatus of `ENTITY_STATUS_ACTIVE` or
1760+
`ENTITY_STATUS_PAUSED`: `(entityStatus="ENTITY_STATUS_ACTIVE" OR
17611761
entityStatus="ENTITY_STATUS_PAUSED") AND adGroupId="12345"` The length of this field should be no
17621762
more than 500 characters. Reference our [filter `LIST` requests](/display-video/api/guides/how-
17631763
tos/filters) guide for more information.
@@ -1767,17 +1767,17 @@ public java.lang.String getFilter() {
17671767
}
17681768

17691769
/**
1770-
* Optional. Allows filtering by custom ad group ad fields. Supported syntax: * Filter
1771-
* expressions are made up of one or more restrictions. * Restrictions can be combined by
1772-
* `AND` and `OR`. A sequence of restrictions implicitly uses `AND`. * A restriction has the
1773-
* form of `{field} {operator} {value}`. * All fields must use the `EQUALS (=)` operator.
1774-
* Supported fields: * `adGroupId` * `displayName` * `entityStatus` * `adGroupAdId`
1775-
* Examples: * All ad group ads under an ad group: `adGroupId="1234"` * All ad group ads
1776-
* under an ad group with an entityStatus of `ENTITY_STATUS_ACTIVE` or
1777-
* `ENTITY_STATUS_PAUSED`: `(entityStatus="ENTITY_STATUS_ACTIVE" OR
1778-
* entityStatus="ENTITY_STATUS_PAUSED") AND adGroupId="12345"` The length of this field
1779-
* should be no more than 500 characters. Reference our [filter `LIST` requests](/display-
1780-
* video/api/guides/how-tos/filters) guide for more information.
1770+
* Optional. Allows filtering by ad group ad fields. Supported syntax: * Filter expressions
1771+
* are made up of one or more restrictions. * Restrictions can be combined by `AND` and
1772+
* `OR`. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of
1773+
* `{field} {operator} {value}`. * All fields must use the `EQUALS (=)` operator. Supported
1774+
* fields: * `adGroupId` * `displayName` * `entityStatus` * `adGroupAdId` Examples: * All ad
1775+
* group ads under an ad group: `adGroupId="1234"` * All ad group ads under an ad group with
1776+
* an entityStatus of `ENTITY_STATUS_ACTIVE` or `ENTITY_STATUS_PAUSED`:
1777+
* `(entityStatus="ENTITY_STATUS_ACTIVE" OR entityStatus="ENTITY_STATUS_PAUSED") AND
1778+
* adGroupId="12345"` The length of this field should be no more than 500 characters.
1779+
* Reference our [filter `LIST` requests](/display-video/api/guides/how-tos/filters) guide
1780+
* for more information.
17811781
*/
17821782
public List setFilter(java.lang.String filter) {
17831783
this.filter = filter;

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public final class AdGroupAd extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The unique ID of the ad. Assigned by the system.
34+
* Output only. The unique ID of the ad. Assigned by the system.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
@@ -48,7 +48,7 @@ public final class AdGroupAd extends com.google.api.client.json.GenericJson {
4848
private java.lang.Long adGroupId;
4949

5050
/**
51-
* The policy approval status of the ad.
51+
* Output only. The policy approval status of the ad.
5252
* The value may be {@code null}.
5353
*/
5454
@com.google.api.client.util.Key
@@ -62,7 +62,7 @@ public final class AdGroupAd extends com.google.api.client.json.GenericJson {
6262
private java.util.List<AdUrl> adUrls;
6363

6464
/**
65-
* The unique ID of the advertiser the ad belongs to.
65+
* Output only. The unique ID of the advertiser the ad belongs to.
6666
* The value may be {@code null}.
6767
*/
6868
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
@@ -123,7 +123,7 @@ public final class AdGroupAd extends com.google.api.client.json.GenericJson {
123123
private MastheadAd mastheadAd;
124124

125125
/**
126-
* The resource name of the ad.
126+
* Output only. The resource name of the ad.
127127
* The value may be {@code null}.
128128
*/
129129
@com.google.api.client.util.Key
@@ -155,15 +155,15 @@ public final class AdGroupAd extends com.google.api.client.json.GenericJson {
155155
private VideoPerformanceAd videoPerformanceAd;
156156

157157
/**
158-
* The unique ID of the ad. Assigned by the system.
158+
* Output only. The unique ID of the ad. Assigned by the system.
159159
* @return value or {@code null} for none
160160
*/
161161
public java.lang.Long getAdGroupAdId() {
162162
return adGroupAdId;
163163
}
164164

165165
/**
166-
* The unique ID of the ad. Assigned by the system.
166+
* Output only. The unique ID of the ad. Assigned by the system.
167167
* @param adGroupAdId adGroupAdId or {@code null} for none
168168
*/
169169
public AdGroupAd setAdGroupAdId(java.lang.Long adGroupAdId) {
@@ -195,15 +195,15 @@ public AdGroupAd setAdGroupId(java.lang.Long adGroupId) {
195195
}
196196

197197
/**
198-
* The policy approval status of the ad.
198+
* Output only. The policy approval status of the ad.
199199
* @return value or {@code null} for none
200200
*/
201201
public AdPolicy getAdPolicy() {
202202
return adPolicy;
203203
}
204204

205205
/**
206-
* The policy approval status of the ad.
206+
* Output only. The policy approval status of the ad.
207207
* @param adPolicy adPolicy or {@code null} for none
208208
*/
209209
public AdGroupAd setAdPolicy(AdPolicy adPolicy) {
@@ -229,15 +229,15 @@ public AdGroupAd setAdUrls(java.util.List<AdUrl> adUrls) {
229229
}
230230

231231
/**
232-
* The unique ID of the advertiser the ad belongs to.
232+
* Output only. The unique ID of the advertiser the ad belongs to.
233233
* @return value or {@code null} for none
234234
*/
235235
public java.lang.Long getAdvertiserId() {
236236
return advertiserId;
237237
}
238238

239239
/**
240-
* The unique ID of the advertiser the ad belongs to.
240+
* Output only. The unique ID of the advertiser the ad belongs to.
241241
* @param advertiserId advertiserId or {@code null} for none
242242
*/
243243
public AdGroupAd setAdvertiserId(java.lang.Long advertiserId) {
@@ -375,15 +375,15 @@ public AdGroupAd setMastheadAd(MastheadAd mastheadAd) {
375375
}
376376

377377
/**
378-
* The resource name of the ad.
378+
* Output only. The resource name of the ad.
379379
* @return value or {@code null} for none
380380
*/
381381
public java.lang.String getName() {
382382
return name;
383383
}
384384

385385
/**
386-
* The resource name of the ad.
386+
* Output only. The resource name of the ad.
387387
* @param name name or {@code null} for none
388388
*/
389389
public AdGroupAd setName(java.lang.String name) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public final class ListAdGroupAdsResponse extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The list of ad group ads. This list will be absent if empty.
34+
* The list of ads. This list will be absent if empty.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
@@ -52,15 +52,15 @@ public final class ListAdGroupAdsResponse extends com.google.api.client.json.Gen
5252
private java.lang.String nextPageToken;
5353

5454
/**
55-
* The list of ad group ads. This list will be absent if empty.
55+
* The list of ads. This list will be absent if empty.
5656
* @return value or {@code null} for none
5757
*/
5858
public java.util.List<AdGroupAd> getAdGroupAds() {
5959
return adGroupAds;
6060
}
6161

6262
/**
63-
* The list of ad group ads. This list will be absent if empty.
63+
* The list of ads. This list will be absent if empty.
6464
* @param adGroupAds adGroupAds or {@code null} for none
6565
*/
6666
public ListAdGroupAdsResponse setAdGroupAds(java.util.List<AdGroupAd> adGroupAds) {

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

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

0 commit comments

Comments
 (0)