import * as pulumi from "@pulumi/pulumi"; /** * Cluster Management Kubeconfig * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcenginecc from "@volcengine/pulumi-volcenginecc"; * * const vKEKubeconfigDemo = new volcenginecc.vke.Kubeconfig("VKEKubeconfigDemo", { * clusterId: "cd****", * type: "Private", * validDuration: 2, * }); * ``` * * ## Import * * ```sh * $ pulumi import volcenginecc:vke/kubeconfig:Kubeconfig example "cluster_id|kubeconfig_id" * ``` */ export declare class Kubeconfig extends pulumi.CustomResource { /** * Get an existing Kubeconfig resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: KubeconfigState, opts?: pulumi.CustomResourceOptions): Kubeconfig; /** * Returns true if the given object is an instance of Kubeconfig. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Kubeconfig; /** * Cluster ID */ readonly clusterId: pulumi.Output; /** * Kubeconfig Creation Time */ readonly createTime: pulumi.Output; /** * Kubeconfig Expiration Time */ readonly expireTime: pulumi.Output; /** * Kubeconfig Text */ readonly kubeconfig: pulumi.Output; /** * KubeconfigID。 */ readonly kubeconfigId: pulumi.Output; /** * Role ID */ readonly roleId: pulumi.Output; /** * Cluster Kubeconfig File Type */ readonly type: pulumi.Output; /** * User ID */ readonly userId: pulumi.Output; /** * Kubeconfig File Validity Period */ readonly validDuration: pulumi.Output; /** * Create a Kubeconfig resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: KubeconfigArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Kubeconfig resources. */ export interface KubeconfigState { /** * Cluster ID */ clusterId?: pulumi.Input; /** * Kubeconfig Creation Time */ createTime?: pulumi.Input; /** * Kubeconfig Expiration Time */ expireTime?: pulumi.Input; /** * Kubeconfig Text */ kubeconfig?: pulumi.Input; /** * KubeconfigID。 */ kubeconfigId?: pulumi.Input; /** * Role ID */ roleId?: pulumi.Input; /** * Cluster Kubeconfig File Type */ type?: pulumi.Input; /** * User ID */ userId?: pulumi.Input; /** * Kubeconfig File Validity Period */ validDuration?: pulumi.Input; } /** * The set of arguments for constructing a Kubeconfig resource. */ export interface KubeconfigArgs { /** * Cluster ID */ clusterId: pulumi.Input; /** * Cluster Kubeconfig File Type */ type: pulumi.Input; /** * Kubeconfig File Validity Period */ validDuration?: pulumi.Input; }