Skip to content

Commit f9593c8

Browse files
1 parent 8c92152 commit f9593c8

File tree

11 files changed

+177
-81
lines changed

11 files changed

+177
-81
lines changed

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

clients/google-api-services-firestore/v1/2.0.0/com/google/api/services/firestore/v1/model/GoogleFirestoreAdminV1Database.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public final class GoogleFirestoreAdminV1Database extends com.google.api.client.
133133
private java.lang.String keyPrefix;
134134

135135
/**
136-
* The location of the database. Available locations are listed at
136+
* Required. The location of the database. Available locations are listed at
137137
* https://cloud.google.com/firestore/docs/locations.
138138
* The value may be {@code null}.
139139
*/
@@ -194,8 +194,8 @@ public final class GoogleFirestoreAdminV1Database extends com.google.api.client.
194194
private java.util.Map<String, java.lang.String> tags;
195195

196196
/**
197-
* The type of the database. See https://cloud.google.com/datastore/docs/firestore-or-datastore
198-
* for information about how to choose.
197+
* Required. The type of the database. See https://cloud.google.com/datastore/docs/firestore-or-
198+
* datastore for information about how to choose.
199199
* The value may be {@code null}.
200200
*/
201201
@com.google.api.client.util.Key
@@ -469,7 +469,7 @@ public GoogleFirestoreAdminV1Database setKeyPrefix(java.lang.String keyPrefix) {
469469
}
470470

471471
/**
472-
* The location of the database. Available locations are listed at
472+
* Required. The location of the database. Available locations are listed at
473473
* https://cloud.google.com/firestore/docs/locations.
474474
* @return value or {@code null} for none
475475
*/
@@ -478,7 +478,7 @@ public java.lang.String getLocationId() {
478478
}
479479

480480
/**
481-
* The location of the database. Available locations are listed at
481+
* Required. The location of the database. Available locations are listed at
482482
* https://cloud.google.com/firestore/docs/locations.
483483
* @param locationId locationId or {@code null} for none
484484
*/
@@ -615,17 +615,17 @@ public GoogleFirestoreAdminV1Database setTags(java.util.Map<String, java.lang.St
615615
}
616616

617617
/**
618-
* The type of the database. See https://cloud.google.com/datastore/docs/firestore-or-datastore
619-
* for information about how to choose.
618+
* Required. The type of the database. See https://cloud.google.com/datastore/docs/firestore-or-
619+
* datastore for information about how to choose.
620620
* @return value or {@code null} for none
621621
*/
622622
public java.lang.String getType() {
623623
return type;
624624
}
625625

