@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.09 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Returns the cluster customer credentials for the dedicated appliance.
*
* Uses Azure REST API version 2022-10-27.
*/
export declare function listApplianceKeys(args: ListApplianceKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListApplianceKeysResult>;
export interface ListApplianceKeysArgs {
/**
* This sets the type of artifact being returned, when empty no artifact endpoint is returned.
*/
artifactType?: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Appliances name.
*/
resourceName: string;
}
/**
* The List Cluster Keys Results appliance.
*/
export interface ListApplianceKeysResult {
/**
* Map of artifacts that contains a list of ArtifactProfile used to upload artifacts such as logs.
*/
readonly artifactProfiles: {
[key: string]: outputs.resourceconnector.ArtifactProfileResponse;
};
/**
* The list of appliance kubeconfigs.
*/
readonly kubeconfigs: outputs.resourceconnector.ApplianceCredentialKubeconfigResponse[];
/**
* Map of Customer User Public, Private SSH Keys and Certificate when available.
*/
readonly sshKeys: {
[key: string]: outputs.resourceconnector.SSHKeyResponse;
};
}
/**
* Returns the cluster customer credentials for the dedicated appliance.
*
* Uses Azure REST API version 2022-10-27.
*/
export declare function listApplianceKeysOutput(args: ListApplianceKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListApplianceKeysResult>;
export interface ListApplianceKeysOutputArgs {
/**
* This sets the type of artifact being returned, when empty no artifact endpoint is returned.
*/
artifactType?: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Appliances name.
*/
resourceName: pulumi.Input<string>;
}