@azure/app-configuration
Version:
An isomorphic client library for the Azure App Configuration service.
17 lines • 945 B
TypeScript
import { Client, ClientOptions } from "@azure-rest/core-client";
import { KeyCredential, TokenCredential } from "@azure/core-auth";
/** Azure App Configuration REST API */
export interface AppConfigurationContext 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 AppConfigurationClientOptionalParams extends ClientOptions {
/** The API version to use for this operation. */
/** Known values of {@link KnownVersions} that the service accepts. */
apiVersion?: string;
}
/** Azure App Configuration REST API */
export declare function createAppConfiguration(endpointParam: string, credential: KeyCredential | TokenCredential, options?: AppConfigurationClientOptionalParams): AppConfigurationContext;
//# sourceMappingURL=appConfigurationContext.d.ts.map