1. Packages
  2. Volcengine
  3. API Docs
  4. veenedge
  5. Instances
Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine

volcengine.veenedge.Instances

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine

    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) InstancesResultOutput
    public 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 dictionary

    The following arguments are supported:

    CloudServerIds List<string>
    The list of cloud server ids.
    Ids List<string>
    A list of instance IDs.
    Names List<string>
    A list of instance names.
    OutputFile string
    File name where to save data source results.
    Statuses List<string>
    The list of instance status. The value can be opening or starting or running or stopping or stop or rebooting or terminating.
    CloudServerIds []string
    The list of cloud server ids.
    Ids []string
    A list of instance IDs.
    Names []string
    A list of instance names.
    OutputFile string
    File name where to save data source results.
    Statuses []string
    The list of instance status. The value can be opening or starting or running or stopping or stop or rebooting or terminating.
    cloudServerIds List<String>
    The list of cloud server ids.
    ids List<String>
    A list of instance IDs.
    names List<String>
    A list of instance names.
    outputFile String
    File name where to save data source results.
    statuses List<String>
    The list of instance status. The value can be opening or starting or running or stopping or stop or rebooting or terminating.
    cloudServerIds string[]
    The list of cloud server ids.
    ids string[]
    A list of instance IDs.
    names string[]
    A list of instance names.
    outputFile string
    File name where to save data source results.
    statuses string[]
    The list of instance status. The value can be opening or starting or running or stopping or stop or rebooting or terminating.
    cloud_server_ids Sequence[str]
    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 opening or starting or running or stopping or stop or rebooting or terminating.
    cloudServerIds List<String>
    The list of cloud server ids.
    ids List<String>
    A list of instance IDs.
    names List<String>
    A list of instance names.
    outputFile String
    File name where to save data source results.
    statuses List<String>
    The list of instance status. The value can be opening or starting or running or stopping or stop or rebooting or terminating.

    Instances Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Instances List<InstancesInstance>
    The collection of instance query.
    TotalCount int
    The total count of instance query.
    CloudServerIds List<string>
    Ids List<string>
    Names List<string>
    OutputFile string
    Statuses List<string>
    Id string
    The provider-assigned unique ID for this managed resource.
    Instances []InstancesInstance
    The collection of instance query.
    TotalCount int
    The total count of instance query.
    CloudServerIds []string
    Ids []string
    Names []string
    OutputFile string
    Statuses []string
    id String
    The provider-assigned unique ID for this managed resource.
    instances List<InstancesInstance>
    The collection of instance query.
    totalCount Integer
    The total count of instance query.
    cloudServerIds List<String>
    ids List<String>
    names List<String>
    outputFile String
    statuses List<String>
    id string
    The provider-assigned unique ID for this managed resource.
    instances InstancesInstance[]
    The collection of instance query.
    totalCount number
    The total count of instance query.
    cloudServerIds string[]
    ids string[]
    names string[]
    outputFile string
    statuses string[]
    id str
    The provider-assigned unique ID for this managed resource.
    instances Sequence[InstancesInstance]
    The collection of instance query.
    total_count int
    The total count of instance query.
    cloud_server_ids Sequence[str]
    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.
    totalCount Number
    The total count of instance query.
    cloudServerIds List<String>
    ids List<String>
    names List<String>
    outputFile String
    statuses List<String>

    Supporting Types

    InstancesInstance

    CloudServerIdentity string
    The id of cloud server.
    CloudServerName string
    The name of cloud server.
    Cluster InstancesInstanceCluster
    The cluster info.
    Cpu string
    The cpu of instance.
    CreateTime int
    The create time of instance.
    Creator string
    The creator of instance.
    DeleteTime int
    The delete time of instance.
    EndTime int
    The end time of instance.
    Gpu InstancesInstanceGpu
    The config of gpu.
    Id string
    The Id of instance.
    Image InstancesInstanceImage
    The config of image.
    InstanceIdentity string
    The Id of instance.
    InstanceName string
    The name of instance.
    Mem string
    The memory of instance.
    Network InstancesInstanceNetwork
    The config of network.
    Spec string
    The spec of instance.
    SpecDisplay string
    The spec display of instance.
    StartTime int
    The start time of instance.
    Status string
    The status of instance.
    Storage InstancesInstanceStorage
    The config of storage.
    SubnetCidr string
    The subnet cidr.
    UpdateTime int
    The update time of instance.
    VpcIdentity string
    The id of vpc.
    CloudServerIdentity string
    The id of cloud server.
    CloudServerName string
    The name of cloud server.
    Cluster InstancesInstanceCluster
    The cluster info.
    Cpu string
    The cpu of instance.
    CreateTime int
    The create time of instance.
    Creator string
    The creator of instance.
    DeleteTime int
    The delete time of instance.
    EndTime int
    The end time of instance.
    Gpu InstancesInstanceGpu
    The config of gpu.
    Id string
    The Id of instance.
    Image InstancesInstanceImage
    The config of image.
    InstanceIdentity string
    The Id of instance.
    InstanceName string
    The name of instance.
    Mem string
    The memory of instance.
    Network InstancesInstanceNetwork
    The config of network.
    Spec string
    The spec of instance.
    SpecDisplay string
    The spec display of instance.
    StartTime int
    The start time of instance.
    Status string
    The status of instance.
    Storage InstancesInstanceStorage
    The config of storage.
    SubnetCidr string
    The subnet cidr.
    UpdateTime int
    The update time of instance.
    VpcIdentity string
    The id of vpc.
    cloudServerIdentity String
    The id of cloud server.
    cloudServerName String
    The name of cloud server.
    cluster InstancesInstanceCluster
    The cluster info.
    cpu String
    The cpu of instance.
    createTime Integer
    The create time of instance.
    creator String
    The creator of instance.
    deleteTime Integer
    The delete time of instance.
    endTime Integer
    The end time of instance.
    gpu InstancesInstanceGpu
    The config of gpu.
    id String
    The Id of instance.
    image InstancesInstanceImage
    The config of image.
    instanceIdentity String
    The Id of instance.
    instanceName String
    The name of instance.
    mem String
    The memory of instance.
    network InstancesInstanceNetwork
    The config of network.
    spec String
    The spec of instance.
    specDisplay String
    The spec display of instance.
    startTime Integer
    The start time of instance.
    status String
    The status of instance.
    storage InstancesInstanceStorage
    The config of storage.
    subnetCidr String
    The subnet cidr.
    updateTime Integer
    The update time of instance.
    vpcIdentity String
    The id of vpc.
    cloudServerIdentity string
    The id of cloud server.
    cloudServerName string
    The name of cloud server.
    cluster InstancesInstanceCluster
    The cluster info.
    cpu string
    The cpu of instance.
    createTime number
    The create time of instance.
    creator string
    The creator of instance.
    deleteTime number
    The delete time of instance.
    endTime number
    The end time of instance.
    gpu InstancesInstanceGpu
    The config of gpu.
    id string
    The Id of instance.
    image InstancesInstanceImage
    The config of image.
    instanceIdentity string
    The Id of instance.
    instanceName string
    The name of instance.
    mem string
    The memory of instance.
    network InstancesInstanceNetwork
    The config of network.
    spec string
    The spec of instance.
    specDisplay string
    The spec display of instance.
    startTime number
    The start time of instance.
    status string
    The status of instance.
    storage InstancesInstanceStorage
    The config of storage.
    subnetCidr string
    The subnet cidr.
    updateTime number
    The update time of instance.
    vpcIdentity string
    The id of vpc.
    cloud_server_identity str
    The id of cloud server.
    cloud_server_name str
    The name of cloud server.
    cluster InstancesInstanceCluster
    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 InstancesInstanceGpu
    The config of gpu.
    id str
    The Id of instance.
    image InstancesInstanceImage
    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 InstancesInstanceNetwork
    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 InstancesInstanceStorage
    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.
    cloudServerIdentity String
    The id of cloud server.
    cloudServerName String
    The name of cloud server.
    cluster Property Map
    The cluster info.
    cpu String
    The cpu of instance.
    createTime Number
    The create time of instance.
    creator String
    The creator of instance.
    deleteTime Number
    The delete time of instance.
    endTime 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.
    instanceIdentity String
    The Id of instance.
    instanceName String
    The name of instance.
    mem String
    The memory of instance.
    network Property Map
    The config of network.
    spec String
    The spec of instance.
    specDisplay String
    The spec display of instance.
    startTime Number
    The start time of instance.
    status String
    The status of instance.
    storage Property Map
    The config of storage.
    subnetCidr String
    The subnet cidr.
    updateTime Number
    The update time of instance.
    vpcIdentity String
    The id of vpc.

    InstancesInstanceCluster

    Alias string
    The alias of cluster.
    City string
    The city of cluster.
    ClusterName string
    The name of cluster.
    Country string
    The country of cluster.
    Isp string
    The isp info.
    Level string
    The level of cluster.
    Province string
    The province of cluster.
    Region string
    The region of cluster.
    Alias string
    The alias of cluster.
    City string
    The city of cluster.
    ClusterName string
    The name of cluster.
    Country string
    The country of cluster.
    Isp string
    The isp info.
    Level string
    The level of cluster.
    Province string
    The province of cluster.
    Region string
    The region of cluster.
    alias String
    The alias of cluster.
    city String
    The city of cluster.
    clusterName String
    The name of cluster.
    country String
    The country of cluster.
    isp String
    The isp info.
    level String
    The level of cluster.
    province String
    The province of cluster.
    region String
    The region of cluster.
    alias string
    The alias of cluster.
    city string
    The city of cluster.
    clusterName string
    The name of cluster.
    country string
    The country of cluster.
    isp string
    The isp info.
    level string
    The level of cluster.
    province string
    The province of cluster.
    region string
    The region of cluster.
    alias str
    The alias of cluster.
    city str
    The city of cluster.
    cluster_name str
    The name of cluster.
    country str
    The country of cluster.
    isp str
    The isp info.
    level str
    The level of cluster.
    province str
    The province of cluster.
    region str
    The region of cluster.
    alias String
    The alias of cluster.
    city String
    The city of cluster.
    clusterName String
    The name of cluster.
    country String
    The country of cluster.
    isp String
    The isp info.
    level String
    The level of cluster.
    province String
    The province of cluster.
    region String
    The region of cluster.

    InstancesInstanceGpu

    gpuses List<Property Map>
    The list gpu info.

    InstancesInstanceGpuGpus

    GpuSpec InstancesInstanceGpuGpusGpuSpec
    The spec of gpu.
    Num int
    The number of gpu.
    GpuSpec InstancesInstanceGpuGpusGpuSpec
    The spec of gpu.
    Num int
    The number of gpu.
    gpuSpec InstancesInstanceGpuGpusGpuSpec
    The spec of gpu.
    num Integer
    The number of gpu.
    gpuSpec InstancesInstanceGpuGpusGpuSpec
    The spec of gpu.
    num number
    The number of gpu.
    gpu_spec InstancesInstanceGpuGpusGpuSpec
    The spec of gpu.
    num int
    The number of gpu.
    gpuSpec Property Map
    The spec of gpu.
    num Number
    The number of gpu.

    InstancesInstanceGpuGpusGpuSpec

    GpuType string
    The type of gpu.
    GpuType string
    The type of gpu.
    gpuType String
    The type of gpu.
    gpuType string
    The type of gpu.
    gpu_type str
    The type of gpu.
    gpuType String
    The type of gpu.

    InstancesInstanceImage

    ImageIdentity string
    The id of image.
    ImageName string
    The name of image.
    Property string
    The property of system.
    SystemArch string
    The arch of system.
    SystemBit string
    The bit of system.
    SystemType string
    The type of system.
    SystemVersion string
    The version of system.
    ImageIdentity string
    The id of image.
    ImageName string
    The name of image.
    Property string
    The property of system.
    SystemArch string
    The arch of system.
    SystemBit string
    The bit of system.
    SystemType string
    The type of system.
    SystemVersion string
    The version of system.
    imageIdentity String
    The id of image.
    imageName String
    The name of image.
    property String
    The property of system.
    systemArch String
    The arch of system.
    systemBit String
    The bit of system.
    systemType String
    The type of system.
    systemVersion String
    The version of system.
    imageIdentity string
    The id of image.
    imageName string
    The name of image.
    property string
    The property of system.
    systemArch string
    The arch of system.
    systemBit string
    The bit of system.
    systemType string
    The type of system.
    systemVersion 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.
    imageIdentity String
    The id of image.
    imageName String
    The name of image.
    property String
    The property of system.
    systemArch String
    The arch of system.
    systemBit String
    The bit of system.
    systemType String
    The type of system.
    systemVersion String
    The version of system.

    InstancesInstanceNetwork

    EnableIpv6 bool
    Whether enable ipv6.
    ExternalInterface InstancesInstanceNetworkExternalInterface
    The external interface of network.
    InternalInterface InstancesInstanceNetworkInternalInterface
    The internal interface of network.
    VfPassthrough bool
    The passthrough info.
    EnableIpv6 bool
    Whether enable ipv6.
    ExternalInterface InstancesInstanceNetworkExternalInterface
    The external interface of network.
    InternalInterface InstancesInstanceNetworkInternalInterface
    The internal interface of network.
    VfPassthrough bool
    The passthrough info.
    enableIpv6 Boolean
    Whether enable ipv6.
    externalInterface InstancesInstanceNetworkExternalInterface
    The external interface of network.
    internalInterface InstancesInstanceNetworkInternalInterface
    The internal interface of network.
    vfPassthrough Boolean
    The passthrough info.
    enableIpv6 boolean
    Whether enable ipv6.
    externalInterface InstancesInstanceNetworkExternalInterface
    The external interface of network.
    internalInterface InstancesInstanceNetworkInternalInterface
    The internal interface of network.
    vfPassthrough boolean
    The passthrough info.
    enable_ipv6 bool
    Whether enable ipv6.
    external_interface InstancesInstanceNetworkExternalInterface
    The external interface of network.
    internal_interface InstancesInstanceNetworkInternalInterface
    The internal interface of network.
    vf_passthrough bool
    The passthrough info.
    enableIpv6 Boolean
    Whether enable ipv6.
    externalInterface Property Map
    The external interface of network.
    internalInterface Property Map
    The internal interface of network.
    vfPassthrough Boolean
    The passthrough info.

    InstancesInstanceNetworkExternalInterface

    BandwidthPeak string
    The peak of bandwidth.
    Ip6Addr string
    The ipv6 address.
    IpAddr string
    The ip address.
    Ips List<InstancesInstanceNetworkExternalInterfaceIp>
    The ips of network.
    MacAddr string
    The mac address.
    Mask string
    The mask info.
    Mask6 string
    The ipv6 mask info.
    BandwidthPeak string
    The peak of bandwidth.
    Ip6Addr string
    The ipv6 address.
    IpAddr string
    The ip address.
    Ips []InstancesInstanceNetworkExternalInterfaceIp
    The ips of network.
    MacAddr string
    The mac address.
    Mask string
    The mask info.
    Mask6 string
    The ipv6 mask info.
    bandwidthPeak String
    The peak of bandwidth.
    ip6Addr String
    The ipv6 address.
    ipAddr String
    The ip address.
    ips List<InstancesInstanceNetworkExternalInterfaceIp>
    The ips of network.
    macAddr String
    The mac address.
    mask String
    The mask info.
    mask6 String
    The ipv6 mask info.
    bandwidthPeak string
    The peak of bandwidth.
    ip6Addr string
    The ipv6 address.
    ipAddr string
    The ip address.
    ips InstancesInstanceNetworkExternalInterfaceIp[]
    The ips of network.
    macAddr 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[InstancesInstanceNetworkExternalInterfaceIp]
    The ips of network.
    mac_addr str
    The mac address.
    mask str
    The mask info.
    mask6 str
    The ipv6 mask info.
    bandwidthPeak String
    The peak of bandwidth.
    ip6Addr String
    The ipv6 address.
    ipAddr String
    The ip address.
    ips List<Property Map>
    The ips of network.
    macAddr String
    The mac address.
    mask String
    The mask info.
    mask6 String
    The ipv6 mask info.

    InstancesInstanceNetworkExternalInterfaceIp

    Addr string
    The ip address.
    IpVersion string
    The version of ip address.
    Isp string
    The isp info.
    Mask string
    The mask info.
    Addr string
    The ip address.
    IpVersion string
    The version of ip address.
    Isp string
    The isp info.
    Mask string
    The mask info.
    addr String
    The ip address.
    ipVersion String
    The version of ip address.
    isp String
    The isp info.
    mask String
    The mask info.
    addr string
    The ip address.
    ipVersion string
    The version of ip address.
    isp string
    The isp info.
    mask string
    The mask info.
    addr str
    The ip address.
    ip_version str
    The version of ip address.
    isp str
    The isp info.
    mask str
    The mask info.
    addr String
    The ip address.
    ipVersion String
    The version of ip address.
    isp String
    The isp info.
    mask String
    The mask info.

    InstancesInstanceNetworkInternalInterface

    BandwidthPeak string
    The peak of bandwidth.
    Ip6Addr string
    The ipv6 address.
    IpAddr string
    The ip address.
    Ips List<InstancesInstanceNetworkInternalInterfaceIp>
    The ips of network.
    MacAddr string
    The mac address.
    Mask string
    The mask info.
    Mask6 string
    The ipv6 mask info.
    BandwidthPeak string
    The peak of bandwidth.
    Ip6Addr string
    The ipv6 address.
    IpAddr string
    The ip address.
    Ips []InstancesInstanceNetworkInternalInterfaceIp
    The ips of network.
    MacAddr string
    The mac address.
    Mask string
    The mask info.
    Mask6 string
    The ipv6 mask info.
    bandwidthPeak String
    The peak of bandwidth.
    ip6Addr String
    The ipv6 address.
    ipAddr String
    The ip address.
    ips List<InstancesInstanceNetworkInternalInterfaceIp>
    The ips of network.
    macAddr String
    The mac address.
    mask String
    The mask info.
    mask6 String
    The ipv6 mask info.
    bandwidthPeak string
    The peak of bandwidth.
    ip6Addr string
    The ipv6 address.
    ipAddr string
    The ip address.
    ips InstancesInstanceNetworkInternalInterfaceIp[]
    The ips of network.
    macAddr 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[InstancesInstanceNetworkInternalInterfaceIp]
    The ips of network.
    mac_addr str
    The mac address.
    mask str
    The mask info.
    mask6 str
    The ipv6 mask info.
    bandwidthPeak String
    The peak of bandwidth.
    ip6Addr String
    The ipv6 address.
    ipAddr String
    The ip address.
    ips List<Property Map>
    The ips of network.
    macAddr String
    The mac address.
    mask String
    The mask info.
    mask6 String
    The ipv6 mask info.

    InstancesInstanceNetworkInternalInterfaceIp

    Addr string
    The ip address.
    IpVersion string
    The version of ip address.
    Isp string
    The isp info.
    Mask string
    The mask info.
    Addr string
    The ip address.
    IpVersion string
    The version of ip address.
    Isp string
    The isp info.
    Mask string
    The mask info.
    addr String
    The ip address.
    ipVersion String
    The version of ip address.
    isp String
    The isp info.
    mask String
    The mask info.
    addr string
    The ip address.
    ipVersion string
    The version of ip address.
    isp string
    The isp info.
    mask string
    The mask info.
    addr str
    The ip address.
    ip_version str
    The version of ip address.
    isp str
    The isp info.
    mask str
    The mask info.
    addr String
    The ip address.
    ipVersion String
    The version of ip address.
    isp String
    The isp info.
    mask String
    The mask info.

    InstancesInstanceStorage

    dataDisk Property Map
    The disk info of data.
    dataDiskLists List<Property Map>
    The disk list info of data.
    systemDisk Property Map
    The disk info of system.

    InstancesInstanceStorageDataDisk

    Capacity string
    The capacity of storage.
    StorageType string
    The type of storage.
    Capacity string
    The capacity of storage.
    StorageType string
    The type of storage.
    capacity String
    The capacity of storage.
    storageType String
    The type of storage.
    capacity string
    The capacity of storage.
    storageType string
    The type of storage.
    capacity str
    The capacity of storage.
    storage_type str
    The type of storage.
    capacity String
    The capacity of storage.
    storageType String
    The type of storage.

    InstancesInstanceStorageDataDiskList

    Capacity string
    The capacity of storage.
    StorageType string
    The type of storage.
    Capacity string
    The capacity of storage.
    StorageType string
    The type of storage.
    capacity String
    The capacity of storage.
    storageType String
    The type of storage.
    capacity string
    The capacity of storage.
    storageType string
    The type of storage.
    capacity str
    The capacity of storage.
    storage_type str
    The type of storage.
    capacity String
    The capacity of storage.
    storageType String
    The type of storage.

    InstancesInstanceStorageSystemDisk

    Capacity string
    The capacity of storage.
    StorageType string
    The type of storage.
    Capacity string
    The capacity of storage.
    StorageType string
    The type of storage.
    capacity String
    The capacity of storage.
    storageType String
    The type of storage.
    capacity string
    The capacity of storage.
    storageType string
    The type of storage.
    capacity str
    The capacity of storage.
    storage_type str
    The type of storage.
    capacity String
    The capacity of storage.
    storageType String
    The type of storage.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine