UNPKG

@azure/arm-mysql-flexible

Version:
38 lines 1.76 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { Replicas } from "../operationsInterfaces"; import { MySQLManagementFlexibleServerClient } from "../mySQLManagementFlexibleServerClient"; import { Server, ReplicasListByServerOptionalParams } from "../models"; /** Class containing Replicas operations. */ export declare class ReplicasImpl implements Replicas { private readonly client; /** * Initialize a new instance of the class Replicas class. * @param client Reference to the service client */ constructor(client: MySQLManagementFlexibleServerClient); /** * List all the replicas for a given server. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param serverName The name of the server. * @param options The options parameters. */ listByServer(resourceGroupName: string, serverName: string, options?: ReplicasListByServerOptionalParams): PagedAsyncIterableIterator<Server>; private listByServerPagingPage; private listByServerPagingAll; /** * List all the replicas for a given server. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param serverName The name of the server. * @param options The options parameters. */ private _listByServer; /** * ListByServerNext * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param serverName The name of the server. * @param nextLink The nextLink from the previous successful call to the ListByServer method. * @param options The options parameters. */ private _listByServerNext; } //# sourceMappingURL=replicas.d.ts.map