Skip to content

Commit d9d95b8

Browse files
1 parent 91a4679 commit d9d95b8

File tree

56 files changed

+2696
-18
lines changed

Some content is hidden

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

56 files changed

+2696
-18
lines changed

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

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/Aiplatform.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87314,6 +87314,22 @@ public Get setName(java.lang.String name) {
8731487314
return this;
8731587315
}
8731687316

87317+
/** Optional. Token used to access Hugging Face gated models. */
87318+
@com.google.api.client.util.Key
87319+
private java.lang.String huggingFaceToken;
87320+
87321+
/** Optional. Token used to access Hugging Face gated models.
87322+
*/
87323+
public java.lang.String getHuggingFaceToken() {
87324+
return huggingFaceToken;
87325+
}
87326+
87327+
/** Optional. Token used to access Hugging Face gated models. */
87328+
public Get setHuggingFaceToken(java.lang.String huggingFaceToken) {
87329+
this.huggingFaceToken = huggingFaceToken;
87330+
return this;
87331+
}
87332+
8731787333
/** Optional. Boolean indicates whether the requested model is a Hugging Face model. */
8731887334
@com.google.api.client.util.Key
8731987335
private java.lang.Boolean isHuggingFaceModel;

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1Candidate.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudAiplatformV1Candidate extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. Average log probability score of the candidate.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Double avgLogprobs;
38+
3239
/**
3340
* Output only. Source attribution of the generated content.
3441
* The value may be {@code null}.
@@ -81,6 +88,23 @@ public final class GoogleCloudAiplatformV1Candidate extends com.google.api.clien
8188
@com.google.api.client.util.Key
8289
private java.util.List<GoogleCloudAiplatformV1SafetyRating> safetyRatings;
8390

91+
/**
92+
* Output only. Average log probability score of the candidate.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.Double getAvgLogprobs() {
96+
return avgLogprobs;
97+
}
98+
99+
/**
100+
* Output only. Average log probability score of the candidate.
101+
* @param avgLogprobs avgLogprobs or {@code null} for none
102+
*/
103+
public GoogleCloudAiplatformV1Candidate setAvgLogprobs(java.lang.Double avgLogprobs) {
104+
this.avgLogprobs = avgLogprobs;
105+
return this;
106+
}
107+
84108
/**
85109
* Output only. Source attribution of the generated content.
86110
* @return value or {@code null} for none

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1EntityType.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,20 @@ public final class GoogleCloudAiplatformV1EntityType extends com.google.api.clie
9696
@com.google.api.client.util.Key
9797
private java.lang.Integer offlineStorageTtlDays;
9898

99+
/**
100+
* Output only. Reserved for future use.
101+
* The value may be {@code null}.
102+
*/
103+
@com.google.api.client.util.Key
104+
private java.lang.Boolean satisfiesPzi;
105+
106+
/**
107+
* Output only. Reserved for future use.
108+
* The value may be {@code null}.
109+
*/
110+
@com.google.api.client.util.Key
111+
private java.lang.Boolean satisfiesPzs;
112+
99113
/**
100114
* Output only. Timestamp when this EntityType was most recently updated.
101115
* The value may be {@code null}.
@@ -254,6 +268,40 @@ public GoogleCloudAiplatformV1EntityType setOfflineStorageTtlDays(java.lang.Inte
254268
return this;
255269
}
256270

271+
/**
272+
* Output only. Reserved for future use.
273+
* @return value or {@code null} for none
274+
*/
275+
public java.lang.Boolean getSatisfiesPzi() {
276+
return satisfiesPzi;
277+
}
278+
279+
/**
280+
* Output only. Reserved for future use.
281+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
282+
*/
283+
public GoogleCloudAiplatformV1EntityType setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
284+
this.satisfiesPzi = satisfiesPzi;
285+
return this;
286+
}
287+
288+
/**
289+
* Output only. Reserved for future use.
290+
* @return value or {@code null} for none
291+
*/
292+
public java.lang.Boolean getSatisfiesPzs() {
293+
return satisfiesPzs;
294+
}
295+
296+
/**
297+
* Output only. Reserved for future use.
298+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
299+
*/
300+
public GoogleCloudAiplatformV1EntityType setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
301+
this.satisfiesPzs = satisfiesPzs;
302+
return this;
303+
}
304+
257305
/**
258306
* Output only. Timestamp when this EntityType was most recently updated.
259307
* @return value or {@code null} for none

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1EvaluateInstancesRequest.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ public final class GoogleCloudAiplatformV1EvaluateInstancesRequest extends com.g
7272
@com.google.api.client.util.Key
7373
private GoogleCloudAiplatformV1GroundednessInput groundednessInput;
7474

75+
/**
76+
* Input for pairwise metric.
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private GoogleCloudAiplatformV1PairwiseMetricInput pairwiseMetricInput;
81+
7582
/**
7683
* Input for pairwise question answering quality metric.
7784
* The value may be {@code null}.
@@ -86,6 +93,13 @@ public final class GoogleCloudAiplatformV1EvaluateInstancesRequest extends com.g
8693
@com.google.api.client.util.Key
8794
private GoogleCloudAiplatformV1PairwiseSummarizationQualityInput pairwiseSummarizationQualityInput;
8895

96+
/**
97+
* Input for pointwise metric.
98+
* The value may be {@code null}.
99+
*/
100+
@com.google.api.client.util.Key
101+
private GoogleCloudAiplatformV1PointwiseMetricInput pointwiseMetricInput;
102+
89103
/**
90104
* Input for question answering correctness metric.
91105
* The value may be {@code null}.
@@ -281,6 +295,23 @@ public GoogleCloudAiplatformV1EvaluateInstancesRequest setGroundednessInput(Goog
281295
return this;
282296
}
283297

298+
/**
299+
* Input for pairwise metric.
300+
* @return value or {@code null} for none
301+
*/
302+
public GoogleCloudAiplatformV1PairwiseMetricInput getPairwiseMetricInput() {
303+
return pairwiseMetricInput;
304+
}
305+
306+
/**
307+
* Input for pairwise metric.
308+
* @param pairwiseMetricInput pairwiseMetricInput or {@code null} for none
309+
*/
310+
public GoogleCloudAiplatformV1EvaluateInstancesRequest setPairwiseMetricInput(GoogleCloudAiplatformV1PairwiseMetricInput pairwiseMetricInput) {
311+
this.pairwiseMetricInput = pairwiseMetricInput;
312+
return this;
313+
}
314+
284315
/**
285316
* Input for pairwise question answering quality metric.
286317
* @return value or {@code null} for none
@@ -315,6 +346,23 @@ public GoogleCloudAiplatformV1EvaluateInstancesRequest setPairwiseSummarizationQ
315346
return this;
316347
}
317348

349+
/**
350+
* Input for pointwise metric.
351+
* @return value or {@code null} for none
352+
*/
353+
public GoogleCloudAiplatformV1PointwiseMetricInput getPointwiseMetricInput() {
354+
return pointwiseMetricInput;
355+
}
356+
357+
/**
358+
* Input for pointwise metric.
359+
* @param pointwiseMetricInput pointwiseMetricInput or {@code null} for none
360+
*/
361+
public GoogleCloudAiplatformV1EvaluateInstancesRequest setPointwiseMetricInput(GoogleCloudAiplatformV1PointwiseMetricInput pointwiseMetricInput) {
362+
this.pointwiseMetricInput = pointwiseMetricInput;
363+
return this;
364+
}
365+
318366
/**
319367
* Input for question answering correctness metric.
320368
* @return value or {@code null} for none

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1EvaluateInstancesResponse.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ public final class GoogleCloudAiplatformV1EvaluateInstancesResponse extends com.
7272
@com.google.api.client.util.Key
7373
private GoogleCloudAiplatformV1GroundednessResult groundednessResult;
7474

75+
/**
76+
* Result for pairwise metric.
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private GoogleCloudAiplatformV1PairwiseMetricResult pairwiseMetricResult;
81+
7582
/**
7683
* Result for pairwise question answering quality metric.
7784
* The value may be {@code null}.
@@ -86,6 +93,13 @@ public final class GoogleCloudAiplatformV1EvaluateInstancesResponse extends com.
8693
@com.google.api.client.util.Key
8794
private GoogleCloudAiplatformV1PairwiseSummarizationQualityResult pairwiseSummarizationQualityResult;
8895

96+
/**
97+
* Generic metrics. Result for pointwise metric.
98+
* The value may be {@code null}.
99+
*/
100+
@com.google.api.client.util.Key
101+
private GoogleCloudAiplatformV1PointwiseMetricResult pointwiseMetricResult;
102+
89103
/**
90104
* Result for question answering correctness metric.
91105
* The value may be {@code null}.
@@ -281,6 +295,23 @@ public GoogleCloudAiplatformV1EvaluateInstancesResponse setGroundednessResult(Go
281295
return this;
282296
}
283297

298+
/**
299+
* Result for pairwise metric.
300+
* @return value or {@code null} for none
301+
*/
302+
public GoogleCloudAiplatformV1PairwiseMetricResult getPairwiseMetricResult() {
303+
return pairwiseMetricResult;
304+
}
305+
306+
/**
307+
* Result for pairwise metric.
308+
* @param pairwiseMetricResult pairwiseMetricResult or {@code null} for none
309+
*/
310+
public GoogleCloudAiplatformV1EvaluateInstancesResponse setPairwiseMetricResult(GoogleCloudAiplatformV1PairwiseMetricResult pairwiseMetricResult) {
311+
this.pairwiseMetricResult = pairwiseMetricResult;
312+
return this;
313+
}
314+
284315
/**
285316
* Result for pairwise question answering quality metric.
286317
* @return value or {@code null} for none
@@ -315,6 +346,23 @@ public GoogleCloudAiplatformV1EvaluateInstancesResponse setPairwiseSummarization
315346
return this;
316347
}
317348

349+
/**
350+
* Generic metrics. Result for pointwise metric.
351+
* @return value or {@code null} for none
352+
*/
353+
public GoogleCloudAiplatformV1PointwiseMetricResult getPointwiseMetricResult() {
354+
return pointwiseMetricResult;
355+
}
356+
357+
/**
358+
* Generic metrics. Result for pointwise metric.
359+
* @param pointwiseMetricResult pointwiseMetricResult or {@code null} for none
360+
*/
361+
public GoogleCloudAiplatformV1EvaluateInstancesResponse setPointwiseMetricResult(GoogleCloudAiplatformV1PointwiseMetricResult pointwiseMetricResult) {
362+
this.pointwiseMetricResult = pointwiseMetricResult;
363+
return this;
364+
}
365+
318366
/**
319367
* Result for question answering correctness metric.
320368
* @return value or {@code null} for none

clients/google-api-services-aiplatform/v1/2.0.0/com/google/api/services/aiplatform/v1/model/GoogleCloudAiplatformV1FeatureGroupBigQuery.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,16 @@ public final class GoogleCloudAiplatformV1FeatureGroupBigQuery extends com.googl
4343
@com.google.api.client.util.Key
4444
private java.util.List<java.lang.String> entityIdColumns;
4545

46+
/**
47+
* Optional. If the source is a time-series source, this can be set to control how downstream
48+
* sources (ex: FeatureOnlineStore.FeatureView) will treat time series sources. If not set, will
49+
* treat the source as a time-series source with feature_timestamp as timestamp column and no scan
50+
* boundary.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private GoogleCloudAiplatformV1FeatureGroupBigQueryTimeSeries timeSeries;
55+
4656
/**
4757
* Required. Immutable. The BigQuery source URI that points to either a BigQuery Table or View.
4858
* @return value or {@code null} for none
@@ -77,6 +87,29 @@ public GoogleCloudAiplatformV1FeatureGroupBigQuery setEntityIdColumns(java.util.
7787
return this;
7888
}
7989

90+
/**
91+
* Optional. If the source is a time-series source, this can be set to control how downstream
92+
* sources (ex: FeatureOnlineStore.FeatureView) will treat time series sources. If not set, will
93+
* treat the source as a time-series source with feature_timestamp as timestamp column and no scan
94+
* boundary.
95+
* @return value or {@code null} for none
96+
*/
97+
public GoogleCloudAiplatformV1FeatureGroupBigQueryTimeSeries getTimeSeries() {
98+
return timeSeries;
99+
}
100+
101+
/**
102+
* Optional. If the source is a time-series source, this can be set to control how downstream
103+
* sources (ex: FeatureOnlineStore.FeatureView) will treat time series sources. If not set, will
104+
* treat the source as a time-series source with feature_timestamp as timestamp column and no scan
105+
* boundary.
106+
* @param timeSeries timeSeries or {@code null} for none
107+
*/
108+
public GoogleCloudAiplatformV1FeatureGroupBigQuery setTimeSeries(GoogleCloudAiplatformV1FeatureGroupBigQueryTimeSeries timeSeries) {
109+
this.timeSeries = timeSeries;
110+
return this;
111+
}
112+
80113
@Override
81114
public GoogleCloudAiplatformV1FeatureGroupBigQuery set(String fieldName, Object value) {
82115
return (GoogleCloudAiplatformV1FeatureGroupBigQuery) super.set(fieldName, value);

0 commit comments

Comments
 (0)