UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

56 lines (55 loc) 2.33 kB
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. 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. 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>; }