Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Use this data source to query detailed information of escloud instances v2
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooZones = volcengine.ecs.getZones({});
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
vpcName: "acc-test-vpc",
cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
subnetName: "acc-test-subnet",
description: "tfdesc",
cidrBlock: "172.16.0.0/24",
zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
vpcId: fooVpc.id,
});
const fooEscloudInstanceV2 = new volcengine.escloud_v2.EscloudInstanceV2("fooEscloudInstanceV2", {
instanceName: "acc-test-escloud-instance",
version: "V7_10",
zoneIds: [
fooZones.then(fooZones => fooZones.zones?.[0]?.id),
fooZones.then(fooZones => fooZones.zones?.[1]?.id),
fooZones.then(fooZones => fooZones.zones?.[2]?.id),
],
subnetId: fooSubnet.id,
enableHttps: false,
adminPassword: "Password@@123",
chargeType: "PostPaid",
autoRenew: false,
period: 1,
configurationCode: "es.standard",
enablePureMaster: true,
deletionProtection: false,
projectName: "default",
nodeSpecsAssigns: [
{
type: "Master",
number: 3,
resourceSpecName: "es.x2.medium",
storageSpecName: "es.volume.essd.pl0",
storageSize: 20,
},
{
type: "Hot",
number: 6,
resourceSpecName: "es.x2.medium",
storageSpecName: "es.volume.essd.flexpl-standard",
storageSize: 500,
extraPerformance: {
throughput: 65,
},
},
{
type: "Kibana",
number: 1,
resourceSpecName: "kibana.x2.small",
storageSpecName: "",
storageSize: 0,
},
],
networkSpecs: [
{
type: "Elasticsearch",
bandwidth: 1,
isOpen: true,
specName: "es.eip.bgp_fixed_bandwidth",
},
{
type: "Kibana",
bandwidth: 1,
isOpen: true,
specName: "es.eip.bgp_fixed_bandwidth",
},
],
tags: [{
key: "k1",
value: "v1",
}],
});
const fooEscloudInstancesV2 = volcengine.escloud_v2.getEscloudInstancesV2Output({
ids: [fooEscloudInstanceV2.id],
});
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.ecs.get_zones()
foo_vpc = volcengine.vpc.Vpc("fooVpc",
vpc_name="acc-test-vpc",
cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
subnet_name="acc-test-subnet",
description="tfdesc",
cidr_block="172.16.0.0/24",
zone_id=foo_zones.zones[0].id,
vpc_id=foo_vpc.id)
foo_escloud_instance_v2 = volcengine.escloud_v2.EscloudInstanceV2("fooEscloudInstanceV2",
instance_name="acc-test-escloud-instance",
version="V7_10",
zone_ids=[
foo_zones.zones[0].id,
foo_zones.zones[1].id,
foo_zones.zones[2].id,
],
subnet_id=foo_subnet.id,
enable_https=False,
admin_password="Password@@123",
charge_type="PostPaid",
auto_renew=False,
period=1,
configuration_code="es.standard",
enable_pure_master=True,
deletion_protection=False,
project_name="default",
node_specs_assigns=[
volcengine.escloud_v2.EscloudInstanceV2NodeSpecsAssignArgs(
type="Master",
number=3,
resource_spec_name="es.x2.medium",
storage_spec_name="es.volume.essd.pl0",
storage_size=20,
),
volcengine.escloud_v2.EscloudInstanceV2NodeSpecsAssignArgs(
type="Hot",
number=6,
resource_spec_name="es.x2.medium",
storage_spec_name="es.volume.essd.flexpl-standard",
storage_size=500,
extra_performance=volcengine.escloud_v2.EscloudInstanceV2NodeSpecsAssignExtraPerformanceArgs(
throughput=65,
),
),
volcengine.escloud_v2.EscloudInstanceV2NodeSpecsAssignArgs(
type="Kibana",
number=1,
resource_spec_name="kibana.x2.small",
storage_spec_name="",
storage_size=0,
),
],
network_specs=[
volcengine.escloud_v2.EscloudInstanceV2NetworkSpecArgs(
type="Elasticsearch",
bandwidth=1,
is_open=True,
spec_name="es.eip.bgp_fixed_bandwidth",
),
volcengine.escloud_v2.EscloudInstanceV2NetworkSpecArgs(
type="Kibana",
bandwidth=1,
is_open=True,
spec_name="es.eip.bgp_fixed_bandwidth",
),
],
tags=[volcengine.escloud_v2.EscloudInstanceV2TagArgs(
key="k1",
value="v1",
)])
foo_escloud_instances_v2 = volcengine.escloud_v2.get_escloud_instances_v2_output(ids=[foo_escloud_instance_v2.id])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/escloud_v2"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
fooZones, err := ecs.GetZones(ctx, nil, nil)
if err != nil {
return err
}
fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
VpcName: pulumi.String("acc-test-vpc"),
CidrBlock: pulumi.String("172.16.0.0/16"),
})
if err != nil {
return err
}
fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
SubnetName: pulumi.String("acc-test-subnet"),
Description: pulumi.String("tfdesc"),
CidrBlock: pulumi.String("172.16.0.0/24"),
ZoneId: pulumi.String(fooZones.Zones[0].Id),
VpcId: fooVpc.ID(),
})
if err != nil {
return err
}
fooEscloudInstanceV2, err := escloud_v2.NewEscloudInstanceV2(ctx, "fooEscloudInstanceV2", &escloud_v2.EscloudInstanceV2Args{
InstanceName: pulumi.String("acc-test-escloud-instance"),
Version: pulumi.String("V7_10"),
ZoneIds: pulumi.StringArray{
pulumi.String(fooZones.Zones[0].Id),
pulumi.String(fooZones.Zones[1].Id),
pulumi.String(fooZones.Zones[2].Id),
},
SubnetId: fooSubnet.ID(),
EnableHttps: pulumi.Bool(false),
AdminPassword: pulumi.String("Password@@123"),
ChargeType: pulumi.String("PostPaid"),
AutoRenew: pulumi.Bool(false),
Period: pulumi.Int(1),
ConfigurationCode: pulumi.String("es.standard"),
EnablePureMaster: pulumi.Bool(true),
DeletionProtection: pulumi.Bool(false),
ProjectName: pulumi.String("default"),
NodeSpecsAssigns: escloud_v2.EscloudInstanceV2NodeSpecsAssignArray{
&escloud_v2.EscloudInstanceV2NodeSpecsAssignArgs{
Type: pulumi.String("Master"),
Number: pulumi.Int(3),
ResourceSpecName: pulumi.String("es.x2.medium"),
StorageSpecName: pulumi.String("es.volume.essd.pl0"),
StorageSize: pulumi.Int(20),
},
&escloud_v2.EscloudInstanceV2NodeSpecsAssignArgs{
Type: pulumi.String("Hot"),
Number: pulumi.Int(6),
ResourceSpecName: pulumi.String("es.x2.medium"),
StorageSpecName: pulumi.String("es.volume.essd.flexpl-standard"),
StorageSize: pulumi.Int(500),
ExtraPerformance: &escloud_v2.EscloudInstanceV2NodeSpecsAssignExtraPerformanceArgs{
Throughput: pulumi.Int(65),
},
},
&escloud_v2.EscloudInstanceV2NodeSpecsAssignArgs{
Type: pulumi.String("Kibana"),
Number: pulumi.Int(1),
ResourceSpecName: pulumi.String("kibana.x2.small"),
StorageSpecName: pulumi.String(""),
StorageSize: pulumi.Int(0),
},
},
NetworkSpecs: escloud_v2.EscloudInstanceV2NetworkSpecArray{
&escloud_v2.EscloudInstanceV2NetworkSpecArgs{
Type: pulumi.String("Elasticsearch"),
Bandwidth: pulumi.Int(1),
IsOpen: pulumi.Bool(true),
SpecName: pulumi.String("es.eip.bgp_fixed_bandwidth"),
},
&escloud_v2.EscloudInstanceV2NetworkSpecArgs{
Type: pulumi.String("Kibana"),
Bandwidth: pulumi.Int(1),
IsOpen: pulumi.Bool(true),
SpecName: pulumi.String("es.eip.bgp_fixed_bandwidth"),
},
},
Tags: escloud_v2.EscloudInstanceV2TagArray{
&escloud_v2.EscloudInstanceV2TagArgs{
Key: pulumi.String("k1"),
Value: pulumi.String("v1"),
},
},
})
if err != nil {
return err
}
_ = escloud_v2.GetEscloudInstancesV2Output(ctx, escloud_v2.GetEscloudInstancesV2OutputArgs{
Ids: pulumi.StringArray{
fooEscloudInstanceV2.ID(),
},
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var fooZones = Volcengine.Ecs.GetZones.Invoke();
var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
{
VpcName = "acc-test-vpc",
CidrBlock = "172.16.0.0/16",
});
var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
{
SubnetName = "acc-test-subnet",
Description = "tfdesc",
CidrBlock = "172.16.0.0/24",
ZoneId = fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
VpcId = fooVpc.Id,
});
var fooEscloudInstanceV2 = new Volcengine.Escloud_v2.EscloudInstanceV2("fooEscloudInstanceV2", new()
{
InstanceName = "acc-test-escloud-instance",
Version = "V7_10",
ZoneIds = new[]
{
fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
fooZones.Apply(getZonesResult => getZonesResult.Zones[1]?.Id),
fooZones.Apply(getZonesResult => getZonesResult.Zones[2]?.Id),
},
SubnetId = fooSubnet.Id,
EnableHttps = false,
AdminPassword = "Password@@123",
ChargeType = "PostPaid",
AutoRenew = false,
Period = 1,
ConfigurationCode = "es.standard",
EnablePureMaster = true,
DeletionProtection = false,
ProjectName = "default",
NodeSpecsAssigns = new[]
{
new Volcengine.Escloud_v2.Inputs.EscloudInstanceV2NodeSpecsAssignArgs
{
Type = "Master",
Number = 3,
ResourceSpecName = "es.x2.medium",
StorageSpecName = "es.volume.essd.pl0",
StorageSize = 20,
},
new Volcengine.Escloud_v2.Inputs.EscloudInstanceV2NodeSpecsAssignArgs
{
Type = "Hot",
Number = 6,
ResourceSpecName = "es.x2.medium",
StorageSpecName = "es.volume.essd.flexpl-standard",
StorageSize = 500,
ExtraPerformance = new Volcengine.Escloud_v2.Inputs.EscloudInstanceV2NodeSpecsAssignExtraPerformanceArgs
{
Throughput = 65,
},
},
new Volcengine.Escloud_v2.Inputs.EscloudInstanceV2NodeSpecsAssignArgs
{
Type = "Kibana",
Number = 1,
ResourceSpecName = "kibana.x2.small",
StorageSpecName = "",
StorageSize = 0,
},
},
NetworkSpecs = new[]
{
new Volcengine.Escloud_v2.Inputs.EscloudInstanceV2NetworkSpecArgs
{
Type = "Elasticsearch",
Bandwidth = 1,
IsOpen = true,
SpecName = "es.eip.bgp_fixed_bandwidth",
},
new Volcengine.Escloud_v2.Inputs.EscloudInstanceV2NetworkSpecArgs
{
Type = "Kibana",
Bandwidth = 1,
IsOpen = true,
SpecName = "es.eip.bgp_fixed_bandwidth",
},
},
Tags = new[]
{
new Volcengine.Escloud_v2.Inputs.EscloudInstanceV2TagArgs
{
Key = "k1",
Value = "v1",
},
},
});
var fooEscloudInstancesV2 = Volcengine.Escloud_v2.GetEscloudInstancesV2.Invoke(new()
{
Ids = new[]
{
fooEscloudInstanceV2.Id,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.ecs.EcsFunctions;
import com.pulumi.volcengine.ecs.inputs.GetZonesArgs;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.escloud_v2.EscloudInstanceV2;
import com.pulumi.volcengine.escloud_v2.EscloudInstanceV2Args;
import com.pulumi.volcengine.escloud_v2.inputs.EscloudInstanceV2NodeSpecsAssignArgs;
import com.pulumi.volcengine.escloud_v2.inputs.EscloudInstanceV2NodeSpecsAssignExtraPerformanceArgs;
import com.pulumi.volcengine.escloud_v2.inputs.EscloudInstanceV2NetworkSpecArgs;
import com.pulumi.volcengine.escloud_v2.inputs.EscloudInstanceV2TagArgs;
import com.pulumi.volcengine.escloud_v2.Escloud_v2Functions;
import com.pulumi.volcengine.escloud_v2.inputs.GetEscloudInstancesV2Args;
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 fooZones = EcsFunctions.getZones();
var fooVpc = new Vpc("fooVpc", VpcArgs.builder()
.vpcName("acc-test-vpc")
.cidrBlock("172.16.0.0/16")
.build());
var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()
.subnetName("acc-test-subnet")
.description("tfdesc")
.cidrBlock("172.16.0.0/24")
.zoneId(fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
.vpcId(fooVpc.id())
.build());
var fooEscloudInstanceV2 = new EscloudInstanceV2("fooEscloudInstanceV2", EscloudInstanceV2Args.builder()
.instanceName("acc-test-escloud-instance")
.version("V7_10")
.zoneIds(
fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()),
fooZones.applyValue(getZonesResult -> getZonesResult.zones()[1].id()),
fooZones.applyValue(getZonesResult -> getZonesResult.zones()[2].id()))
.subnetId(fooSubnet.id())
.enableHttps(false)
.adminPassword("Password@@123")
.chargeType("PostPaid")
.autoRenew(false)
.period(1)
.configurationCode("es.standard")
.enablePureMaster(true)
.deletionProtection(false)
.projectName("default")
.nodeSpecsAssigns(
EscloudInstanceV2NodeSpecsAssignArgs.builder()
.type("Master")
.number(3)
.resourceSpecName("es.x2.medium")
.storageSpecName("es.volume.essd.pl0")
.storageSize(20)
.build(),
EscloudInstanceV2NodeSpecsAssignArgs.builder()
.type("Hot")
.number(6)
.resourceSpecName("es.x2.medium")
.storageSpecName("es.volume.essd.flexpl-standard")
.storageSize(500)
.extraPerformance(EscloudInstanceV2NodeSpecsAssignExtraPerformanceArgs.builder()
.throughput(65)
.build())
.build(),
EscloudInstanceV2NodeSpecsAssignArgs.builder()
.type("Kibana")
.number(1)
.resourceSpecName("kibana.x2.small")
.storageSpecName("")
.storageSize(0)
.build())
.networkSpecs(
EscloudInstanceV2NetworkSpecArgs.builder()
.type("Elasticsearch")
.bandwidth(1)
.isOpen(true)
.specName("es.eip.bgp_fixed_bandwidth")
.build(),
EscloudInstanceV2NetworkSpecArgs.builder()
.type("Kibana")
.bandwidth(1)
.isOpen(true)
.specName("es.eip.bgp_fixed_bandwidth")
.build())
.tags(EscloudInstanceV2TagArgs.builder()
.key("k1")
.value("v1")
.build())
.build());
final var fooEscloudInstancesV2 = Escloud_v2Functions.getEscloudInstancesV2(GetEscloudInstancesV2Args.builder()
.ids(fooEscloudInstanceV2.id())
.build());
}
}
resources:
fooVpc:
type: volcengine:vpc:Vpc
properties:
vpcName: acc-test-vpc
cidrBlock: 172.16.0.0/16
fooSubnet:
type: volcengine:vpc:Subnet
properties:
subnetName: acc-test-subnet
description: tfdesc
cidrBlock: 172.16.0.0/24
zoneId: ${fooZones.zones[0].id}
vpcId: ${fooVpc.id}
fooEscloudInstanceV2:
type: volcengine:escloud_v2:EscloudInstanceV2
properties:
instanceName: acc-test-escloud-instance
version: V7_10
zoneIds:
- ${fooZones.zones[0].id}
- ${fooZones.zones[1].id}
- ${fooZones.zones[2].id}
subnetId: ${fooSubnet.id}
enableHttps: false
adminPassword: Password@@123
chargeType: PostPaid
autoRenew: false
period: 1
configurationCode: es.standard
enablePureMaster: true
deletionProtection: false
projectName: default
nodeSpecsAssigns:
- type: Master
number: 3
resourceSpecName: es.x2.medium
storageSpecName: es.volume.essd.pl0
storageSize: 20
- type: Hot
number: 6
resourceSpecName: es.x2.medium
storageSpecName: es.volume.essd.flexpl-standard
storageSize: 500
extraPerformance:
throughput: 65
- type: Kibana
number: 1
resourceSpecName: kibana.x2.small
storageSpecName:
storageSize: 0
networkSpecs:
- type: Elasticsearch
bandwidth: 1
isOpen: true
specName: es.eip.bgp_fixed_bandwidth
- type: Kibana
bandwidth: 1
isOpen: true
specName: es.eip.bgp_fixed_bandwidth
tags:
- key: k1
value: v1
variables:
fooZones:
fn::invoke:
Function: volcengine:ecs:getZones
Arguments: {}
fooEscloudInstancesV2:
fn::invoke:
Function: volcengine:escloud_v2:getEscloudInstancesV2
Arguments:
ids:
- ${fooEscloudInstanceV2.id}
Using getEscloudInstancesV2
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 getEscloudInstancesV2(args: GetEscloudInstancesV2Args, opts?: InvokeOptions): Promise<GetEscloudInstancesV2Result>
function getEscloudInstancesV2Output(args: GetEscloudInstancesV2OutputArgs, opts?: InvokeOptions): Output<GetEscloudInstancesV2Result>def get_escloud_instances_v2(charge_types: Optional[Sequence[str]] = None,
ids: Optional[Sequence[str]] = None,
instance_names: Optional[Sequence[str]] = None,
output_file: Optional[str] = None,
project_name: Optional[str] = None,
statuses: Optional[Sequence[str]] = None,
tags: Optional[Sequence[GetEscloudInstancesV2Tag]] = None,
versions: Optional[Sequence[str]] = None,
zone_ids: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetEscloudInstancesV2Result
def get_escloud_instances_v2_output(charge_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
instance_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
output_file: Optional[pulumi.Input[str]] = None,
project_name: Optional[pulumi.Input[str]] = None,
statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
tags: Optional[pulumi.Input[Sequence[pulumi.Input[GetEscloudInstancesV2TagArgs]]]] = None,
versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
zone_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetEscloudInstancesV2Result]func GetEscloudInstancesV2(ctx *Context, args *GetEscloudInstancesV2Args, opts ...InvokeOption) (*GetEscloudInstancesV2Result, error)
func GetEscloudInstancesV2Output(ctx *Context, args *GetEscloudInstancesV2OutputArgs, opts ...InvokeOption) GetEscloudInstancesV2ResultOutput> Note: This function is named GetEscloudInstancesV2 in the Go SDK.
public static class GetEscloudInstancesV2
{
public static Task<GetEscloudInstancesV2Result> InvokeAsync(GetEscloudInstancesV2Args args, InvokeOptions? opts = null)
public static Output<GetEscloudInstancesV2Result> Invoke(GetEscloudInstancesV2InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetEscloudInstancesV2Result> getEscloudInstancesV2(GetEscloudInstancesV2Args args, InvokeOptions options)
public static Output<GetEscloudInstancesV2Result> getEscloudInstancesV2(GetEscloudInstancesV2Args args, InvokeOptions options)
fn::invoke:
function: volcengine:escloud_v2/getEscloudInstancesV2:getEscloudInstancesV2
arguments:
# arguments dictionaryThe following arguments are supported:
- Charge
Types List<string> - The charge types of instance.
- Ids List<string>
- A list of instance IDs.
- Instance
Names List<string> - The names of instance.
- Output
File string - File name where to save data source results.
- Project
Name string - The project name of instance.
- Statuses List<string>
- The status of instance.
-
List<Get
Escloud Instances V2Tag> - The tags of instance.
- Versions List<string>
- The versions of instance.
- Zone
Ids List<string> - The available zone IDs of instance.
- Charge
Types []string - The charge types of instance.
- Ids []string
- A list of instance IDs.
- Instance
Names []string - The names of instance.
- Output
File string - File name where to save data source results.
- Project
Name string - The project name of instance.
- Statuses []string
- The status of instance.
-
[]Get
Escloud Instances V2Tag - The tags of instance.
- Versions []string
- The versions of instance.
- Zone
Ids []string - The available zone IDs of instance.
- charge
Types List<String> - The charge types of instance.
- ids List<String>
- A list of instance IDs.
- instance
Names List<String> - The names of instance.
- output
File String - File name where to save data source results.
- project
Name String - The project name of instance.
- statuses List<String>
- The status of instance.
-
List<Get
Escloud Instances V2Tag> - The tags of instance.
- versions List<String>
- The versions of instance.
- zone
Ids List<String> - The available zone IDs of instance.
- charge
Types string[] - The charge types of instance.
- ids string[]
- A list of instance IDs.
- instance
Names string[] - The names of instance.
- output
File string - File name where to save data source results.
- project
Name string - The project name of instance.
- statuses string[]
- The status of instance.
-
Get
Escloud Instances V2Tag[] - The tags of instance.
- versions string[]
- The versions of instance.
- zone
Ids string[] - The available zone IDs of instance.
- charge_
types Sequence[str] - The charge types of instance.
- ids Sequence[str]
- A list of instance IDs.
- instance_
names Sequence[str] - The names of instance.
- output_
file str - File name where to save data source results.
- project_
name str - The project name of instance.
- statuses Sequence[str]
- The status of instance.
-
Sequence[Get
Escloud Instances V2Tag] - The tags of instance.
- versions Sequence[str]
- The versions of instance.
- zone_
ids Sequence[str] - The available zone IDs of instance.
- charge
Types List<String> - The charge types of instance.
- ids List<String>
- A list of instance IDs.
- instance
Names List<String> - The names of instance.
- output
File String - File name where to save data source results.
- project
Name String - The project name of instance.
- statuses List<String>
- The status of instance.
- List<Property Map>
- The tags of instance.
- versions List<String>
- The versions of instance.
- zone
Ids List<String> - The available zone IDs of instance.
getEscloudInstancesV2 Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Instances
List<Get
Escloud Instances V2Instance> - The collection of query.
- Total
Count int - The total count of query.
- Charge
Types List<string> - Ids List<string>
- Instance
Names List<string> - Output
File string - Project
Name string - The name of project.
- Statuses List<string>
-
List<Get
Escloud Instances V2Tag> - Tags.
- Versions List<string>
- Zone
Ids List<string>
- Id string
- The provider-assigned unique ID for this managed resource.
- Instances
[]Get
Escloud Instances V2Instance - The collection of query.
- Total
Count int - The total count of query.
- Charge
Types []string - Ids []string
- Instance
Names []string - Output
File string - Project
Name string - The name of project.
- Statuses []string
-
[]Get
Escloud Instances V2Tag - Tags.
- Versions []string
- Zone
Ids []string
- id String
- The provider-assigned unique ID for this managed resource.
- instances
List<Get
Escloud Instances V2Instance> - The collection of query.
- total
Count Integer - The total count of query.
- charge
Types List<String> - ids List<String>
- instance
Names List<String> - output
File String - project
Name String - The name of project.
- statuses List<String>
-
List<Get
Escloud Instances V2Tag> - Tags.
- versions List<String>
- zone
Ids List<String>
- id string
- The provider-assigned unique ID for this managed resource.
- instances
Get
Escloud Instances V2Instance[] - The collection of query.
- total
Count number - The total count of query.
- charge
Types string[] - ids string[]
- instance
Names string[] - output
File string - project
Name string - The name of project.
- statuses string[]
-
Get
Escloud Instances V2Tag[] - Tags.
- versions string[]
- zone
Ids string[]
- id str
- The provider-assigned unique ID for this managed resource.
- instances
Sequence[Get
Escloud Instances V2Instance] - The collection of query.
- total_
count int - The total count of query.
- charge_
types Sequence[str] - ids Sequence[str]
- instance_
names Sequence[str] - output_
file str - project_
name str - The name of project.
- statuses Sequence[str]
-
Sequence[Get
Escloud Instances V2Tag] - Tags.
- versions Sequence[str]
- zone_
ids Sequence[str]
- id String
- The provider-assigned unique ID for this managed resource.
- instances List<Property Map>
- The collection of query.
- total
Count Number - The total count of query.
- charge
Types List<String> - ids List<String>
- instance
Names List<String> - output
File String - project
Name String - The name of project.
- statuses List<String>
- List<Property Map>
- Tags.
- versions List<String>
- zone
Ids List<String>
Supporting Types
GetEscloudInstancesV2Instance
- Cerebro
Enabled bool - Whether to enable cerebro.
- Cerebro
Private stringDomain - The cerebro private domain of instance.
- Cerebro
Public stringDomain - The cerebro public domain of instance.
- Charge
Enabled bool - The charge status of instance.
- Cluster
Id string - The cluster id of instance.
- Create
Time string - The create time of instance.
- Deletion
Protection bool - Whether enable deletion protection for ESCloud instance.
- Enable
Es boolPrivate Domain Public - whether enable es private domain public.
- Enable
Es boolPrivate Network - whether enable es private network.
- Enable
Es boolPublic Network - whether enable es public network.
- Enable
Kibana boolPrivate Domain Public - whether enable kibana private domain public.
- Enable
Kibana boolPrivate Network - whether enable kibana private network.
- Enable
Kibana boolPublic Network - whether enable kibana public network.
- Es
Eip string - The eip address of instance.
- Es
Eip stringId - The eip id associated with the instance.
- Es
Inner stringEndpoint - The es inner endpoint of instance.
- Es
Private stringDomain - The es private domain of instance.
- Es
Private stringEndpoint - The es private endpoint of instance.
- Es
Private stringIp Whitelist - The whitelist of es private ip.
- Es
Public stringDomain - The es public domain of instance.
- Es
Public stringEndpoint - The es public endpoint of instance.
- Es
Public stringIp Whitelist - The whitelist of es public ip.
- Expire
Date string - The expire time of instance.
- Id string
- The id of instance.
- Instance
Configurations List<GetEscloud Instances V2Instance Instance Configuration> - The configuration of instance.
- Instance
Id string - The id of instance.
- Kibana
Eip string - The eip address of kibana.
- Kibana
Eip stringId - The eip id associated with kibana.
- Kibana
Private stringDomain - The kibana private domain of instance.
- Kibana
Private stringIp Whitelist - The whitelist of kibana private ip.
- Kibana
Public stringDomain - The kibana public domain of instance.
- Kibana
Public stringIp Whitelist - The whitelist of kibana public ip.
- Main
Zone stringId - The main zone id of instance.
- Maintenance
Days List<string> - The maintenance day of instance.
- Maintenance
Time string - The maintenance time of instance.
- Nodes
List<Get
Escloud Instances V2Instance Node> - The nodes info of instance.
- Plugins
List<Get
Escloud Instances V2Instance Plugin> - The plugin info of instance.
- Status string
- The status of instance.
- Support
Code boolNode - Whether support code node.
-
List<Get
Escloud Instances V2Instance Tag> - The tags of instance.
- Total
Nodes int - The total nodes of instance.
- User
Id string - The user id of instance.
- Cerebro
Enabled bool - Whether to enable cerebro.
- Cerebro
Private stringDomain - The cerebro private domain of instance.
- Cerebro
Public stringDomain - The cerebro public domain of instance.
- Charge
Enabled bool - The charge status of instance.
- Cluster
Id string - The cluster id of instance.
- Create
Time string - The create time of instance.
- Deletion
Protection bool - Whether enable deletion protection for ESCloud instance.
- Enable
Es boolPrivate Domain Public - whether enable es private domain public.
- Enable
Es boolPrivate Network - whether enable es private network.
- Enable
Es boolPublic Network - whether enable es public network.
- Enable
Kibana boolPrivate Domain Public - whether enable kibana private domain public.
- Enable
Kibana boolPrivate Network - whether enable kibana private network.
- Enable
Kibana boolPublic Network - whether enable kibana public network.
- Es
Eip string - The eip address of instance.
- Es
Eip stringId - The eip id associated with the instance.
- Es
Inner stringEndpoint - The es inner endpoint of instance.
- Es
Private stringDomain - The es private domain of instance.
- Es
Private stringEndpoint - The es private endpoint of instance.
- Es
Private stringIp Whitelist - The whitelist of es private ip.
- Es
Public stringDomain - The es public domain of instance.
- Es
Public stringEndpoint - The es public endpoint of instance.
- Es
Public stringIp Whitelist - The whitelist of es public ip.
- Expire
Date string - The expire time of instance.
- Id string
- The id of instance.
- Instance
Configurations []GetEscloud Instances V2Instance Instance Configuration - The configuration of instance.
- Instance
Id string - The id of instance.
- Kibana
Eip string - The eip address of kibana.
- Kibana
Eip stringId - The eip id associated with kibana.
- Kibana
Private stringDomain - The kibana private domain of instance.
- Kibana
Private stringIp Whitelist - The whitelist of kibana private ip.
- Kibana
Public stringDomain - The kibana public domain of instance.
- Kibana
Public stringIp Whitelist - The whitelist of kibana public ip.
- Main
Zone stringId - The main zone id of instance.
- Maintenance
Days []string - The maintenance day of instance.
- Maintenance
Time string - The maintenance time of instance.
- Nodes
[]Get
Escloud Instances V2Instance Node - The nodes info of instance.
- Plugins
[]Get
Escloud Instances V2Instance Plugin - The plugin info of instance.
- Status string
- The status of instance.
- Support
Code boolNode - Whether support code node.
-
[]Get
Escloud Instances V2Instance Tag - The tags of instance.
- Total
Nodes int - The total nodes of instance.
- User
Id string - The user id of instance.
- cerebro
Enabled Boolean - Whether to enable cerebro.
- cerebro
Private StringDomain - The cerebro private domain of instance.
- cerebro
Public StringDomain - The cerebro public domain of instance.
- charge
Enabled Boolean - The charge status of instance.
- cluster
Id String - The cluster id of instance.
- create
Time String - The create time of instance.
- deletion
Protection Boolean - Whether enable deletion protection for ESCloud instance.
- enable
Es BooleanPrivate Domain Public - whether enable es private domain public.
- enable
Es BooleanPrivate Network - whether enable es private network.
- enable
Es BooleanPublic Network - whether enable es public network.
- enable
Kibana BooleanPrivate Domain Public - whether enable kibana private domain public.
- enable
Kibana BooleanPrivate Network - whether enable kibana private network.
- enable
Kibana BooleanPublic Network - whether enable kibana public network.
- es
Eip String - The eip address of instance.
- es
Eip StringId - The eip id associated with the instance.
- es
Inner StringEndpoint - The es inner endpoint of instance.
- es
Private StringDomain - The es private domain of instance.
- es
Private StringEndpoint - The es private endpoint of instance.
- es
Private StringIp Whitelist - The whitelist of es private ip.
- es
Public StringDomain - The es public domain of instance.
- es
Public StringEndpoint - The es public endpoint of instance.
- es
Public StringIp Whitelist - The whitelist of es public ip.
- expire
Date String - The expire time of instance.
- id String
- The id of instance.
- instance
Configurations List<GetEscloud Instances V2Instance Instance Configuration> - The configuration of instance.
- instance
Id String - The id of instance.
- kibana
Eip String - The eip address of kibana.
- kibana
Eip StringId - The eip id associated with kibana.
- kibana
Private StringDomain - The kibana private domain of instance.
- kibana
Private StringIp Whitelist - The whitelist of kibana private ip.
- kibana
Public StringDomain - The kibana public domain of instance.
- kibana
Public StringIp Whitelist - The whitelist of kibana public ip.
- main
Zone StringId - The main zone id of instance.
- maintenance
Days List<String> - The maintenance day of instance.
- maintenance
Time String - The maintenance time of instance.
- nodes
List<Get
Escloud Instances V2Instance Node> - The nodes info of instance.
- plugins
List<Get
Escloud Instances V2Instance Plugin> - The plugin info of instance.
- status String
- The status of instance.
- support
Code BooleanNode - Whether support code node.
-
List<Get
Escloud Instances V2Instance Tag> - The tags of instance.
- total
Nodes Integer - The total nodes of instance.
- user
Id String - The user id of instance.
- cerebro
Enabled boolean - Whether to enable cerebro.
- cerebro
Private stringDomain - The cerebro private domain of instance.
- cerebro
Public stringDomain - The cerebro public domain of instance.
- charge
Enabled boolean - The charge status of instance.
- cluster
Id string - The cluster id of instance.
- create
Time string - The create time of instance.
- deletion
Protection boolean - Whether enable deletion protection for ESCloud instance.
- enable
Es booleanPrivate Domain Public - whether enable es private domain public.
- enable
Es booleanPrivate Network - whether enable es private network.
- enable
Es booleanPublic Network - whether enable es public network.
- enable
Kibana booleanPrivate Domain Public - whether enable kibana private domain public.
- enable
Kibana booleanPrivate Network - whether enable kibana private network.
- enable
Kibana booleanPublic Network - whether enable kibana public network.
- es
Eip string - The eip address of instance.
- es
Eip stringId - The eip id associated with the instance.
- es
Inner stringEndpoint - The es inner endpoint of instance.
- es
Private stringDomain - The es private domain of instance.
- es
Private stringEndpoint - The es private endpoint of instance.
- es
Private stringIp Whitelist - The whitelist of es private ip.
- es
Public stringDomain - The es public domain of instance.
- es
Public stringEndpoint - The es public endpoint of instance.
- es
Public stringIp Whitelist - The whitelist of es public ip.
- expire
Date string - The expire time of instance.
- id string
- The id of instance.
- instance
Configurations GetEscloud Instances V2Instance Instance Configuration[] - The configuration of instance.
- instance
Id string - The id of instance.
- kibana
Eip string - The eip address of kibana.
- kibana
Eip stringId - The eip id associated with kibana.
- kibana
Private stringDomain - The kibana private domain of instance.
- kibana
Private stringIp Whitelist - The whitelist of kibana private ip.
- kibana
Public stringDomain - The kibana public domain of instance.
- kibana
Public stringIp Whitelist - The whitelist of kibana public ip.
- main
Zone stringId - The main zone id of instance.
- maintenance
Days string[] - The maintenance day of instance.
- maintenance
Time string - The maintenance time of instance.
- nodes
Get
Escloud Instances V2Instance Node[] - The nodes info of instance.
- plugins
Get
Escloud Instances V2Instance Plugin[] - The plugin info of instance.
- status string
- The status of instance.
- support
Code booleanNode - Whether support code node.
-
Get
Escloud Instances V2Instance Tag[] - The tags of instance.
- total
Nodes number - The total nodes of instance.
- user
Id string - The user id of instance.
- cerebro_
enabled bool - Whether to enable cerebro.
- cerebro_
private_ strdomain - The cerebro private domain of instance.
- cerebro_
public_ strdomain - The cerebro public domain of instance.
- charge_
enabled bool - The charge status of instance.
- cluster_
id str - The cluster id of instance.
- create_
time str - The create time of instance.
- deletion_
protection bool - Whether enable deletion protection for ESCloud instance.
- enable_
es_ boolprivate_ domain_ public - whether enable es private domain public.
- enable_
es_ boolprivate_ network - whether enable es private network.
- enable_
es_ boolpublic_ network - whether enable es public network.
- enable_
kibana_ boolprivate_ domain_ public - whether enable kibana private domain public.
- enable_
kibana_ boolprivate_ network - whether enable kibana private network.
- enable_
kibana_ boolpublic_ network - whether enable kibana public network.
- es_
eip str - The eip address of instance.
- es_
eip_ strid - The eip id associated with the instance.
- es_
inner_ strendpoint - The es inner endpoint of instance.
- es_
private_ strdomain - The es private domain of instance.
- es_
private_ strendpoint - The es private endpoint of instance.
- es_
private_ strip_ whitelist - The whitelist of es private ip.
- es_
public_ strdomain - The es public domain of instance.
- es_
public_ strendpoint - The es public endpoint of instance.
- es_
public_ strip_ whitelist - The whitelist of es public ip.
- expire_
date str - The expire time of instance.
- id str
- The id of instance.
- instance_
configurations Sequence[GetEscloud Instances V2Instance Instance Configuration] - The configuration of instance.
- instance_
id str - The id of instance.
- kibana_
eip str - The eip address of kibana.
- kibana_
eip_ strid - The eip id associated with kibana.
- kibana_
private_ strdomain - The kibana private domain of instance.
- kibana_
private_ strip_ whitelist - The whitelist of kibana private ip.
- kibana_
public_ strdomain - The kibana public domain of instance.
- kibana_
public_ strip_ whitelist - The whitelist of kibana public ip.
- main_
zone_ strid - The main zone id of instance.
- maintenance_
days Sequence[str] - The maintenance day of instance.
- maintenance_
time str - The maintenance time of instance.
- nodes
Sequence[Get
Escloud Instances V2Instance Node] - The nodes info of instance.
- plugins
Sequence[Get
Escloud Instances V2Instance Plugin] - The plugin info of instance.
- status str
- The status of instance.
- support_
code_ boolnode - Whether support code node.
-
Sequence[Get
Escloud Instances V2Instance Tag] - The tags of instance.
- total_
nodes int - The total nodes of instance.
- user_
id str - The user id of instance.
- cerebro
Enabled Boolean - Whether to enable cerebro.
- cerebro
Private StringDomain - The cerebro private domain of instance.
- cerebro
Public StringDomain - The cerebro public domain of instance.
- charge
Enabled Boolean - The charge status of instance.
- cluster
Id String - The cluster id of instance.
- create
Time String - The create time of instance.
- deletion
Protection Boolean - Whether enable deletion protection for ESCloud instance.
- enable
Es BooleanPrivate Domain Public - whether enable es private domain public.
- enable
Es BooleanPrivate Network - whether enable es private network.
- enable
Es BooleanPublic Network - whether enable es public network.
- enable
Kibana BooleanPrivate Domain Public - whether enable kibana private domain public.
- enable
Kibana BooleanPrivate Network - whether enable kibana private network.
- enable
Kibana BooleanPublic Network - whether enable kibana public network.
- es
Eip String - The eip address of instance.
- es
Eip StringId - The eip id associated with the instance.
- es
Inner StringEndpoint - The es inner endpoint of instance.
- es
Private StringDomain - The es private domain of instance.
- es
Private StringEndpoint - The es private endpoint of instance.
- es
Private StringIp Whitelist - The whitelist of es private ip.
- es
Public StringDomain - The es public domain of instance.
- es
Public StringEndpoint - The es public endpoint of instance.
- es
Public StringIp Whitelist - The whitelist of es public ip.
- expire
Date String - The expire time of instance.
- id String
- The id of instance.
- instance
Configurations List<Property Map> - The configuration of instance.
- instance
Id String - The id of instance.
- kibana
Eip String - The eip address of kibana.
- kibana
Eip StringId - The eip id associated with kibana.
- kibana
Private StringDomain - The kibana private domain of instance.
- kibana
Private StringIp Whitelist - The whitelist of kibana private ip.
- kibana
Public StringDomain - The kibana public domain of instance.
- kibana
Public StringIp Whitelist - The whitelist of kibana public ip.
- main
Zone StringId - The main zone id of instance.
- maintenance
Days List<String> - The maintenance day of instance.
- maintenance
Time String - The maintenance time of instance.
- nodes List<Property Map>
- The nodes info of instance.
- plugins List<Property Map>
- The plugin info of instance.
- status String
- The status of instance.
- support
Code BooleanNode - Whether support code node.
- List<Property Map>
- The tags of instance.
- total
Nodes Number - The total nodes of instance.
- user
Id String - The user id of instance.
GetEscloudInstancesV2InstanceInstanceConfiguration
- Admin
User stringName - The user name of instance.
- Charge
Type string - The charge type of instance.
- Cold
Node intNumber - The node number of cold.
- Cold
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Cold Node Resource Spec> - The node resource spec of cold.
- Cold
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Cold Node Storage Spec> - The node storage spec of cold.
- Coordinator
Node intNumber - The node number of coordinator.
- Coordinator
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Coordinator Node Resource Spec> - The node resource spec of coordinator.
- Coordinator
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Coordinator Node Storage Spec> - The node storage spec of coordinator.
- Enable
Https bool - whether enable https.
- Enable
Pure boolMaster - Whether enable pure master.
- Hot
Node intNumber - The node number of hot.
- Hot
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Hot Node Resource Spec> - The node resource spec of hot.
- Hot
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Hot Node Storage Spec> - The node storage spec of hot.
- Instance
Name string - The name of instance.
- Kibana
Node intNumber - The node number of kibana.
- Kibana
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Kibana Node Resource Spec> - The node resource spec of kibana.
- Kibana
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Kibana Node Storage Spec> - The node storage spec of kibana.
- Master
Node intNumber - The node number of master.
- Master
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Master Node Resource Spec> - The node resource spec of master.
- Master
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Master Node Storage Spec> - The node storage spec of master.
- Period int
- The period of project.
- Project
Name string - The project name of instance.
- Region
Id string - The region info of instance.
- Subnets
List<Get
Escloud Instances V2Instance Instance Configuration Subnet> - The subnet info.
- Version string
- The version of plugin.
- Vpcs
List<Get
Escloud Instances V2Instance Instance Configuration Vpc> - The vpc info.
- Warm
Node intNumber - The node number of warm.
- Warm
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Warm Node Resource Spec> - The node resource spec of warm.
- Warm
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Warm Node Storage Spec> - The node storage spec of warm.
- Zone
Id string - The zoneId of instance.
- Zone
Number int - The zone number of instance.
- Admin
User stringName - The user name of instance.
- Charge
Type string - The charge type of instance.
- Cold
Node intNumber - The node number of cold.
- Cold
Node []GetResource Specs Escloud Instances V2Instance Instance Configuration Cold Node Resource Spec - The node resource spec of cold.
- Cold
Node []GetStorage Specs Escloud Instances V2Instance Instance Configuration Cold Node Storage Spec - The node storage spec of cold.
- Coordinator
Node intNumber - The node number of coordinator.
- Coordinator
Node []GetResource Specs Escloud Instances V2Instance Instance Configuration Coordinator Node Resource Spec - The node resource spec of coordinator.
- Coordinator
Node []GetStorage Specs Escloud Instances V2Instance Instance Configuration Coordinator Node Storage Spec - The node storage spec of coordinator.
- Enable
Https bool - whether enable https.
- Enable
Pure boolMaster - Whether enable pure master.
- Hot
Node intNumber - The node number of hot.
- Hot
Node []GetResource Specs Escloud Instances V2Instance Instance Configuration Hot Node Resource Spec - The node resource spec of hot.
- Hot
Node []GetStorage Specs Escloud Instances V2Instance Instance Configuration Hot Node Storage Spec - The node storage spec of hot.
- Instance
Name string - The name of instance.
- Kibana
Node intNumber - The node number of kibana.
- Kibana
Node []GetResource Specs Escloud Instances V2Instance Instance Configuration Kibana Node Resource Spec - The node resource spec of kibana.
- Kibana
Node []GetStorage Specs Escloud Instances V2Instance Instance Configuration Kibana Node Storage Spec - The node storage spec of kibana.
- Master
Node intNumber - The node number of master.
- Master
Node []GetResource Specs Escloud Instances V2Instance Instance Configuration Master Node Resource Spec - The node resource spec of master.
- Master
Node []GetStorage Specs Escloud Instances V2Instance Instance Configuration Master Node Storage Spec - The node storage spec of master.
- Period int
- The period of project.
- Project
Name string - The project name of instance.
- Region
Id string - The region info of instance.
- Subnets
[]Get
Escloud Instances V2Instance Instance Configuration Subnet - The subnet info.
- Version string
- The version of plugin.
- Vpcs
[]Get
Escloud Instances V2Instance Instance Configuration Vpc - The vpc info.
- Warm
Node intNumber - The node number of warm.
- Warm
Node []GetResource Specs Escloud Instances V2Instance Instance Configuration Warm Node Resource Spec - The node resource spec of warm.
- Warm
Node []GetStorage Specs Escloud Instances V2Instance Instance Configuration Warm Node Storage Spec - The node storage spec of warm.
- Zone
Id string - The zoneId of instance.
- Zone
Number int - The zone number of instance.
- admin
User StringName - The user name of instance.
- charge
Type String - The charge type of instance.
- cold
Node IntegerNumber - The node number of cold.
- cold
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Cold Node Resource Spec> - The node resource spec of cold.
- cold
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Cold Node Storage Spec> - The node storage spec of cold.
- coordinator
Node IntegerNumber - The node number of coordinator.
- coordinator
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Coordinator Node Resource Spec> - The node resource spec of coordinator.
- coordinator
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Coordinator Node Storage Spec> - The node storage spec of coordinator.
- enable
Https Boolean - whether enable https.
- enable
Pure BooleanMaster - Whether enable pure master.
- hot
Node IntegerNumber - The node number of hot.
- hot
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Hot Node Resource Spec> - The node resource spec of hot.
- hot
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Hot Node Storage Spec> - The node storage spec of hot.
- instance
Name String - The name of instance.
- kibana
Node IntegerNumber - The node number of kibana.
- kibana
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Kibana Node Resource Spec> - The node resource spec of kibana.
- kibana
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Kibana Node Storage Spec> - The node storage spec of kibana.
- master
Node IntegerNumber - The node number of master.
- master
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Master Node Resource Spec> - The node resource spec of master.
- master
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Master Node Storage Spec> - The node storage spec of master.
- period Integer
- The period of project.
- project
Name String - The project name of instance.
- region
Id String - The region info of instance.
- subnets
List<Get
Escloud Instances V2Instance Instance Configuration Subnet> - The subnet info.
- version String
- The version of plugin.
- vpcs
List<Get
Escloud Instances V2Instance Instance Configuration Vpc> - The vpc info.
- warm
Node IntegerNumber - The node number of warm.
- warm
Node List<GetResource Specs Escloud Instances V2Instance Instance Configuration Warm Node Resource Spec> - The node resource spec of warm.
- warm
Node List<GetStorage Specs Escloud Instances V2Instance Instance Configuration Warm Node Storage Spec> - The node storage spec of warm.
- zone
Id String - The zoneId of instance.
- zone
Number Integer - The zone number of instance.
- admin
User stringName - The user name of instance.
- charge
Type string - The charge type of instance.
- cold
Node numberNumber - The node number of cold.
- cold
Node GetResource Specs Escloud Instances V2Instance Instance Configuration Cold Node Resource Spec[] - The node resource spec of cold.
- cold
Node GetStorage Specs Escloud Instances V2Instance Instance Configuration Cold Node Storage Spec[] - The node storage spec of cold.
- coordinator
Node numberNumber - The node number of coordinator.
- coordinator
Node GetResource Specs Escloud Instances V2Instance Instance Configuration Coordinator Node Resource Spec[] - The node resource spec of coordinator.
- coordinator
Node GetStorage Specs Escloud Instances V2Instance Instance Configuration Coordinator Node Storage Spec[] - The node storage spec of coordinator.
- enable
Https boolean - whether enable https.
- enable
Pure booleanMaster - Whether enable pure master.
- hot
Node numberNumber - The node number of hot.
- hot
Node GetResource Specs Escloud Instances V2Instance Instance Configuration Hot Node Resource Spec[] - The node resource spec of hot.
- hot
Node GetStorage Specs Escloud Instances V2Instance Instance Configuration Hot Node Storage Spec[] - The node storage spec of hot.
- instance
Name string - The name of instance.
- kibana
Node numberNumber - The node number of kibana.
- kibana
Node GetResource Specs Escloud Instances V2Instance Instance Configuration Kibana Node Resource Spec[] - The node resource spec of kibana.
- kibana
Node GetStorage Specs Escloud Instances V2Instance Instance Configuration Kibana Node Storage Spec[] - The node storage spec of kibana.
- master
Node numberNumber - The node number of master.
- master
Node GetResource Specs Escloud Instances V2Instance Instance Configuration Master Node Resource Spec[] - The node resource spec of master.
- master
Node GetStorage Specs Escloud Instances V2Instance Instance Configuration Master Node Storage Spec[] - The node storage spec of master.
- period number
- The period of project.
- project
Name string - The project name of instance.
- region
Id string - The region info of instance.
- subnets
Get
Escloud Instances V2Instance Instance Configuration Subnet[] - The subnet info.
- version string
- The version of plugin.
- vpcs
Get
Escloud Instances V2Instance Instance Configuration Vpc[] - The vpc info.
- warm
Node numberNumber - The node number of warm.
- warm
Node GetResource Specs Escloud Instances V2Instance Instance Configuration Warm Node Resource Spec[] - The node resource spec of warm.
- warm
Node GetStorage Specs Escloud Instances V2Instance Instance Configuration Warm Node Storage Spec[] - The node storage spec of warm.
- zone
Id string - The zoneId of instance.
- zone
Number number - The zone number of instance.
- admin_
user_ strname - The user name of instance.
- charge_
type str - The charge type of instance.
- cold_
node_ intnumber - The node number of cold.
- cold_
node_ Sequence[Getresource_ specs Escloud Instances V2Instance Instance Configuration Cold Node Resource Spec] - The node resource spec of cold.
- cold_
node_ Sequence[Getstorage_ specs Escloud Instances V2Instance Instance Configuration Cold Node Storage Spec] - The node storage spec of cold.
- coordinator_
node_ intnumber - The node number of coordinator.
- coordinator_
node_ Sequence[Getresource_ specs Escloud Instances V2Instance Instance Configuration Coordinator Node Resource Spec] - The node resource spec of coordinator.
- coordinator_
node_ Sequence[Getstorage_ specs Escloud Instances V2Instance Instance Configuration Coordinator Node Storage Spec] - The node storage spec of coordinator.
- enable_
https bool - whether enable https.
- enable_
pure_ boolmaster - Whether enable pure master.
- hot_
node_ intnumber - The node number of hot.
- hot_
node_ Sequence[Getresource_ specs Escloud Instances V2Instance Instance Configuration Hot Node Resource Spec] - The node resource spec of hot.
- hot_
node_ Sequence[Getstorage_ specs Escloud Instances V2Instance Instance Configuration Hot Node Storage Spec] - The node storage spec of hot.
- instance_
name str - The name of instance.
- kibana_
node_ intnumber - The node number of kibana.
- kibana_
node_ Sequence[Getresource_ specs Escloud Instances V2Instance Instance Configuration Kibana Node Resource Spec] - The node resource spec of kibana.
- kibana_
node_ Sequence[Getstorage_ specs Escloud Instances V2Instance Instance Configuration Kibana Node Storage Spec] - The node storage spec of kibana.
- master_
node_ intnumber - The node number of master.
- master_
node_ Sequence[Getresource_ specs Escloud Instances V2Instance Instance Configuration Master Node Resource Spec] - The node resource spec of master.
- master_
node_ Sequence[Getstorage_ specs Escloud Instances V2Instance Instance Configuration Master Node Storage Spec] - The node storage spec of master.
- period int
- The period of project.
- project_
name str - The project name of instance.
- region_
id str - The region info of instance.
- subnets
Sequence[Get
Escloud Instances V2Instance Instance Configuration Subnet] - The subnet info.
- version str
- The version of plugin.
- vpcs
Sequence[Get
Escloud Instances V2Instance Instance Configuration Vpc] - The vpc info.
- warm_
node_ intnumber - The node number of warm.
- warm_
node_ Sequence[Getresource_ specs Escloud Instances V2Instance Instance Configuration Warm Node Resource Spec] - The node resource spec of warm.
- warm_
node_ Sequence[Getstorage_ specs Escloud Instances V2Instance Instance Configuration Warm Node Storage Spec] - The node storage spec of warm.
- zone_
id str - The zoneId of instance.
- zone_
number int - The zone number of instance.
- admin
User StringName - The user name of instance.
- charge
Type String - The charge type of instance.
- cold
Node NumberNumber - The node number of cold.
- cold
Node List<Property Map>Resource Specs - The node resource spec of cold.
- cold
Node List<Property Map>Storage Specs - The node storage spec of cold.
- coordinator
Node NumberNumber - The node number of coordinator.
- coordinator
Node List<Property Map>Resource Specs - The node resource spec of coordinator.
- coordinator
Node List<Property Map>Storage Specs - The node storage spec of coordinator.
- enable
Https Boolean - whether enable https.
- enable
Pure BooleanMaster - Whether enable pure master.
- hot
Node NumberNumber - The node number of hot.
- hot
Node List<Property Map>Resource Specs - The node resource spec of hot.
- hot
Node List<Property Map>Storage Specs - The node storage spec of hot.
- instance
Name String - The name of instance.
- kibana
Node NumberNumber - The node number of kibana.
- kibana
Node List<Property Map>Resource Specs - The node resource spec of kibana.
- kibana
Node List<Property Map>Storage Specs - The node storage spec of kibana.
- master
Node NumberNumber - The node number of master.
- master
Node List<Property Map>Resource Specs - The node resource spec of master.
- master
Node List<Property Map>Storage Specs - The node storage spec of master.
- period Number
- The period of project.
- project
Name String - The project name of instance.
- region
Id String - The region info of instance.
- subnets List<Property Map>
- The subnet info.
- version String
- The version of plugin.
- vpcs List<Property Map>
- The vpc info.
- warm
Node NumberNumber - The node number of warm.
- warm
Node List<Property Map>Resource Specs - The node resource spec of warm.
- warm
Node List<Property Map>Storage Specs - The node storage spec of warm.
- zone
Id String - The zoneId of instance.
- zone
Number Number - The zone number of instance.
GetEscloudInstancesV2InstanceInstanceConfigurationColdNodeResourceSpec
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- cpu Integer
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Integer
- The memory info of resource spec.
- name String
- The name of storage spec.
- cpu number
- The cpu info of resource spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- memory number
- The memory info of resource spec.
- name string
- The name of storage spec.
- cpu int
- The cpu info of resource spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- memory int
- The memory info of resource spec.
- name str
- The name of storage spec.
- cpu Number
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Number
- The memory info of resource spec.
- name String
- The name of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationColdNodeStorageSpec
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Integer - The max size of storage spec.
- min
Size Integer - The min size of storage spec.
- name String
- The name of storage spec.
- size Integer
- The size of storage spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- max
Size number - The max size of storage spec.
- min
Size number - The min size of storage spec.
- name string
- The name of storage spec.
- size number
- The size of storage spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- max_
size int - The max size of storage spec.
- min_
size int - The min size of storage spec.
- name str
- The name of storage spec.
- size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Number - The max size of storage spec.
- min
Size Number - The min size of storage spec.
- name String
- The name of storage spec.
- size Number
- The size of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationCoordinatorNodeResourceSpec
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- cpu Integer
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Integer
- The memory info of resource spec.
- name String
- The name of storage spec.
- cpu number
- The cpu info of resource spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- memory number
- The memory info of resource spec.
- name string
- The name of storage spec.
- cpu int
- The cpu info of resource spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- memory int
- The memory info of resource spec.
- name str
- The name of storage spec.
- cpu Number
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Number
- The memory info of resource spec.
- name String
- The name of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationCoordinatorNodeStorageSpec
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Integer - The max size of storage spec.
- min
Size Integer - The min size of storage spec.
- name String
- The name of storage spec.
- size Integer
- The size of storage spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- max
Size number - The max size of storage spec.
- min
Size number - The min size of storage spec.
- name string
- The name of storage spec.
- size number
- The size of storage spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- max_
size int - The max size of storage spec.
- min_
size int - The min size of storage spec.
- name str
- The name of storage spec.
- size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Number - The max size of storage spec.
- min
Size Number - The min size of storage spec.
- name String
- The name of storage spec.
- size Number
- The size of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationHotNodeResourceSpec
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- cpu Integer
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Integer
- The memory info of resource spec.
- name String
- The name of storage spec.
- cpu number
- The cpu info of resource spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- memory number
- The memory info of resource spec.
- name string
- The name of storage spec.
- cpu int
- The cpu info of resource spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- memory int
- The memory info of resource spec.
- name str
- The name of storage spec.
- cpu Number
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Number
- The memory info of resource spec.
- name String
- The name of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationHotNodeStorageSpec
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Integer - The max size of storage spec.
- min
Size Integer - The min size of storage spec.
- name String
- The name of storage spec.
- size Integer
- The size of storage spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- max
Size number - The max size of storage spec.
- min
Size number - The min size of storage spec.
- name string
- The name of storage spec.
- size number
- The size of storage spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- max_
size int - The max size of storage spec.
- min_
size int - The min size of storage spec.
- name str
- The name of storage spec.
- size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Number - The max size of storage spec.
- min
Size Number - The min size of storage spec.
- name String
- The name of storage spec.
- size Number
- The size of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationKibanaNodeResourceSpec
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- cpu Integer
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Integer
- The memory info of resource spec.
- name String
- The name of storage spec.
- cpu number
- The cpu info of resource spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- memory number
- The memory info of resource spec.
- name string
- The name of storage spec.
- cpu int
- The cpu info of resource spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- memory int
- The memory info of resource spec.
- name str
- The name of storage spec.
- cpu Number
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Number
- The memory info of resource spec.
- name String
- The name of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationKibanaNodeStorageSpec
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Integer - The max size of storage spec.
- min
Size Integer - The min size of storage spec.
- name String
- The name of storage spec.
- size Integer
- The size of storage spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- max
Size number - The max size of storage spec.
- min
Size number - The min size of storage spec.
- name string
- The name of storage spec.
- size number
- The size of storage spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- max_
size int - The max size of storage spec.
- min_
size int - The min size of storage spec.
- name str
- The name of storage spec.
- size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Number - The max size of storage spec.
- min
Size Number - The min size of storage spec.
- name String
- The name of storage spec.
- size Number
- The size of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationMasterNodeResourceSpec
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- cpu Integer
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Integer
- The memory info of resource spec.
- name String
- The name of storage spec.
- cpu number
- The cpu info of resource spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- memory number
- The memory info of resource spec.
- name string
- The name of storage spec.
- cpu int
- The cpu info of resource spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- memory int
- The memory info of resource spec.
- name str
- The name of storage spec.
- cpu Number
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Number
- The memory info of resource spec.
- name String
- The name of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationMasterNodeStorageSpec
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Integer - The max size of storage spec.
- min
Size Integer - The min size of storage spec.
- name String
- The name of storage spec.
- size Integer
- The size of storage spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- max
Size number - The max size of storage spec.
- min
Size number - The min size of storage spec.
- name string
- The name of storage spec.
- size number
- The size of storage spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- max_
size int - The max size of storage spec.
- min_
size int - The min size of storage spec.
- name str
- The name of storage spec.
- size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Number - The max size of storage spec.
- min
Size Number - The min size of storage spec.
- name String
- The name of storage spec.
- size Number
- The size of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationSubnet
- Subnet
Id string - The id of subnet.
- Subnet
Name string - The name of subnet.
- Subnet
Id string - The id of subnet.
- Subnet
Name string - The name of subnet.
- subnet
Id String - The id of subnet.
- subnet
Name String - The name of subnet.
- subnet
Id string - The id of subnet.
- subnet
Name string - The name of subnet.
- subnet_
id str - The id of subnet.
- subnet_
name str - The name of subnet.
- subnet
Id String - The id of subnet.
- subnet
Name String - The name of subnet.
GetEscloudInstancesV2InstanceInstanceConfigurationVpc
GetEscloudInstancesV2InstanceInstanceConfigurationWarmNodeResourceSpec
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Name string
- The name of storage spec.
- cpu Integer
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Integer
- The memory info of resource spec.
- name String
- The name of storage spec.
- cpu number
- The cpu info of resource spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- memory number
- The memory info of resource spec.
- name string
- The name of storage spec.
- cpu int
- The cpu info of resource spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- memory int
- The memory info of resource spec.
- name str
- The name of storage spec.
- cpu Number
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Number
- The memory info of resource spec.
- name String
- The name of storage spec.
GetEscloudInstancesV2InstanceInstanceConfigurationWarmNodeStorageSpec
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Name string
- The name of storage spec.
- Size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Integer - The max size of storage spec.
- min
Size Integer - The min size of storage spec.
- name String
- The name of storage spec.
- size Integer
- The size of storage spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- max
Size number - The max size of storage spec.
- min
Size number - The min size of storage spec.
- name string
- The name of storage spec.
- size number
- The size of storage spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- max_
size int - The max size of storage spec.
- min_
size int - The min size of storage spec.
- name str
- The name of storage spec.
- size int
- The size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Number - The max size of storage spec.
- min
Size Number - The min size of storage spec.
- name String
- The name of storage spec.
- size Number
- The size of storage spec.
GetEscloudInstancesV2InstanceNode
- Is
Cold bool - Is cold node.
- Is
Coordinator bool - Is coordinator node.
- Is
Hot bool - Is hot node.
- Is
Kibana bool - Is kibana node.
- Is
Master bool - Is master node.
- Is
Warm bool - Is warm node.
- Node
Display stringName - The show name of node.
- Node
Name string - The name of node.
- Resource
Specs List<GetEscloud Instances V2Instance Node Resource Spec> - The node resource spec of master.
- Restart
Number int - The restart times of node.
- Start
Time string - The start time of node.
- Status string
- The status of instance.
- Storage
Specs List<GetEscloud Instances V2Instance Node Storage Spec> - The node storage spec of master.
- Is
Cold bool - Is cold node.
- Is
Coordinator bool - Is coordinator node.
- Is
Hot bool - Is hot node.
- Is
Kibana bool - Is kibana node.
- Is
Master bool - Is master node.
- Is
Warm bool - Is warm node.
- Node
Display stringName - The show name of node.
- Node
Name string - The name of node.
- Resource
Specs []GetEscloud Instances V2Instance Node Resource Spec - The node resource spec of master.
- Restart
Number int - The restart times of node.
- Start
Time string - The start time of node.
- Status string
- The status of instance.
- Storage
Specs []GetEscloud Instances V2Instance Node Storage Spec - The node storage spec of master.
- is
Cold Boolean - Is cold node.
- is
Coordinator Boolean - Is coordinator node.
- is
Hot Boolean - Is hot node.
- is
Kibana Boolean - Is kibana node.
- is
Master Boolean - Is master node.
- is
Warm Boolean - Is warm node.
- node
Display StringName - The show name of node.
- node
Name String - The name of node.
- resource
Specs List<GetEscloud Instances V2Instance Node Resource Spec> - The node resource spec of master.
- restart
Number Integer - The restart times of node.
- start
Time String - The start time of node.
- status String
- The status of instance.
- storage
Specs List<GetEscloud Instances V2Instance Node Storage Spec> - The node storage spec of master.
- is
Cold boolean - Is cold node.
- is
Coordinator boolean - Is coordinator node.
- is
Hot boolean - Is hot node.
- is
Kibana boolean - Is kibana node.
- is
Master boolean - Is master node.
- is
Warm boolean - Is warm node.
- node
Display stringName - The show name of node.
- node
Name string - The name of node.
- resource
Specs GetEscloud Instances V2Instance Node Resource Spec[] - The node resource spec of master.
- restart
Number number - The restart times of node.
- start
Time string - The start time of node.
- status string
- The status of instance.
- storage
Specs GetEscloud Instances V2Instance Node Storage Spec[] - The node storage spec of master.
- is_
cold bool - Is cold node.
- is_
coordinator bool - Is coordinator node.
- is_
hot bool - Is hot node.
- is_
kibana bool - Is kibana node.
- is_
master bool - Is master node.
- is_
warm bool - Is warm node.
- node_
display_ strname - The show name of node.
- node_
name str - The name of node.
- resource_
specs Sequence[GetEscloud Instances V2Instance Node Resource Spec] - The node resource spec of master.
- restart_
number int - The restart times of node.
- start_
time str - The start time of node.
- status str
- The status of instance.
- storage_
specs Sequence[GetEscloud Instances V2Instance Node Storage Spec] - The node storage spec of master.
- is
Cold Boolean - Is cold node.
- is
Coordinator Boolean - Is coordinator node.
- is
Hot Boolean - Is hot node.
- is
Kibana Boolean - Is kibana node.
- is
Master Boolean - Is master node.
- is
Warm Boolean - Is warm node.
- node
Display StringName - The show name of node.
- node
Name String - The name of node.
- resource
Specs List<Property Map> - The node resource spec of master.
- restart
Number Number - The restart times of node.
- start
Time String - The start time of node.
- status String
- The status of instance.
- storage
Specs List<Property Map> - The node storage spec of master.
GetEscloudInstancesV2InstanceNodeResourceSpec
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- Cpu int
- The cpu info of resource spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Memory int
- The memory info of resource spec.
- cpu Integer
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Integer
- The memory info of resource spec.
- cpu number
- The cpu info of resource spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- memory number
- The memory info of resource spec.
- cpu int
- The cpu info of resource spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- memory int
- The memory info of resource spec.
- cpu Number
- The cpu info of resource spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- memory Number
- The memory info of resource spec.
GetEscloudInstancesV2InstanceNodeStorageSpec
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- Description string
- The description of plugin.
- Display
Name string - The show name of storage spec.
- Max
Size int - The max size of storage spec.
- Min
Size int - The min size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Integer - The max size of storage spec.
- min
Size Integer - The min size of storage spec.
- description string
- The description of plugin.
- display
Name string - The show name of storage spec.
- max
Size number - The max size of storage spec.
- min
Size number - The min size of storage spec.
- description str
- The description of plugin.
- display_
name str - The show name of storage spec.
- max_
size int - The max size of storage spec.
- min_
size int - The min size of storage spec.
- description String
- The description of plugin.
- display
Name String - The show name of storage spec.
- max
Size Number - The max size of storage spec.
- min
Size Number - The min size of storage spec.
GetEscloudInstancesV2InstancePlugin
- Description string
- The description of plugin.
- Plugin
Name string - The name of plugin.
- Status string
- The status of instance.
- Version string
- The version of plugin.
- Description string
- The description of plugin.
- Plugin
Name string - The name of plugin.
- Status string
- The status of instance.
- Version string
- The version of plugin.
- description String
- The description of plugin.
- plugin
Name String - The name of plugin.
- status String
- The status of instance.
- version String
- The version of plugin.
- description string
- The description of plugin.
- plugin
Name string - The name of plugin.
- status string
- The status of instance.
- version string
- The version of plugin.
- description str
- The description of plugin.
- plugin_
name str - The name of plugin.
- status str
- The status of instance.
- version str
- The version of plugin.
- description String
- The description of plugin.
- plugin
Name String - The name of plugin.
- status String
- The status of instance.
- version String
- The version of plugin.
GetEscloudInstancesV2InstanceTag
GetEscloudInstancesV2Tag
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengineTerraform Provider.
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
