@azure/monitor-opentelemetry
Version:
Azure Monitor OpenTelemetry (Node.js)
17 lines • 837 B
TypeScript
import { Client, ClientOptions } from "@azure-rest/core-client";
import { TokenCredential } from "@azure/core-auth";
/** Live Metrics REST APIs. */
export interface QuickpulseContext extends Client {
/** The API version to use for this operation. */
/** Known values of {@link KnownVersions} that the service accepts. */
apiVersion?: string;
}
/** Optional parameters for the client. */
export interface QuickpulseClientOptionalParams extends ClientOptions {
/** The API version to use for this operation. */
/** Known values of {@link KnownVersions} that the service accepts. */
apiVersion?: string;
}
/** Live Metrics REST APIs. */
export declare function createQuickpulse(credential: TokenCredential, options?: QuickpulseClientOptionalParams): QuickpulseContext;
//# sourceMappingURL=quickpulseContext.d.ts.map