import type { AzureSupportedClouds } from "../static-helpers/cloudSettingHelpers.js"; import type { Client, ClientOptions } from "@azure-rest/core-client"; import type { TokenCredential } from "@azure/core-auth"; /** The Container Service Client. */ export interface ContainerServiceContext extends Client { /** The ID of the target subscription. The value must be an UUID. */ subscriptionId: string; /** 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 ContainerServiceClientOptionalParams extends ClientOptions { /** The API version to use for this operation. */ /** Known values of {@link KnownVersions} that the service accepts. */ apiVersion?: string; /** Specifies the Azure cloud environment for the client. */ cloudSetting?: AzureSupportedClouds; } /** The Container Service Client. */ export declare function createContainerService(credential: TokenCredential, subscriptionId: string, options?: ContainerServiceClientOptionalParams): ContainerServiceContext; //# sourceMappingURL=containerServiceContext.d.ts.map