import type { ContainerRegistryManagementContext } from "../../api/containerRegistryManagementContext.js"; import type { ScopeMapsListOptionalParams, ScopeMapsDeleteOptionalParams, ScopeMapsUpdateOptionalParams, ScopeMapsCreateOptionalParams, ScopeMapsGetOptionalParams } from "../../api/scopeMaps/options.js"; import type { ScopeMap, ScopeMapUpdateParameters } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; import type { SimplePollerLike } from "../../static-helpers/simplePollerHelpers.js"; import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a ScopeMaps operations. */ export interface ScopeMapsOperations { /** Lists all the scope maps for the specified container registry. */ list: (resourceGroupName: string, registryName: string, options?: ScopeMapsListOptionalParams) => PagedAsyncIterableIterator; /** Deletes a scope map from a container registry. */ /** * @fixme delete is a reserved word that cannot be used as an operation name. * Please add @clientName("clientName") or @clientName("", "javascript") * to the operation to override the generated name. */ delete: (resourceGroupName: string, registryName: string, scopeMapName: string, options?: ScopeMapsDeleteOptionalParams) => PollerLike, void>; /** @deprecated use delete instead */ beginDelete: (resourceGroupName: string, registryName: string, scopeMapName: string, options?: ScopeMapsDeleteOptionalParams) => Promise, void>>; /** @deprecated use delete instead */ beginDeleteAndWait: (resourceGroupName: string, registryName: string, scopeMapName: string, options?: ScopeMapsDeleteOptionalParams) => Promise; /** Updates a scope map with the specified parameters. */ update: (resourceGroupName: string, registryName: string, scopeMapName: string, scopeMapUpdateParameters: ScopeMapUpdateParameters, options?: ScopeMapsUpdateOptionalParams) => PollerLike, ScopeMap>; /** @deprecated use update instead */ beginUpdate: (resourceGroupName: string, registryName: string, scopeMapName: string, scopeMapUpdateParameters: ScopeMapUpdateParameters, options?: ScopeMapsUpdateOptionalParams) => Promise, ScopeMap>>; /** @deprecated use update instead */ beginUpdateAndWait: (resourceGroupName: string, registryName: string, scopeMapName: string, scopeMapUpdateParameters: ScopeMapUpdateParameters, options?: ScopeMapsUpdateOptionalParams) => Promise; /** Creates a scope map for a container registry with the specified parameters. */ create: (resourceGroupName: string, registryName: string, scopeMapName: string, scopeMapCreateParameters: ScopeMap, options?: ScopeMapsCreateOptionalParams) => PollerLike, ScopeMap>; /** @deprecated use create instead */ beginCreate: (resourceGroupName: string, registryName: string, scopeMapName: string, scopeMapCreateParameters: ScopeMap, options?: ScopeMapsCreateOptionalParams) => Promise, ScopeMap>>; /** @deprecated use create instead */ beginCreateAndWait: (resourceGroupName: string, registryName: string, scopeMapName: string, scopeMapCreateParameters: ScopeMap, options?: ScopeMapsCreateOptionalParams) => Promise; /** Gets the properties of the specified scope map. */ get: (resourceGroupName: string, registryName: string, scopeMapName: string, options?: ScopeMapsGetOptionalParams) => Promise; } export declare function _getScopeMapsOperations(context: ContainerRegistryManagementContext): ScopeMapsOperations; //# sourceMappingURL=index.d.ts.map