import type { ContainerServiceContext } from "../../api/containerServiceContext.js"; import type { ManagedNamespacesListCredentialOptionalParams, ManagedNamespacesListByManagedClusterOptionalParams, ManagedNamespacesDeleteOptionalParams, ManagedNamespacesUpdateOptionalParams, ManagedNamespacesCreateOrUpdateOptionalParams, ManagedNamespacesGetOptionalParams } from "../../api/managedNamespaces/options.js"; import type { TagsObject, CredentialResults, ManagedNamespace } 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 ManagedNamespaces operations. */ export interface ManagedNamespacesOperations { /** Lists the credentials of a namespace. */ listCredential: (resourceGroupName: string, resourceName: string, managedNamespaceName: string, options?: ManagedNamespacesListCredentialOptionalParams) => Promise; /** Gets a list of managed namespaces in the specified managed cluster. */ listByManagedCluster: (resourceGroupName: string, resourceName: string, options?: ManagedNamespacesListByManagedClusterOptionalParams) => PagedAsyncIterableIterator; /** Deletes a namespace. */ /** * @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, resourceName: string, managedNamespaceName: string, options?: ManagedNamespacesDeleteOptionalParams) => PollerLike, void>; /** @deprecated use delete instead */ beginDelete: (resourceGroupName: string, resourceName: string, managedNamespaceName: string, options?: ManagedNamespacesDeleteOptionalParams) => Promise, void>>; /** @deprecated use delete instead */ beginDeleteAndWait: (resourceGroupName: string, resourceName: string, managedNamespaceName: string, options?: ManagedNamespacesDeleteOptionalParams) => Promise; /** Updates tags on a managed namespace. */ update: (resourceGroupName: string, resourceName: string, managedNamespaceName: string, parameters: TagsObject, options?: ManagedNamespacesUpdateOptionalParams) => Promise; /** Creates or updates a namespace managed by ARM for the specified managed cluster. Users can configure aspects like resource quotas, network ingress/egress policies, and more. See aka.ms/aks/managed-namespaces for more details. */ createOrUpdate: (resourceGroupName: string, resourceName: string, managedNamespaceName: string, parameters: ManagedNamespace, options?: ManagedNamespacesCreateOrUpdateOptionalParams) => PollerLike, ManagedNamespace>; /** @deprecated use createOrUpdate instead */ beginCreateOrUpdate: (resourceGroupName: string, resourceName: string, managedNamespaceName: string, parameters: ManagedNamespace, options?: ManagedNamespacesCreateOrUpdateOptionalParams) => Promise, ManagedNamespace>>; /** @deprecated use createOrUpdate instead */ beginCreateOrUpdateAndWait: (resourceGroupName: string, resourceName: string, managedNamespaceName: string, parameters: ManagedNamespace, options?: ManagedNamespacesCreateOrUpdateOptionalParams) => Promise; /** Gets the specified namespace of a managed cluster. */ get: (resourceGroupName: string, resourceName: string, managedNamespaceName: string, options?: ManagedNamespacesGetOptionalParams) => Promise; } export declare function _getManagedNamespacesOperations(context: ContainerServiceContext): ManagedNamespacesOperations; //# sourceMappingURL=index.d.ts.map