You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: `The API scope at which a query is run. Default value: "ANY_API" Possible values: ["ANY_API", "DATASTORE_MODE_API", "MONGODB_COMPATIBLE_API"]`,
175
175
Default: "ANY_API",
176
176
},
177
177
"database": {
@@ -181,6 +181,21 @@ with the same dimension.`,
181
181
Description: `The Firestore database id. Defaults to '"(default)"'.`,
Description: `The density configuration for this index. Possible values: ["SPARSE_ALL", "SPARSE_ANY", "DENSE"]`,
191
+
},
192
+
"multikey": {
193
+
Type: schema.TypeBool,
194
+
Optional: true,
195
+
ForceNew: true,
196
+
Description: `Optional. Whether the index is multikey. By default, the index is not multikey. For non-multikey indexes, none of the paths in the index definition reach or traverse an array, except via an explicit array index. For multikey indexes, at most one of the paths in the index definition reach or traverse an array, except via an explicit array index. Violations will result in errors. Note this field only applies to indexes with MONGODB_COMPATIBLE_API ApiScope.`,
197
+
Default: false,
198
+
},
184
199
"query_scope": {
185
200
Type: schema.TypeString,
186
201
Optional: true,
@@ -238,6 +253,18 @@ func resourceFirestoreIndexCreate(d *schema.ResourceData, meta interface{}) erro
0 commit comments