Skip to content

Commit a93385d

Browse files
1 parent ef5b4f1 commit a93385d

File tree

8 files changed

+312
-6
lines changed

8 files changed

+312
-6
lines changed

clients/google-api-services-firebaseml/v2beta/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-firebaseml</artifactId>
25-
<version>v2beta-rev20250618-2.0.0</version>
25+
<version>v2beta-rev20250713-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-firebaseml:v2beta-rev20250618-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20250713-2.0.0'
3939
}
4040
```
4141

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.firebaseml.v2beta.model;
18+
19+
/**
20+
* Tool to retrieve public maps data for grounding, powered by Google.
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 Firebase ML 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 GoogleCloudAiplatformV1beta1GoogleMaps extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The authentication config to access the API. Deprecated. Please use auth_config instead.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudAiplatformV1beta1ApiAuth apiAuth;
38+
39+
/**
40+
* The authentication config to access the API. Only API key is supported.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudAiplatformV1beta1AuthConfig authConfig;
45+
46+
/**
47+
* The authentication config to access the API. Deprecated. Please use auth_config instead.
48+
* @return value or {@code null} for none
49+
*/
50+
public GoogleCloudAiplatformV1beta1ApiAuth getApiAuth() {
51+
return apiAuth;
52+
}
53+
54+
/**
55+
* The authentication config to access the API. Deprecated. Please use auth_config instead.
56+
* @param apiAuth apiAuth or {@code null} for none
57+
*/
58+
public GoogleCloudAiplatformV1beta1GoogleMaps setApiAuth(GoogleCloudAiplatformV1beta1ApiAuth apiAuth) {
59+
this.apiAuth = apiAuth;
60+
return this;
61+
}
62+
63+
/**
64+
* The authentication config to access the API. Only API key is supported.
65+
* @return value or {@code null} for none
66+
*/
67+
public GoogleCloudAiplatformV1beta1AuthConfig getAuthConfig() {
68+
return authConfig;
69+
}
70+
71+
/**
72+
* The authentication config to access the API. Only API key is supported.
73+
* @param authConfig authConfig or {@code null} for none
74+
*/
75+
public GoogleCloudAiplatformV1beta1GoogleMaps setAuthConfig(GoogleCloudAiplatformV1beta1AuthConfig authConfig) {
76+
this.authConfig = authConfig;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleCloudAiplatformV1beta1GoogleMaps set(String fieldName, Object value) {
82+
return (GoogleCloudAiplatformV1beta1GoogleMaps) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleCloudAiplatformV1beta1GoogleMaps clone() {
87+
return (GoogleCloudAiplatformV1beta1GoogleMaps) super.clone();
88+
}
89+
90+
}

clients/google-api-services-firebaseml/v2beta/2.0.0/com/google/api/services/firebaseml/v2beta/model/GoogleCloudAiplatformV1beta1GroundingChunk.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 GoogleCloudAiplatformV1beta1GroundingChunk extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Grounding chunk from Google Maps.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudAiplatformV1beta1GroundingChunkMaps maps;
38+
3239
/**
3340
* Grounding chunk from context retrieved by the retrieval tools.
3441
* The value may be {@code null}.
@@ -43,6 +50,23 @@ public final class GoogleCloudAiplatformV1beta1GroundingChunk extends com.google
4350
@com.google.api.client.util.Key
4451
private GoogleCloudAiplatformV1beta1GroundingChunkWeb web;
4552

53+
/**
54+
* Grounding chunk from Google Maps.
55+
* @return value or {@code null} for none
56+
*/
57+
public GoogleCloudAiplatformV1beta1GroundingChunkMaps getMaps() {
58+
return maps;
59+
}
60+
61+
/**
62+
* Grounding chunk from Google Maps.
63+
* @param maps maps or {@code null} for none
64+
*/
65+
public GoogleCloudAiplatformV1beta1GroundingChunk setMaps(GoogleCloudAiplatformV1beta1GroundingChunkMaps maps) {
66+
this.maps = maps;
67+
return this;
68+
}
69+
4670
/**
4771
* Grounding chunk from context retrieved by the retrieval tools.
4872
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
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.firebaseml.v2beta.model;
18+
19+
/**
20+
* Chunk from Google Maps.
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 Firebase ML 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 GoogleCloudAiplatformV1beta1GroundingChunkMaps extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String placeId;
38+
39+
/**
40+
* Text of the chunk.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String text;
45+
46+
/**
47+
* Title of the chunk.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String title;
52+
53+
/**
54+
* URI reference of the chunk.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String uri;
59+
60+
/**
61+
* This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getPlaceId() {
65+
return placeId;
66+
}
67+
68+
/**
69+
* This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place.
70+
* @param placeId placeId or {@code null} for none
71+
*/
72+
public GoogleCloudAiplatformV1beta1GroundingChunkMaps setPlaceId(java.lang.String placeId) {
73+
this.placeId = placeId;
74+
return this;
75+
}
76+
77+
/**
78+
* Text of the chunk.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.String getText() {
82+
return text;
83+
}
84+
85+
/**
86+
* Text of the chunk.
87+
* @param text text or {@code null} for none
88+
*/
89+
public GoogleCloudAiplatformV1beta1GroundingChunkMaps setText(java.lang.String text) {
90+
this.text = text;
91+
return this;
92+
}
93+
94+
/**
95+
* Title of the chunk.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.lang.String getTitle() {
99+
return title;
100+
}
101+
102+
/**
103+
* Title of the chunk.
104+
* @param title title or {@code null} for none
105+
*/
106+
public GoogleCloudAiplatformV1beta1GroundingChunkMaps setTitle(java.lang.String title) {
107+
this.title = title;
108+
return this;
109+
}
110+
111+
/**
112+
* URI reference of the chunk.
113+
* @return value or {@code null} for none
114+
*/
115+
public java.lang.String getUri() {
116+
return uri;
117+
}
118+
119+
/**
120+
* URI reference of the chunk.
121+
* @param uri uri or {@code null} for none
122+
*/
123+
public GoogleCloudAiplatformV1beta1GroundingChunkMaps setUri(java.lang.String uri) {
124+
this.uri = uri;
125+
return this;
126+
}
127+
128+
@Override
129+
public GoogleCloudAiplatformV1beta1GroundingChunkMaps set(String fieldName, Object value) {
130+
return (GoogleCloudAiplatformV1beta1GroundingChunkMaps) super.set(fieldName, value);
131+
}
132+
133+
@Override
134+
public GoogleCloudAiplatformV1beta1GroundingChunkMaps clone() {
135+
return (GoogleCloudAiplatformV1beta1GroundingChunkMaps) super.clone();
136+
}
137+
138+
}

clients/google-api-services-firebaseml/v2beta/2.0.0/com/google/api/services/firebaseml/v2beta/model/GoogleCloudAiplatformV1beta1GroundingMetadata.java

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

32+
/**
33+
* Optional. Output only. Resource name of the Google Maps widget context token to be used with
34+
* the PlacesContextElement widget to render contextual data. This is populated only for Google
35+
* Maps grounding.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String googleMapsWidgetContextToken;
40+
3241
/**
3342
* List of supporting references retrieved from specified grounding source.
3443
* The value may be {@code null}.
@@ -77,6 +86,27 @@ public final class GoogleCloudAiplatformV1beta1GroundingMetadata extends com.goo
7786
@com.google.api.client.util.Key
7887
private java.util.List<java.lang.String> webSearchQueries;
7988

89+
/**
90+
* Optional. Output only. Resource name of the Google Maps widget context token to be used with
91+
* the PlacesContextElement widget to render contextual data. This is populated only for Google
92+
* Maps grounding.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.String getGoogleMapsWidgetContextToken() {
96+
return googleMapsWidgetContextToken;
97+
}
98+
99+
/**
100+
* Optional. Output only. Resource name of the Google Maps widget context token to be used with
101+
* the PlacesContextElement widget to render contextual data. This is populated only for Google
102+
* Maps grounding.
103+
* @param googleMapsWidgetContextToken googleMapsWidgetContextToken or {@code null} for none
104+
*/
105+
public GoogleCloudAiplatformV1beta1GroundingMetadata setGoogleMapsWidgetContextToken(java.lang.String googleMapsWidgetContextToken) {
106+
this.googleMapsWidgetContextToken = googleMapsWidgetContextToken;
107+
return this;
108+
}
109+
80110
/**
81111
* List of supporting references retrieved from specified grounding source.
82112
* @return value or {@code null} for none

clients/google-api-services-firebaseml/v2beta/2.0.0/com/google/api/services/firebaseml/v2beta/model/GoogleCloudAiplatformV1beta1Tool.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ public final class GoogleCloudAiplatformV1beta1Tool extends com.google.api.clien
7272
com.google.api.client.util.Data.nullOf(GoogleCloudAiplatformV1beta1FunctionDeclaration.class);
7373
}
7474

75+
/**
76+
* Optional. GoogleMaps tool type. Tool to support Google Maps in Model.
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private GoogleCloudAiplatformV1beta1GoogleMaps googleMaps;
81+
7582
/**
7683
* Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google.
7784
* The value may be {@code null}.
@@ -183,6 +190,23 @@ public GoogleCloudAiplatformV1beta1Tool setFunctionDeclarations(java.util.List<G
183190
return this;
184191
}
185192

193+
/**
194+
* Optional. GoogleMaps tool type. Tool to support Google Maps in Model.
195+
* @return value or {@code null} for none
196+
*/
197+
public GoogleCloudAiplatformV1beta1GoogleMaps getGoogleMaps() {
198+
return googleMaps;
199+
}
200+
201+
/**
202+
* Optional. GoogleMaps tool type. Tool to support Google Maps in Model.
203+
* @param googleMaps googleMaps or {@code null} for none
204+
*/
205+
public GoogleCloudAiplatformV1beta1Tool setGoogleMaps(GoogleCloudAiplatformV1beta1GoogleMaps googleMaps) {
206+
this.googleMaps = googleMaps;
207+
return this;
208+
}
209+
186210
/**
187211
* Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google.
188212
* @return value or {@code null} for none

clients/google-api-services-firebaseml/v2beta/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-firebaseml</artifactId>
11-
<version>v2beta-rev20250618-2.0.0</version>
12-
<name>Firebase ML API v2beta-rev20250618-2.0.0</name>
11+
<version>v2beta-rev20250713-2.0.0</version>
12+
<name>Firebase ML API v2beta-rev20250713-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-firebaseml/v2beta/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-firebaseml</artifactId>
25-
<version>v2beta-rev20250618-2.0.0</version>
25+
<version>v2beta-rev20250713-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-firebaseml:v2beta-rev20250618-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20250713-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)