import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { EnvironmentTypes } from "../operationsInterfaces"; import { DevCenterClient } from "../devCenterClient"; import { EnvironmentType, EnvironmentTypesListByDevCenterOptionalParams, EnvironmentTypesGetOptionalParams, EnvironmentTypesGetResponse, EnvironmentTypesCreateOrUpdateOptionalParams, EnvironmentTypesCreateOrUpdateResponse, EnvironmentTypeUpdate, EnvironmentTypesUpdateOptionalParams, EnvironmentTypesUpdateResponse, EnvironmentTypesDeleteOptionalParams } from "../models"; /** Class containing EnvironmentTypes operations. */ export declare class EnvironmentTypesImpl implements EnvironmentTypes { private readonly client; /** * Initialize a new instance of the class EnvironmentTypes class. * @param client Reference to the service client */ constructor(client: DevCenterClient); /** * Lists environment types for the devcenter. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param options The options parameters. */ listByDevCenter(resourceGroupName: string, devCenterName: string, options?: EnvironmentTypesListByDevCenterOptionalParams): PagedAsyncIterableIterator; private listByDevCenterPagingPage; private listByDevCenterPagingAll; /** * Lists environment types for the devcenter. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param options The options parameters. */ private _listByDevCenter; /** * Gets an environment type. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param environmentTypeName The name of the environment type. * @param options The options parameters. */ get(resourceGroupName: string, devCenterName: string, environmentTypeName: string, options?: EnvironmentTypesGetOptionalParams): Promise; /** * Creates or updates an environment type. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param environmentTypeName The name of the environment type. * @param body Represents an Environment Type. * @param options The options parameters. */ createOrUpdate(resourceGroupName: string, devCenterName: string, environmentTypeName: string, body: EnvironmentType, options?: EnvironmentTypesCreateOrUpdateOptionalParams): Promise; /** * Partially updates an environment type. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param environmentTypeName The name of the environment type. * @param body Updatable environment type properties. * @param options The options parameters. */ update(resourceGroupName: string, devCenterName: string, environmentTypeName: string, body: EnvironmentTypeUpdate, options?: EnvironmentTypesUpdateOptionalParams): Promise; /** * Deletes an environment type. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param environmentTypeName The name of the environment type. * @param options The options parameters. */ delete(resourceGroupName: string, devCenterName: string, environmentTypeName: string, options?: EnvironmentTypesDeleteOptionalParams): Promise; /** * ListByDevCenterNext * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param nextLink The nextLink from the previous successful call to the ListByDevCenter method. * @param options The options parameters. */ private _listByDevCenterNext; } //# sourceMappingURL=environmentTypes.d.ts.map