Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class FirebaseML extends com.google.api.client.googleapis.services.json.A
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -687,8 +687,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class FirebaseML extends com.google.api.client.googleapis.services.json.A
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -1297,8 +1297,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebaseml</artifactId>
<version>v2beta-rev20260128-2.0.0</version>
<version>v2beta-rev20260215-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20260128-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20260215-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class FirebaseML extends com.google.api.client.googleapis.services.json.A
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -686,8 +686,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ public final class GoogleCloudAiplatformV1beta1FunctionResponse extends com.goog
@com.google.api.client.util.Key
private java.util.Map<String, java.lang.Object> response;

/**
* Optional. Specifies how the response should be scheduled in the conversation. Only applicable
* to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String scheduling;

/**
* Optional. The id of the function call this response is for. Populated by the client to match
* the corresponding function call `id`.
Expand Down Expand Up @@ -143,6 +151,25 @@ public GoogleCloudAiplatformV1beta1FunctionResponse setResponse(java.util.Map<St
return this;
}

/**
* Optional. Specifies how the response should be scheduled in the conversation. Only applicable
* to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.
* @return value or {@code null} for none
*/
public java.lang.String getScheduling() {
return scheduling;
}

/**
* Optional. Specifies how the response should be scheduled in the conversation. Only applicable
* to NON_BLOCKING function calls, is ignored otherwise. Defaults to WHEN_IDLE.
* @param scheduling scheduling or {@code null} for none
*/
public GoogleCloudAiplatformV1beta1FunctionResponse setScheduling(java.lang.String scheduling) {
this.scheduling = scheduling;
return this;
}

@Override
public GoogleCloudAiplatformV1beta1FunctionResponse set(String fieldName, Object value) {
return (GoogleCloudAiplatformV1beta1FunctionResponse) super.set(fieldName, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@
package com.google.api.services.firebaseml.v2beta.model;

/**
* A `Maps` chunk is a piece of evidence that comes from Google Maps. It contains information about
* a place, such as its name, address, and reviews. This is used to provide the user with rich,
* location-based information.
* A `Maps` chunk is a piece of evidence that comes from Google Maps, containing information about
* places or routes. This is used to provide the user with rich, location-based information.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Firebase ML API. For a detailed explanation see:
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-firebaseml/v2beta/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebaseml</artifactId>
<version>v2beta-rev20260128-2.0.0</version>
<name>Firebase ML API v2beta-rev20260128-2.0.0</name>
<version>v2beta-rev20260215-2.0.0</version>
<name>Firebase ML API v2beta-rev20260215-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-firebaseml/v2beta/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebaseml</artifactId>
<version>v2beta-rev20260128-2.0.0</version>
<version>v2beta-rev20260215-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20260128-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20260215-2.0.0'
}
```

Expand Down