import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { AttachedNetworks } from "../operationsInterfaces"; import { DevCenterClient } from "../devCenterClient"; import { SimplePollerLike, OperationState } from "@azure/core-lro"; import { AttachedNetworkConnection, AttachedNetworksListByProjectOptionalParams, AttachedNetworksListByDevCenterOptionalParams, AttachedNetworksGetByProjectOptionalParams, AttachedNetworksGetByProjectResponse, AttachedNetworksGetByDevCenterOptionalParams, AttachedNetworksGetByDevCenterResponse, AttachedNetworksCreateOrUpdateOptionalParams, AttachedNetworksCreateOrUpdateResponse, AttachedNetworksDeleteOptionalParams, AttachedNetworksDeleteResponse } from "../models"; /** Class containing AttachedNetworks operations. */ export declare class AttachedNetworksImpl implements AttachedNetworks { private readonly client; /** * Initialize a new instance of the class AttachedNetworks class. * @param client Reference to the service client */ constructor(client: DevCenterClient); /** * Lists the attached NetworkConnections 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. */ listByProject(resourceGroupName: string, projectName: string, options?: AttachedNetworksListByProjectOptionalParams): PagedAsyncIterableIterator; private listByProjectPagingPage; private listByProjectPagingAll; /** * Lists the attached NetworkConnections for a 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?: AttachedNetworksListByDevCenterOptionalParams): PagedAsyncIterableIterator; private listByDevCenterPagingPage; private listByDevCenterPagingAll; /** * Lists the attached NetworkConnections 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 _listByProject; /** * Gets an attached NetworkConnection. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param projectName The name of the project. * @param attachedNetworkConnectionName The name of the attached NetworkConnection. * @param options The options parameters. */ getByProject(resourceGroupName: string, projectName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksGetByProjectOptionalParams): Promise; /** * Lists the attached NetworkConnections for a 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 attached NetworkConnection. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param attachedNetworkConnectionName The name of the attached NetworkConnection. * @param options The options parameters. */ getByDevCenter(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksGetByDevCenterOptionalParams): Promise; /** * Creates or updates an attached NetworkConnection. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param attachedNetworkConnectionName The name of the attached NetworkConnection. * @param body Represents an attached NetworkConnection. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, body: AttachedNetworkConnection, options?: AttachedNetworksCreateOrUpdateOptionalParams): Promise, AttachedNetworksCreateOrUpdateResponse>>; /** * Creates or updates an attached NetworkConnection. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param attachedNetworkConnectionName The name of the attached NetworkConnection. * @param body Represents an attached NetworkConnection. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, body: AttachedNetworkConnection, options?: AttachedNetworksCreateOrUpdateOptionalParams): Promise; /** * Un-attach a NetworkConnection. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param attachedNetworkConnectionName The name of the attached NetworkConnection. * @param options The options parameters. */ beginDelete(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksDeleteOptionalParams): Promise, AttachedNetworksDeleteResponse>>; /** * Un-attach a NetworkConnection. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param devCenterName The name of the devcenter. * @param attachedNetworkConnectionName The name of the attached NetworkConnection. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, devCenterName: string, attachedNetworkConnectionName: string, options?: AttachedNetworksDeleteOptionalParams): Promise; /** * ListByProjectNext * @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 ListByProject method. * @param options The options parameters. */ private _listByProjectNext; /** * 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=attachedNetworks.d.ts.map