import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::VKE::Node */ export declare function getNode(args: GetNodeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNode. */ export interface GetNodeArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getNode. */ export interface GetNodeResult { /** * Select the data disk for the node, format and mount it as the storage directory for container images and logs. Values: false (default): Disabled. Default node pool: indicates no data disk is mounted. Custom node pool: mounts according to the node pool's data disk configuration. ECS instance data disks added to the node pool must include the data disk specified for mounting by the target node pool (including local disks), and the disk type and size must match exactly. true: Enabled. You must also configure the ContainerStoragePath parameter. The node mounts according to the configuration in the ContainerStoragePath parameter and ignores the node pool's data disk configuration. There are no special requirements for ECS instance data disks added to the node pool. */ readonly additionalContainerStorageEnabled: boolean; /** * Cluster ID. */ readonly clusterId: string; /** * Use this data disk device to mount the container and image storage directory /var/lib/containerd. * Valid only when AdditionalContainerStorageEnabled=true and cannot be empty. The following conditions must be met, otherwise initialization will fail: Only ECS instances with mounted data disks are supported. When specifying a data disk device name, ensure the device exists, otherwise initialization will fail. When specifying a data disk partition or logical volume name, ensure the partition or logical volume exists and uses the ext4 file system. */ readonly containerStoragePath: string; /** * Creation time. */ readonly createdTime: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Image ID used by the ECS instance corresponding to the node. */ readonly imageId: string; /** * Script executed after creating ECS nodes and deploying Kubernetes components. Supports Shell format. Base64-encoded length must not exceed 1 KB. If left empty, the node inherits the default node pool initialization script NodeConfig.InitializeScript. If you enter a custom script, the custom script will be used and the default node pool initialization script will be ignored. */ readonly initializeScript: string; /** * Cloud server instance ID corresponding to the node. */ readonly instanceId: string; /** * Is it a virtual node? Parameter value description: false: No, true: Yes. */ readonly isVirtual: boolean; /** * Whether to retain the original ECS instance name. Options: false (default): do not retain the original ECS instance name; Container Service automatically assigns a name. true: retain the original ECS instance name. */ readonly keepInstanceName: boolean; /** * Kubernetes-related configuration for the node. If empty, the node inherits the default node pool's Kubernetes configuration: KubernetesConfig.Labels/Taints/Cordon. If custom configuration is provided, the node uses the custom configuration and ignores the default node pool's Kubernetes configuration. */ readonly kubernetesConfig: outputs.vke.GetNodeKubernetesConfig; /** * Node name. */ readonly name: string; /** * Node ID. */ readonly nodeId: string; /** * Node pool ID. If no parameter value is provided: add existing ECS instances to the default node pool. If a parameter value is provided: add existing ECS instances to a custom node pool. */ readonly nodePoolId: string; /** * Node role. Parameter value description: Worker: Worker node. */ readonly roles: string[]; /** * Node status. */ readonly status: outputs.vke.GetNodeStatus; /** * Update time. */ readonly updatedTime: string; /** * Availability zone ID. */ readonly zoneId: string; } /** * Data Source schema for Volcengine::VKE::Node */ export declare function getNodeOutput(args: GetNodeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNode. */ export interface GetNodeOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }