alicloud.eflo.Node
Explore with Pulumi AI
Provides a Eflo Node resource.
Large computing node.
For information about Eflo Node and how to use it, see What is Node.
NOTE: Available since v1.246.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = alicloud.resourcemanager.getResourceGroups({});
const defaultNode = new alicloud.eflo.Node("default", {
    period: 36,
    discountLevel: "36",
    billingCycle: "1month",
    classify: "gpuserver",
    zone: "cn-hangzhou-b",
    productForm: "instance",
    paymentRatio: "0",
    hpnZone: "B1",
    serverArch: "bmserver",
    computingServer: "efg1.nvga1n",
    stageNum: "36",
    renewalStatus: "AutoRenewal",
    renewPeriod: 36,
    status: "Unused",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "terraform-example"
default = alicloud.resourcemanager.get_resource_groups()
default_node = alicloud.eflo.Node("default",
    period=36,
    discount_level="36",
    billing_cycle="1month",
    classify="gpuserver",
    zone="cn-hangzhou-b",
    product_form="instance",
    payment_ratio="0",
    hpn_zone="B1",
    server_arch="bmserver",
    computing_server="efg1.nvga1n",
    stage_num="36",
    renewal_status="AutoRenewal",
    renew_period=36,
    status="Unused")
package main
import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/eflo"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		name := "terraform-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_, err := resourcemanager.GetResourceGroups(ctx, &resourcemanager.GetResourceGroupsArgs{}, nil)
		if err != nil {
			return err
		}
		_, err = eflo.NewNode(ctx, "default", &eflo.NodeArgs{
			Period:          pulumi.Int(36),
			DiscountLevel:   pulumi.String("36"),
			BillingCycle:    pulumi.String("1month"),
			Classify:        pulumi.String("gpuserver"),
			Zone:            pulumi.String("cn-hangzhou-b"),
			ProductForm:     pulumi.String("instance"),
			PaymentRatio:    pulumi.String("0"),
			HpnZone:         pulumi.String("B1"),
			ServerArch:      pulumi.String("bmserver"),
			ComputingServer: pulumi.String("efg1.nvga1n"),
			StageNum:        pulumi.String("36"),
			RenewalStatus:   pulumi.String("AutoRenewal"),
			RenewPeriod:     pulumi.Int(36),
			Status:          pulumi.String("Unused"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "terraform-example";
    var @default = AliCloud.ResourceManager.GetResourceGroups.Invoke();
    var defaultNode = new AliCloud.Eflo.Node("default", new()
    {
        Period = 36,
        DiscountLevel = "36",
        BillingCycle = "1month",
        Classify = "gpuserver",
        Zone = "cn-hangzhou-b",
        ProductForm = "instance",
        PaymentRatio = "0",
        HpnZone = "B1",
        ServerArch = "bmserver",
        ComputingServer = "efg1.nvga1n",
        StageNum = "36",
        RenewalStatus = "AutoRenewal",
        RenewPeriod = 36,
        Status = "Unused",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
import com.pulumi.alicloud.eflo.Node;
import com.pulumi.alicloud.eflo.NodeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var name = config.get("name").orElse("terraform-example");
        final var default = ResourcemanagerFunctions.getResourceGroups(GetResourceGroupsArgs.builder()
            .build());
        var defaultNode = new Node("defaultNode", NodeArgs.builder()
            .period(36)
            .discountLevel("36")
            .billingCycle("1month")
            .classify("gpuserver")
            .zone("cn-hangzhou-b")
            .productForm("instance")
            .paymentRatio("0")
            .hpnZone("B1")
            .serverArch("bmserver")
            .computingServer("efg1.nvga1n")
            .stageNum("36")
            .renewalStatus("AutoRenewal")
            .renewPeriod(36)
            .status("Unused")
            .build());
    }
}
configuration:
  # Before executing this example, you need to confirm with the product team whether the resources are sufficient or you will get an error message with "Failure to check order before create instance"
  name:
    type: string
    default: terraform-example
resources:
  defaultNode:
    type: alicloud:eflo:Node
    name: default
    properties:
      period: '36'
      discountLevel: '36'
      billingCycle: 1month
      classify: gpuserver
      zone: cn-hangzhou-b
      productForm: instance
      paymentRatio: '0'
      hpnZone: B1
      serverArch: bmserver
      computingServer: efg1.nvga1n
      stageNum: '36'
      renewalStatus: AutoRenewal
      renewPeriod: '36'
      status: Unused
variables:
  default:
    fn::invoke:
      function: alicloud:resourcemanager:getResourceGroups
      arguments: {}
Create Node Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Node(name: string, args?: NodeArgs, opts?: CustomResourceOptions);@overload
def Node(resource_name: str,
         args: Optional[NodeArgs] = None,
         opts: Optional[ResourceOptions] = None)
@overload
def Node(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         billing_cycle: Optional[str] = None,
         classify: Optional[str] = None,
         computing_server: Optional[str] = None,
         discount_level: Optional[str] = None,
         hpn_zone: Optional[str] = None,
         payment_ratio: Optional[str] = None,
         period: Optional[int] = None,
         product_form: Optional[str] = None,
         renew_period: Optional[int] = None,
         renewal_status: Optional[str] = None,
         resource_group_id: Optional[str] = None,
         server_arch: Optional[str] = None,
         stage_num: Optional[str] = None,
         status: Optional[str] = None,
         tags: Optional[Mapping[str, str]] = None,
         zone: Optional[str] = None)func NewNode(ctx *Context, name string, args *NodeArgs, opts ...ResourceOption) (*Node, error)public Node(string name, NodeArgs? args = null, CustomResourceOptions? opts = null)type: alicloud:eflo:Node
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NodeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NodeArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NodeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NodeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NodeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var nodeResource = new AliCloud.Eflo.Node("nodeResource", new()
{
    BillingCycle = "string",
    Classify = "string",
    ComputingServer = "string",
    DiscountLevel = "string",
    HpnZone = "string",
    PaymentRatio = "string",
    Period = 0,
    ProductForm = "string",
    RenewPeriod = 0,
    RenewalStatus = "string",
    ResourceGroupId = "string",
    ServerArch = "string",
    StageNum = "string",
    Status = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Zone = "string",
});
example, err := eflo.NewNode(ctx, "nodeResource", &eflo.NodeArgs{
	BillingCycle:    pulumi.String("string"),
	Classify:        pulumi.String("string"),
	ComputingServer: pulumi.String("string"),
	DiscountLevel:   pulumi.String("string"),
	HpnZone:         pulumi.String("string"),
	PaymentRatio:    pulumi.String("string"),
	Period:          pulumi.Int(0),
	ProductForm:     pulumi.String("string"),
	RenewPeriod:     pulumi.Int(0),
	RenewalStatus:   pulumi.String("string"),
	ResourceGroupId: pulumi.String("string"),
	ServerArch:      pulumi.String("string"),
	StageNum:        pulumi.String("string"),
	Status:          pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Zone: pulumi.String("string"),
})
var nodeResource = new Node("nodeResource", NodeArgs.builder()
    .billingCycle("string")
    .classify("string")
    .computingServer("string")
    .discountLevel("string")
    .hpnZone("string")
    .paymentRatio("string")
    .period(0)
    .productForm("string")
    .renewPeriod(0)
    .renewalStatus("string")
    .resourceGroupId("string")
    .serverArch("string")
    .stageNum("string")
    .status("string")
    .tags(Map.of("string", "string"))
    .zone("string")
    .build());
node_resource = alicloud.eflo.Node("nodeResource",
    billing_cycle="string",
    classify="string",
    computing_server="string",
    discount_level="string",
    hpn_zone="string",
    payment_ratio="string",
    period=0,
    product_form="string",
    renew_period=0,
    renewal_status="string",
    resource_group_id="string",
    server_arch="string",
    stage_num="string",
    status="string",
    tags={
        "string": "string",
    },
    zone="string")
const nodeResource = new alicloud.eflo.Node("nodeResource", {
    billingCycle: "string",
    classify: "string",
    computingServer: "string",
    discountLevel: "string",
    hpnZone: "string",
    paymentRatio: "string",
    period: 0,
    productForm: "string",
    renewPeriod: 0,
    renewalStatus: "string",
    resourceGroupId: "string",
    serverArch: "string",
    stageNum: "string",
    status: "string",
    tags: {
        string: "string",
    },
    zone: "string",
});
type: alicloud:eflo:Node
properties:
    billingCycle: string
    classify: string
    computingServer: string
    discountLevel: string
    hpnZone: string
    paymentRatio: string
    period: 0
    productForm: string
    renewPeriod: 0
    renewalStatus: string
    resourceGroupId: string
    serverArch: string
    stageNum: string
    status: string
    tags:
        string: string
    zone: string
Node Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Node resource accepts the following input properties:
- BillingCycle string
- Billing cycle
- Classify string
- Classification
- ComputingServer string
- Node Model
- DiscountLevel string
- Offer Information
- HpnZone string
- Cluster Number
- PaymentRatio string
- Down payment ratio
- Period int
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- ProductForm string
- Form
- RenewPeriod int
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- RenewalStatus string
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- ResourceGroup stringId 
- The ID of the resource group
- ServerArch string
- Architecture
- StageNum string
- Number of stages
- Status string
- The status of the resource
- Dictionary<string, string>
- The tag of the resource
- Zone string
- Availability Zone
- BillingCycle string
- Billing cycle
- Classify string
- Classification
- ComputingServer string
- Node Model
- DiscountLevel string
- Offer Information
- HpnZone string
- Cluster Number
- PaymentRatio string
- Down payment ratio
- Period int
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- ProductForm string
- Form
- RenewPeriod int
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- RenewalStatus string
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- ResourceGroup stringId 
- The ID of the resource group
- ServerArch string
- Architecture
- StageNum string
- Number of stages
- Status string
- The status of the resource
- map[string]string
- The tag of the resource
- Zone string
- Availability Zone
- billingCycle String
- Billing cycle
- classify String
- Classification
- computingServer String
- Node Model
- discountLevel String
- Offer Information
- hpnZone String
- Cluster Number
- paymentRatio String
- Down payment ratio
- period Integer
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- productForm String
- Form
- renewPeriod Integer
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- renewalStatus String
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- resourceGroup StringId 
- The ID of the resource group
- serverArch String
- Architecture
- stageNum String
- Number of stages
- status String
- The status of the resource
- Map<String,String>
- The tag of the resource
- zone String
- Availability Zone
- billingCycle string
- Billing cycle
- classify string
- Classification
- computingServer string
- Node Model
- discountLevel string
- Offer Information
- hpnZone string
- Cluster Number
- paymentRatio string
- Down payment ratio
- period number
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- productForm string
- Form
- renewPeriod number
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- renewalStatus string
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- resourceGroup stringId 
- The ID of the resource group
- serverArch string
- Architecture
- stageNum string
- Number of stages
- status string
- The status of the resource
- {[key: string]: string}
- The tag of the resource
- zone string
- Availability Zone
- billing_cycle str
- Billing cycle
- classify str
- Classification
- computing_server str
- Node Model
- discount_level str
- Offer Information
- hpn_zone str
- Cluster Number
- payment_ratio str
- Down payment ratio
- period int
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- product_form str
- Form
- renew_period int
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- renewal_status str
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- resource_group_ strid 
- The ID of the resource group
- server_arch str
- Architecture
- stage_num str
- Number of stages
- status str
- The status of the resource
- Mapping[str, str]
- The tag of the resource
- zone str
- Availability Zone
- billingCycle String
- Billing cycle
- classify String
- Classification
- computingServer String
- Node Model
- discountLevel String
- Offer Information
- hpnZone String
- Cluster Number
- paymentRatio String
- Down payment ratio
- period Number
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- productForm String
- Form
- renewPeriod Number
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- renewalStatus String
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- resourceGroup StringId 
- The ID of the resource group
- serverArch String
- Architecture
- stageNum String
- Number of stages
- status String
- The status of the resource
- Map<String>
- The tag of the resource
- zone String
- Availability Zone
Outputs
All input properties are implicitly available as output properties. Additionally, the Node resource produces the following output properties:
- CreateTime string
- The creation time of the resource
- Id string
- The provider-assigned unique ID for this managed resource.
- CreateTime string
- The creation time of the resource
- Id string
- The provider-assigned unique ID for this managed resource.
- createTime String
- The creation time of the resource
- id String
- The provider-assigned unique ID for this managed resource.
- createTime string
- The creation time of the resource
- id string
- The provider-assigned unique ID for this managed resource.
- create_time str
- The creation time of the resource
- id str
- The provider-assigned unique ID for this managed resource.
- createTime String
- The creation time of the resource
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Node Resource
Get an existing Node resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NodeState, opts?: CustomResourceOptions): Node@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        billing_cycle: Optional[str] = None,
        classify: Optional[str] = None,
        computing_server: Optional[str] = None,
        create_time: Optional[str] = None,
        discount_level: Optional[str] = None,
        hpn_zone: Optional[str] = None,
        payment_ratio: Optional[str] = None,
        period: Optional[int] = None,
        product_form: Optional[str] = None,
        renew_period: Optional[int] = None,
        renewal_status: Optional[str] = None,
        resource_group_id: Optional[str] = None,
        server_arch: Optional[str] = None,
        stage_num: Optional[str] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        zone: Optional[str] = None) -> Nodefunc GetNode(ctx *Context, name string, id IDInput, state *NodeState, opts ...ResourceOption) (*Node, error)public static Node Get(string name, Input<string> id, NodeState? state, CustomResourceOptions? opts = null)public static Node get(String name, Output<String> id, NodeState state, CustomResourceOptions options)resources:  _:    type: alicloud:eflo:Node    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- BillingCycle string
- Billing cycle
- Classify string
- Classification
- ComputingServer string
- Node Model
- CreateTime string
- The creation time of the resource
- DiscountLevel string
- Offer Information
- HpnZone string
- Cluster Number
- PaymentRatio string
- Down payment ratio
- Period int
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- ProductForm string
- Form
- RenewPeriod int
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- RenewalStatus string
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- ResourceGroup stringId 
- The ID of the resource group
- ServerArch string
- Architecture
- StageNum string
- Number of stages
- Status string
- The status of the resource
- Dictionary<string, string>
- The tag of the resource
- Zone string
- Availability Zone
- BillingCycle string
- Billing cycle
- Classify string
- Classification
- ComputingServer string
- Node Model
- CreateTime string
- The creation time of the resource
- DiscountLevel string
- Offer Information
- HpnZone string
- Cluster Number
- PaymentRatio string
- Down payment ratio
- Period int
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- ProductForm string
- Form
- RenewPeriod int
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- RenewalStatus string
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- ResourceGroup stringId 
- The ID of the resource group
- ServerArch string
- Architecture
- StageNum string
- Number of stages
- Status string
- The status of the resource
- map[string]string
- The tag of the resource
- Zone string
- Availability Zone
- billingCycle String
- Billing cycle
- classify String
- Classification
- computingServer String
- Node Model
- createTime String
- The creation time of the resource
- discountLevel String
- Offer Information
- hpnZone String
- Cluster Number
- paymentRatio String
- Down payment ratio
- period Integer
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- productForm String
- Form
- renewPeriod Integer
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- renewalStatus String
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- resourceGroup StringId 
- The ID of the resource group
- serverArch String
- Architecture
- stageNum String
- Number of stages
- status String
- The status of the resource
- Map<String,String>
- The tag of the resource
- zone String
- Availability Zone
- billingCycle string
- Billing cycle
- classify string
- Classification
- computingServer string
- Node Model
- createTime string
- The creation time of the resource
- discountLevel string
- Offer Information
- hpnZone string
- Cluster Number
- paymentRatio string
- Down payment ratio
- period number
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- productForm string
- Form
- renewPeriod number
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- renewalStatus string
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- resourceGroup stringId 
- The ID of the resource group
- serverArch string
- Architecture
- stageNum string
- Number of stages
- status string
- The status of the resource
- {[key: string]: string}
- The tag of the resource
- zone string
- Availability Zone
- billing_cycle str
- Billing cycle
- classify str
- Classification
- computing_server str
- Node Model
- create_time str
- The creation time of the resource
- discount_level str
- Offer Information
- hpn_zone str
- Cluster Number
- payment_ratio str
- Down payment ratio
- period int
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- product_form str
- Form
- renew_period int
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- renewal_status str
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- resource_group_ strid 
- The ID of the resource group
- server_arch str
- Architecture
- stage_num str
- Number of stages
- status str
- The status of the resource
- Mapping[str, str]
- The tag of the resource
- zone str
- Availability Zone
- billingCycle String
- Billing cycle
- classify String
- Classification
- computingServer String
- Node Model
- createTime String
- The creation time of the resource
- discountLevel String
- Offer Information
- hpnZone String
- Cluster Number
- paymentRatio String
- Down payment ratio
- period Number
- Prepaid cycle. The unit is Month, please enter an integer multiple of 12 for the annual payment product.
- productForm String
- Form
- renewPeriod Number
- Automatic renewal period, in months. - NOTE: When setting - RenewalStatusto- AutoRenewal, it must be set.
- renewalStatus String
- Automatic renewal status, value: - AutoRenewal: automatic renewal.
- ManualRenewal: manual renewal.
 - The default ManualRenewal. 
- resourceGroup StringId 
- The ID of the resource group
- serverArch String
- Architecture
- stageNum String
- Number of stages
- status String
- The status of the resource
- Map<String>
- The tag of the resource
- zone String
- Availability Zone
Import
Eflo Node can be imported using the id, e.g.
$ pulumi import alicloud:eflo/node:Node example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the alicloudTerraform Provider.