Skip to content

Commit ec0fbc1

Browse files
1 parent 8abf272 commit ec0fbc1

15 files changed

+443
-25
lines changed

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

clients/google-api-services-firebaseml/v1/2.0.0/com/google/api/services/firebaseml/v1/FirebaseML.java

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -614,30 +614,31 @@ public List setPageToken(java.lang.String pageToken) {
614614

615615
/**
616616
* When set to `true`, operations that are reachable are returned as normal, and those that
617-
* are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can
618-
* only be `true` when reading across collections e.g. when `parent` is set to
619-
* `"projects/example/locations/-"`. This field is not by default supported and will result in
617+
* are unreachable are returned in the ListOperationsResponse.unreachable field. This can only
618+
* be `true` when reading across collections. For example, when `parent` is set to
619+
* `"projects/example/locations/-"`. This field is not supported by default and will result in
620620
* an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or
621621
* product specific documentation.
622622
*/
623623
@com.google.api.client.util.Key
624624
private java.lang.Boolean returnPartialSuccess;
625625

626626
/** When set to `true`, operations that are reachable are returned as normal, and those that are
627-
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
628-
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
629-
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
630-
explicitly documented otherwise in service or product specific documentation.
627+
unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true`
628+
when reading across collections. For example, when `parent` is set to
629+
`"projects/example/locations/-"`. This field is not supported by default and will result in an
630+
`UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific
631+
documentation.
631632
*/
632633
public java.lang.Boolean getReturnPartialSuccess() {
633634
return returnPartialSuccess;
634635
}
635636

636637
/**
637638
* When set to `true`, operations that are reachable are returned as normal, and those that
638-
* are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can
639-
* only be `true` when reading across collections e.g. when `parent` is set to
640-
* `"projects/example/locations/-"`. This field is not by default supported and will result in
639+
* are unreachable are returned in the ListOperationsResponse.unreachable field. This can only
640+
* be `true` when reading across collections. For example, when `parent` is set to
641+
* `"projects/example/locations/-"`. This field is not supported by default and will result in
641642
* an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or
642643
* product specific documentation.
643644
*/

clients/google-api-services-firebaseml/v1/2.0.0/com/google/api/services/firebaseml/v1/model/ListOperationsResponse.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4545

4646
/**
4747
* Unordered list. Unreachable resources. Populated when the request sets
48-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
48+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
4949
* attempting to list all resources across all supported locations.
5050
* The value may be {@code null}.
5151
*/
@@ -88,7 +88,7 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
8888

8989
/**
9090
* Unordered list. Unreachable resources. Populated when the request sets
91-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
91+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
9292
* attempting to list all resources across all supported locations.
9393
* @return value or {@code null} for none
9494
*/
@@ -98,7 +98,7 @@ public java.util.List<java.lang.String> getUnreachable() {
9898

9999
/**
100100
* Unordered list. Unreachable resources. Populated when the request sets
101-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
101+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
102102
* attempting to list all resources across all supported locations.
103103
* @param unreachable unreachable or {@code null} for none
104104
*/

clients/google-api-services-firebaseml/v1/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>v1-rev20250929-2.0.0</version>
12-
<name>Firebase ML API v1-rev20250929-2.0.0</name>
11+
<version>v1-rev20251116-2.0.0</version>
12+
<name>Firebase ML API v1-rev20251116-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

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

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,22 @@ public final class GoogleCloudAiplatformV1beta1FunctionCall extends com.google.a
5454
@com.google.api.client.util.Key
5555
private java.lang.String name;
5656

57+
/**
58+
* Optional. The partial argument value of the function call. If provided, represents the
59+
* arguments/fields that are streamed incrementally.
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.util.List<GoogleCloudAiplatformV1beta1PartialArg> partialArgs;
64+
65+
/**
66+
* Optional. Whether this is the last part of the FunctionCall. If true, another partial message
67+
* for the current FunctionCall is expected to follow.
68+
* The value may be {@code null}.
69+
*/
70+
@com.google.api.client.util.Key
71+
private java.lang.Boolean willContinue;
72+
5773
/**
5874
* Optional. The function parameters and values in JSON object format. See
5975
* [FunctionDeclaration.parameters] for parameter details.
@@ -109,6 +125,44 @@ public GoogleCloudAiplatformV1beta1FunctionCall setName(java.lang.String name) {
109125
return this;
110126
}
111127

128+
/**
129+
* Optional. The partial argument value of the function call. If provided, represents the
130+
* arguments/fields that are streamed incrementally.
131+
* @return value or {@code null} for none
132+
*/
133+
public java.util.List<GoogleCloudAiplatformV1beta1PartialArg> getPartialArgs() {
134+
return partialArgs;
135+
}
136+
137+
/**
138+
* Optional. The partial argument value of the function call. If provided, represents the
139+
* arguments/fields that are streamed incrementally.
140+
* @param partialArgs partialArgs or {@code null} for none
141+
*/
142+
public GoogleCloudAiplatformV1beta1FunctionCall setPartialArgs(java.util.List<GoogleCloudAiplatformV1beta1PartialArg> partialArgs) {
143+
this.partialArgs = partialArgs;
144+
return this;
145+
}
146+
147+
/**
148+
* Optional. Whether this is the last part of the FunctionCall. If true, another partial message
149+
* for the current FunctionCall is expected to follow.
150+
* @return value or {@code null} for none
151+
*/
152+
public java.lang.Boolean getWillContinue() {
153+
return willContinue;
154+
}
155+
156+
/**
157+
* Optional. Whether this is the last part of the FunctionCall. If true, another partial message
158+
* for the current FunctionCall is expected to follow.
159+
* @param willContinue willContinue or {@code null} for none
160+
*/
161+
public GoogleCloudAiplatformV1beta1FunctionCall setWillContinue(java.lang.Boolean willContinue) {
162+
this.willContinue = willContinue;
163+
return this;
164+
}
165+
112166
@Override
113167
public GoogleCloudAiplatformV1beta1FunctionCall set(String fieldName, Object value) {
114168
return (GoogleCloudAiplatformV1beta1FunctionCall) super.set(fieldName, value);

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ public final class GoogleCloudAiplatformV1beta1FunctionCallingConfig extends com
4545
@com.google.api.client.util.Key
4646
private java.lang.String mode;
4747

48+
/**
49+
* Optional. When set to true, arguments of a single function call will be streamed out in
50+
* multiple parts/contents/responses. Partial parameter results will be returned in the
51+
* [FunctionCall.partial_args] field.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.Boolean streamFunctionCallArguments;
56+
4857
/**
4958
* Optional. Function names to call. Only set when the Mode is ANY. Function names should match
5059
* [FunctionDeclaration.name]. With mode set to ANY, model will predict a function call from the
@@ -83,6 +92,27 @@ public GoogleCloudAiplatformV1beta1FunctionCallingConfig setMode(java.lang.Strin
8392
return this;
8493
}
8594

95+
/**
96+
* Optional. When set to true, arguments of a single function call will be streamed out in
97+
* multiple parts/contents/responses. Partial parameter results will be returned in the
98+
* [FunctionCall.partial_args] field.
99+
* @return value or {@code null} for none
100+
*/
101+
public java.lang.Boolean getStreamFunctionCallArguments() {
102+
return streamFunctionCallArguments;
103+
}
104+
105+
/**
106+
* Optional. When set to true, arguments of a single function call will be streamed out in
107+
* multiple parts/contents/responses. Partial parameter results will be returned in the
108+
* [FunctionCall.partial_args] field.
109+
* @param streamFunctionCallArguments streamFunctionCallArguments or {@code null} for none
110+
*/
111+
public GoogleCloudAiplatformV1beta1FunctionCallingConfig setStreamFunctionCallArguments(java.lang.Boolean streamFunctionCallArguments) {
112+
this.streamFunctionCallArguments = streamFunctionCallArguments;
113+
return this;
114+
}
115+
86116
@Override
87117
public GoogleCloudAiplatformV1beta1FunctionCallingConfig set(String fieldName, Object value) {
88118
return (GoogleCloudAiplatformV1beta1FunctionCallingConfig) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig ex
5050
@com.google.api.client.util.Key
5151
private java.lang.Integer thinkingBudget;
5252

53+
/**
54+
* Optional. The number of thoughts tokens that the model should generate.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String thinkingLevel;
59+
5360
/**
5461
* Optional. If true, the model will include its thoughts in the response. "Thoughts" are the
5562
* intermediate steps the model takes to arrive at the final response. They can provide insights
@@ -94,6 +101,23 @@ public GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig setThinkingBud
94101
return this;
95102
}
96103

104+
/**
105+
* Optional. The number of thoughts tokens that the model should generate.
106+
* @return value or {@code null} for none
107+
*/
108+
public java.lang.String getThinkingLevel() {
109+
return thinkingLevel;
110+
}
111+
112+
/**
113+
* Optional. The number of thoughts tokens that the model should generate.
114+
* @param thinkingLevel thinkingLevel or {@code null} for none
115+
*/
116+
public GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig setThinkingLevel(java.lang.String thinkingLevel) {
117+
this.thinkingLevel = thinkingLevel;
118+
return this;
119+
}
120+
97121
@Override
98122
public GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig set(String fieldName, Object value) {
99123
return (GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig) super.set(fieldName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ public final class GoogleCloudAiplatformV1beta1ImageConfig extends com.google.ap
4646
@com.google.api.client.util.Key
4747
private GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions imageOutputOptions;
4848

49+
/**
50+
* Optional. Specifies the size of generated images. Supported values are `1K`, `2K`, `4K`. If not
51+
* specified, the model will use default value `1K`.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.String imageSize;
56+
4957
/**
5058
* Optional. Controls whether the model can generate people.
5159
* The value may be {@code null}.
@@ -89,6 +97,25 @@ public GoogleCloudAiplatformV1beta1ImageConfig setImageOutputOptions(GoogleCloud
8997
return this;
9098
}
9199

100+
/**
101+
* Optional. Specifies the size of generated images. Supported values are `1K`, `2K`, `4K`. If not
102+
* specified, the model will use default value `1K`.
103+
* @return value or {@code null} for none
104+
*/
105+
public java.lang.String getImageSize() {
106+
return imageSize;
107+
}
108+
109+
/**
110+
* Optional. Specifies the size of generated images. Supported values are `1K`, `2K`, `4K`. If not
111+
* specified, the model will use default value `1K`.
112+
* @param imageSize imageSize or {@code null} for none
113+
*/
114+
public GoogleCloudAiplatformV1beta1ImageConfig setImageSize(java.lang.String imageSize) {
115+
this.imageSize = imageSize;
116+
return this;
117+
}
118+
92119
/**
93120
* Optional. Controls whether the model can generate people.
94121
* @return value or {@code null} for none

0 commit comments

Comments
 (0)