@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.41 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* The list credential result response.
*
* Uses Azure REST API version 2025-04-02-preview.
*
* Other available API versions: 2025-03-02-preview, 2025-05-02-preview, 2025-06-02-preview, 2025-07-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listManagedNamespaceCredential(args: ListManagedNamespaceCredentialArgs, opts?: pulumi.InvokeOptions): Promise<ListManagedNamespaceCredentialResult>;
export interface ListManagedNamespaceCredentialArgs {
/**
* The name of the managed namespace.
*/
managedNamespaceName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the managed cluster resource.
*/
resourceName: string;
}
/**
* The list credential result response.
*/
export interface ListManagedNamespaceCredentialResult {
/**
* Base64-encoded Kubernetes configuration file.
*/
readonly kubeconfigs: outputs.containerservice.CredentialResultResponse[];
}
/**
* The list credential result response.
*
* Uses Azure REST API version 2025-04-02-preview.
*
* Other available API versions: 2025-03-02-preview, 2025-05-02-preview, 2025-06-02-preview, 2025-07-02-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native containerservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listManagedNamespaceCredentialOutput(args: ListManagedNamespaceCredentialOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListManagedNamespaceCredentialResult>;
export interface ListManagedNamespaceCredentialOutputArgs {
/**
* The name of the managed namespace.
*/
managedNamespaceName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the managed cluster resource.
*/
resourceName: pulumi.Input<string>;
}