Volcengine v0.0.31 published on Monday, May 12, 2025 by Volcengine
volcengine.veenedge.getInstances
Explore with Pulumi AI
Use this data source to query detailed information of veenedge instances
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
const default = volcengine.veenedge.getInstances({
ids: [
"veen28*****21",
"veen177110*****172",
],
});
import pulumi
import pulumi_volcengine as volcengine
default = volcengine.veenedge.get_instances(ids=[
"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.GetInstances(ctx, &veenedge.GetInstancesArgs{
Ids: []string{
"veen28*****21",
"veen177110*****172",
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var @default = Volcengine.Veenedge.GetInstances.Invoke(new()
{
Ids = new[]
{
"veen28*****21",
"veen177110*****172",
},
});
});
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.GetInstancesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var default = VeenedgeFunctions.getInstances(GetInstancesArgs.builder()
.ids(
"veen28*****21",
"veen177110*****172")
.build());
}
}
variables:
default:
fn::invoke:
Function: volcengine:veenedge:getInstances
Arguments:
ids:
- veen28*****21
- veen177110*****172
Using getInstances
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getInstances(args: GetInstancesArgs, opts?: InvokeOptions): Promise<GetInstancesResult>
function getInstancesOutput(args: GetInstancesOutputArgs, opts?: InvokeOptions): Output<GetInstancesResult>
def get_instances(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) -> GetInstancesResult
def get_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[GetInstancesResult]
func GetInstances(ctx *Context, args *GetInstancesArgs, opts ...InvokeOption) (*GetInstancesResult, error)
func GetInstancesOutput(ctx *Context, args *GetInstancesOutputArgs, opts ...InvokeOption) GetInstancesResultOutput
> Note: This function is named GetInstances
in the Go SDK.
public static class GetInstances
{
public static Task<GetInstancesResult> InvokeAsync(GetInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetInstancesResult> Invoke(GetInstancesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInstancesResult> getInstances(GetInstancesArgs args, InvokeOptions options)
public static Output<GetInstancesResult> getInstances(GetInstancesArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:veenedge/getInstances:getInstances
arguments:
# arguments dictionary
The 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
opening
orstarting
orrunning
orstopping
orstop
orrebooting
orterminating
.
- 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
opening
orstarting
orrunning
orstopping
orstop
orrebooting
orterminating
.
- 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
opening
orstarting
orrunning
orstopping
orstop
orrebooting
orterminating
.
- 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
opening
orstarting
orrunning
orstopping
orstop
orrebooting
orterminating
.
- 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
opening
orstarting
orrunning
orstopping
orstop
orrebooting
orterminating
.
- 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
opening
orstarting
orrunning
orstopping
orstop
orrebooting
orterminating
.
getInstances Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Instances
List<Get
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
[]Get
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<Get
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
Get
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[Get
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
GetInstancesInstance
- Cloud
Server stringIdentity - The id of cloud server.
- Cloud
Server stringName - The name of cloud server.
- Cluster
Get
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
Get
Instances Instance Gpu - The config of gpu.
- Id string
- The Id of instance.
- Image
Get
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
Get
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
Get
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
Get
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
Get
Instances Instance Gpu - The config of gpu.
- Id string
- The Id of instance.
- Image
Get
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
Get
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
Get
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
Get
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
Get
Instances Instance Gpu - The config of gpu.
- id String
- The Id of instance.
- image
Get
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
Get
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
Get
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
Get
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
Get
Instances Instance Gpu - The config of gpu.
- id string
- The Id of instance.
- image
Get
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
Get
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
Get
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
Get
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
Get
Instances Instance Gpu - The config of gpu.
- id str
- The Id of instance.
- image
Get
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
Get
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
Get
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.
GetInstancesInstanceCluster
GetInstancesInstanceGpu
- Gpuses
List<Get
Instances Instance Gpu Gpus> - The list gpu info.
- Gpuses
[]Get
Instances Instance Gpu Gpus - The list gpu info.
- gpuses
List<Get
Instances Instance Gpu Gpus> - The list gpu info.
- gpuses
Get
Instances Instance Gpu Gpus[] - The list gpu info.
- gpuses
Sequence[Get
Instances Instance Gpu Gpus] - The list gpu info.
- gpuses List<Property Map>
- The list gpu info.
GetInstancesInstanceGpuGpus
- Gpu
Spec GetInstances Instance Gpu Gpus Gpu Spec - The spec of gpu.
- Num int
- The number of gpu.
- Gpu
Spec GetInstances Instance Gpu Gpus Gpu Spec - The spec of gpu.
- Num int
- The number of gpu.
- gpu
Spec GetInstances Instance Gpu Gpus Gpu Spec - The spec of gpu.
- num Integer
- The number of gpu.
- gpu
Spec GetInstances Instance Gpu Gpus Gpu Spec - The spec of gpu.
- num number
- The number of gpu.
- gpu_
spec GetInstances Instance 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.
GetInstancesInstanceGpuGpusGpuSpec
- 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.
GetInstancesInstanceImage
- 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.
GetInstancesInstanceNetwork
- Enable
Ipv6 bool - Whether enable ipv6.
- External
Interface GetInstances Instance Network External Interface - The external interface of network.
- Internal
Interface GetInstances Instance Network Internal Interface - The internal interface of network.
- Vf
Passthrough bool - The passthrough info.
- Enable
Ipv6 bool - Whether enable ipv6.
- External
Interface GetInstances Instance Network External Interface - The external interface of network.
- Internal
Interface GetInstances Instance Network Internal Interface - The internal interface of network.
- Vf
Passthrough bool - The passthrough info.
- enable
Ipv6 Boolean - Whether enable ipv6.
- external
Interface GetInstances Instance Network External Interface - The external interface of network.
- internal
Interface GetInstances Instance Network Internal Interface - The internal interface of network.
- vf
Passthrough Boolean - The passthrough info.
- enable
Ipv6 boolean - Whether enable ipv6.
- external
Interface GetInstances Instance Network External Interface - The external interface of network.
- internal
Interface GetInstances Instance Network Internal Interface - The internal interface of network.
- vf
Passthrough boolean - The passthrough info.
- enable_
ipv6 bool - Whether enable ipv6.
- external_
interface GetInstances Instance Network External Interface - The external interface of network.
- internal_
interface GetInstances Instance 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.
GetInstancesInstanceNetworkExternalInterface
- Bandwidth
Peak string - The peak of bandwidth.
- Ip6Addr string
- The ipv6 address.
- Ip
Addr string - The ip address.
- Ips
List<Get
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
[]Get
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<Get
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
Get
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[Get
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.
GetInstancesInstanceNetworkExternalInterfaceIp
- addr str
- The ip address.
- ip_
version str - The version of ip address.
- isp str
- The isp info.
- mask str
- The mask info.
GetInstancesInstanceNetworkInternalInterface
- Bandwidth
Peak string - The peak of bandwidth.
- Ip6Addr string
- The ipv6 address.
- Ip
Addr string - The ip address.
- Ips
List<Get
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
[]Get
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<Get
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
Get
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[Get
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.
GetInstancesInstanceNetworkInternalInterfaceIp
- addr str
- The ip address.
- ip_
version str - The version of ip address.
- isp str
- The isp info.
- mask str
- The mask info.
GetInstancesInstanceStorage
- Data
Disk GetInstances Instance Storage Data Disk - The disk info of data.
- Data
Disk List<GetLists Instances Instance Storage Data Disk List> - The disk list info of data.
- System
Disk GetInstances Instance Storage System Disk - The disk info of system.
- Data
Disk GetInstances Instance Storage Data Disk - The disk info of data.
- Data
Disk []GetLists Instances Instance Storage Data Disk List - The disk list info of data.
- System
Disk GetInstances Instance Storage System Disk - The disk info of system.
- data
Disk GetInstances Instance Storage Data Disk - The disk info of data.
- data
Disk List<GetLists Instances Instance Storage Data Disk List> - The disk list info of data.
- system
Disk GetInstances Instance Storage System Disk - The disk info of system.
- data
Disk GetInstances Instance Storage Data Disk - The disk info of data.
- data
Disk GetLists Instances Instance Storage Data Disk List[] - The disk list info of data.
- system
Disk GetInstances Instance Storage System Disk - The disk info of system.
- data_
disk GetInstances Instance Storage Data Disk - The disk info of data.
- data_
disk_ Sequence[Getlists Instances Instance Storage Data Disk List] - The disk list info of data.
- system_
disk GetInstances Instance 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.
GetInstancesInstanceStorageDataDisk
- 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.
GetInstancesInstanceStorageDataDiskList
- 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.
GetInstancesInstanceStorageSystemDisk
- 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
volcengine
Terraform Provider.