Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine
volcengine.veenedge.Instances
Explore with Pulumi AI
Use this data source to query detailed information of veenedge instances
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() => 
{
    var @default = Volcengine.Veenedge.Instances.Invoke(new()
    {
        Ids = new[]
        {
            "veen28*****21",
            "veen177110*****172",
        },
    });
});
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/veenedge"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := veenedge.Instances(ctx, &veenedge.InstancesArgs{
			Ids: []string{
				"veen28*****21",
				"veen177110*****172",
			},
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.veenedge.VeenedgeFunctions;
import com.pulumi.volcengine.veenedge.inputs.InstancesArgs;
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 default = VeenedgeFunctions.Instances(InstancesArgs.builder()
            .ids(            
                "veen28*****21",
                "veen177110*****172")
            .build());
    }
}
import pulumi
import pulumi_volcengine as volcengine
default = volcengine.veenedge.instances(ids=[
    "veen28*****21",
    "veen177110*****172",
])
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
const default = volcengine.veenedge.Instances({
    ids: [
        "veen28*****21",
        "veen177110*****172",
    ],
});
variables:
  default:
    fn::invoke:
      Function: volcengine:veenedge:Instances
      Arguments:
        ids:
          - veen28*****21
          - veen177110*****172
Using Instances
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 instances(args: InstancesArgs, opts?: InvokeOptions): Promise<InstancesResult>
function instancesOutput(args: InstancesOutputArgs, opts?: InvokeOptions): Output<InstancesResult>def instances(cloud_server_ids: Optional[Sequence[str]] = None,
              ids: Optional[Sequence[str]] = None,
              names: Optional[Sequence[str]] = None,
              output_file: Optional[str] = None,
              statuses: Optional[Sequence[str]] = None,
              opts: Optional[InvokeOptions] = None) -> InstancesResult
def instances_output(cloud_server_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
              ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
              names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
              output_file: Optional[pulumi.Input[str]] = None,
              statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
              opts: Optional[InvokeOptions] = None) -> Output[InstancesResult]func Instances(ctx *Context, args *InstancesArgs, opts ...InvokeOption) (*InstancesResult, error)
