import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ProjectEnvironmentTypes } from "../operationsInterfaces"; import { DevCenterClient } from "../devCenterClient"; import { ProjectEnvironmentType, ProjectEnvironmentTypesListOptionalParams, ProjectEnvironmentTypesGetOptionalParams, ProjectEnvironmentTypesGetResponse, ProjectEnvironmentTypesCreateOrUpdateOptionalParams, ProjectEnvironmentTypesCreateOrUpdateResponse, ProjectEnvironmentTypeUpdate, ProjectEnvironmentTypesUpdateOptionalParams, ProjectEnvironmentTypesUpdateResponse, ProjectEnvironmentTypesDeleteOptionalParams } from "../models"; /** Class containing ProjectEnvironmentTypes operations. */ export declare class ProjectEnvironmentTypesImpl implements ProjectEnvironmentTypes { private readonly client; /** * Initialize a new instance of the class ProjectEnvironmentTypes class. * @param client Reference to the service client */ constructor(client: DevCenterClient); /** * Lists environment types for a project. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param projectName The name of the project. * @param options The options parameters. */ list(resourceGroupName: string, projectName: string, options?: ProjectEnvironmentTypesListOptionalParams): PagedAsyncIterableIterator; private listPagingPage; private listPagingAll; /** * Lists environment types for a project. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param projectName The name of the project. * @param options The options parameters. */ private _list; /** * Gets a project environment type. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param projectName The name of the project. * @param environmentTypeName The name of the environment type. * @param options The options parameters. */ get(resourceGroupName: string, projectName: string, environmentTypeName: string, options?: ProjectEnvironmentTypesGetOptionalParams): Promise; /** * Creates or updates a project environment type. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param projectName The name of the project. * @param environmentTypeName The name of the environment type. * @param body Represents a Project Environment Type. * @param options The options parameters. */ createOrUpdate(resourceGroupName: string, projectName: string, environmentTypeName: string, body: ProjectEnvironmentType, options?: ProjectEnvironmentTypesCreateOrUpdateOptionalParams): Promise; /** * Partially updates a project environment type. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param projectName The name of the project. * @param environmentTypeName The name of the environment type. * @param body Updatable project environment type properties. * @param options The options parameters. */ update(resourceGroupName: string, projectName: string, environmentTypeName: string, body: ProjectEnvironmentTypeUpdate, options?: ProjectEnvironmentTypesUpdateOptionalParams): Promise; /** * Deletes a project environment type. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param projectName The name of the project. * @param environmentTypeName The name of the environment type. * @param options The options parameters. */ delete(resourceGroupName: string, projectName: string, environmentTypeName: string, options?: ProjectEnvironmentTypesDeleteOptionalParams): Promise; /** * ListNext * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param projectName The name of the project. * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; } //# sourceMappingURL=projectEnvironmentTypes.d.ts.map