import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { IPv6FirewallRules } from "../operationsInterfaces"; import { SqlManagementClient } from "../sqlManagementClient"; import { IPv6FirewallRule, IPv6FirewallRulesListByServerOptionalParams, IPv6FirewallRulesGetOptionalParams, IPv6FirewallRulesGetResponse, IPv6FirewallRulesCreateOrUpdateOptionalParams, IPv6FirewallRulesCreateOrUpdateResponse, IPv6FirewallRulesDeleteOptionalParams } from "../models"; /** Class containing IPv6FirewallRules operations. */ export declare class IPv6FirewallRulesImpl implements IPv6FirewallRules { private readonly client; /** * Initialize a new instance of the class IPv6FirewallRules class. * @param client Reference to the service client */ constructor(client: SqlManagementClient); /** * Gets a list of IPv6 firewall rules. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param options The options parameters. */ listByServer(resourceGroupName: string, serverName: string, options?: IPv6FirewallRulesListByServerOptionalParams): PagedAsyncIterableIterator; private listByServerPagingPage; private listByServerPagingAll; /** * Gets a list of IPv6 firewall rules. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param options The options parameters. */ private _listByServer; /** * Gets an IPv6 firewall rule. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param firewallRuleName The name of the firewall rule. * @param options The options parameters. */ get(resourceGroupName: string, serverName: string, firewallRuleName: string, options?: IPv6FirewallRulesGetOptionalParams): Promise; /** * Creates or updates an IPv6 firewall rule. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param firewallRuleName The name of the firewall rule. * @param parameters The required parameters for creating or updating an IPv6 firewall rule. * @param options The options parameters. */ createOrUpdate(resourceGroupName: string, serverName: string, firewallRuleName: string, parameters: IPv6FirewallRule, options?: IPv6FirewallRulesCreateOrUpdateOptionalParams): Promise; /** * Deletes an IPv6 firewall rule. * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @param serverName The name of the server. * @param firewallRuleName The name of the firewall rule. * @param options The options parameters. */ delete(resourceGroupName: string, serverName: string, firewallRuleName: string, options?: IPv6FirewallRulesDeleteOptionalParams): Promise; /** * ListByServerNext * @param resourceGroupName The name of the resource group that contains the resource. You can obtain * this value from the Azure Resource Manager API or the portal. * @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=iPv6FirewallRules.d.ts.map