volcengine.privatelink.VpcEndpoint
Explore with Pulumi AI
Provides a resource to manage privatelink vpc endpoint
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var fooZones = Volcengine.Ecs.Zones.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(zonesResult => zonesResult.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 Volcengine.Privatelink.VpcEndpoint("fooVpcEndpoint", new()
{
SecurityGroupIds = new[]
{
fooSecurityGroup.Id,
},
ServiceId = fooVpcEndpointService.Id,
EndpointName = "acc-test-ep",
Description = "acc-test",
});
});
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.Zones(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
}
_, err = privatelink.NewVpcEndpoint(ctx, "fooVpcEndpoint", &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
}
return nil
})
}
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.ZonesArgs;
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 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.Zones();
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(zonesResult -> zonesResult.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());
var fooVpcEndpoint = new VpcEndpoint("fooVpcEndpoint", VpcEndpointArgs.builder()
.securityGroupIds(fooSecurityGroup.id())
.serviceId(fooVpcEndpointService.id())
.endpointName("acc-test-ep")
.description("acc-test")
.build());
}
}
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.ecs.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 = volcengine.privatelink.VpcEndpoint("fooVpcEndpoint",
security_group_ids=[foo_security_group.id],
service_id=foo_vpc_endpoint_service.id,
endpoint_name="acc-test-ep",
description="acc-test")
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooZones = volcengine.ecs.Zones({});
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 = new volcengine.privatelink.VpcEndpoint("fooVpcEndpoint", {
securityGroupIds: [fooSecurityGroup.id],
serviceId: fooVpcEndpointService.id,
endpointName: "acc-test-ep",
description: "acc-test",
});
resources:
fooVpc:
type: volcengine:vpc:Vpc
properties:
vpcName: acc-test-vpc
cidrBlock: 172.16.0.0/16
fooSubnet:
type: volcengine:vpc:Subnet
properties:
subnetName: acc-test-subnet
cidrBlock: 172.16.0.0/24
zoneId: ${fooZones.zones[0].id}
vpcId: ${fooVpc.id}
fooSecurityGroup:
type: volcengine:vpc:SecurityGroup
properties:
securityGroupName: acc-test-security-group
vpcId: ${fooVpc.id}
fooClb:
type: volcengine:clb:Clb
properties:
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
fooVpcEndpointService:
type: volcengine:privatelink:VpcEndpointService
properties:
resources:
- resourceId: ${fooClb.id}
resourceType: CLB
description: acc-test
autoAcceptEnabled: true
fooVpcEndpoint:
type: volcengine:privatelink:VpcEndpoint
properties:
securityGroupIds:
- ${fooSecurityGroup.id}
serviceId: ${fooVpcEndpointService.id}
endpointName: acc-test-ep
description: acc-test
variables:
fooZones:
fn::invoke:
Function: volcengine:ecs:Zones
Arguments: {}
Create VpcEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VpcEndpoint(name: string, args: VpcEndpointArgs, opts?: CustomResourceOptions);
@overload
def VpcEndpoint(resource_name: str,
args: VpcEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VpcEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
security_group_ids: Optional[Sequence[str]] = None,
service_id: Optional[str] = None,
description: Optional[str] = None,
endpoint_name: Optional[str] = None,
service_name: Optional[str] = None)
func NewVpcEndpoint(ctx *Context, name string, args VpcEndpointArgs, opts ...ResourceOption) (*VpcEndpoint, error)
public VpcEndpoint(string name, VpcEndpointArgs args, CustomResourceOptions? opts = null)
public VpcEndpoint(String name, VpcEndpointArgs args)
public VpcEndpoint(String name, VpcEndpointArgs args, CustomResourceOptions options)
type: volcengine:privatelink:VpcEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VpcEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VpcEndpointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VpcEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpcEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VpcEndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var volcengineVpcEndpointResource = new Volcengine.Privatelink.VpcEndpoint("volcengineVpcEndpointResource", new()
{
SecurityGroupIds = new[]
{
"string",
},
ServiceId = "string",
Description = "string",
EndpointName = "string",
ServiceName = "string",
});
example, err := privatelink.NewVpcEndpoint(ctx, "volcengineVpcEndpointResource", &privatelink.VpcEndpointArgs{
SecurityGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
ServiceId: pulumi.String("string"),
Description: pulumi.String("string"),
EndpointName: pulumi.String("string"),
ServiceName: pulumi.String("string"),
})
var volcengineVpcEndpointResource = new VpcEndpoint("volcengineVpcEndpointResource", VpcEndpointArgs.builder()
.securityGroupIds("string")
.serviceId("string")
.description("string")
.endpointName("string")
.serviceName("string")
.build());
volcengine_vpc_endpoint_resource = volcengine.privatelink.VpcEndpoint("volcengineVpcEndpointResource",
security_group_ids=["string"],
service_id="string",
description="string",
endpoint_name="string",
service_name="string")
const volcengineVpcEndpointResource = new volcengine.privatelink.VpcEndpoint("volcengineVpcEndpointResource", {
securityGroupIds: ["string"],
serviceId: "string",
description: "string",
endpointName: "string",
serviceName: "string",
});
type: volcengine:privatelink:VpcEndpoint
properties:
description: string
endpointName: string
securityGroupIds:
- string
serviceId: string
serviceName: string
VpcEndpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The VpcEndpoint resource accepts the following input properties:
- Security
Group List<string>Ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - Service
Id string - The id of vpc endpoint service.
- Description string
- The description of vpc endpoint.
- Endpoint
Name string - The name of vpc endpoint.
- Service
Name string - The name of vpc endpoint service.
- Security
Group []stringIds - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - Service
Id string - The id of vpc endpoint service.
- Description string
- The description of vpc endpoint.
- Endpoint
Name string - The name of vpc endpoint.
- Service
Name string - The name of vpc endpoint service.
- security
Group List<String>Ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - service
Id String - The id of vpc endpoint service.
- description String
- The description of vpc endpoint.
- endpoint
Name String - The name of vpc endpoint.
- service
Name String - The name of vpc endpoint service.
- security
Group string[]Ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - service
Id string - The id of vpc endpoint service.
- description string
- The description of vpc endpoint.
- endpoint
Name string - The name of vpc endpoint.
- service
Name string - The name of vpc endpoint service.
- security_
group_ Sequence[str]ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - service_
id str - The id of vpc endpoint service.
- description str
- The description of vpc endpoint.
- endpoint_
name str - The name of vpc endpoint.
- service_
name str - The name of vpc endpoint service.
- security
Group List<String>Ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - service
Id String - The id of vpc endpoint service.
- description String
- The description of vpc endpoint.
- endpoint
Name String - The name of vpc endpoint.
- service
Name String - The name of vpc endpoint service.
Outputs
All input properties are implicitly available as output properties. Additionally, the VpcEndpoint resource produces the following output properties:
- 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.
- Endpoint
Domain string - The domain of vpc endpoint.
- Endpoint
Type string - The type of vpc endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- The status of vpc endpoint.
- 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.
- Endpoint
Domain string - The domain of vpc endpoint.
- Endpoint
Type string - The type of vpc endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- The status of vpc endpoint.
- 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.
- endpoint
Domain String - The domain of vpc endpoint.
- endpoint
Type String - The type of vpc endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- The status of vpc endpoint.
- 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.
- endpoint
Domain string - The domain of vpc endpoint.
- endpoint
Type string - The type of vpc endpoint.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- The status of vpc endpoint.
- 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.
- endpoint_
domain str - The domain of vpc endpoint.
- endpoint_
type str - The type of vpc endpoint.
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- The status of vpc endpoint.
- 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.
- endpoint
Domain String - The domain of vpc endpoint.
- endpoint
Type String - The type of vpc endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- The status of vpc endpoint.
- update
Time String - The update time of vpc endpoint.
- vpc
Id String - The vpc id of vpc endpoint.
Look up Existing VpcEndpoint Resource
Get an existing VpcEndpoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VpcEndpointState, opts?: CustomResourceOptions): VpcEndpoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
business_status: Optional[str] = None,
connection_status: Optional[str] = None,
creation_time: Optional[str] = None,
deleted_time: Optional[str] = None,
description: Optional[str] = None,
endpoint_domain: Optional[str] = None,
endpoint_name: Optional[str] = None,
endpoint_type: Optional[str] = None,
security_group_ids: Optional[Sequence[str]] = None,
service_id: Optional[str] = None,
service_name: Optional[str] = None,
status: Optional[str] = None,
update_time: Optional[str] = None,
vpc_id: Optional[str] = None) -> VpcEndpoint
func GetVpcEndpoint(ctx *Context, name string, id IDInput, state *VpcEndpointState, opts ...ResourceOption) (*VpcEndpoint, error)
public static VpcEndpoint Get(string name, Input<string> id, VpcEndpointState? state, CustomResourceOptions? opts = null)
public static VpcEndpoint get(String name, Output<String> id, VpcEndpointState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- 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
Name string - The name of vpc endpoint.
- Endpoint
Type string - The type of vpc endpoint.
- Security
Group List<string>Ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - 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.
- 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
Name string - The name of vpc endpoint.
- Endpoint
Type string - The type of vpc endpoint.
- Security
Group []stringIds - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - 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.
- 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
Name String - The name of vpc endpoint.
- endpoint
Type String - The type of vpc endpoint.
- security
Group List<String>Ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - 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.
- 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
Name string - The name of vpc endpoint.
- endpoint
Type string - The type of vpc endpoint.
- security
Group string[]Ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - 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.
- 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_
name str - The name of vpc endpoint.
- endpoint_
type str - The type of vpc endpoint.
- security_
group_ Sequence[str]ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - 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.
- 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
Name String - The name of vpc endpoint.
- endpoint
Type String - The type of vpc endpoint.
- security
Group List<String>Ids - The security group ids of vpc endpoint. It is recommended to bind security groups using the 'security_group_ids' field in this resource instead of using
volcengine.privatelink.SecurityGroup
. For operations that jointly use this resource andvolcengine.privatelink.SecurityGroup
, use lifecycle ignore_changes to suppress changes to the 'security_group_ids' field. - 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.
- update
Time String - The update time of vpc endpoint.
- vpc
Id String - The vpc id of vpc endpoint.
Import
VpcEndpoint can be imported using the id, e.g.
$ pulumi import volcengine:privatelink/vpcEndpoint:VpcEndpoint default ep-3rel74u229dz45zsk2i6l****
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.