1. Packages
  2. Volcengine
  3. API Docs
  4. veenedge
  5. Vpcs
Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine

volcengine.veenedge.Vpcs

Explore with Pulumi AI

Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine

Use this data source to query detailed information of veenedge vpcs

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";

const foo = volcengine.veenedge.Vpcs({});
Copy
import pulumi
import pulumi_volcengine as volcengine

foo = volcengine.veenedge.vpcs()
Copy
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.Vpcs(ctx, nil, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;

return await Deployment.RunAsync(() => 
{
    var foo = Volcengine.Veenedge.Vpcs.Invoke();

});
Copy
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_vpcs.inputs.VpcsArgs;
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 foo = VeenedgeFunctions.Vpcs();

    }
}
Copy
variables:
  foo:
    fn::invoke:
      Function: volcengine:veenedge:Vpcs
      Arguments: {}
Copy

Using Vpcs

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 vpcs(args: VpcsArgs, opts?: InvokeOptions): Promise<VpcsResult>
function vpcsOutput(args: VpcsOutputArgs, opts?: InvokeOptions): Output<VpcsResult>
Copy
def vpcs(ids: Optional[Sequence[str]] = None,
         name_regex: Optional[str] = None,
         output_file: Optional[str] = None,
         opts: Optional[InvokeOptions] = None) -> VpcsResult
def vpcs_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
         name_regex: Optional[pulumi.Input[str]] = None,
         output_file: Optional[pulumi.Input[str]] = None,
         opts: Optional[InvokeOptions] = None) -> Output[VpcsResult]
