Skip to content

Commit 6d601de

Browse files
1 parent 9ac83c6 commit 6d601de

File tree

6 files changed

+148
-7
lines changed

6 files changed

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ public final class GoogleCloudAiplatformV1beta1GroundingChunkMaps extends com.go
4646
@com.google.api.client.util.Key
4747
private java.lang.String placeId;
4848

49+
/**
50+
* Output only. Route information.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute route;
55+
4956
/**
5057
* The text of the place answer.
5158
* The value may be {@code null}.
@@ -105,6 +112,23 @@ public GoogleCloudAiplatformV1beta1GroundingChunkMaps setPlaceId(java.lang.Strin
105112
return this;
106113
}
107114

115+
/**
116+
* Output only. Route information.
117+
* @return value or {@code null} for none
118+
*/
119+
public GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute getRoute() {
120+
return route;
121+
}
122+
123+
/**
124+
* Output only. Route information.
125+
* @param route route or {@code null} for none
126+
*/
127+
public GoogleCloudAiplatformV1beta1GroundingChunkMaps setRoute(GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute route) {
128+
this.route = route;
129+
return this;
130+
}
131+
108132
/**
109133
* The text of the place answer.
110134
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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+
* Route information 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 GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The total distance of the route, in meters.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Integer distanceMeters;
38+
39+
/**
40+
* The total duration of the route.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private String duration;
45+
46+
/**
47+
* An encoded polyline of the route. See
48+
* https://developers.google.com/maps/documentation/utilities/polylinealgorithm
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String encodedPolyline;
53+
54+
/**
55+
* The total distance of the route, in meters.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.Integer getDistanceMeters() {
59+
return distanceMeters;
60+
}
61+
62+
/**
63+
* The total distance of the route, in meters.
64+
* @param distanceMeters distanceMeters or {@code null} for none
65+
*/
66+
public GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute setDistanceMeters(java.lang.Integer distanceMeters) {
67+
this.distanceMeters = distanceMeters;
68+
return this;
69+
}
70+
71+
/**
72+
* The total duration of the route.
73+
* @return value or {@code null} for none
74+
*/
75+
public String getDuration() {
76+
return duration;
77+
}
78+
79+
/**
80+
* The total duration of the route.
81+
* @param duration duration or {@code null} for none
82+
*/
83+
public GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute setDuration(String duration) {
84+
this.duration = duration;
85+
return this;
86+
}
87+
88+
/**
89+
* An encoded polyline of the route. See
90+
* https://developers.google.com/maps/documentation/utilities/polylinealgorithm
91+
* @return value or {@code null} for none
92+
*/
93+
public java.lang.String getEncodedPolyline() {
94+
return encodedPolyline;
95+
}
96+
97+
/**
98+
* An encoded polyline of the route. See
99+
* https://developers.google.com/maps/documentation/utilities/polylinealgorithm
100+
* @param encodedPolyline encodedPolyline or {@code null} for none
101+
*/
102+
public GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute setEncodedPolyline(java.lang.String encodedPolyline) {
103+
this.encodedPolyline = encodedPolyline;
104+
return this;
105+
}
106+
107+
@Override
108+
public GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute set(String fieldName, Object value) {
109+
return (GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute) super.set(fieldName, value);
110+
}
111+
112+
@Override
113+
public GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute clone() {
114+
return (GoogleCloudAiplatformV1beta1GroundingChunkMapsRoute) super.clone();
115+
}
116+
117+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.firebaseml.v2beta.model;
1818

1919
/**
20-
* A collection of supporting references for a segment of the model's response.
20+
* A collection of supporting references for a segment or part of the model's response.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Firebase ML API. For a detailed explanation see:

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-rev20260215-2.0.0</version>
12-
<name>Firebase ML API v2beta-rev20260215-2.0.0</name>
11+
<version>v2beta-rev20260222-2.0.0</version>
12+
<name>Firebase ML API v2beta-rev20260222-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-rev20260215-2.0.0</version>
25+
<version>v2beta-rev20260222-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-rev20260215-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20260222-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)