import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { SecurityAdminConfiguration, SecurityAdminConfigurationsListOptionalParams, SecurityAdminConfigurationsGetOptionalParams, SecurityAdminConfigurationsGetResponse, SecurityAdminConfigurationsCreateOrUpdateOptionalParams, SecurityAdminConfigurationsCreateOrUpdateResponse, SecurityAdminConfigurationsDeleteOptionalParams } from "../models/index.js"; /** Interface representing a SecurityAdminConfigurations. */ export interface SecurityAdminConfigurations { /** * Lists all the network manager security admin configurations in a network manager, in a paginated * format. * @param resourceGroupName The name of the resource group. * @param networkManagerName The name of the network manager. * @param options The options parameters. */ list(resourceGroupName: string, networkManagerName: string, options?: SecurityAdminConfigurationsListOptionalParams): PagedAsyncIterableIterator; /** * Retrieves a network manager security admin configuration. * @param resourceGroupName The name of the resource group. * @param networkManagerName The name of the network manager. * @param configurationName The name of the network manager Security Configuration. * @param options The options parameters. */ get(resourceGroupName: string, networkManagerName: string, configurationName: string, options?: SecurityAdminConfigurationsGetOptionalParams): Promise; /** * Creates or updates a network manager security admin configuration. * @param resourceGroupName The name of the resource group. * @param networkManagerName The name of the network manager. * @param configurationName The name of the network manager Security Configuration. * @param securityAdminConfiguration The security admin configuration to create or update * @param options The options parameters. */ createOrUpdate(resourceGroupName: string, networkManagerName: string, configurationName: string, securityAdminConfiguration: SecurityAdminConfiguration, options?: SecurityAdminConfigurationsCreateOrUpdateOptionalParams): Promise; /** * Deletes a network manager security admin configuration. * @param resourceGroupName The name of the resource group. * @param networkManagerName The name of the network manager. * @param configurationName The name of the network manager Security Configuration. * @param options The options parameters. */ beginDelete(resourceGroupName: string, networkManagerName: string, configurationName: string, options?: SecurityAdminConfigurationsDeleteOptionalParams): Promise, void>>; /** * Deletes a network manager security admin configuration. * @param resourceGroupName The name of the resource group. * @param networkManagerName The name of the network manager. * @param configurationName The name of the network manager Security Configuration. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, networkManagerName: string, configurationName: string, options?: SecurityAdminConfigurationsDeleteOptionalParams): Promise; } //# sourceMappingURL=securityAdminConfigurations.d.ts.map