Skip to content

Commit 0cb9fb7

Browse files
chore: regenerate datamanager client
1 parent ebb6aa7 commit 0cb9fb7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+8006
-13
lines changed

clients/google-api-services-datamanager/v1/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-datamanager</artifactId>
25-
<version>v1-rev20260102-2.0.0</version>
25+
<version>v1-rev20260217-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-datamanager:v1-rev20260102-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datamanager:v1-rev20260217-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datamanager/v1/2.0.0/com/google/api/services/datamanager/v1/DataManager.java

Lines changed: 3383 additions & 3 deletions
Large diffs are not rendered by default.

clients/google-api-services-datamanager/v1/2.0.0/com/google/api/services/datamanager/v1/model/AudienceMember.java

Lines changed: 57 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,35 @@ public final class AudienceMember extends com.google.api.client.json.GenericJson
5252

5353
/**
5454
* [Publisher Advertiser Identity Reconciliation (PAIR)
55-
* IDs](//support.google.com/admanager/answer/15067908).
55+
* IDs](//support.google.com/admanager/answer/15067908). This feature is only available to data
56+
* partners.
5657
* The value may be {@code null}.
5758
*/
5859
@com.google.api.client.util.Key
5960
private PairData pairData;
6061

62+
/**
63+
* Data related to publisher provided identifiers. This feature is only available to data
64+
* partners.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private PpidData ppidData;
69+
6170
/**
6271
* User-provided data that identifies the user.
6372
* The value may be {@code null}.
6473
*/
6574
@com.google.api.client.util.Key
6675
private UserData userData;
6776

