Skip to content

Commit faee7ef

Browse files
1 parent de540e2 commit faee7ef

File tree

6 files changed

+72
-12
lines changed

6 files changed

+72
-12
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-rev20241204-2.0.0</version>
25+
<version>v1-rev20250120-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-rev20241204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firestore:v1-rev20250120-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class GoogleFirestoreAdminV1Index extends com.google.api.client.jso
3636
@com.google.api.client.util.Key
3737
private java.lang.String apiScope;
3838

39+
/**
40+
* Immutable. The density configuration of the index.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String density;
45+
3946
/**
4047
* The fields supported by this index. For composite indexes, this requires a minimum of 2 and a
4148
* maximum of 100 fields. The last field entry is always for the field path `__name__`. If, on
@@ -49,6 +56,17 @@ public final class GoogleFirestoreAdminV1Index extends com.google.api.client.jso
4956
@com.google.api.client.util.Key
5057
private java.util.List<GoogleFirestoreAdminV1IndexField> fields;
5158

59+
/**
60+
* Optional. Whether the index is multikey. By default, the index is not multikey. For non-
61+
* multikey indexes, none of the paths in the index definition reach or traverse an array, except
62+
* via an explicit array index. For multikey indexes, at most one of the paths in the index
63+
* definition reach or traverse an array, except via an explicit array index. Violations will
64+
* result in errors. Note this field only applies to index with IGNITE_API ApiScope.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private java.lang.Boolean multikey;
69+
5270
/**
5371
* Output only. A server defined name for this index. The form of this name for composite indexes
5472
* will be: `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexe
@@ -93,6 +111,23 @@ public GoogleFirestoreAdminV1Index setApiScope(java.lang.String apiScope) {
93111
return this;
94112
}
95113

114+
/**
115+
* Immutable. The density configuration of the index.
116+
* @return value or {@code null} for none
117+
*/
118+
public java.lang.String getDensity() {
119+
return density;
120+
}
121+
122+
/**
123+
* Immutable. The density configuration of the index.
124+
* @param density density or {@code null} for none
125+
*/
126+
public GoogleFirestoreAdminV1Index setDensity(java.lang.String density) {
127+
this.density = density;
128+
return this;
129+
}
130+
96131
/**
97132
* The fields supported by this index. For composite indexes, this requires a minimum of 2 and a
98133
* maximum of 100 fields. The last field entry is always for the field path `__name__`. If, on
@@ -122,6 +157,31 @@ public GoogleFirestoreAdminV1Index setFields(java.util.List<GoogleFirestoreAdmin
122157
return this;
123158
}
124159

160+
/**
161+
* Optional. Whether the index is multikey. By default, the index is not multikey. For non-
162+
* multikey indexes, none of the paths in the index definition reach or traverse an array, except
163+
* via an explicit array index. For multikey indexes, at most one of the paths in the index
164+
* definition reach or traverse an array, except via an explicit array index. Violations will
165+
* result in errors. Note this field only applies to index with IGNITE_API ApiScope.
166+
* @return value or {@code null} for none
167+
*/
168+
public java.lang.Boolean getMultikey() {
169+
return multikey;
170+
}
171+
172+
/**
173+
* Optional. Whether the index is multikey. By default, the index is not multikey. For non-
174+
* multikey indexes, none of the paths in the index definition reach or traverse an array, except
175+
* via an explicit array index. For multikey indexes, at most one of the paths in the index
176+
* definition reach or traverse an array, except via an explicit array index. Violations will
177+
* result in errors. Note this field only applies to index with IGNITE_API ApiScope.
178+
* @param multikey multikey or {@code null} for none
179+
*/
180+
public GoogleFirestoreAdminV1Index setMultikey(java.lang.Boolean multikey) {
181+
this.multikey = multikey;
182+
return this;
183+
}
184+
125185
/**
126186
* Output only. A server defined name for this index. The form of this name for composite indexes
127187
* will be: `projects/{project_id}/databases/{database_id}/collectionGroups/{collection_id}/indexe

clients/google-api-services-firestore/v1/2.0.0/pom.xml

Lines changed: 4 additions & 4 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-rev20241204-2.0.0</version>
12-
<name>Cloud Firestore API v1-rev20241204-2.0.0</name>
11+
<version>v1-rev20250120-2.0.0</version>
12+
<name>Cloud Firestore API v1-rev20250120-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.37.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.7.1/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.7.1</version>
128+
<version>2.7.2</version>
129129
</dependency>
130130
</dependencies>
131131

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

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
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.37.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.7.1/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.7.1</version>
128+
<version>2.7.2</version>
129129
</dependency>
130130
</dependencies>
131131

clients/google-api-services-firestore/v1beta2/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.37.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.7.1/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.7.1</version>
128+
<version>2.7.2</version>
129129
</dependency>
130130
</dependencies>
131131

0 commit comments

Comments
 (0)