import type { ContainerRegistryManagementContext } from "../../api/containerRegistryManagementContext.js"; import type { ReplicationsListOptionalParams, ReplicationsDeleteOptionalParams, ReplicationsUpdateOptionalParams, ReplicationsCreateOptionalParams, ReplicationsGetOptionalParams } from "../../api/replications/options.js"; import type { Replication, ReplicationUpdateParameters } 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 Replications operations. */ export interface ReplicationsOperations { /** Lists all the replications for the specified container registry. */ list: (resourceGroupName: string, registryName: string, options?: ReplicationsListOptionalParams) => PagedAsyncIterableIterator; /** Deletes a replication 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, replicationName: string, options?: ReplicationsDeleteOptionalParams) => PollerLike, void>; /** @deprecated use delete instead */ beginDelete: (resourceGroupName: string, registryName: string, replicationName: string, options?: ReplicationsDeleteOptionalParams) => Promise, void>>; /** @deprecated use delete instead */ beginDeleteAndWait: (resourceGroupName: string, registryName: string, replicationName: string, options?: ReplicationsDeleteOptionalParams) => Promise; /** Updates a replication for a container registry with the specified parameters. */ update: (resourceGroupName: string, registryName: string, replicationName: string, replicationUpdateParameters: ReplicationUpdateParameters, options?: ReplicationsUpdateOptionalParams) => PollerLike, Replication>; /** @deprecated use update instead */ beginUpdate: (resourceGroupName: string, registryName: string, replicationName: string, replicationUpdateParameters: ReplicationUpdateParameters, options?: ReplicationsUpdateOptionalParams) => Promise, Replication>>; /** @deprecated use update instead */ beginUpdateAndWait: (resourceGroupName: string, registryName: string, replicationName: string, replicationUpdateParameters: ReplicationUpdateParameters, options?: ReplicationsUpdateOptionalParams) => Promise; /** Creates a replication for a container registry with the specified parameters. */ create: (resourceGroupName: string, registryName: string, replicationName: string, replication: Replication, options?: ReplicationsCreateOptionalParams) => PollerLike, Replication>; /** @deprecated use create instead */ beginCreate: (resourceGroupName: string, registryName: string, replicationName: string, replication: Replication, options?: ReplicationsCreateOptionalParams) => Promise, Replication>>; /** @deprecated use create instead */ beginCreateAndWait: (resourceGroupName: string, registryName: string, replicationName: string, replication: Replication, options?: ReplicationsCreateOptionalParams) => Promise; /** Gets the properties of the specified replication. */ get: (resourceGroupName: string, registryName: string, replicationName: string, options?: ReplicationsGetOptionalParams) => Promise; } export declare function _getReplicationsOperations(context: ContainerRegistryManagementContext): ReplicationsOperations; //# sourceMappingURL=index.d.ts.map