Skip to content

Commit a429346

Browse files
Regenerate adexchangebuyer2 client (googleapis#4387)
This PR was generated using Autosynth. 🌈 <details><summary>Log from Synthtool</summary> ``` 2020-04-03 03:37:53,765 synthtool > Executing /tmpfs/src/git/autosynth/working_repo/synth.py. 2020-04-03 03:37:53,779 synthtool > Cloning https://github.com/googleapis/discovery-artifact-manager.git. 2020-04-03 03:37:54,394 synthtool > Cleaning output directory. 2020-04-03 03:37:54,396 synthtool > Installing dependencies. 2020-04-03 03:37:56,188 synthtool > Generating adexchangebuyer2 v2beta1. 2020-04-03 03:37:56,189 synthtool > 1.30.1 WARNING:root:object without properties CancelNegotiationRequest: OrderedDict([(u'description', u'Request to cancel an ongoing negotiation.'), (u'type', u'object'), (u'properties', OrderedDict()), (u'id', u'CancelNegotiationRequest')]) WARNING:root:object without properties CompleteSetupRequest: OrderedDict([(u'properties', OrderedDict()), (u'id', u'CompleteSetupRequest'), (u'description', u"Request message for indicating that the proposal's setup step is complete."), (u'type', u'object')]) WARNING:root:object without properties Empty: OrderedDict([(u'properties', OrderedDict()), (u'id', u'Empty'), (u'description', u'A generic empty message that you can re-use to avoid defining duplicated\nempty messages in your APIs. A typical example is to use it as the request\nor the response type of an API method. For instance:\n\n service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }\n\nThe JSON representation for `Empty` is empty JSON object `{}`.'), (u'type', u'object')]) WARNING:root:object without properties ResumeProposalRequest: OrderedDict([(u'description', u'Request message to resume (unpause) serving for an already-finalized\nproposal.'), (u'type', u'object'), (u'properties', OrderedDict()), (u'id', u'ResumeProposalRequest')]) WARNING:root:object without properties StopWatchingCreativeRequest: OrderedDict([(u'id', u'StopWatchingCreativeRequest'), (u'description', u'A request for stopping notifications for changes to creative Status.'), (u'type', u'object'), (u'properties', OrderedDict())]) Writing json metadata to clients/google-api-services-adexchangebuyer2/v2beta1.metadata.json 2020-04-03 03:37:58,527 synthtool > Wrote metadata to clients/google-api-services-adexchangebuyer2/synth.metadata. ``` </details>
1 parent 5fca7ab commit a429346

File tree

6 files changed

+5175
-5130
lines changed

6 files changed

+5175
-5130
lines changed

clients/google-api-services-adexchangebuyer2/v2beta1.metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"maven": {
33
"groupId": "com.google.apis",
44
"artifactId": "google-api-services-adexchangebuyer2",
5-
"version": "v2beta1-rev20200215-1.30.9"
5+
"version": "v2beta1-rev20200402-1.30.9"
66
}
77
}

clients/google-api-services-adexchangebuyer2/v2beta1/1.30.1/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-adexchangebuyer2</artifactId>
25-
<version>v2beta1-rev20200215-1.30.9</version>
25+
<version>v2beta1-rev20200402-1.30.9</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
compile 'com.google.apis:google-api-services-adexchangebuyer2:v2beta1-rev20200215-1.30.9'
38+
compile 'com.google.apis:google-api-services-adexchangebuyer2:v2beta1-rev20200402-1.30.9'
3939
}
4040
```
4141

clients/google-api-services-adexchangebuyer2/v2beta1/1.30.1/com/google/api/services/adexchangebuyer2/v2beta1/model/FilterSet.java

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,16 @@ public final class FilterSet extends com.google.api.client.json.GenericJson {
7676
private java.lang.String environment;
7777

7878
/**
79-
* The list of formats on which to filter; may be empty. The filters represented by multiple
80-
* formats are ORed together (i.e., if non-empty, results must match any one of the formats).
79+
* Creative format bidded on or allowed to bid on, can be empty.
80+
* The value may be {@code null}.
81+
*/
82+
@com.google.api.client.util.Key
83+
private java.lang.String format;
84+
85+
/**
86+
* Creative formats bidded on or allowed to bid on, can be empty. Although this field is a list,
87+
* it can only be populated with a single item. A HTTP 400 bad request error will be returned in
88+
* the response if you specify multiple items.
8189
* The value may be {@code null}.
8290
*/
8391
@com.google.api.client.util.Key
@@ -245,17 +253,36 @@ public FilterSet setEnvironment(java.lang.String environment) {
245253
}
246254

247255
/**
248-
* The list of formats on which to filter; may be empty. The filters represented by multiple
249-
* formats are ORed together (i.e., if non-empty, results must match any one of the formats).
256+
* Creative format bidded on or allowed to bid on, can be empty.
257+
* @return value or {@code null} for none
258+
*/
259+
public java.lang.String getFormat() {
260+
return format;
261+
}
262+
263+
/**
264+
* Creative format bidded on or allowed to bid on, can be empty.
265+
* @param format format or {@code null} for none
266+
*/
267+
public FilterSet setFormat(java.lang.String format) {
268+
this.format = format;
269+
return this;
270+
}
271+
272+
/**
273+
* Creative formats bidded on or allowed to bid on, can be empty. Although this field is a list,
274+
* it can only be populated with a single item. A HTTP 400 bad request error will be returned in
275+
* the response if you specify multiple items.
250276
* @return value or {@code null} for none
251277
*/
252278
public java.util.List<java.lang.String> getFormats() {
253279
return formats;
254280
}
255281

256282
/**
257-
* The list of formats on which to filter; may be empty. The filters represented by multiple
258-
* formats are ORed together (i.e., if non-empty, results must match any one of the formats).
283+
* Creative formats bidded on or allowed to bid on, can be empty. Although this field is a list,
284+
* it can only be populated with a single item. A HTTP 400 bad request error will be returned in
285+
* the response if you specify multiple items.
259286
* @param formats formats or {@code null} for none
260287
*/
261288
public FilterSet setFormats(java.util.List<java.lang.String> formats) {

clients/google-api-services-adexchangebuyer2/v2beta1/1.30.1/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-adexchangebuyer2</artifactId>
11-
<version>v2beta1-rev20200215-1.30.9</version>
12-
<name>Ad Exchange Buyer API II v2beta1-rev20200215-1.30.9</name>
11+
<version>v2beta1-rev20200402-1.30.9</version>
12+
<name>Ad Exchange Buyer API II v2beta1-rev20200402-1.30.9</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)