Copy
func Vpcs(ctx *Context, args *VpcsArgs, opts ...InvokeOption) (*VpcsResult, error)
func VpcsOutput(ctx *Context, args *VpcsOutputArgs, opts ...InvokeOption) VpcsResultOutput
Copy
public static class Vpcs 
{
    public static Task<VpcsResult> InvokeAsync(VpcsArgs args, InvokeOptions? opts = null)
    public static Output<VpcsResult> Invoke(VpcsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<VpcsResult> vpcs(VpcsArgs args, InvokeOptions options)
public static Output<VpcsResult> vpcs(VpcsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: volcengine:veenedge:Vpcs
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Ids List<string>
A list of vpc IDs.
NameRegex string
A Name Regex of Vpc.
OutputFile string
File name where to save data source results.
Ids []string
A list of vpc IDs.
NameRegex string
A Name Regex of Vpc.
OutputFile string
File name where to save data source results.
ids List<String>
A list of vpc IDs.
nameRegex String
A Name Regex of Vpc.
outputFile String
File name where to save data source results.
ids string[]
A list of vpc IDs.
nameRegex string
A Name Regex of Vpc.
outputFile string
File name where to save data source results.
ids Sequence[str]
A list of vpc IDs.
name_regex str
A Name Regex of Vpc.
output_file str
File name where to save data source results.
ids List<String>
A list of vpc IDs.
nameRegex String
A Name Regex of Vpc.
outputFile String
File name where to save data source results.

Vpcs Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
TotalCount int
The total count of Vpc query.
VpcInstances List<VpcsVpcInstance>
The collection of Vpc query.
Ids List<string>
NameRegex string
OutputFile string
Id string
The provider-assigned unique ID for this managed resource.
TotalCount int
The total count of Vpc query.
VpcInstances []VpcsVpcInstance
The collection of Vpc query.
Ids []string
NameRegex string
OutputFile string
id String
The provider-assigned unique ID for this managed resource.
totalCount Integer
The total count of Vpc query.
vpcInstances List<VpcsVpcInstance>
The collection of Vpc query.
ids List<String>
nameRegex String
outputFile String
id string
The provider-assigned unique ID for this managed resource.
totalCount number
The total count of Vpc query.
vpcInstances VpcsVpcInstance[]
The collection of Vpc query.
ids string[]
nameRegex string
outputFile string
id str
The provider-assigned unique ID for this managed resource.
total_count int
The total count of Vpc query.
vpc_instances Sequence[VpcsVpcInstance]
The collection of Vpc query.
ids Sequence[str]
name_regex str
output_file str
id String
The provider-assigned unique ID for this managed resource.
totalCount Number
The total count of Vpc query.
vpcInstances List<Property Map>
The collection of Vpc query.
ids List<String>
nameRegex String
outputFile String

Supporting Types

VpcsVpcInstance

AccountIdentity This property is required. int
The account id.
Cluster This property is required. VpcsVpcInstanceCluster
The cluster info.
ClusterVpcId This property is required. int
The cluster vpc id.
CreateTime This property is required. int
The creation time.
Desc This property is required. string
The description of VPC.
Id This property is required. string
The ID of VPC.
IsDefault This property is required. bool
Is default vpc.
ResourceStatistics This property is required. List<VpcsVpcInstanceResourceStatistic>
The resource statistic info.
Status This property is required. string
The status of VPC.
SubNets This property is required. List<VpcsVpcInstanceSubNet>
The subnets info.
UpdateTime This property is required. int
The update time of VPC.
UserIdentity This property is required. int
The id of user.
VpcIdentity This property is required. string
The ID of VPC.
VpcName This property is required. string
The name of VPC.
VpcNs This property is required. string
The namespace of VPC.
AccountIdentity This property is required. int
The account id.
Cluster This property is required. VpcsVpcInstanceCluster
The cluster info.
ClusterVpcId This property is required. int
The cluster vpc id.
CreateTime This property is required. int
The creation time.
Desc This property is required. string
The description of VPC.
Id This property is required. string
The ID of VPC.
IsDefault This property is required. bool
Is default vpc.
ResourceStatistics This property is required. []VpcsVpcInstanceResourceStatistic
The resource statistic info.
Status This property is required. string
The status of VPC.
SubNets This property is required. []VpcsVpcInstanceSubNet
The subnets info.
UpdateTime This property is required. int
The update time of VPC.
UserIdentity This property is required. int
The id of user.
VpcIdentity This property is required. string
The ID of VPC.
VpcName This property is required. string
The name of VPC.
VpcNs This property is required. string
The namespace of VPC.
accountIdentity This property is required. Integer
The account id.
cluster This property is required. VpcsVpcInstanceCluster
The cluster info.
clusterVpcId This property is required. Integer
The cluster vpc id.
createTime This property is required. Integer
The creation time.
desc This property is required. String
The description of VPC.
id This property is required. String
The ID of VPC.
isDefault This property is required. Boolean
Is default vpc.
resourceStatistics This property is required. List<VpcsVpcInstanceResourceStatistic>
The resource statistic info.
status This property is required. String
The status of VPC.
subNets This property is required. List<VpcsVpcInstanceSubNet>
The subnets info.
updateTime This property is required. Integer
The update time of VPC.
userIdentity This property is required. Integer
The id of user.
vpcIdentity This property is required. String
The ID of VPC.
vpcName This property is required. String
The name of VPC.
vpcNs This property is required. String
The namespace of VPC.
accountIdentity This property is required. number
The account id.
cluster This property is required. VpcsVpcInstanceCluster
The cluster info.
clusterVpcId This property is required. number
The cluster vpc id.
createTime This property is required. number
The creation time.
desc This property is required. string
The description of VPC.
id This property is required. string
The ID of VPC.
isDefault This property is required. boolean
Is default vpc.
resourceStatistics This property is required. VpcsVpcInstanceResourceStatistic[]
The resource statistic info.
status This property is required. string
The status of VPC.
subNets This property is required. VpcsVpcInstanceSubNet[]
The subnets info.
updateTime This property is required. number
The update time of VPC.
userIdentity This property is required. number
The id of user.
vpcIdentity This property is required. string
The ID of VPC.
vpcName This property is required. string
The name of VPC.
vpcNs This property is required. string
The namespace of VPC.
account_identity This property is required. int
The account id.
cluster This property is required. VpcsVpcInstanceCluster
The cluster info.
cluster_vpc_id This property is required. int
The cluster vpc id.
create_time This property is required. int
The creation time.
desc This property is required. str
The description of VPC.
id This property is required. str
The ID of VPC.
is_default This property is required. bool
Is default vpc.
resource_statistics This property is required. Sequence[VpcsVpcInstanceResourceStatistic]
The resource statistic info.
status This property is required. str
The status of VPC.
sub_nets This property is required. Sequence[VpcsVpcInstanceSubNet]
The subnets info.
update_time This property is required. int
The update time of VPC.
user_identity This property is required. int
The id of user.
vpc_identity This property is required. str
The ID of VPC.
vpc_name This property is required. str
The name of VPC.
vpc_ns This property is required. str
The namespace of VPC.
accountIdentity This property is required. Number
The account id.
cluster This property is required. Property Map
The cluster info.
clusterVpcId This property is required. Number
The cluster vpc id.
createTime This property is required. Number
The creation time.
desc This property is required. String
The description of VPC.
id This property is required. String
The ID of VPC.
isDefault This property is required. Boolean
Is default vpc.
resourceStatistics This property is required. List<Property Map>
The resource statistic info.
status This property is required. String
The status of VPC.
subNets This property is required. List<Property Map>
The subnets info.
updateTime This property is required. Number
The update time of VPC.
userIdentity This property is required. Number
The id of user.
vpcIdentity This property is required. String
The ID of VPC.
vpcName This property is required. String
The name of VPC.
vpcNs This property is required. String
The namespace of VPC.

VpcsVpcInstanceCluster

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

VpcsVpcInstanceResourceStatistic

VeenInstanceCount This property is required. int
The count of instance.
VeewLbInstanceCount This property is required. int
The count of load balancers.
VeewSgInstanceCount This property is required. int
The count of security groups.
VeenInstanceCount This property is required. int
The count of instance.
VeewLbInstanceCount This property is required. int
The count of load balancers.
VeewSgInstanceCount This property is required. int
The count of security groups.
veenInstanceCount This property is required. Integer
The count of instance.
veewLbInstanceCount This property is required. Integer
The count of load balancers.
veewSgInstanceCount This property is required. Integer
The count of security groups.
veenInstanceCount This property is required. number
The count of instance.
veewLbInstanceCount This property is required. number
The count of load balancers.
veewSgInstanceCount This property is required. number
The count of security groups.
veen_instance_count This property is required. int
The count of instance.
veew_lb_instance_count This property is required. int
The count of load balancers.
veew_sg_instance_count This property is required. int
The count of security groups.
veenInstanceCount This property is required. Number
The count of instance.
veewLbInstanceCount This property is required. Number
The count of load balancers.
veewSgInstanceCount This property is required. Number
The count of security groups.

VpcsVpcInstanceSubNet

AccountIdentity This property is required. int
The account id.
CidrIp This property is required. string
The ip of cidr.
CidrMask This property is required. int
The mask of cidr.
CreateTime This property is required. int
The creation time.
SubnetIdentity This property is required. string
The id of subnet.
UpdateTime This property is required. int
The update time of VPC.
UserIdentity This property is required. int
The id of user.
AccountIdentity This property is required. int
The account id.
CidrIp This property is required. string
The ip of cidr.
CidrMask This property is required. int
The mask of cidr.
CreateTime This property is required. int
The creation time.
SubnetIdentity This property is required. string
The id of subnet.
UpdateTime This property is required. int
The update time of VPC.
UserIdentity This property is required. int
The id of user.
accountIdentity This property is required. Integer
The account id.
cidrIp This property is required. String
The ip of cidr.
cidrMask This property is required. Integer
The mask of cidr.
createTime This property is required. Integer
The creation time.
subnetIdentity This property is required. String
The id of subnet.
updateTime This property is required. Integer
The update time of VPC.
userIdentity This property is required. Integer
The id of user.
accountIdentity This property is required. number
The account id.
cidrIp This property is required. string
The ip of cidr.
cidrMask This property is required. number
The mask of cidr.
createTime This property is required. number
The creation time.
subnetIdentity This property is required. string
The id of subnet.
updateTime This property is required. number
The update time of VPC.
userIdentity This property is required. number
The id of user.
account_identity This property is required. int
The account id.
cidr_ip This property is required. str
The ip of cidr.
cidr_mask This property is required. int
The mask of cidr.
create_time This property is required. int
The creation time.
subnet_identity This property is required. str
The id of subnet.
update_time This property is required. int
The update time of VPC.
user_identity This property is required. int
The id of user.
accountIdentity This property is required. Number
The account id.
cidrIp This property is required. String
The ip of cidr.
cidrMask This property is required. Number
The mask of cidr.
createTime This property is required. Number
The creation time.
subnetIdentity This property is required. String
The id of subnet.
updateTime This property is required. Number
The update time of VPC.
userIdentity This property is required. Number
The id of user.

Package Details

Repository
volcengine volcengine/pulumi-volcengine
License
Apache-2.0
Notes
This Pulumi package is based on the volcengine Terraform Provider.
Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine