Skip to content

Commit bf4eb2e

Browse files
chore: regenerate contentwarehouse client
1 parent 7871192 commit bf4eb2e

File tree

201 files changed

+12733
-9007
lines changed

Some content is hidden

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

201 files changed

+12733
-9007
lines changed

clients/google-api-services-contentwarehouse/v1/2.0.0/README.md

+2-2
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-contentwarehouse</artifactId>
25-
<version>v1-rev20231106-2.0.0</version>
25+
<version>v1-rev20240412-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-contentwarehouse:v1-rev20231106-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contentwarehouse:v1-rev20240412-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/Contentwarehouse.java

+5
Original file line numberDiff line numberDiff line change
@@ -5727,5 +5727,10 @@ public Builder setGoogleClientRequestInitializer(
57275727
com.google.api.client.googleapis.services.GoogleClientRequestInitializer googleClientRequestInitializer) {
57285728
return (Builder) super.setGoogleClientRequestInitializer(googleClientRequestInitializer);
57295729
}
5730+
5731+
@Override
5732+
public Builder setUniverseDomain(String universeDomain) {
5733+
return (Builder) super.setUniverseDomain(universeDomain);
5734+
}
57305735
}
57315736
}

clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/AbuseiamClusterEvaluationContext.java

-121
This file was deleted.

clients/google-api-services-contentwarehouse/v1/2.0.0/com/google/api/services/contentwarehouse/v1/model/AbuseiamEvaluation.java

-132
Original file line numberDiff line numberDiff line change
@@ -44,37 +44,13 @@ public final class AbuseiamEvaluation extends com.google.api.client.json.Generic
4444
@com.google.api.client.util.Key
4545
private java.lang.String backend;
4646

47-
/**
48-
* Extra information regarding the cluster review context where the case received the evaluation.
49-
* The value may be {@code null}.
50-
*/
51-
@com.google.api.client.util.Key
52-
private AbuseiamClusterEvaluationContext clusterEvaluationContext;
53-
5447
/**
5548
* Backends can choose to put some debug info in addition to abuse_type, score, and status.
5649
* The value may be {@code null}.
5750
*/
5851
@com.google.api.client.util.Key
5952
private java.lang.String comment;
6053

61-
/**
62-
* A set of repeated features to allow adapters to return semi structured data. Please, prefer
63-
* using feature instead of the old misc_data field since it supports richer and more structured
64-
* data to be passed back.
65-
* The value may be {@code null}.
66-
*/
67-
@com.google.api.client.util.Key
68-
private java.util.List<AbuseiamFeature> feature;
69-
70-
/**
71-
* Information about the manual review, for manual review evaluations. Do NOT expect this field to
72-
* be set if `backend != MANUAL_REVIEW`.
73-
* The value may be {@code null}.
74-
*/
75-
@com.google.api.client.util.Key
76-
private AbuseiamManualReviewEvaluationInfo manualReviewInfo;
77-
7854
/**
7955
* This field is used to store miscellaneous information that Backend might provide. If you find
8056
* youself here considering to use this field, please prefer using the repeated feature field
@@ -84,13 +60,6 @@ public final class AbuseiamEvaluation extends com.google.api.client.json.Generic
8460
@com.google.api.client.util.Key
8561
private java.util.List<AbuseiamNameValuePair> miscData;
8662

87-
/**
88-
* Time in milliseconds when the Backend processed this Evaluation.
89-
* The value may be {@code null}.
90-
*/
91-
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
92-
private java.lang.Long processTimeMillisecs;
93-
9463
/**
9564
* When the evaluation was processed by the decision script.
9665
* The value may be {@code null}.
@@ -145,14 +114,6 @@ public final class AbuseiamEvaluation extends com.google.api.client.json.Generic
145114
@com.google.api.client.util.Key
146115
private java.lang.String version;
147116

148-
/**
149-
* Information about the video review, for video review evaluations. Do NOT expect this field to
150-
* be set if `backend != VIDEO_REVIEW`.
151-
* The value may be {@code null}.
152-
*/
153-
@com.google.api.client.util.Key
154-
private AbuseiamVideoReviewData videoReviewData;
155-
156117
/**
157118
* @return value or {@code null} for none
158119
*/
@@ -185,23 +146,6 @@ public AbuseiamEvaluation setBackend(java.lang.String backend) {
185146
return this;
186147
}
187148

188-
/**
189-
* Extra information regarding the cluster review context where the case received the evaluation.
190-
* @return value or {@code null} for none
191-
*/
192-
public AbuseiamClusterEvaluationContext getClusterEvaluationContext() {
193-
return clusterEvaluationContext;
194-
}
195-
196-
/**
197-
* Extra information regarding the cluster review context where the case received the evaluation.
198-
* @param clusterEvaluationContext clusterEvaluationContext or {@code null} for none
199-
*/
200-
public AbuseiamEvaluation setClusterEvaluationContext(AbuseiamClusterEvaluationContext clusterEvaluationContext) {
201-
this.clusterEvaluationContext = clusterEvaluationContext;
202-
return this;
203-
}
204-
205149
/**
206150
* Backends can choose to put some debug info in addition to abuse_type, score, and status.
207151
* @return value or {@code null} for none
@@ -219,46 +163,6 @@ public AbuseiamEvaluation setComment(java.lang.String comment) {
219163
return this;
220164
}
221165

222-
/**
223-
* A set of repeated features to allow adapters to return semi structured data. Please, prefer
224-
* using feature instead of the old misc_data field since it supports richer and more structured
225-
* data to be passed back.
226-
* @return value or {@code null} for none
227-
*/
228-
public java.util.List<AbuseiamFeature> getFeature() {
229-
return feature;
230-
}
231-
232-
/**
233-
* A set of repeated features to allow adapters to return semi structured data. Please, prefer
234-
* using feature instead of the old misc_data field since it supports richer and more structured
235-
* data to be passed back.
236-
* @param feature feature or {@code null} for none
237-
*/
238-
public AbuseiamEvaluation setFeature(java.util.List<AbuseiamFeature> feature) {
239-
this.feature = feature;
240-
return this;
241-
}
242-
243-
/**
244-
* Information about the manual review, for manual review evaluations. Do NOT expect this field to
245-
* be set if `backend != MANUAL_REVIEW`.
246-
* @return value or {@code null} for none
247-
*/
248-
public AbuseiamManualReviewEvaluationInfo getManualReviewInfo() {
249-
return manualReviewInfo;
250-
}
251-
252-
/**
253-
* Information about the manual review, for manual review evaluations. Do NOT expect this field to
254-
* be set if `backend != MANUAL_REVIEW`.
255-
* @param manualReviewInfo manualReviewInfo or {@code null} for none
256-
*/
257-
public AbuseiamEvaluation setManualReviewInfo(AbuseiamManualReviewEvaluationInfo manualReviewInfo) {
258-
this.manualReviewInfo = manualReviewInfo;
259-
return this;
260-
}
261-
262166
/**
263167
* This field is used to store miscellaneous information that Backend might provide. If you find
264168
* youself here considering to use this field, please prefer using the repeated feature field
@@ -280,23 +184,6 @@ public AbuseiamEvaluation setMiscData(java.util.List<AbuseiamNameValuePair> misc
280184
return this;
281185
}
282186

283-
/**
284-
* Time in milliseconds when the Backend processed this Evaluation.
285-
* @return value or {@code null} for none
286-
*/
287-
public java.lang.Long getProcessTimeMillisecs() {
288-
return processTimeMillisecs;
289-
}
290-
291-
/**
292-
* Time in milliseconds when the Backend processed this Evaluation.
293-
* @param processTimeMillisecs processTimeMillisecs or {@code null} for none
294-
*/
295-
public AbuseiamEvaluation setProcessTimeMillisecs(java.lang.Long processTimeMillisecs) {
296-
this.processTimeMillisecs = processTimeMillisecs;
297-
return this;
298-
}
299-
300187
/**
301188
* When the evaluation was processed by the decision script.
302189
* @return value or {@code null} for none
@@ -429,25 +316,6 @@ public AbuseiamEvaluation setVersion(java.lang.String version) {
429316
return this;
430317
}
431318

432-
/**
433-
* Information about the video review, for video review evaluations. Do NOT expect this field to
434-
* be set if `backend != VIDEO_REVIEW`.
435-
* @return value or {@code null} for none
436-
*/
437-
public AbuseiamVideoReviewData getVideoReviewData() {
438-
return videoReviewData;
439-
}
440-
441-
/**
442-
* Information about the video review, for video review evaluations. Do NOT expect this field to
443-
* be set if `backend != VIDEO_REVIEW`.
444-
* @param videoReviewData videoReviewData or {@code null} for none
445-
*/
446-
public AbuseiamEvaluation setVideoReviewData(AbuseiamVideoReviewData videoReviewData) {
447-
this.videoReviewData = videoReviewData;
448-
return this;
449-
}
450-
451319
@Override
452320
public AbuseiamEvaluation set(String fieldName, Object value) {
453321
return (AbuseiamEvaluation) super.set(fieldName, value);

0 commit comments

Comments
 (0)