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

64 lines (63 loc) 2.09 kB
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>; }