Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi
alicloud.lindorm.getInstances
Explore with Pulumi AI
This data source provides the Lindorm Instances of the current Alibaba Cloud user.
NOTE: Available in v1.132.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.lindorm.getInstances({});
export const lindormInstanceId1 = ids.then(ids => ids.instances?.[0]?.id);
const nameRegex = alicloud.lindorm.getInstances({
    nameRegex: "^my-Instance",
});
export const lindormInstanceId2 = nameRegex.then(nameRegex => nameRegex.instances?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.lindorm.get_instances()
pulumi.export("lindormInstanceId1", ids.instances[0].id)
name_regex = alicloud.lindorm.get_instances(name_regex="^my-Instance")
pulumi.export("lindormInstanceId2", name_regex.instances[0].id)
package main
import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/lindorm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		ids, err := lindorm.GetInstances(ctx, &lindorm.GetInstancesArgs{}, nil)
		if err != nil {
			return err
		}
		ctx.Export("lindormInstanceId1", ids.Instances[0].Id)
		nameRegex, err := lindorm.GetInstances(ctx, &lindorm.GetInstancesArgs{
			NameRegex: pulumi.StringRef("^my-Instance"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("lindormInstanceId2", nameRegex.Instances[0].Id)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() => 
{
    var ids = AliCloud.Lindorm.GetInstances.Invoke();
    var nameRegex = AliCloud.Lindorm.GetInstances.Invoke(new()
    {
        NameRegex = "^my-Instance",
    });
    return new Dictionary<string, object?>
    {
        ["lindormInstanceId1"] = ids.Apply(getInstancesResult => getInstancesResult.Instances[0]?.Id),
        ["lindormInstanceId2"] = nameRegex.Apply(getInstancesResult => getInstancesResult.Instances[0]?.Id),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.lindorm.LindormFunctions;
import com.pulumi.alicloud.lindorm.inputs.GetInstancesArgs;
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 ids = LindormFunctions.getInstances();
        ctx.export("lindormInstanceId1", ids.applyValue(getInstancesResult -> getInstancesResult.instances()[0].id()));
        final var nameRegex = LindormFunctions.getInstances(GetInstancesArgs.builder()
            .nameRegex("^my-Instance")
            .build());
        ctx.export("lindormInstanceId2", nameRegex.applyValue(getInstancesResult -> getInstancesResult.instances()[0].id()));
    }
}
variables:
  ids:
    fn::invoke:
      function: alicloud:lindorm:getInstances
      arguments: {}
  nameRegex:
    fn::invoke:
      function: alicloud:lindorm:getInstances
      arguments:
        nameRegex: ^my-Instance
outputs:
  lindormInstanceId1: ${ids.instances[0].id}
  lindormInstanceId2: ${nameRegex.instances[0].id}
Using getInstances
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getInstances(args: GetInstancesArgs, opts?: InvokeOptions): Promise<GetInstancesResult>
function getInstancesOutput(args: GetInstancesOutputArgs, opts?: InvokeOptions): Output<GetInstancesResult>def get_instances(enable_details: Optional[bool] = None,
                  ids: Optional[Sequence[str]] = None,
                  name_regex: Optional[str] = None,
                  output_file: Optional[str] = None,
                  query_str: Optional[str] = None,
                  status: Optional[str] = None,
                  support_engine: Optional[int] = None,
                  opts: Optional[InvokeOptions] = None) -> GetInstancesResult
def get_instances_output(enable_details: Optional[pulumi.Input[bool]] = None,
                  ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                  name_regex: Optional[pulumi.Input[str]] = None,
                  output_file: Optional[pulumi.Input[str]] = None,
                  query_str: Optional[pulumi.Input[str]] = None,
                  status: Optional[pulumi.Input[str]] = None,
                  support_engine: Optional[pulumi.Input[int]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetInstancesResult]func GetInstances(ctx *Context, args *GetInstancesArgs, opts ...InvokeOption) (*GetInstancesResult, error)
func GetInstancesOutput(ctx *Context, args *GetInstancesOutputArgs, opts ...InvokeOption) GetInstancesResultOutput> Note: This function is named GetInstances in the Go SDK.
public static class GetInstances 
{
    public static Task<GetInstancesResult> InvokeAsync(GetInstancesArgs args, InvokeOptions? opts = null)
    public static Output<GetInstancesResult> Invoke(GetInstancesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetInstancesResult> getInstances(GetInstancesArgs args, InvokeOptions options)
public static Output<GetInstancesResult> getInstances(GetInstancesArgs args, InvokeOptions options)
fn::invoke:
  function: alicloud:lindorm/getInstances:getInstances
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Enable
Details bool - Default to 
false. Set it totruecan output more details about resource attributes. - Ids List<string>
 - A list of Instance IDs.
 - Name
Regex string - A regex string to filter results by Instance name.
 - Output
File string - File name where to save data source results (after running 
pulumi preview). - Query
Str string - The query str, which can use 
instance_namekeyword for fuzzy search. - Status string
 - Instance status, Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - Support
Engine int - The support engine. Valid values: 
1to7. 
- Enable
Details bool - Default to 
false. Set it totruecan output more details about resource attributes. - Ids []string
 - A list of Instance IDs.
 - Name
Regex string - A regex string to filter results by Instance name.
 - Output
File string - File name where to save data source results (after running 
pulumi preview). - Query
Str string - The query str, which can use 
instance_namekeyword for fuzzy search. - Status string
 - Instance status, Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - Support
Engine int - The support engine. Valid values: 
1to7. 
- enable
Details Boolean - Default to 
false. Set it totruecan output more details about resource attributes. - ids List<String>
 - A list of Instance IDs.
 - name
Regex String - A regex string to filter results by Instance name.
 - output
File String - File name where to save data source results (after running 
pulumi preview). - query
Str String - The query str, which can use 
instance_namekeyword for fuzzy search. - status String
 - Instance status, Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - support
Engine Integer - The support engine. Valid values: 
1to7. 
- enable
Details boolean - Default to 
false. Set it totruecan output more details about resource attributes. - ids string[]
 - A list of Instance IDs.
 - name
Regex string - A regex string to filter results by Instance name.
 - output
File string - File name where to save data source results (after running 
pulumi preview). - query
Str string - The query str, which can use 
instance_namekeyword for fuzzy search. - status string
 - Instance status, Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - support
Engine number - The support engine. Valid values: 
1to7. 
- enable_
details bool - Default to 
false. Set it totruecan output more details about resource attributes. - ids Sequence[str]
 - A list of Instance IDs.
 - name_
regex str - A regex string to filter results by Instance name.
 - output_
file str - File name where to save data source results (after running 
pulumi preview). - query_
str str - The query str, which can use 
instance_namekeyword for fuzzy search. - status str
 - Instance status, Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - support_
engine int - The support engine. Valid values: 
1to7. 
- enable
Details Boolean - Default to 
false. Set it totruecan output more details about resource attributes. - ids List<String>
 - A list of Instance IDs.
 - name
Regex String - A regex string to filter results by Instance name.
 - output
File String - File name where to save data source results (after running 
pulumi preview). - query
Str String - The query str, which can use 
instance_namekeyword for fuzzy search. - status String
 - Instance status, Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - support
Engine Number - The support engine. Valid values: 
1to7. 
getInstances Result
The following output properties are available:
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Ids List<string>
 - Instances
List<Pulumi.
Ali Cloud. Lindorm. Outputs. Get Instances Instance>  - Names List<string>
 - Enable
Details bool - Name
Regex string - Output
File string - Query
Str string - Status string
 - Support
Engine int 
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Ids []string
 - Instances
[]Get
Instances Instance  - Names []string
 - Enable
Details bool - Name
Regex string - Output
File string - Query
Str string - Status string
 - Support
Engine int 
- id String
 - The provider-assigned unique ID for this managed resource.
 - ids List<String>
 - instances
List<Get
Instances Instance>  - names List<String>
 - enable
Details Boolean - name
Regex String - output
File String - query
Str String - status String
 - support
Engine Integer 
- id string
 - The provider-assigned unique ID for this managed resource.
 - ids string[]
 - instances
Get
Instances Instance[]  - names string[]
 - enable
Details boolean - name
Regex string - output
File string - query
Str string - status string
 - support
Engine number 
- id str
 - The provider-assigned unique ID for this managed resource.
 - ids Sequence[str]
 - instances
Sequence[Get
Instances Instance]  - names Sequence[str]
 - enable_
details bool - name_
regex str - output_
file str - query_
str str - status str
 - support_
engine int 
- id String
 - The provider-assigned unique ID for this managed resource.
 - ids List<String>
 - instances List<Property Map>
 - names List<String>
 - enable
Details Boolean - name
Regex String - output
File String - query
Str String - status String
 - support
Engine Number 
Supporting Types
GetInstancesInstance  
- Auto
Renew string - AutoRenew.
 - Cold
Storage int - The cold storage capacity of the instance. Unit: GB.
 - Create
Time string - The creation date of Instance.
 - Deletion
Proection bool - The deletion protection of instance.
 - Disk
Category string - The disk type of instance. Valid values: 
capacity_cloud_storage,cloud_efficiency,cloud_essd,cloud_ssd. - Disk
Usage string - The usage of disk.
 - Disk
Warning stringThreshold  - The threshold of disk.
 - Engine
Type int - The type of Instance engine .
 - Expired
Time string - The expiration time of Instance.
 - File
Engine intNode Count  - The count of file engine.
 - File
Engine stringSpecification  - The specification of file engine. Valid values: 
lindorm.c.xlarge. - Id string
 - The ID of the Instance.
 - Instance
Id string - The ID of the instance.
 - Instance
Name string - The name of the instance.
 - Instance
Storage string - The storage capacity of the instance. Unit: GB. For example, the value 50 indicates 50 GB.
 - Ip
White List<string>Lists  - The ip white list of instance.
 - Lts
Node intCount  - The count of lindorm tunnel service.
 - Lts
Node stringSpecification  - The specification of lindorm tunnel service. Valid values: 
lindorm.g.2xlarge,lindorm.g.xlarge. - Network
Type string - Instance network type, enumerative.VPC.
 - Payment
Type string - The billing method. Valid values: 
PayAsYouGoandSubscription. - Phoenix
Node intCount  - The count of phoenix.
 - Phoenix
Node stringSpecification  - The specification of phoenix. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - Resource
Owner stringId  - The owner id of resource.
 - Search
Engine intNode Count  - The count of search engine.
 - Search
Engine stringSpecification  - The specification of search engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - Service
Type string - The service type of Instance, Valid values: 
lindorm,serverless_lindorm,lindorm_standalone. - Status string
 - The status of Instance, enumerative: Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - Table
Engine intNode Count  - The count of table engine.
 - Table
Engine stringSpecification  - The specification of table engine. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - Time
Series intEngine Node Count  - The count of time series engine.
 - Time
Serires stringEngine Specification  - The specification of time series engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - Vpc
Id string - The ID of the virtual private cloud (VPC) that is connected to the instance.
 - Vswitch
Id string - The vswitch id.
 - Zone
Id string - The zone ID of the instance.
 
- Auto
Renew string - AutoRenew.
 - Cold
Storage int - The cold storage capacity of the instance. Unit: GB.
 - Create
Time string - The creation date of Instance.
 - Deletion
Proection bool - The deletion protection of instance.
 - Disk
Category string - The disk type of instance. Valid values: 
capacity_cloud_storage,cloud_efficiency,cloud_essd,cloud_ssd. - Disk
Usage string - The usage of disk.
 - Disk
Warning stringThreshold  - The threshold of disk.
 - Engine
Type int - The type of Instance engine .
 - Expired
Time string - The expiration time of Instance.
 - File
Engine intNode Count  - The count of file engine.
 - File
Engine stringSpecification  - The specification of file engine. Valid values: 
lindorm.c.xlarge. - Id string
 - The ID of the Instance.
 - Instance
Id string - The ID of the instance.
 - Instance
Name string - The name of the instance.
 - Instance
Storage string - The storage capacity of the instance. Unit: GB. For example, the value 50 indicates 50 GB.
 - Ip
White []stringLists  - The ip white list of instance.
 - Lts
Node intCount  - The count of lindorm tunnel service.
 - Lts
Node stringSpecification  - The specification of lindorm tunnel service. Valid values: 
lindorm.g.2xlarge,lindorm.g.xlarge. - Network
Type string - Instance network type, enumerative.VPC.
 - Payment
Type string - The billing method. Valid values: 
PayAsYouGoandSubscription. - Phoenix
Node intCount  - The count of phoenix.
 - Phoenix
Node stringSpecification  - The specification of phoenix. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - Resource
Owner stringId  - The owner id of resource.
 - Search
Engine intNode Count  - The count of search engine.
 - Search
Engine stringSpecification  - The specification of search engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - Service
Type string - The service type of Instance, Valid values: 
lindorm,serverless_lindorm,lindorm_standalone. - Status string
 - The status of Instance, enumerative: Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - Table
Engine intNode Count  - The count of table engine.
 - Table
Engine stringSpecification  - The specification of table engine. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - Time
Series intEngine Node Count  - The count of time series engine.
 - Time
Serires stringEngine Specification  - The specification of time series engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - Vpc
Id string - The ID of the virtual private cloud (VPC) that is connected to the instance.
 - Vswitch
Id string - The vswitch id.
 - Zone
Id string - The zone ID of the instance.
 
- auto
Renew String - AutoRenew.
 - cold
Storage Integer - The cold storage capacity of the instance. Unit: GB.
 - create
Time String - The creation date of Instance.
 - deletion
Proection Boolean - The deletion protection of instance.
 - disk
Category String - The disk type of instance. Valid values: 
capacity_cloud_storage,cloud_efficiency,cloud_essd,cloud_ssd. - disk
Usage String - The usage of disk.
 - disk
Warning StringThreshold  - The threshold of disk.
 - engine
Type Integer - The type of Instance engine .
 - expired
Time String - The expiration time of Instance.
 - file
Engine IntegerNode Count  - The count of file engine.
 - file
Engine StringSpecification  - The specification of file engine. Valid values: 
lindorm.c.xlarge. - id String
 - The ID of the Instance.
 - instance
Id String - The ID of the instance.
 - instance
Name String - The name of the instance.
 - instance
Storage String - The storage capacity of the instance. Unit: GB. For example, the value 50 indicates 50 GB.
 - ip
White List<String>Lists  - The ip white list of instance.
 - lts
Node IntegerCount  - The count of lindorm tunnel service.
 - lts
Node StringSpecification  - The specification of lindorm tunnel service. Valid values: 
lindorm.g.2xlarge,lindorm.g.xlarge. - network
Type String - Instance network type, enumerative.VPC.
 - payment
Type String - The billing method. Valid values: 
PayAsYouGoandSubscription. - phoenix
Node IntegerCount  - The count of phoenix.
 - phoenix
Node StringSpecification  - The specification of phoenix. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - resource
Owner StringId  - The owner id of resource.
 - search
Engine IntegerNode Count  - The count of search engine.
 - search
Engine StringSpecification  - The specification of search engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - service
Type String - The service type of Instance, Valid values: 
lindorm,serverless_lindorm,lindorm_standalone. - status String
 - The status of Instance, enumerative: Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - table
Engine IntegerNode Count  - The count of table engine.
 - table
Engine StringSpecification  - The specification of table engine. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - time
Series IntegerEngine Node Count  - The count of time series engine.
 - time
Serires StringEngine Specification  - The specification of time series engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - vpc
Id String - The ID of the virtual private cloud (VPC) that is connected to the instance.
 - vswitch
Id String - The vswitch id.
 - zone
Id String - The zone ID of the instance.
 
- auto
Renew string - AutoRenew.
 - cold
Storage number - The cold storage capacity of the instance. Unit: GB.
 - create
Time string - The creation date of Instance.
 - deletion
Proection boolean - The deletion protection of instance.
 - disk
Category string - The disk type of instance. Valid values: 
capacity_cloud_storage,cloud_efficiency,cloud_essd,cloud_ssd. - disk
Usage string - The usage of disk.
 - disk
Warning stringThreshold  - The threshold of disk.
 - engine
Type number - The type of Instance engine .
 - expired
Time string - The expiration time of Instance.
 - file
Engine numberNode Count  - The count of file engine.
 - file
Engine stringSpecification  - The specification of file engine. Valid values: 
lindorm.c.xlarge. - id string
 - The ID of the Instance.
 - instance
Id string - The ID of the instance.
 - instance
Name string - The name of the instance.
 - instance
Storage string - The storage capacity of the instance. Unit: GB. For example, the value 50 indicates 50 GB.
 - ip
White string[]Lists  - The ip white list of instance.
 - lts
Node numberCount  - The count of lindorm tunnel service.
 - lts
Node stringSpecification  - The specification of lindorm tunnel service. Valid values: 
lindorm.g.2xlarge,lindorm.g.xlarge. - network
Type string - Instance network type, enumerative.VPC.
 - payment
Type string - The billing method. Valid values: 
PayAsYouGoandSubscription. - phoenix
Node numberCount  - The count of phoenix.
 - phoenix
Node stringSpecification  - The specification of phoenix. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - resource
Owner stringId  - The owner id of resource.
 - search
Engine numberNode Count  - The count of search engine.
 - search
Engine stringSpecification  - The specification of search engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - service
Type string - The service type of Instance, Valid values: 
lindorm,serverless_lindorm,lindorm_standalone. - status string
 - The status of Instance, enumerative: Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - table
Engine numberNode Count  - The count of table engine.
 - table
Engine stringSpecification  - The specification of table engine. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - time
Series numberEngine Node Count  - The count of time series engine.
 - time
Serires stringEngine Specification  - The specification of time series engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - vpc
Id string - The ID of the virtual private cloud (VPC) that is connected to the instance.
 - vswitch
Id string - The vswitch id.
 - zone
Id string - The zone ID of the instance.
 
- auto_
renew str - AutoRenew.
 - cold_
storage int - The cold storage capacity of the instance. Unit: GB.
 - create_
time str - The creation date of Instance.
 - deletion_
proection bool - The deletion protection of instance.
 - disk_
category str - The disk type of instance. Valid values: 
capacity_cloud_storage,cloud_efficiency,cloud_essd,cloud_ssd. - disk_
usage str - The usage of disk.
 - disk_
warning_ strthreshold  - The threshold of disk.
 - engine_
type int - The type of Instance engine .
 - expired_
time str - The expiration time of Instance.
 - file_
engine_ intnode_ count  - The count of file engine.
 - file_
engine_ strspecification  - The specification of file engine. Valid values: 
lindorm.c.xlarge. - id str
 - The ID of the Instance.
 - instance_
id str - The ID of the instance.
 - instance_
name str - The name of the instance.
 - instance_
storage str - The storage capacity of the instance. Unit: GB. For example, the value 50 indicates 50 GB.
 - ip_
white_ Sequence[str]lists  - The ip white list of instance.
 - lts_
node_ intcount  - The count of lindorm tunnel service.
 - lts_
node_ strspecification  - The specification of lindorm tunnel service. Valid values: 
lindorm.g.2xlarge,lindorm.g.xlarge. - network_
type str - Instance network type, enumerative.VPC.
 - payment_
type str - The billing method. Valid values: 
PayAsYouGoandSubscription. - phoenix_
node_ intcount  - The count of phoenix.
 - phoenix_
node_ strspecification  - The specification of phoenix. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - resource_
owner_ strid  - The owner id of resource.
 - search_
engine_ intnode_ count  - The count of search engine.
 - search_
engine_ strspecification  - The specification of search engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - service_
type str - The service type of Instance, Valid values: 
lindorm,serverless_lindorm,lindorm_standalone. - status str
 - The status of Instance, enumerative: Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - table_
engine_ intnode_ count  - The count of table engine.
 - table_
engine_ strspecification  - The specification of table engine. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - time_
series_ intengine_ node_ count  - The count of time series engine.
 - time_
serires_ strengine_ specification  - The specification of time series engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - vpc_
id str - The ID of the virtual private cloud (VPC) that is connected to the instance.
 - vswitch_
id str - The vswitch id.
 - zone_
id str - The zone ID of the instance.
 
- auto
Renew String - AutoRenew.
 - cold
Storage Number - The cold storage capacity of the instance. Unit: GB.
 - create
Time String - The creation date of Instance.
 - deletion
Proection Boolean - The deletion protection of instance.
 - disk
Category String - The disk type of instance. Valid values: 
capacity_cloud_storage,cloud_efficiency,cloud_essd,cloud_ssd. - disk
Usage String - The usage of disk.
 - disk
Warning StringThreshold  - The threshold of disk.
 - engine
Type Number - The type of Instance engine .
 - expired
Time String - The expiration time of Instance.
 - file
Engine NumberNode Count  - The count of file engine.
 - file
Engine StringSpecification  - The specification of file engine. Valid values: 
lindorm.c.xlarge. - id String
 - The ID of the Instance.
 - instance
Id String - The ID of the instance.
 - instance
Name String - The name of the instance.
 - instance
Storage String - The storage capacity of the instance. Unit: GB. For example, the value 50 indicates 50 GB.
 - ip
White List<String>Lists  - The ip white list of instance.
 - lts
Node NumberCount  - The count of lindorm tunnel service.
 - lts
Node StringSpecification  - The specification of lindorm tunnel service. Valid values: 
lindorm.g.2xlarge,lindorm.g.xlarge. - network
Type String - Instance network type, enumerative.VPC.
 - payment
Type String - The billing method. Valid values: 
PayAsYouGoandSubscription. - phoenix
Node NumberCount  - The count of phoenix.
 - phoenix
Node StringSpecification  - The specification of phoenix. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - resource
Owner StringId  - The owner id of resource.
 - search
Engine NumberNode Count  - The count of search engine.
 - search
Engine StringSpecification  - The specification of search engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - service
Type String - The service type of Instance, Valid values: 
lindorm,serverless_lindorm,lindorm_standalone. - status String
 - The status of Instance, enumerative: Valid values: 
ACTIVATION,DELETED,CREATING,CLASS_CHANGING,LOCKED,INSTANCE_LEVEL_MODIFY,NET_MODIFYING,RESIZING,RESTARTING,MINOR_VERSION_TRANSING. - table
Engine NumberNode Count  - The count of table engine.
 - table
Engine StringSpecification  - The specification of table engine. Valid values: 
lindorm.c.2xlarge,lindorm.c.4xlarge,lindorm.c.8xlarge,lindorm.c.xlarge,lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - time
Series NumberEngine Node Count  - The count of time series engine.
 - time
Serires StringEngine Specification  - The specification of time series engine. Valid values: 
lindorm.g.2xlarge,lindorm.g.4xlarge,lindorm.g.8xlarge,lindorm.g.xlarge. - vpc
Id String - The ID of the virtual private cloud (VPC) that is connected to the instance.
 - vswitch
Id String - The vswitch id.
 - zone
Id String - The zone ID of the instance.
 
Package Details
- Repository
 - Alibaba Cloud pulumi/pulumi-alicloud
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
alicloudTerraform Provider.