import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { SecurityUserRule, SecurityUserRulesListOptionalParams, SecurityUserRulesGetOptionalParams, SecurityUserRulesGetResponse, SecurityUserRulesCreateOrUpdateOptionalParams, SecurityUserRulesCreateOrUpdateResponse, SecurityUserRulesDeleteOptionalParams } from "../models/index.js"; /** Interface representing a SecurityUserRules. */ export interface SecurityUserRules { /** * Lists all Security User Rules in a rule collection. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param networkManagerName The name of the network manager. * @param configurationName The name of the network manager Security Configuration. * @param ruleCollectionName The name of the network manager security Configuration rule collection. * @param options The options parameters. */ list(resourceGroupName: string, networkManagerName: string, configurationName: string, ruleCollectionName: string, options?: SecurityUserRulesListOptionalParams): PagedAsyncIterableIterator; /** * Gets a security user rule. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param networkManagerName The name of the network manager. * @param configurationName The name of the network manager Security Configuration. * @param ruleCollectionName The name of the network manager security Configuration rule collection. * @param ruleName The name of the rule. * @param options The options parameters. */ get(resourceGroupName: string, networkManagerName: string, configurationName: string, ruleCollectionName: string, ruleName: string, options?: SecurityUserRulesGetOptionalParams): Promise; /** * Creates or updates a security user rule. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param networkManagerName The name of the network manager. * @param configurationName The name of the network manager Security Configuration. * @param ruleCollectionName The name of the network manager security Configuration rule collection. * @param ruleName The name of the rule. * @param securityUserRule The security user rule to create or update * @param options The options parameters. */ createOrUpdate(resourceGroupName: string, networkManagerName: string, configurationName: string, ruleCollectionName: string, ruleName: string, securityUserRule: SecurityUserRule, options?: SecurityUserRulesCreateOrUpdateOptionalParams): Promise; /** * Deletes a security user rule. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param networkManagerName The name of the network manager. * @param configurationName The name of the network manager Security Configuration. * @param ruleCollectionName The name of the network manager security Configuration rule collection. * @param ruleName The name of the rule. * @param options The options parameters. */ beginDelete(resourceGroupName: string, networkManagerName: string, configurationName: string, ruleCollectionName: string, ruleName: string, options?: SecurityUserRulesDeleteOptionalParams): Promise, void>>; /** * Deletes a security user rule. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param networkManagerName The name of the network manager. * @param configurationName The name of the network manager Security Configuration. * @param ruleCollectionName The name of the network manager security Configuration rule collection. * @param ruleName The name of the rule. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, networkManagerName: string, configurationName: string, ruleCollectionName: string, ruleName: string, options?: SecurityUserRulesDeleteOptionalParams): Promise; } //# sourceMappingURL=securityUserRules.d.ts.map