import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { DscpConfiguration, DscpConfigurationListOptionalParams, DscpConfigurationListAllOptionalParams, DscpConfigurationCreateOrUpdateOptionalParams, DscpConfigurationCreateOrUpdateResponse, DscpConfigurationDeleteOptionalParams, DscpConfigurationGetOptionalParams, DscpConfigurationGetResponse } from "../models/index.js"; /** Interface representing a DscpConfigurationOperations. */ export interface DscpConfigurationOperations { /** * Gets a DSCP Configuration. * @param resourceGroupName The name of the resource group. * @param options The options parameters. */ list(resourceGroupName: string, options?: DscpConfigurationListOptionalParams): PagedAsyncIterableIterator; /** * Gets all dscp configurations in a subscription. * @param options The options parameters. */ listAll(options?: DscpConfigurationListAllOptionalParams): PagedAsyncIterableIterator; /** * Creates or updates a DSCP Configuration. * @param resourceGroupName The name of the resource group. * @param dscpConfigurationName The name of the resource. * @param parameters Parameters supplied to the create or update dscp configuration operation. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, dscpConfigurationName: string, parameters: DscpConfiguration, options?: DscpConfigurationCreateOrUpdateOptionalParams): Promise, DscpConfigurationCreateOrUpdateResponse>>; /** * Creates or updates a DSCP Configuration. * @param resourceGroupName The name of the resource group. * @param dscpConfigurationName The name of the resource. * @param parameters Parameters supplied to the create or update dscp configuration operation. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, dscpConfigurationName: string, parameters: DscpConfiguration, options?: DscpConfigurationCreateOrUpdateOptionalParams): Promise; /** * Deletes a DSCP Configuration. * @param resourceGroupName The name of the resource group. * @param dscpConfigurationName The name of the resource. * @param options The options parameters. */ beginDelete(resourceGroupName: string, dscpConfigurationName: string, options?: DscpConfigurationDeleteOptionalParams): Promise, void>>; /** * Deletes a DSCP Configuration. * @param resourceGroupName The name of the resource group. * @param dscpConfigurationName The name of the resource. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, dscpConfigurationName: string, options?: DscpConfigurationDeleteOptionalParams): Promise; /** * Gets a DSCP Configuration. * @param resourceGroupName The name of the resource group. * @param dscpConfigurationName The name of the resource. * @param options The options parameters. */ get(resourceGroupName: string, dscpConfigurationName: string, options?: DscpConfigurationGetOptionalParams): Promise; } //# sourceMappingURL=dscpConfigurationOperations.d.ts.map