Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Use this data source to query detailed information of privatelink vpc endpoints
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooZones = volcengine.ecs.getZones({});
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
vpcName: "acc-test-vpc",
cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
subnetName: "acc-test-subnet",
cidrBlock: "172.16.0.0/24",
zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
vpcId: fooVpc.id,
});
const fooSecurityGroup = new volcengine.vpc.SecurityGroup("fooSecurityGroup", {
securityGroupName: "acc-test-security-group",
vpcId: fooVpc.id,
});
const fooClb = new volcengine.clb.Clb("fooClb", {
type: "public",
subnetId: fooSubnet.id,
loadBalancerSpec: "small_1",
description: "acc-test-demo",
loadBalancerName: "acc-test-clb",
loadBalancerBillingType: "PostPaid",
eipBillingConfig: {
isp: "BGP",
eipBillingType: "PostPaidByBandwidth",
bandwidth: 1,
},
tags: [{
key: "k1",
value: "v1",
}],
});
const fooVpcEndpointService = new volcengine.privatelink.VpcEndpointService("fooVpcEndpointService", {
resources: [{
resourceId: fooClb.id,
resourceType: "CLB",
}],
description: "acc-test",
autoAcceptEnabled: true,
});
const fooVpcEndpoint: volcengine.privatelink.VpcEndpoint[] = [];
for (const range = {value: 0}; range.value < 2; range.value++) {
fooVpcEndpoint.push(new volcengine.privatelink.VpcEndpoint(`fooVpcEndpoint-${range.value}`, {
securityGroupIds: [fooSecurityGroup.id],
serviceId: fooVpcEndpointService.id,
endpointName: "acc-test-ep",
description: "acc-test",
}));
}
const fooVpcEndpoints = volcengine.privatelink.getVpcEndpointsOutput({
ids: fooVpcEndpoint.map(__item => __item.id),
});
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.ecs.get_zones()
foo_vpc = volcengine.vpc.Vpc("fooVpc",
vpc_name="acc-test-vpc",
cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
subnet_name="acc-test-subnet",
cidr_block="172.16.0.0/24",
zone_id=foo_zones.zones[0].id,
vpc_id=foo_vpc.id)
foo_security_group = volcengine.vpc.SecurityGroup("fooSecurityGroup",
security_group_name="acc-test-security-group",
vpc_id=foo_vpc.id)
foo_clb = volcengine.clb.Clb("fooClb",
type="public",
subnet_id=foo_subnet.id,
load_balancer_spec="small_1",
description="acc-test-demo",
load_balancer_name="acc-test-clb",
load_balancer_billing_type="PostPaid",
eip_billing_config=volcengine.clb.ClbEipBillingConfigArgs(
isp="BGP",
eip_billing_type="PostPaidByBandwidth",
bandwidth=1,
),
tags=[volcengine.clb.ClbTagArgs(
key="k1",
value="v1",
)])
foo_vpc_endpoint_service = volcengine.privatelink.VpcEndpointService("fooVpcEndpointService",
resources=[volcengine.privatelink.VpcEndpointServiceResourceArgs(
resource_id=foo_clb.id,
resource_type="CLB",
)],
description="acc-test",
auto_accept_enabled=True)
foo_vpc_endpoint = []
for range in [{"value": i} for i in range(0, 2)]:
foo_vpc_endpoint.append(volcengine.privatelink.VpcEndpoint(f"fooVpcEndpoint-{range['value']}",
security_group_ids=[foo_security_group.id],
service_id=foo_vpc_endpoint_service.id,
endpoint_name="acc-test-ep",
description="acc-test"))
foo_vpc_endpoints = volcengine.privatelink.get_vpc_endpoints_output(ids=[__item.id for __item in foo_vpc_endpoint])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/clb"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/privatelink"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
fooZones, err := ecs.GetZones(ctx, nil, nil);
if err != nil {
return err
}
fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
VpcName: pulumi.String("acc-test-vpc"),
CidrBlock: pulumi.String("172.16.0.0/16"),
})
if err != nil {
return err
}
fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
SubnetName: pulumi.String("acc-test-subnet"),
CidrBlock: pulumi.String("172.16.0.0/24"),
ZoneId: pulumi.String(fooZones.Zones[0].Id),
VpcId: fooVpc.ID(),
})
if err != nil {
return err
}
fooSecurityGroup, err := vpc.NewSecurityGroup(ctx, "fooSecurityGroup", &vpc.SecurityGroupArgs{
SecurityGroupName: pulumi.String("acc-test-security-group"),
VpcId: fooVpc.ID(),
})
if err != nil {
return err
}
fooClb, err := clb.NewClb(ctx, "fooClb", &clb.ClbArgs{
Type: pulumi.String("public"),
SubnetId: fooSubnet.ID(),
LoadBalancerSpec: pulumi.String("small_1"),
Description: pulumi.String("acc-test-demo"),
LoadBalancerName: pulumi.String("acc-test-clb"),
LoadBalancerBillingType: pulumi.String("PostPaid"),
EipBillingConfig: &clb.ClbEipBillingConfigArgs{
Isp: pulumi.String("BGP"),
EipBillingType: pulumi.String("PostPaidByBandwidth"),
Bandwidth: pulumi.Int(1),
},
Tags: clb.ClbTagArray{
&clb.ClbTagArgs{
Key: pulumi.String("k1"),
Value: pulumi.String("v1"),
},
},
})
if err != nil {
return err
}
fooVpcEndpointService, err := privatelink.NewVpcEndpointService(ctx, "fooVpcEndpointService", &privatelink.VpcEndpointServiceArgs{
Resources: privatelink.VpcEndpointServiceResourceTypeArray{
&privatelink.VpcEndpointServiceResourceTypeArgs{
ResourceId: fooClb.ID(),
ResourceType: pulumi.String("CLB"),
},
},
Description: pulumi.String("acc-test"),
AutoAcceptEnabled: pulumi.Bool(true),
})
if err != nil {
return err
}
var fooVpcEndpoint []*privatelink.VpcEndpoint
for index := 0; index < 2; index++ {
key0 := index
_ := index
__res, err := privatelink.NewVpcEndpoint(ctx, fmt.Sprintf("fooVpcEndpoint-%v", key0), &privatelink.VpcEndpointArgs{
SecurityGroupIds: pulumi.StringArray{
fooSecurityGroup.ID(),
},
ServiceId: fooVpcEndpointService.ID(),
EndpointName: pulumi.String("acc-test-ep"),
Description: pulumi.String("acc-test"),
})
if err != nil {
return err
}
fooVpcEndpoint = append(fooVpcEndpoint, __res)
}
_ = privatelink.GetVpcEndpointsOutput(ctx, privatelink.GetVpcEndpointsOutputArgs{
Ids: %!v(PANIC=Format method: fatal: A failure has occurred: unlowered splat expression @ #-functions-volcengine:privatelink-getVpcEndpoints:getVpcEndpoints.pp:52,9-29),
}, nil);
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var fooZones = Volcengine.Ecs.GetZones.Invoke();
var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
{
VpcName = "acc-test-vpc",
CidrBlock = "172.16.0.0/16",
});
var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
{
SubnetName = "acc-test-subnet",
CidrBlock = "172.16.0.0/24",
ZoneId = fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
VpcId = fooVpc.Id,
});
var fooSecurityGroup = new Volcengine.Vpc.SecurityGroup("fooSecurityGroup", new()
{
SecurityGroupName = "acc-test-security-group",
VpcId = fooVpc.Id,
});
var fooClb = new Volcengine.Clb.Clb("fooClb", new()
{
Type = "public",
SubnetId = fooSubnet.Id,
LoadBalancerSpec = "small_1",
Description = "acc-test-demo",
LoadBalancerName = "acc-test-clb",
LoadBalancerBillingType = "PostPaid",
EipBillingConfig = new Volcengine.Clb.Inputs.ClbEipBillingConfigArgs
{
Isp = "BGP",
EipBillingType = "PostPaidByBandwidth",
Bandwidth = 1,
},
Tags = new[]
{
new Volcengine.Clb.Inputs.ClbTagArgs
{
Key = "k1",
Value = "v1",
},
},
});
var fooVpcEndpointService = new Volcengine.Privatelink.VpcEndpointService("fooVpcEndpointService", new()
{
Resources = new[]
{
new Volcengine.Privatelink.Inputs.VpcEndpointServiceResourceArgs
{
ResourceId = fooClb.Id,
ResourceType = "CLB",
},
},
Description = "acc-test",
AutoAcceptEnabled = true,
});
var fooVpcEndpoint = new List<Volcengine.Privatelink.VpcEndpoint>();
for (var rangeIndex = 0; rangeIndex < 2; rangeIndex++)
{
var range = new { Value = rangeIndex };
fooVpcEndpoint.Add(new Volcengine.Privatelink.VpcEndpoint($"fooVpcEndpoint-{range.Value}", new()
{
SecurityGroupIds = new[]
{
fooSecurityGroup.Id,
},
ServiceId = fooVpcEndpointService.Id,
EndpointName = "acc-test-ep",
Description = "acc-test",
}));
}
var fooVpcEndpoints = Volcengine.Privatelink.GetVpcEndpoints.Invoke(new()
{
Ids = fooVpcEndpoint.Select(__item => __item.Id).ToList(),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.ecs.EcsFunctions;
import com.pulumi.volcengine.ecs.inputs.GetZonesArgs;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.vpc.SecurityGroup;
import com.pulumi.volcengine.vpc.SecurityGroupArgs;
import com.pulumi.volcengine.clb.Clb;
import com.pulumi.volcengine.clb.ClbArgs;
import com.pulumi.volcengine.clb.inputs.ClbEipBillingConfigArgs;
import com.pulumi.volcengine.clb.inputs.ClbTagArgs;
import com.pulumi.volcengine.privatelink.VpcEndpointService;
import com.pulumi.volcengine.privatelink.VpcEndpointServiceArgs;
import com.pulumi.volcengine.privatelink.inputs.VpcEndpointServiceResourceArgs;
import com.pulumi.volcengine.privatelink.VpcEndpoint;
import com.pulumi.volcengine.privatelink.VpcEndpointArgs;
import com.pulumi.volcengine.privatelink.PrivatelinkFunctions;
import com.pulumi.volcengine.privatelink.inputs.GetVpcEndpointsArgs;
import com.pulumi.codegen.internal.KeyedValue;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var fooZones = EcsFunctions.getZones();
var fooVpc = new Vpc("fooVpc", VpcArgs.builder()
.vpcName("acc-test-vpc")
.cidrBlock("172.16.0.0/16")
.build());
var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()
.subnetName("acc-test-subnet")
.cidrBlock("172.16.0.0/24")
.zoneId(fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
.vpcId(fooVpc.id())
.build());
var fooSecurityGroup = new SecurityGroup("fooSecurityGroup", SecurityGroupArgs.builder()
.securityGroupName("acc-test-security-group")
.vpcId(fooVpc.id())
.build());
var fooClb = new Clb("fooClb", ClbArgs.builder()
.type("public")
.subnetId(fooSubnet.id())
.loadBalancerSpec("small_1")
.description("acc-test-demo")
.loadBalancerName("acc-test-clb")
.loadBalancerBillingType("PostPaid")
.eipBillingConfig(ClbEipBillingConfigArgs.builder()
.isp("BGP")
.eipBillingType("PostPaidByBandwidth")
.bandwidth(1)
.build())
.tags(ClbTagArgs.builder()
.key("k1")
.value("v1")
.build())
.build());
var fooVpcEndpointService = new VpcEndpointService("fooVpcEndpointService", VpcEndpointServiceArgs.builder()
.resources(VpcEndpointServiceResourceArgs.builder()
.resourceId(fooClb.id())
.resourceType("CLB")
.build())
.description("acc-test")
.autoAcceptEnabled(true)
.build());
for (var i = 0; i < 2; i++) {
new VpcEndpoint("fooVpcEndpoint-" + i, VpcEndpointArgs.builder()
.securityGroupIds(fooSecurityGroup.id())
.serviceId(fooVpcEndpointService.id())
.endpointName("acc-test-ep")
.description("acc-test")
.build());
}
final var fooVpcEndpoints = PrivatelinkFunctions.getVpcEndpoints(GetVpcEndpointsArgs.builder()
.ids(fooVpcEndpoint.stream().map(element -> element.id()).collect(toList()))
.build());
}
}
Example coming soon!
Using getVpcEndpoints
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 getVpcEndpoints(args: GetVpcEndpointsArgs, opts?: InvokeOptions): Promise<GetVpcEndpointsResult>
function getVpcEndpointsOutput(args: GetVpcEndpointsOutputArgs, opts?: InvokeOptions): Output<GetVpcEndpointsResult>def get_vpc_endpoints(endpoint_name: Optional[str] = None,
ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
service_name: Optional[str] = None,
status: Optional[str] = None,
vpc_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetVpcEndpointsResult
def get_vpc_endpoints_output(endpoint_name: Optional[pulumi.Input[str]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
service_name: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
vpc_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVpcEndpointsResult]func GetVpcEndpoints(ctx *Context, args *GetVpcEndpointsArgs, opts ...InvokeOption) (*GetVpcEndpointsResult, error)
func GetVpcEndpointsOutput(ctx *Context, args *GetVpcEndpointsOutputArgs, opts ...InvokeOption) GetVpcEndpointsResultOutput> Note: This function is named GetVpcEndpoints in the Go SDK.
public static class GetVpcEndpoints
{
public static Task<GetVpcEndpointsResult> InvokeAsync(GetVpcEndpointsArgs args, InvokeOptions? opts = null)
public static Output<GetVpcEndpointsResult> Invoke(GetVpcEndpointsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetVpcEndpointsResult> getVpcEndpoints(GetVpcEndpointsArgs args, InvokeOptions options)
public static Output<GetVpcEndpointsResult> getVpcEndpoints(GetVpcEndpointsArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:privatelink/getVpcEndpoints:getVpcEndpoints
arguments:
# arguments dictionaryThe following arguments are supported:
- Endpoint
Name string - The name of vpc endpoint.
- Ids List<string>
- The IDs of vpc endpoint.
- Name
Regex string - A Name Regex of vpc endpoint.
- Output
File string - File name where to save data source results.
- Service
Name string - The name of vpc endpoint service.
- Status string
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - Vpc
Id string - The vpc id of vpc endpoint.
- Endpoint
Name string - The name of vpc endpoint.
- Ids []string
- The IDs of vpc endpoint.
- Name
Regex string - A Name Regex of vpc endpoint.
- Output
File string - File name where to save data source results.
- Service
Name string - The name of vpc endpoint service.
- Status string
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - Vpc
Id string - The vpc id of vpc endpoint.
- endpoint
Name String - The name of vpc endpoint.
- ids List<String>
- The IDs of vpc endpoint.
- name
Regex String - A Name Regex of vpc endpoint.
- output
File String - File name where to save data source results.
- service
Name String - The name of vpc endpoint service.
- status String
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - vpc
Id String - The vpc id of vpc endpoint.
- endpoint
Name string - The name of vpc endpoint.
- ids string[]
- The IDs of vpc endpoint.
- name
Regex string - A Name Regex of vpc endpoint.
- output
File string - File name where to save data source results.
- service
Name string - The name of vpc endpoint service.
- status string
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - vpc
Id string - The vpc id of vpc endpoint.
- endpoint_
name str - The name of vpc endpoint.
- ids Sequence[str]
- The IDs of vpc endpoint.
- name_
regex str - A Name Regex of vpc endpoint.
- output_
file str - File name where to save data source results.
- service_
name str - The name of vpc endpoint service.
- status str
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - vpc_
id str - The vpc id of vpc endpoint.
- endpoint
Name String - The name of vpc endpoint.
- ids List<String>
- The IDs of vpc endpoint.
- name
Regex String - A Name Regex of vpc endpoint.
- output
File String - File name where to save data source results.
- service
Name String - The name of vpc endpoint service.
- status String
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - vpc
Id String - The vpc id of vpc endpoint.
getVpcEndpoints Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Total
Count int - Returns the total amount of the data list.
- Vpc
Endpoints List<GetVpc Endpoints Vpc Endpoint> - The collection of query.
- Endpoint
Name string - The name of vpc endpoint.
- Ids List<string>
- Name
Regex string - Output
File string - Service
Name string - The name of vpc endpoint service.
- Status string
- The status of vpc endpoint.
- Vpc
Id string - The vpc id of vpc endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Total
Count int - Returns the total amount of the data list.
- Vpc
Endpoints []GetVpc Endpoints Vpc Endpoint - The collection of query.
- Endpoint
Name string - The name of vpc endpoint.
- Ids []string
- Name
Regex string - Output
File string - Service
Name string - The name of vpc endpoint service.
- Status string
- The status of vpc endpoint.
- Vpc
Id string - The vpc id of vpc endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- total
Count Integer - Returns the total amount of the data list.
- vpc
Endpoints List<GetVpc Endpoints Vpc Endpoint> - The collection of query.
- endpoint
Name String - The name of vpc endpoint.
- ids List<String>
- name
Regex String - output
File String - service
Name String - The name of vpc endpoint service.
- status String
- The status of vpc endpoint.
- vpc
Id String - The vpc id of vpc endpoint.
- id string
- The provider-assigned unique ID for this managed resource.
- total
Count number - Returns the total amount of the data list.
- vpc
Endpoints GetVpc Endpoints Vpc Endpoint[] - The collection of query.
- endpoint
Name string - The name of vpc endpoint.
- ids string[]
- name
Regex string - output
File string - service
Name string - The name of vpc endpoint service.
- status string
- The status of vpc endpoint.
- vpc
Id string - The vpc id of vpc endpoint.
- id str
- The provider-assigned unique ID for this managed resource.
- total_
count int - Returns the total amount of the data list.
- vpc_
endpoints Sequence[GetVpc Endpoints Vpc Endpoint] - The collection of query.
- endpoint_
name str - The name of vpc endpoint.
- ids Sequence[str]
- name_
regex str - output_
file str - service_
name str - The name of vpc endpoint service.
- status str
- The status of vpc endpoint.
- vpc_
id str - The vpc id of vpc endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- total
Count Number - Returns the total amount of the data list.
- vpc
Endpoints List<Property Map> - The collection of query.
- endpoint
Name String - The name of vpc endpoint.
- ids List<String>
- name
Regex String - output
File String - service
Name String - The name of vpc endpoint service.
- status String
- The status of vpc endpoint.
- vpc
Id String - The vpc id of vpc endpoint.
Supporting Types
GetVpcEndpointsVpcEndpoint
- Business
Status string - Whether the vpc endpoint is locked.
- Connection
Status string - The connection status of vpc endpoint.
- Creation
Time string - The create time of vpc endpoint.
- Deleted
Time string - The delete time of vpc endpoint.
- Description string
- The description of vpc endpoint.
- Endpoint
Domain string - The domain of vpc endpoint.
- Endpoint
Id string - The Id of vpc endpoint.
- Endpoint
Name string - The name of vpc endpoint.
- Endpoint
Type string - The type of vpc endpoint.
- Id string
- The Id of vpc endpoint.
- Private
Dns boolEnabled - Whether to enable private dns name.
- Private
Dns stringName - The private dns name of vpc endpoint.
- Service
Id string - The Id of vpc endpoint service.
- Service
Name string - The name of vpc endpoint service.
- Status string
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - Update
Time string - The update time of vpc endpoint.
- Vpc
Id string - The vpc id of vpc endpoint.
- Business
Status string - Whether the vpc endpoint is locked.
- Connection
Status string - The connection status of vpc endpoint.
- Creation
Time string - The create time of vpc endpoint.
- Deleted
Time string - The delete time of vpc endpoint.
- Description string
- The description of vpc endpoint.
- Endpoint
Domain string - The domain of vpc endpoint.
- Endpoint
Id string - The Id of vpc endpoint.
- Endpoint
Name string - The name of vpc endpoint.
- Endpoint
Type string - The type of vpc endpoint.
- Id string
- The Id of vpc endpoint.
- Private
Dns boolEnabled - Whether to enable private dns name.
- Private
Dns stringName - The private dns name of vpc endpoint.
- Service
Id string - The Id of vpc endpoint service.
- Service
Name string - The name of vpc endpoint service.
- Status string
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - Update
Time string - The update time of vpc endpoint.
- Vpc
Id string - The vpc id of vpc endpoint.
- business
Status String - Whether the vpc endpoint is locked.
- connection
Status String - The connection status of vpc endpoint.
- creation
Time String - The create time of vpc endpoint.
- deleted
Time String - The delete time of vpc endpoint.
- description String
- The description of vpc endpoint.
- endpoint
Domain String - The domain of vpc endpoint.
- endpoint
Id String - The Id of vpc endpoint.
- endpoint
Name String - The name of vpc endpoint.
- endpoint
Type String - The type of vpc endpoint.
- id String
- The Id of vpc endpoint.
- private
Dns BooleanEnabled - Whether to enable private dns name.
- private
Dns StringName - The private dns name of vpc endpoint.
- service
Id String - The Id of vpc endpoint service.
- service
Name String - The name of vpc endpoint service.
- status String
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - update
Time String - The update time of vpc endpoint.
- vpc
Id String - The vpc id of vpc endpoint.
- business
Status string - Whether the vpc endpoint is locked.
- connection
Status string - The connection status of vpc endpoint.
- creation
Time string - The create time of vpc endpoint.
- deleted
Time string - The delete time of vpc endpoint.
- description string
- The description of vpc endpoint.
- endpoint
Domain string - The domain of vpc endpoint.
- endpoint
Id string - The Id of vpc endpoint.
- endpoint
Name string - The name of vpc endpoint.
- endpoint
Type string - The type of vpc endpoint.
- id string
- The Id of vpc endpoint.
- private
Dns booleanEnabled - Whether to enable private dns name.
- private
Dns stringName - The private dns name of vpc endpoint.
- service
Id string - The Id of vpc endpoint service.
- service
Name string - The name of vpc endpoint service.
- status string
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - update
Time string - The update time of vpc endpoint.
- vpc
Id string - The vpc id of vpc endpoint.
- business_
status str - Whether the vpc endpoint is locked.
- connection_
status str - The connection status of vpc endpoint.
- creation_
time str - The create time of vpc endpoint.
- deleted_
time str - The delete time of vpc endpoint.
- description str
- The description of vpc endpoint.
- endpoint_
domain str - The domain of vpc endpoint.
- endpoint_
id str - The Id of vpc endpoint.
- endpoint_
name str - The name of vpc endpoint.
- endpoint_
type str - The type of vpc endpoint.
- id str
- The Id of vpc endpoint.
- private_
dns_ boolenabled - Whether to enable private dns name.
- private_
dns_ strname - The private dns name of vpc endpoint.
- service_
id str - The Id of vpc endpoint service.
- service_
name str - The name of vpc endpoint service.
- status str
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - update_
time str - The update time of vpc endpoint.
- vpc_
id str - The vpc id of vpc endpoint.
- business
Status String - Whether the vpc endpoint is locked.
- connection
Status String - The connection status of vpc endpoint.
- creation
Time String - The create time of vpc endpoint.
- deleted
Time String - The delete time of vpc endpoint.
- description String
- The description of vpc endpoint.
- endpoint
Domain String - The domain of vpc endpoint.
- endpoint
Id String - The Id of vpc endpoint.
- endpoint
Name String - The name of vpc endpoint.
- endpoint
Type String - The type of vpc endpoint.
- id String
- The Id of vpc endpoint.
- private
Dns BooleanEnabled - Whether to enable private dns name.
- private
Dns StringName - The private dns name of vpc endpoint.
- service
Id String - The Id of vpc endpoint service.
- service
Name String - The name of vpc endpoint service.
- status String
- The status of vpc endpoint. Valid values:
Creating,Pending,Available,Deleting,Inactive. - update
Time String - The update time of vpc endpoint.
- vpc
Id String - The vpc id of vpc endpoint.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengineTerraform Provider.
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
