Skip to content

Commit e385c5e

Browse files
1 parent 535d9a7 commit e385c5e

File tree

18 files changed

+53
-49
lines changed

18 files changed

+53
-49
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-rev20240324-2.0.0</version>
25+
<version>v1-rev20240420-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-rev20240324-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firestore:v1-rev20240420-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,8 +1376,7 @@ public class BackupSchedules {
13761376

13771377
/**
13781378
* Creates a backup schedule on a database. At most two backup schedules can be configured on a
1379-
* database, one daily backup schedule with retention up to 7 days and one weekly backup schedule
1380-
* with retention up to 14 weeks.
1379+
* database, one daily backup schedule and one weekly backup schedule.
13811380
*
13821381
* Create a request for the method "backupSchedules.create".
13831382
*
@@ -1403,8 +1402,7 @@ public class Create extends FirestoreRequest<com.google.api.services.firestore.v
14031402

14041403
/**
14051404
* Creates a backup schedule on a database. At most two backup schedules can be configured on a
1406-
* database, one daily backup schedule with retention up to 7 days and one weekly backup schedule
1407-
* with retention up to 14 weeks.
1405+
* database, one daily backup schedule and one weekly backup schedule.
14081406
*
14091407
* Create a request for the method "backupSchedules.create".
14101408
*
@@ -2440,14 +2438,14 @@ public List setParent(java.lang.String parent) {
24402438
* The filter to apply to list results. Currently, FirestoreAdmin.ListFields only
24412439
* supports listing fields that have been explicitly overridden. To issue this query,
24422440
* call FirestoreAdmin.ListFields with a filter that includes
2443-
* `indexConfig.usesAncestorConfig:false` .
2441+
* `indexConfig.usesAncestorConfig:false` or `ttlConfig:*`.
24442442
*/
24452443
@com.google.api.client.util.Key
24462444
private java.lang.String filter;
24472445

24482446
/** The filter to apply to list results. Currently, FirestoreAdmin.ListFields only supports listing
24492447
fields that have been explicitly overridden. To issue this query, call FirestoreAdmin.ListFields
2450-
with a filter that includes `indexConfig.usesAncestorConfig:false` .
2448+
with a filter that includes `indexConfig.usesAncestorConfig:false` or `ttlConfig:*`.
24512449
*/
24522450
public java.lang.String getFilter() {
24532451
return filter;
@@ -2457,7 +2455,7 @@ public java.lang.String getFilter() {
24572455
* The filter to apply to list results. Currently, FirestoreAdmin.ListFields only
24582456
* supports listing fields that have been explicitly overridden. To issue this query,
24592457
* call FirestoreAdmin.ListFields with a filter that includes
2460-
* `indexConfig.usesAncestorConfig:false` .
2458+
* `indexConfig.usesAncestorConfig:false` or `ttlConfig:*`.
24612459
*/
24622460
public List setFilter(java.lang.String filter) {
24632461
this.filter = filter;

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
/**
2020
* A Document has changed. May be the result of multiple writes, including deletes, that ultimately
2121
* resulted in a new value for the Document. Multiple DocumentChange messages may be returned for
22-
* the same logical change, if multiple targets are affected.
22+
* the same logical change, if multiple targets are affected. For PipelineQueryTargets, `document`
23+
* will be in the new pipeline format, For a Listen stream with both QueryTargets and
24+
* PipelineQueryTargets present, if a document matches both types of queries, then a separate
25+
* DocumentChange messages will be sent out one for each set.
2326
*
2427
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2528
* transmitted over HTTP when working with the Cloud Firestore API. For a detailed explanation see:

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class FindNearest extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The Distance Measure to use, required.
33+
* Required. The distance measure to use, required.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -61,15 +61,15 @@ public final class FindNearest extends com.google.api.client.json.GenericJson {
6161
private FieldReference vectorField;
6262

6363
/**
64-
* Required. The Distance Measure to use, required.
64+
* Required. The distance measure to use, required.
6565
* @return value or {@code null} for none
6666
*/
6767
public java.lang.String getDistanceMeasure() {
6868
return distanceMeasure;
6969
}
7070

7171
/**
72-
* Required. The Distance Measure to use, required.
72+
* Required. The distance measure to use, required.
7373
* @param distanceMeasure distanceMeasure or {@code null} for none
7474
*/
7575
public FindNearest setDistanceMeasure(java.lang.String distanceMeasure) {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public final class GoogleFirestoreAdminV1BackupSchedule extends com.google.api.c
3939
private String createTime;
4040

4141
/**
42-
* For a schedule that runs daily at a specified time.
42+
* For a schedule that runs daily.
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key
@@ -71,7 +71,7 @@ public final class GoogleFirestoreAdminV1BackupSchedule extends com.google.api.c
7171
private String updateTime;
7272

7373
/**
74-
* For a schedule that runs weekly on a specific day and time.
74+
* For a schedule that runs weekly on a specific day.
7575
* The value may be {@code null}.
7676
*/
7777
@com.google.api.client.util.Key
@@ -97,15 +97,15 @@ public GoogleFirestoreAdminV1BackupSchedule setCreateTime(String createTime) {
9797
}
9898

9999
/**
100-
* For a schedule that runs daily at a specified time.
100+
* For a schedule that runs daily.
101101
* @return value or {@code null} for none
102102
*/
103103
public GoogleFirestoreAdminV1DailyRecurrence getDailyRecurrence() {
104104
return dailyRecurrence;
105105
}
106106

107107
/**
108-
* For a schedule that runs daily at a specified time.
108+
* For a schedule that runs daily.
109109
* @param dailyRecurrence dailyRecurrence or {@code null} for none
110110
*/
111111
public GoogleFirestoreAdminV1BackupSchedule setDailyRecurrence(GoogleFirestoreAdminV1DailyRecurrence dailyRecurrence) {
@@ -173,15 +173,15 @@ public GoogleFirestoreAdminV1BackupSchedule setUpdateTime(String updateTime) {
173173
}
174174

175175
/**
176-
* For a schedule that runs weekly on a specific day and time.
176+
* For a schedule that runs weekly on a specific day.
177177
* @return value or {@code null} for none
178178
*/
179179
public GoogleFirestoreAdminV1WeeklyRecurrence getWeeklyRecurrence() {
180180
return weeklyRecurrence;
181181
}
182182

183183
/**
184-
* For a schedule that runs weekly on a specific day and time.
184+
* For a schedule that runs weekly on a specific day.
185185
* @param weeklyRecurrence weeklyRecurrence or {@code null} for none
186186
*/
187187
public GoogleFirestoreAdminV1BackupSchedule setWeeklyRecurrence(GoogleFirestoreAdminV1WeeklyRecurrence weeklyRecurrence) {

clients/google-api-services-firestore/v1/2.0.0/com/google/api/services/firestore/v1/model/GoogleFirestoreAdminV1DailyRecurrence.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.firestore.v1.model;
1818

1919
/**
20-
* Represents a recurring schedule that runs at a specific time every day. The time zone is UTC.
20+
* Represents a recurring schedule that runs every day. The time zone is UTC.
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 Cloud Firestore API. For a detailed explanation see:

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public final class GoogleFirestoreAdminV1IndexField extends com.google.api.clien
5454
private java.lang.String order;
5555

5656
/**
57-
* Indicates that this field supports nearest neighbors and distance operations on vector.
57+
* Indicates that this field supports nearest neighbor and distance operations on vector.
5858
* The value may be {@code null}.
5959
*/
6060
@com.google.api.client.util.Key
@@ -116,15 +116,15 @@ public GoogleFirestoreAdminV1IndexField setOrder(java.lang.String order) {
116116
}
117117

118118
/**
119-
* Indicates that this field supports nearest neighbors and distance operations on vector.
119+
* Indicates that this field supports nearest neighbor and distance operations on vector.
120120
* @return value or {@code null} for none
121121
*/
122122
public GoogleFirestoreAdminV1VectorConfig getVectorConfig() {
123123
return vectorConfig;
124124
}
125125

126126
/**
127-
* Indicates that this field supports nearest neighbors and distance operations on vector.
127+
* Indicates that this field supports nearest neighbor and distance operations on vector.
128128
* @param vectorConfig vectorConfig or {@code null} for none
129129
*/
130130
public GoogleFirestoreAdminV1IndexField setVectorConfig(GoogleFirestoreAdminV1VectorConfig vectorConfig) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public final class StructuredQuery extends com.google.api.client.json.GenericJso
4141
private Cursor endAt;
4242

4343
/**
44-
* Optional. A potential Nearest Neighbors Search. Applies after all other filters and ordering.
44+
* Optional. A potential nearest neighbors search. Applies after all other filters and ordering.
4545
* Finds the closest vector embeddings to the given query vector.
4646
* The value may be {@code null}.
4747
*/
@@ -157,7 +157,7 @@ public StructuredQuery setEndAt(Cursor endAt) {
157157
}
158158

159159
/**
160-
* Optional. A potential Nearest Neighbors Search. Applies after all other filters and ordering.
160+
* Optional. A potential nearest neighbors search. Applies after all other filters and ordering.
161161
* Finds the closest vector embeddings to the given query vector.
162162
* @return value or {@code null} for none
163163
*/
@@ -166,7 +166,7 @@ public FindNearest getFindNearest() {
166166
}
167167

168168
/**
169-
* Optional. A potential Nearest Neighbors Search. Applies after all other filters and ordering.
169+
* Optional. A potential nearest neighbors search. Applies after all other filters and ordering.
170170
* Finds the closest vector embeddings to the given query vector.
171171
* @param findNearest findNearest or {@code null} for none
172172
*/

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class Value extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* An array value. Cannot directly contain another array value, though can contain an map which
33+
* An array value. Cannot directly contain another array value, though can contain a map which
3434
* contains another array.
3535
* The value may be {@code null}.
3636
*/
@@ -112,7 +112,7 @@ public final class Value extends com.google.api.client.json.GenericJson {
112112
private String timestampValue;
113113

114114
/**
115-
* An array value. Cannot directly contain another array value, though can contain an map which
115+
* An array value. Cannot directly contain another array value, though can contain a map which
116116
* contains another array.
117117
* @return value or {@code null} for none
118118
*/
@@ -121,7 +121,7 @@ public ArrayValue getArrayValue() {
121121
}
122122

123123
/**
124-
* An array value. Cannot directly contain another array value, though can contain an map which
124+
* An array value. Cannot directly contain another array value, though can contain a map which
125125
* contains another array.
126126
* @param arrayValue arrayValue or {@code null} for none
127127
*/

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-rev20240324-2.0.0</version>
12-
<name>Cloud Firestore API v1-rev20240324-2.0.0</name>
11+
<version>v1-rev20240420-2.0.0</version>
12+
<name>Cloud Firestore API v1-rev20240420-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-rev20240324-2.0.0</version>
25+
<version>v1-rev20240420-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-rev20240324-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firestore:v1-rev20240420-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-rev20240324-2.0.0</version>
25+
<version>v1beta1-rev20240420-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-rev20240324-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firestore:v1beta1-rev20240420-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firestore/v1beta1/2.0.0/com/google/api/services/firestore/v1beta1/model/DocumentChange.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
/**
2020
* A Document has changed. May be the result of multiple writes, including deletes, that ultimately
2121
* resulted in a new value for the Document. Multiple DocumentChange messages may be returned for
22-
* the same logical change, if multiple targets are affected.
22+
* the same logical change, if multiple targets are affected. For PipelineQueryTargets, `document`
23+
* will be in the new pipeline format, For a Listen stream with both QueryTargets and
24+
* PipelineQueryTargets present, if a document matches both types of queries, then a separate
25+
* DocumentChange messages will be sent out one for each set.
2326
*
2427
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2528
* transmitted over HTTP when working with the Cloud Firestore API. For a detailed explanation see:

clients/google-api-services-firestore/v1beta1/2.0.0/com/google/api/services/firestore/v1beta1/model/FindNearest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class FindNearest extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The Distance Measure to use, required.
33+
* Required. The distance measure to use, required.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
@@ -61,15 +61,15 @@ public final class FindNearest extends com.google.api.client.json.GenericJson {
6161
private FieldReference vectorField;
6262

6363
/**
64-
* Required. The Distance Measure to use, required.
64+
* Required. The distance measure to use, required.
6565
* @return value or {@code null} for none
6666
*/
6767
public java.lang.String getDistanceMeasure() {
6868
return distanceMeasure;
6969
}
7070

7171
/**
72-
* Required. The Distance Measure to use, required.
72+
* Required. The distance measure to use, required.
7373
* @param distanceMeasure distanceMeasure or {@code null} for none
7474
*/
7575
public FindNearest setDistanceMeasure(java.lang.String distanceMeasure) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public final class StructuredQuery extends com.google.api.client.json.GenericJso
4141
private Cursor endAt;
4242

4343
/**
44-
* Optional. A potential Nearest Neighbors Search. Applies after all other filters and ordering.
44+
* Optional. A potential nearest neighbors search. Applies after all other filters and ordering.
4545
* Finds the closest vector embeddings to the given query vector.
4646
* The value may be {@code null}.
4747
*/
@@ -157,7 +157,7 @@ public StructuredQuery setEndAt(Cursor endAt) {
157157
}
158158

159159
/**
160-
* Optional. A potential Nearest Neighbors Search. Applies after all other filters and ordering.
160+
* Optional. A potential nearest neighbors search. Applies after all other filters and ordering.
161161
* Finds the closest vector embeddings to the given query vector.
162162
* @return value or {@code null} for none
163163
*/
@@ -166,7 +166,7 @@ public FindNearest getFindNearest() {
166166
}
167167

168168
/**
169-
* Optional. A potential Nearest Neighbors Search. Applies after all other filters and ordering.
169+
* Optional. A potential nearest neighbors search. Applies after all other filters and ordering.
170170
* Finds the closest vector embeddings to the given query vector.
171171
* @param findNearest findNearest or {@code null} for none
172172
*/

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class Value extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* An array value. Cannot directly contain another array value, though can contain an map which
33+
* An array value. Cannot directly contain another array value, though can contain a map which
3434
* contains another array.
3535
* The value may be {@code null}.
3636
*/
@@ -112,7 +112,7 @@ public final class Value extends com.google.api.client.json.GenericJson {
112112
private String timestampValue;
113113

114114
/**
115-
* An array value. Cannot directly contain another array value, though can contain an map which
115+
* An array value. Cannot directly contain another array value, though can contain a map which
116116
* contains another array.
117117
* @return value or {@code null} for none
118118
*/
@@ -121,7 +121,7 @@ public ArrayValue getArrayValue() {
121121
}
122122

123123
/**
124-
* An array value. Cannot directly contain another array value, though can contain an map which
124+
* An array value. Cannot directly contain another array value, though can contain a map which
125125
* contains another array.
126126
* @param arrayValue arrayValue or {@code null} for none
127127
*/

clients/google-api-services-firestore/v1beta1/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>v1beta1-rev20240324-2.0.0</version>
12-
<name>Cloud Firestore API v1beta1-rev20240324-2.0.0</name>
11+
<version>v1beta1-rev20240420-2.0.0</version>
12+
<name>Cloud Firestore API v1beta1-rev20240420-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)