import type { ContainerServiceContext } from "../../api/containerServiceContext.js"; import type { MachinesListOptionalParams, MachinesGetOptionalParams } from "../../api/machines/options.js"; import type { Machine } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a Machines operations. */ export interface MachinesOperations { /** Gets a list of machines in the specified agent pool. */ list: (resourceGroupName: string, resourceName: string, agentPoolName: string, options?: MachinesListOptionalParams) => PagedAsyncIterableIterator; /** Get a specific machine in the specified agent pool. */ get: (resourceGroupName: string, resourceName: string, agentPoolName: string, machineName: string, options?: MachinesGetOptionalParams) => Promise; } export declare function _getMachinesOperations(context: ContainerServiceContext): MachinesOperations; //# sourceMappingURL=index.d.ts.map