Move updateCollection to ARM (#152)

This commit is contained in:
victor-meng
2020-08-21 11:24:01 -07:00
committed by GitHub
parent 1c80ced259
commit 47a5c315b5
6 changed files with 407 additions and 251 deletions

View File

@@ -153,7 +153,14 @@ export interface KeyResource {
Token: string;
}
export interface IndexingPolicy {}
export interface IndexingPolicy {
automatic: boolean;
indexingMode: string;
includedPaths: any;
excludedPaths: any;
compositeIndexes?: any;
spatialIndexes?: any;
}
export interface PartitionKey {
paths: string[];