626626
/**
627-
* The type of the database. See https://cloud.google.com/datastore/docs/firestore-or-datastore
628-
* for information about how to choose.
627+
* Required. The type of the database. See https://cloud.google.com/datastore/docs/firestore-or-
628+
* datastore for information about how to choose.
629629
* @param type type or {@code null} for none
630630
*/
631631
public GoogleFirestoreAdminV1Database setType(java.lang.String type) {

clients/google-api-services-firestore/v1/2.0.0/com/google/api/services/firestore/v1/model/StructuredQuery.java

Lines changed: 48 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,22 @@ public final class StructuredQuery extends com.google.api.client.json.GenericJso
7979
private java.lang.Integer offset;
8080

8181
/**
82-
* The order to apply to the query results. Firestore allows callers to provide a full ordering, a
83-
* partial ordering, or no ordering at all. In all cases, Firestore guarantees a stable ordering
84-
* through the following rules: * The `order_by` is required to reference all fields used with an
85-
* inequality filter. * All fields that are required to be in the `order_by` but are not already
86-
* present are appended in lexicographical ordering of the field name. * If an order on `__name__`
87-
* is not specified, it is appended by default. Fields are appended with the same sort direction
88-
* as the last order specified, or 'ASCENDING' if no order was specified. For example: * `ORDER BY
89-
* a` becomes `ORDER BY a ASC, __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC,
90-
* __name__ DESC` * `WHERE a > 1` becomes `WHERE a > 1 ORDER BY a ASC, __name__ ASC` * `WHERE
91-
* __name__ > ... AND a > 1` becomes `WHERE __name__ > ... AND a > 1 ORDER BY a ASC, __name__ ASC`
82+
* The order to apply to the query results. Callers can provide a full ordering, a partial
83+
* ordering, or no ordering at all. While Firestore will always respect the provided order, the
84+
* behavior for queries without a full ordering is different per database edition: In Standard
85+
* edition, Firestore guarantees a stable ordering through the following rules: * The `order_by`
86+
* is required to reference all fields used with an inequality filter. * All fields that are
87+
* required to be in the `order_by` but are not already present are appended in lexicographical
88+
* ordering of the field name. * If an order on `__name__` is not specified, it is appended by
89+
* default. Fields are appended with the same sort direction as the last order specified, or
90+
* 'ASCENDING' if no order was specified. For example: * `ORDER BY a` becomes `ORDER BY a ASC,
91+
* __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC, __name__ DESC` * `WHERE a > 1`
92+
* becomes `WHERE a > 1 ORDER BY a ASC, __name__ ASC` * `WHERE __name__ > ... AND a > 1` becomes
93+
* `WHERE __name__ > ... AND a > 1 ORDER BY a ASC, __name__ ASC` In Enterprise edition, Firestore
94+
* does not guarantee a stable ordering. Instead it will pick the most efficient ordering based on
95+
* the indexes available at the time of query execution. This will result in a different ordering
96+
* for queries that are otherwise identical. To ensure a stable ordering, always include a unique
97+
* field in the `order_by` clause, such as `__name__`.
9298
* The value may be {@code null}.
9399
*/
94100
@com.google.api.client.util.Key
@@ -233,33 +239,45 @@ public StructuredQuery setOffset(java.lang.Integer offset) {
233239
}
234240

235241
/**
236-
* The order to apply to the query results. Firestore allows callers to provide a full ordering, a
237-
* partial ordering, or no ordering at all. In all cases, Firestore guarantees a stable ordering
238-
* through the following rules: * The `order_by` is required to reference all fields used with an
239-
* inequality filter. * All fields that are required to be in the `order_by` but are not already
240-
* present are appended in lexicographical ordering of the field name. * If an order on `__name__`
241-
* is not specified, it is appended by default. Fields are appended with the same sort direction
242-
* as the last order specified, or 'ASCENDING' if no order was specified. For example: * `ORDER BY
243-
* a` becomes `ORDER BY a ASC, __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC,
244-
* __name__ DESC` * `WHERE a > 1` becomes `WHERE a > 1 ORDER BY a ASC, __name__ ASC` * `WHERE
245-
* __name__ > ... AND a > 1` becomes `WHERE __name__ > ... AND a > 1 ORDER BY a ASC, __name__ ASC`
242+
* The order to apply to the query results. Callers can provide a full ordering, a partial
243+
* ordering, or no ordering at all. While Firestore will always respect the provided order, the
244+
* behavior for queries without a full ordering is different per database edition: In Standard
245+
* edition, Firestore guarantees a stable ordering through the following rules: * The `order_by`
246+
* is required to reference all fields used with an inequality filter. * All fields that are
247+
* required to be in the `order_by` but are not already present are appended in lexicographical
248+
* ordering of the field name. * If an order on `__name__` is not specified, it is appended by
249+
* default. Fields are appended with the same sort direction as the last order specified, or
250+
* 'ASCENDING' if no order was specified. For example: * `ORDER BY a` becomes `ORDER BY a ASC,
251+
* __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC, __name__ DESC` * `WHERE a > 1`
252+
* becomes `WHERE a > 1 ORDER BY a ASC, __name__ ASC` * `WHERE __name__ > ... AND a > 1` becomes
253+
* `WHERE __name__ > ... AND a > 1 ORDER BY a ASC, __name__ ASC` In Enterprise edition, Firestore
254+
* does not guarantee a stable ordering. Instead it will pick the most efficient ordering based on
255+
* the indexes available at the time of query execution. This will result in a different ordering
256+
* for queries that are otherwise identical. To ensure a stable ordering, always include a unique
257+
* field in the `order_by` clause, such as `__name__`.
246258
* @return value or {@code null} for none
247259
*/
248260
public java.util.List<Order> getOrderBy() {
249261
return orderBy;
250262
}
251263

252264
/**
253-
* The order to apply to the query results. Firestore allows callers to provide a full ordering, a
254-
* partial ordering, or no ordering at all. In all cases, Firestore guarantees a stable ordering
255-
* through the following rules: * The `order_by` is required to reference all fields used with an
256-
* inequality filter. * All fields that are required to be in the `order_by` but are not already
257-
* present are appended in lexicographical ordering of the field name. * If an order on `__name__`
258-
* is not specified, it is appended by default. Fields are appended with the same sort direction
259-
* as the last order specified, or 'ASCENDING' if no order was specified. For example: * `ORDER BY
260-
* a` becomes `ORDER BY a ASC, __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC,
261-
* __name__ DESC` * `WHERE a > 1` becomes `WHERE a > 1 ORDER BY a ASC, __name__ ASC` * `WHERE
262-
* __name__ > ... AND a > 1` becomes `WHERE __name__ > ... AND a > 1 ORDER BY a ASC, __name__ ASC`
265+
* The order to apply to the query results. Callers can provide a full ordering, a partial
266+
* ordering, or no ordering at all. While Firestore will always respect the provided order, the
267+
* behavior for queries without a full ordering is different per database edition: In Standard
268+
* edition, Firestore guarantees a stable ordering through the following rules: * The `order_by`
269+
* is required to reference all fields used with an inequality filter. * All fields that are
270+
* required to be in the `order_by` but are not already present are appended in lexicographical
271+
* ordering of the field name. * If an order on `__name__` is not specified, it is appended by
272+
* default. Fields are appended with the same sort direction as the last order specified, or
273+
* 'ASCENDING' if no order was specified. For example: * `ORDER BY a` becomes `ORDER BY a ASC,
274+
* __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC, __name__ DESC` * `WHERE a > 1`
275+
* becomes `WHERE a > 1 ORDER BY a ASC, __name__ ASC` * `WHERE __name__ > ... AND a > 1` becomes
276+
* `WHERE __name__ > ... AND a > 1 ORDER BY a ASC, __name__ ASC` In Enterprise edition, Firestore
277+
* does not guarantee a stable ordering. Instead it will pick the most efficient ordering based on
278+
* the indexes available at the time of query execution. This will result in a different ordering
279+
* for queries that are otherwise identical. To ensure a stable ordering, always include a unique
280+
* field in the `order_by` clause, such as `__name__`.
263281
* @param orderBy orderBy or {@code null} for none
264282
*/
265283
public StructuredQuery setOrderBy(java.util.List<Order> orderBy) {

clients/google-api-services-firestore/v1/2.0.0/com/google/api/services/firestore/v1/model/Value.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,15 @@ public final class Value extends com.google.api.client.json.GenericJson {
136136
@com.google.api.client.util.Key
137137
private String timestampValue;
138138

139+
/**
140+
* Pointer to a variable defined elsewhere in a pipeline. Unlike `field_reference_value` which
141+
* references a field within a document, this refers to a variable, defined in a separate
142+
* namespace than the fields of a document.
143+
* The value may be {@code null}.
144+
*/
145+
@com.google.api.client.util.Key
146+
private java.lang.String variableReferenceValue;
147+
139148
/**
140149
* An array value. Cannot directly contain another array value, though can contain a map which
141150
* contains another array.
@@ -422,6 +431,27 @@ public Value setTimestampValue(String timestampValue) {
422431
return this;
423432
}
424433

434+
/**
435+
* Pointer to a variable defined elsewhere in a pipeline. Unlike `field_reference_value` which
436+
* references a field within a document, this refers to a variable, defined in a separate
437+
* namespace than the fields of a document.
438+
* @return value or {@code null} for none
439+
*/
440+
public java.lang.String getVariableReferenceValue() {
441+
return variableReferenceValue;
442+
}
443+
444+
/**
445+
* Pointer to a variable defined elsewhere in a pipeline. Unlike `field_reference_value` which
446+
* references a field within a document, this refers to a variable, defined in a separate
447+
* namespace than the fields of a document.
448+
* @param variableReferenceValue variableReferenceValue or {@code null} for none
449+
*/
450+
public Value setVariableReferenceValue(java.lang.String variableReferenceValue) {
451+
this.variableReferenceValue = variableReferenceValue;
452+
return this;
453+
}
454+
425455
@Override
426456
public Value set(String fieldName, Object value) {
427457
return (Value) super.set(fieldName, value);

clients/google-api-services-firestore/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-firestore</artifactId>
11-
<version>v1-rev20260212-2.0.0</version>
12-
<name>Cloud Firestore API v1-rev20260212-2.0.0</name>
11+
<version>v1-rev20260304-2.0.0</version>
12+
<name>Cloud Firestore API v1-rev20260304-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-firestore/v1beta1/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-firestore</artifactId>
25-
<version>v1beta1-rev20260130-2.0.0</version>
25+
<version>v1beta1-rev20260304-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-firestore:v1beta1-rev20260130-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firestore:v1beta1-rev20260304-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)