func InstancesOutput(ctx *Context, args *InstancesOutputArgs, opts ...InvokeOption) InstancesResultOutputpublic static class Instances 
{
    public static Task<InstancesResult> InvokeAsync(InstancesArgs args, InvokeOptions? opts = null)
    public static Output<InstancesResult> Invoke(InstancesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<InstancesResult> instances(InstancesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: volcengine:veenedge:Instances
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Cloud
Server List<string>Ids  - The list of cloud server ids.
 - Ids List<string>
 - A list of instance IDs.
 - Names List<string>
 - A list of instance names.
 - Output
File string - File name where to save data source results.
 - Statuses List<string>
 - The list of instance status. The value can be 
openingorstartingorrunningorstoppingorstoporrebootingorterminating. 
- Cloud
Server []stringIds  - The list of cloud server ids.
 - Ids []string
 - A list of instance IDs.
 - Names []string
 - A list of instance names.
 - Output
File string - File name where to save data source results.
 - Statuses []string
 - The list of instance status. The value can be 
openingorstartingorrunningorstoppingorstoporrebootingorterminating. 
- cloud
Server List<String>Ids  - The list of cloud server ids.
 - ids List<String>
 - A list of instance IDs.
 - names List<String>
 - A list of instance names.
 - output
File String - File name where to save data source results.
 - statuses List<String>
 - The list of instance status. The value can be 
openingorstartingorrunningorstoppingorstoporrebootingorterminating. 
- cloud
Server string[]Ids  - The list of cloud server ids.
 - ids string[]
 - A list of instance IDs.
 - names string[]
 - A list of instance names.
 - output
File string - File name where to save data source results.
 - statuses string[]
 - The list of instance status. The value can be 
openingorstartingorrunningorstoppingorstoporrebootingorterminating. 
- cloud_
server_ Sequence[str]ids  - The list of cloud server ids.
 - ids Sequence[str]
 - A list of instance IDs.
 - names Sequence[str]
 - A list of instance names.
 - output_
file str - File name where to save data source results.
 - statuses Sequence[str]
 - The list of instance status. The value can be 
openingorstartingorrunningorstoppingorstoporrebootingorterminating. 
- cloud
Server List<String>Ids  - The list of cloud server ids.
 - ids List<String>
 - A list of instance IDs.
 - names List<String>
 - A list of instance names.
 - output
File String - File name where to save data source results.
 - statuses List<String>
 - The list of instance status. The value can be 
openingorstartingorrunningorstoppingorstoporrebootingorterminating. 
Instances Result
The following output properties are available:
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Instances
List<Instances
Instance>  - The collection of instance query.
 - Total
Count int - The total count of instance query.
 - Cloud
Server List<string>Ids  - Ids List<string>
 - Names List<string>
 - Output
File string - Statuses List<string>
 
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Instances
[]Instances
Instance  - The collection of instance query.
 - Total
Count int - The total count of instance query.
 - Cloud
Server []stringIds  - Ids []string
 - Names []string
 - Output
File string - Statuses []string
 
- id String
 - The provider-assigned unique ID for this managed resource.
 - instances
List<Instances
Instance>  - The collection of instance query.
 - total
Count Integer - The total count of instance query.
 - cloud
Server List<String>Ids  - ids List<String>
 - names List<String>
 - output
File String - statuses List<String>
 
- id string
 - The provider-assigned unique ID for this managed resource.
 - instances
Instances
Instance[]  - The collection of instance query.
 - total
Count number - The total count of instance query.
 - cloud
Server string[]Ids  - ids string[]
 - names string[]
 - output
File string - statuses string[]
 
- id str
 - The provider-assigned unique ID for this managed resource.
 - instances
Sequence[Instances
Instance]  - The collection of instance query.
 - total_
count int - The total count of instance query.
 - cloud_
server_ Sequence[str]ids  - ids Sequence[str]
 - names Sequence[str]
 - output_
file str - statuses Sequence[str]
 
- id String
 - The provider-assigned unique ID for this managed resource.
 - instances List<Property Map>
 - The collection of instance query.
 - total
Count Number - The total count of instance query.
 - cloud
Server List<String>Ids  - ids List<String>
 - names List<String>
 - output
File String - statuses List<String>
 
Supporting Types
InstancesInstance 
- Cloud
Server stringIdentity  - The id of cloud server.
 - Cloud
Server stringName  - The name of cloud server.
 - Cluster
Instances
Instance Cluster  - The cluster info.
 - Cpu string
 - The cpu of instance.
 - Create
Time int - The create time of instance.
 - Creator string
 - The creator of instance.
 - Delete
Time int - The delete time of instance.
 - End
Time int - The end time of instance.
 - Gpu
Instances
Instance Gpu  - The config of gpu.
 - Id string
 - The Id of instance.
 - Image
Instances
Instance Image  - The config of image.
 - Instance
Identity string - The Id of instance.
 - Instance
Name string - The name of instance.
 - Mem string
 - The memory of instance.
 - Network
Instances
Instance Network  - The config of network.
 - Spec string
 - The spec of instance.
 - Spec
Display string - The spec display of instance.
 - Start
Time int - The start time of instance.
 - Status string
 - The status of instance.
 - Storage
Instances
Instance Storage  - The config of storage.
 - Subnet
Cidr string - The subnet cidr.
 - Update
Time int - The update time of instance.
 - Vpc
Identity string - The id of vpc.
 
- Cloud
Server stringIdentity  - The id of cloud server.
 - Cloud
Server stringName  - The name of cloud server.
 - Cluster
Instances
Instance Cluster  - The cluster info.
 - Cpu string
 - The cpu of instance.
 - Create
Time int - The create time of instance.
 - Creator string
 - The creator of instance.
 - Delete
Time int - The delete time of instance.
 - End
Time int - The end time of instance.
 - Gpu
Instances
Instance Gpu  - The config of gpu.
 - Id string
 - The Id of instance.
 - Image
Instances
Instance Image  - The config of image.
 - Instance
Identity string - The Id of instance.
 - Instance
Name string - The name of instance.
 - Mem string
 - The memory of instance.
 - Network
Instances
Instance Network  - The config of network.
 - Spec string
 - The spec of instance.
 - Spec
Display string - The spec display of instance.
 - Start
Time int - The start time of instance.
 - Status string
 - The status of instance.
 - Storage
Instances
Instance Storage  - The config of storage.
 - Subnet
Cidr string - The subnet cidr.
 - Update
Time int - The update time of instance.
 - Vpc
Identity string - The id of vpc.
 
- cloud
Server StringIdentity  - The id of cloud server.
 - cloud
Server StringName  - The name of cloud server.
 - cluster
Instances
Instance Cluster  - The cluster info.
 - cpu String
 - The cpu of instance.
 - create
Time Integer - The create time of instance.
 - creator String
 - The creator of instance.
 - delete
Time Integer - The delete time of instance.
 - end
Time Integer - The end time of instance.
 - gpu
Instances
Instance Gpu  - The config of gpu.
 - id String
 - The Id of instance.
 - image
Instances
Instance Image  - The config of image.
 - instance
Identity String - The Id of instance.
 - instance
Name String - The name of instance.
 - mem String
 - The memory of instance.
 - network
Instances
Instance Network  - The config of network.
 - spec String
 - The spec of instance.
 - spec
Display String - The spec display of instance.
 - start
Time Integer - The start time of instance.
 - status String
 - The status of instance.
 - storage
Instances
Instance Storage  - The config of storage.
 - subnet
Cidr String - The subnet cidr.
 - update
Time Integer - The update time of instance.
 - vpc
Identity String - The id of vpc.
 
- cloud
Server stringIdentity  - The id of cloud server.
 - cloud
Server stringName  - The name of cloud server.
 - cluster
Instances
Instance Cluster  - The cluster info.
 - cpu string
 - The cpu of instance.
 - create
Time number - The create time of instance.
 - creator string
 - The creator of instance.
 - delete
Time number - The delete time of instance.
 - end
Time number - The end time of instance.
 - gpu
Instances
Instance Gpu  - The config of gpu.
 - id string
 - The Id of instance.
 - image
Instances
Instance Image  - The config of image.
 - instance
Identity string - The Id of instance.
 - instance
Name string - The name of instance.
 - mem string
 - The memory of instance.
 - network
Instances
Instance Network  - The config of network.
 - spec string
 - The spec of instance.
 - spec
Display string - The spec display of instance.
 - start
Time number - The start time of instance.
 - status string
 - The status of instance.
 - storage
Instances
Instance Storage  - The config of storage.
 - subnet
Cidr string - The subnet cidr.
 - update
Time number - The update time of instance.
 - vpc
Identity string - The id of vpc.
 
- cloud_
server_ stridentity  - The id of cloud server.
 - cloud_
server_ strname  - The name of cloud server.
 - cluster
Instances
Instance Cluster  - The cluster info.
 - cpu str
 - The cpu of instance.
 - create_
time int - The create time of instance.
 - creator str
 - The creator of instance.
 - delete_
time int - The delete time of instance.
 - end_
time int - The end time of instance.
 - gpu
Instances
Instance Gpu  - The config of gpu.
 - id str
 - The Id of instance.
 - image
Instances
Instance Image  - The config of image.
 - instance_
identity str - The Id of instance.
 - instance_
name str - The name of instance.
 - mem str
 - The memory of instance.
 - network
Instances
Instance Network  - The config of network.
 - spec str
 - The spec of instance.
 - spec_
display str - The spec display of instance.
 - start_
time int - The start time of instance.
 - status str
 - The status of instance.
 - storage
Instances
Instance Storage  - The config of storage.
 - subnet_
cidr str - The subnet cidr.
 - update_
time int - The update time of instance.
 - vpc_
identity str - The id of vpc.
 
- cloud
Server StringIdentity  - The id of cloud server.
 - cloud
Server StringName  - The name of cloud server.
 - cluster Property Map
 - The cluster info.
 - cpu String
 - The cpu of instance.
 - create
Time Number - The create time of instance.
 - creator String
 - The creator of instance.
 - delete
Time Number - The delete time of instance.
 - end
Time Number - The end time of instance.
 - gpu Property Map
 - The config of gpu.
 - id String
 - The Id of instance.
 - image Property Map
 - The config of image.
 - instance
Identity String - The Id of instance.
 - instance
Name String - The name of instance.
 - mem String
 - The memory of instance.
 - network Property Map
 - The config of network.
 - spec String
 - The spec of instance.
 - spec
Display String - The spec display of instance.
 - start
Time Number - The start time of instance.
 - status String
 - The status of instance.
 - storage Property Map
 - The config of storage.
 - subnet
Cidr String - The subnet cidr.
 - update
Time Number - The update time of instance.
 - vpc
Identity String - The id of vpc.
 
InstancesInstanceCluster  
InstancesInstanceGpu  
- Gpuses
List<Instances
Instance Gpu Gpus>  - The list gpu info.
 
- Gpuses
[]Instances
Instance Gpu Gpus  - The list gpu info.
 
- gpuses
List<Instances
Instance Gpu Gpus>  - The list gpu info.
 
- gpuses
Instances
Instance Gpu Gpus[]  - The list gpu info.
 
- gpuses
Sequence[Instances
Instance Gpu Gpus]  - The list gpu info.
 
- gpuses List<Property Map>
 - The list gpu info.
 
InstancesInstanceGpuGpus   
- Gpu
Spec InstancesInstance Gpu Gpus Gpu Spec  - The spec of gpu.
 - Num int
 - The number of gpu.
 
- Gpu
Spec InstancesInstance Gpu Gpus Gpu Spec  - The spec of gpu.
 - Num int
 - The number of gpu.
 
- gpu
Spec InstancesInstance Gpu Gpus Gpu Spec  - The spec of gpu.
 - num Integer
 - The number of gpu.
 
- gpu
Spec InstancesInstance Gpu Gpus Gpu Spec  - The spec of gpu.
 - num number
 - The number of gpu.
 
- gpu_
spec InstancesInstance Gpu Gpus Gpu Spec  - The spec of gpu.
 - num int
 - The number of gpu.
 
- gpu
Spec Property Map - The spec of gpu.
 - num Number
 - The number of gpu.
 
InstancesInstanceGpuGpusGpuSpec     
- Gpu
Type string - The type of gpu.
 
- Gpu
Type string - The type of gpu.
 
- gpu
Type String - The type of gpu.
 
- gpu
Type string - The type of gpu.
 
- gpu_
type str - The type of gpu.
 
- gpu
Type String - The type of gpu.
 
InstancesInstanceImage  
- Image
Identity string - The id of image.
 - Image
Name string - The name of image.
 - Property string
 - The property of system.
 - System
Arch string - The arch of system.
 - System
Bit string - The bit of system.
 - System
Type string - The type of system.
 - System
Version string - The version of system.
 
- Image
Identity string - The id of image.
 - Image
Name string - The name of image.
 - Property string
 - The property of system.
 - System
Arch string - The arch of system.
 - System
Bit string - The bit of system.
 - System
Type string - The type of system.
 - System
Version string - The version of system.
 
- image
Identity String - The id of image.
 - image
Name String - The name of image.
 - property String
 - The property of system.
 - system
Arch String - The arch of system.
 - system
Bit String - The bit of system.
 - system
Type String - The type of system.
 - system
Version String - The version of system.
 
- image
Identity string - The id of image.
 - image
Name string - The name of image.
 - property string
 - The property of system.
 - system
Arch string - The arch of system.
 - system
Bit string - The bit of system.
 - system
Type string - The type of system.
 - system
Version string - The version of system.
 
- image_
identity str - The id of image.
 - image_
name str - The name of image.
 - property str
 - The property of system.
 - system_
arch str - The arch of system.
 - system_
bit str - The bit of system.
 - system_
type str - The type of system.
 - system_
version str - The version of system.
 
- image
Identity String - The id of image.
 - image
Name String - The name of image.
 - property String
 - The property of system.
 - system
Arch String - The arch of system.
 - system
Bit String - The bit of system.
 - system
Type String - The type of system.
 - system
Version String - The version of system.
 
InstancesInstanceNetwork  
- Enable
Ipv6 bool - Whether enable ipv6.
 - External
Interface InstancesInstance Network External Interface  - The external interface of network.
 - Internal
Interface InstancesInstance Network Internal Interface  - The internal interface of network.
 - Vf
Passthrough bool - The passthrough info.
 
- Enable
Ipv6 bool - Whether enable ipv6.
 - External
Interface InstancesInstance Network External Interface  - The external interface of network.
 - Internal
Interface InstancesInstance Network Internal Interface  - The internal interface of network.
 - Vf
Passthrough bool - The passthrough info.
 
- enable
Ipv6 Boolean - Whether enable ipv6.
 - external
Interface InstancesInstance Network External Interface  - The external interface of network.
 - internal
Interface InstancesInstance Network Internal Interface  - The internal interface of network.
 - vf
Passthrough Boolean - The passthrough info.
 
- enable
Ipv6 boolean - Whether enable ipv6.
 - external
Interface InstancesInstance Network External Interface  - The external interface of network.
 - internal
Interface InstancesInstance Network Internal Interface  - The internal interface of network.
 - vf
Passthrough boolean - The passthrough info.
 
- enable_
ipv6 bool - Whether enable ipv6.
 - external_
interface InstancesInstance Network External Interface  - The external interface of network.
 - internal_
interface InstancesInstance Network Internal Interface  - The internal interface of network.
 - vf_
passthrough bool - The passthrough info.
 
- enable
Ipv6 Boolean - Whether enable ipv6.
 - external
Interface Property Map - The external interface of network.
 - internal
Interface Property Map - The internal interface of network.
 - vf
Passthrough Boolean - The passthrough info.
 
InstancesInstanceNetworkExternalInterface    
- Bandwidth
Peak string - The peak of bandwidth.
 - Ip6Addr string
 - The ipv6 address.
 - Ip
Addr string - The ip address.
 - Ips
List<Instances
Instance Network External Interface Ip>  - The ips of network.
 - Mac
Addr string - The mac address.
 - Mask string
 - The mask info.
 - Mask6 string
 - The ipv6 mask info.
 
- Bandwidth
Peak string - The peak of bandwidth.
 - Ip6Addr string
 - The ipv6 address.
 - Ip
Addr string - The ip address.
 - Ips
[]Instances
Instance Network External Interface Ip  - The ips of network.
 - Mac
Addr string - The mac address.
 - Mask string
 - The mask info.
 - Mask6 string
 - The ipv6 mask info.
 
- bandwidth
Peak String - The peak of bandwidth.
 - ip6Addr String
 - The ipv6 address.
 - ip
Addr String - The ip address.
 - ips
List<Instances
Instance Network External Interface Ip>  - The ips of network.
 - mac
Addr String - The mac address.
 - mask String
 - The mask info.
 - mask6 String
 - The ipv6 mask info.
 
- bandwidth
Peak string - The peak of bandwidth.
 - ip6Addr string
 - The ipv6 address.
 - ip
Addr string - The ip address.
 - ips
Instances
Instance Network External Interface Ip[]  - The ips of network.
 - mac
Addr string - The mac address.
 - mask string
 - The mask info.
 - mask6 string
 - The ipv6 mask info.
 
- bandwidth_
peak str - The peak of bandwidth.
 - ip6_
addr str - The ipv6 address.
 - ip_
addr str - The ip address.
 - ips
Sequence[Instances
Instance Network External Interface Ip]  - The ips of network.
 - mac_
addr str - The mac address.
 - mask str
 - The mask info.
 - mask6 str
 - The ipv6 mask info.
 
- bandwidth
Peak String - The peak of bandwidth.
 - ip6Addr String
 - The ipv6 address.
 - ip
Addr String - The ip address.
 - ips List<Property Map>
 - The ips of network.
 - mac
Addr String - The mac address.
 - mask String
 - The mask info.
 - mask6 String
 - The ipv6 mask info.
 
InstancesInstanceNetworkExternalInterfaceIp     
- addr str
 - The ip address.
 - ip_
version str - The version of ip address.
 - isp str
 - The isp info.
 - mask str
 - The mask info.
 
InstancesInstanceNetworkInternalInterface    
- Bandwidth
Peak string - The peak of bandwidth.
 - Ip6Addr string
 - The ipv6 address.
 - Ip
Addr string - The ip address.
 - Ips
List<Instances
Instance Network Internal Interface Ip>  - The ips of network.
 - Mac
Addr string - The mac address.
 - Mask string
 - The mask info.
 - Mask6 string
 - The ipv6 mask info.
 
- Bandwidth
Peak string - The peak of bandwidth.
 - Ip6Addr string
 - The ipv6 address.
 - Ip
Addr string - The ip address.
 - Ips
[]Instances
Instance Network Internal Interface Ip  - The ips of network.
 - Mac
Addr string - The mac address.
 - Mask string
 - The mask info.
 - Mask6 string
 - The ipv6 mask info.
 
- bandwidth
Peak String - The peak of bandwidth.
 - ip6Addr String
 - The ipv6 address.
 - ip
Addr String - The ip address.
 - ips
List<Instances
Instance Network Internal Interface Ip>  - The ips of network.
 - mac
Addr String - The mac address.
 - mask String
 - The mask info.
 - mask6 String
 - The ipv6 mask info.
 
- bandwidth
Peak string - The peak of bandwidth.
 - ip6Addr string
 - The ipv6 address.
 - ip
Addr string - The ip address.
 - ips
Instances
Instance Network Internal Interface Ip[]  - The ips of network.
 - mac
Addr string - The mac address.
 - mask string
 - The mask info.
 - mask6 string
 - The ipv6 mask info.
 
- bandwidth_
peak str - The peak of bandwidth.
 - ip6_
addr str - The ipv6 address.
 - ip_
addr str - The ip address.
 - ips
Sequence[Instances
Instance Network Internal Interface Ip]  - The ips of network.
 - mac_
addr str - The mac address.
 - mask str
 - The mask info.
 - mask6 str
 - The ipv6 mask info.
 
- bandwidth
Peak String - The peak of bandwidth.
 - ip6Addr String
 - The ipv6 address.
 - ip
Addr String - The ip address.
 - ips List<Property Map>
 - The ips of network.
 - mac
Addr String - The mac address.
 - mask String
 - The mask info.
 - mask6 String
 - The ipv6 mask info.
 
InstancesInstanceNetworkInternalInterfaceIp     
- addr str
 - The ip address.
 - ip_
version str - The version of ip address.
 - isp str
 - The isp info.
 - mask str
 - The mask info.
 
InstancesInstanceStorage  
- Data
Disk InstancesInstance Storage Data Disk  - The disk info of data.
 - Data
Disk List<InstancesLists Instance Storage Data Disk List>  - The disk list info of data.
 - System
Disk InstancesInstance Storage System Disk  - The disk info of system.
 
- Data
Disk InstancesInstance Storage Data Disk  - The disk info of data.
 - Data
Disk []InstancesLists Instance Storage Data Disk List  - The disk list info of data.
 - System
Disk InstancesInstance Storage System Disk  - The disk info of system.
 
- data
Disk InstancesInstance Storage Data Disk  - The disk info of data.
 - data
Disk List<InstancesLists Instance Storage Data Disk List>  - The disk list info of data.
 - system
Disk InstancesInstance Storage System Disk  - The disk info of system.
 
- data
Disk InstancesInstance Storage Data Disk  - The disk info of data.
 - data
Disk InstancesLists Instance Storage Data Disk List[]  - The disk list info of data.
 - system
Disk InstancesInstance Storage System Disk  - The disk info of system.
 
- data_
disk InstancesInstance Storage Data Disk  - The disk info of data.
 - data_
disk_ Sequence[Instanceslists Instance Storage Data Disk List]  - The disk list info of data.
 - system_
disk InstancesInstance Storage System Disk  - The disk info of system.
 
- data
Disk Property Map - The disk info of data.
 - data
Disk List<Property Map>Lists  - The disk list info of data.
 - system
Disk Property Map - The disk info of system.
 
InstancesInstanceStorageDataDisk    
- Capacity string
 - The capacity of storage.
 - Storage
Type string - The type of storage.
 
- Capacity string
 - The capacity of storage.
 - Storage
Type string - The type of storage.
 
- capacity String
 - The capacity of storage.
 - storage
Type String - The type of storage.
 
- capacity string
 - The capacity of storage.
 - storage
Type string - The type of storage.
 
- capacity str
 - The capacity of storage.
 - storage_
type str - The type of storage.
 
- capacity String
 - The capacity of storage.
 - storage
Type String - The type of storage.
 
InstancesInstanceStorageDataDiskList     
- Capacity string
 - The capacity of storage.
 - Storage
Type string - The type of storage.
 
- Capacity string
 - The capacity of storage.
 - Storage
Type string - The type of storage.
 
- capacity String
 - The capacity of storage.
 - storage
Type String - The type of storage.
 
- capacity string
 - The capacity of storage.
 - storage
Type string - The type of storage.
 
- capacity str
 - The capacity of storage.
 - storage_
type str - The type of storage.
 
- capacity String
 - The capacity of storage.
 - storage
Type String - The type of storage.
 
InstancesInstanceStorageSystemDisk    
- Capacity string
 - The capacity of storage.
 - Storage
Type string - The type of storage.
 
- Capacity string
 - The capacity of storage.
 - Storage
Type string - The type of storage.
 
- capacity String
 - The capacity of storage.
 - storage
Type String - The type of storage.
 
- capacity string
 - The capacity of storage.
 - storage
Type string - The type of storage.
 
- capacity str
 - The capacity of storage.
 - storage_
type str - The type of storage.
 
- capacity String
 - The capacity of storage.
 - storage
Type String - The type of storage.
 
Package Details
- Repository
 - volcengine volcengine/pulumi-volcengine
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
volcengineTerraform Provider.