77+
/**
78+
* Data related to unique identifiers for a user, as defined by the advertiser.
79+
* The value may be {@code null}.
80+
*/
81+
@com.google.api.client.util.Key
82+
private UserIdData userIdData;
83+
6884
/**
6985
* Optional. The consent setting for the user.
7086
* @return value or {@code null} for none
@@ -118,7 +134,8 @@ public AudienceMember setMobileData(MobileData mobileData) {
118134

119135
/**
120136
* [Publisher Advertiser Identity Reconciliation (PAIR)
121-
* IDs](//support.google.com/admanager/answer/15067908).
137+
* IDs](//support.google.com/admanager/answer/15067908). This feature is only available to data
138+
* partners.
122139
* @return value or {@code null} for none
123140
*/
124141
public PairData getPairData() {
@@ -127,14 +144,34 @@ public PairData getPairData() {
127144

128145
/**
129146
* [Publisher Advertiser Identity Reconciliation (PAIR)
130-
* IDs](//support.google.com/admanager/answer/15067908).
147+
* IDs](//support.google.com/admanager/answer/15067908). This feature is only available to data
148+
* partners.
131149
* @param pairData pairData or {@code null} for none
132150
*/
133151
public AudienceMember setPairData(PairData pairData) {
134152
this.pairData = pairData;
135153
return this;
136154
}
137155

156+
/**
157+
* Data related to publisher provided identifiers. This feature is only available to data
158+
* partners.
159+
* @return value or {@code null} for none
160+
*/
161+
public PpidData getPpidData() {
162+
return ppidData;
163+
}
164+
165+
/**
166+
* Data related to publisher provided identifiers. This feature is only available to data
167+
* partners.
168+
* @param ppidData ppidData or {@code null} for none
169+
*/
170+
public AudienceMember setPpidData(PpidData ppidData) {
171+
this.ppidData = ppidData;
172+
return this;
173+
}
174+
138175
/**
139176
* User-provided data that identifies the user.
140177
* @return value or {@code null} for none
@@ -152,6 +189,23 @@ public AudienceMember setUserData(UserData userData) {
152189
return this;
153190
}
154191

192+
/**
193+
* Data related to unique identifiers for a user, as defined by the advertiser.
194+
* @return value or {@code null} for none
195+
*/
196+
public UserIdData getUserIdData() {
197+
return userIdData;
198+
}
199+
200+
/**
201+
* Data related to unique identifiers for a user, as defined by the advertiser.
202+
* @param userIdData userIdData or {@code null} for none
203+
*/
204+
public AudienceMember setUserIdData(UserIdData userIdData) {
205+
this.userIdData = userIdData;
206+
return this;
207+
}
208+
155209
@Override
156210
public AudienceMember set(String fieldName, Object value) {
157211
return (AudienceMember) super.set(fieldName, value);
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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.datamanager.v1.model;
18+
19+
/**
20+
* Baseline criteria against which insights are compared.
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 Data Manager API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class Baseline extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The baseline location of the request. Baseline location is an OR-list of the requested regions.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private Location baselineLocation;
38+
39+
/**
40+
* If set to true, the service will try to automatically detect the baseline location for
41+
* insights.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean locationAutoDetectionEnabled;
46+
47+
/**
48+
* The baseline location of the request. Baseline location is an OR-list of the requested regions.
49+
* @return value or {@code null} for none
50+
*/
51+
public Location getBaselineLocation() {
52+
return baselineLocation;
53+
}
54+
55+
/**
56+
* The baseline location of the request. Baseline location is an OR-list of the requested regions.
57+
* @param baselineLocation baselineLocation or {@code null} for none
58+
*/
59+
public Baseline setBaselineLocation(Location baselineLocation) {
60+
this.baselineLocation = baselineLocation;
61+
return this;
62+
}
63+
64+
/**
65+
* If set to true, the service will try to automatically detect the baseline location for
66+
* insights.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.Boolean getLocationAutoDetectionEnabled() {
70+
return locationAutoDetectionEnabled;
71+
}
72+
73+
/**
74+
* If set to true, the service will try to automatically detect the baseline location for
75+
* insights.
76+
* @param locationAutoDetectionEnabled locationAutoDetectionEnabled or {@code null} for none
77+
*/
78+
public Baseline setLocationAutoDetectionEnabled(java.lang.Boolean locationAutoDetectionEnabled) {
79+
this.locationAutoDetectionEnabled = locationAutoDetectionEnabled;
80+
return this;
81+
}
82+
83+
@Override
84+
public Baseline set(String fieldName, Object value) {
85+
return (Baseline) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public Baseline clone() {
90+
return (Baseline) super.clone();
91+
}
92+
93+
}
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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.datamanager.v1.model;
18+
19+
/**
20+
* Additional information when `CONTACT_ID` is one of the `upload_key_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 Data Manager API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ContactIdInfo extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Immutable. Source of the upload data
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String dataSourceType;
38+
39+
/**
40+
* Output only. Match rate for customer match user lists.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.Integer matchRatePercentage;
45+
46+
/**
47+
* Optional. Immutable. Source of the upload data
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getDataSourceType() {
51+
return dataSourceType;
52+
}
53+
54+
/**
55+
* Optional. Immutable. Source of the upload data
56+
* @param dataSourceType dataSourceType or {@code null} for none
57+
*/
58+
public ContactIdInfo setDataSourceType(java.lang.String dataSourceType) {
59+
this.dataSourceType = dataSourceType;
60+
return this;
61+
}
62+
63+
/**
64+
* Output only. Match rate for customer match user lists.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.Integer getMatchRatePercentage() {
68+
return matchRatePercentage;
69+
}
70+
71+
/**
72+
* Output only. Match rate for customer match user lists.
73+
* @param matchRatePercentage matchRatePercentage or {@code null} for none
74+
*/
75+
public ContactIdInfo setMatchRatePercentage(java.lang.Integer matchRatePercentage) {
76+
this.matchRatePercentage = matchRatePercentage;
77+
return this;
78+
}
79+
80+
@Override
81+
public ContactIdInfo set(String fieldName, Object value) {
82+
return (ContactIdInfo) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public ContactIdInfo clone() {
87+
return (ContactIdInfo) super.clone();
88+
}
89+
90+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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.datamanager.v1.model;
18+
19+
/**
20+
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your
21+
* APIs. A typical example is to use it as the request or the response type of an API method. For
22+
* instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Data Manager API. For a detailed explanation 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 Empty extends com.google.api.client.json.GenericJson {
33+
34+
@Override
35+
public Empty set(String fieldName, Object value) {
36+
return (Empty) super.set(fieldName, value);
37+
}
38+
39+
@Override
40+
public Empty clone() {
41+
return (Empty) super.clone();
42+
}
43+
44+
}

0 commit comments

Comments
 (0)