mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-04-28 04:25:14 +01:00
17 lines
546 B
TypeScript
17 lines
546 B
TypeScript
/*
|
|
AUTOGENERATED FILE
|
|
Do not manually edit
|
|
Run "npm run generateARMClients" to regenerate
|
|
*/
|
|
|
|
import { armRequest } from "../../request";
|
|
import * as Types from "./types";
|
|
import { config } from "../../../../Config";
|
|
const apiVersion = "2020-04-01";
|
|
|
|
/* Lists all of the available Cosmos DB Resource Provider operations. */
|
|
export async function list(): Promise<Types.OperationListResult> {
|
|
const path = `/providers/Microsoft.DocumentDB/operations`;
|
|
return armRequest({ host: config.ARM_ENDPOINT, path, method: "GET", apiVersion });
|
|
}
|