mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-03-13 05:15:30 +00:00
22 lines
442 B
TypeScript
22 lines
442 B
TypeScript
import { AccountKind } from "../../Common/Constants";
|
|
|
|
export const emulatorAccount = {
|
|
name: "",
|
|
id: "",
|
|
location: "",
|
|
type: "",
|
|
kind: AccountKind.DocumentDB,
|
|
properties: {
|
|
documentEndpoint: "",
|
|
tableEndpoint: "",
|
|
gremlinEndpoint: "",
|
|
cassandraEndpoint: "",
|
|
capabilities: [
|
|
{
|
|
name: "EnableNoSQLVectorSearch",
|
|
description: "Enable Vector Search on NoSQL account",
|
|
},
|
|
],
|
|
},
|
|
};
|