interface AzureCosmosDbNodeParameters {
additionalFields?:
| {
indexingPolicy?: string;
maxThroughput?: number;
offerThroughput?: number;
}
| { partitionKey?: string };
container?: { mode: "id" | "list"; value: string };
containerCreate?: string;
customProperties?: string;
item?: { mode: "id" | "list"; value: string };
limit?: number;
operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete"
| "query";
options?: {
queryOptions: { queryParameters?: string };
};
partitionKey?: string;
query?: string;
resource?: "item"
| "container";
returnAll?: boolean;
simple?: boolean;
}
Properties§
Source§readonly additional Fields?:
| {
indexingPolicy?: string;
maxThroughput?: number;
offerThroughput?: number;
}
| { partitionKey?: string }
readonly additional Fields?:
| {
indexingPolicy?: string;
maxThroughput?: number;
offerThroughput?: number;
}
| { partitionKey?: string }
Source§readonly container?: { mode: "id" | "list"; value: string }
readonly container?: { mode: "id" | "list"; value: string }
Select the container you want to delete Default: {"mode":"list","value":""}
Source§readonly custom Properties?: string
readonly custom Properties?: string
The item contents as a JSON object Default: "{\n\t"id": "replace_with_new_document_id"\n}"
Source§readonly item?: { mode: "id" | "list"; value: string }
readonly item?: { mode: "id" | "list"; value: string }
Select the item to be deleted Default: {"mode":"list","value":""}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1}
Source§readonly operation?: "create" | "get" | "getAll" | "update" | "delete" | "query"
readonly operation?: "create" | "get" | "getAll" | "update" | "delete" | "query"
Default: "getAll"
Source§readonly options?: { queryOptions: { queryParameters?: string } }
readonly options?: { queryOptions: { queryParameters?: string } }
Default: {} Type options: {"multipleValues":false}
Source§readonly partition Key?: string
readonly partition Key?: string
The partition key is used to automatically distribute data across partitions for scalability. Choose a property in your JSON document that has a wide range of values and evenly distributes request volume. Default: "{\n\t"paths": [\n\t\t"/id"\n\t],\n\t"kind": "Hash",\n\t"version": 2\n}"
Default: {}