@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
148 lines • 6.44 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.VpcEndpointConnection = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage privatelink vpc endpoint connection
* ## Example Usage
*
* ```typescript
* 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",
* });
* const fooVpcEndpoint = new volcengine.privatelink.VpcEndpoint("fooVpcEndpoint", {
* securityGroupIds: [fooSecurityGroup.id],
* serviceId: fooVpcEndpointService.id,
* endpointName: "acc-test-ep",
* description: "acc-test",
* });
* //resource "volcengine_privatelink_vpc_endpoint_connection" "foo" {
* // endpoint_id = volcengine_privatelink_vpc_endpoint.foo.id
* // service_id = volcengine_privatelink_vpc_endpoint_service.foo.id
* //}
* const fooVpcEndpointZone = new volcengine.privatelink.VpcEndpointZone("fooVpcEndpointZone", {
* endpointId: fooVpcEndpoint.id,
* subnetId: fooSubnet.id,
* privateIpAddress: "172.16.0.251",
* });
* const fooVpcEndpointConnection = new volcengine.privatelink.VpcEndpointConnection("fooVpcEndpointConnection", {
* endpointId: fooVpcEndpoint.id,
* serviceId: fooVpcEndpointService.id,
* }, {
* dependsOn: [fooVpcEndpointZone],
* });
* ```
*
* ## Import
*
* PrivateLink Vpc Endpoint Connection Service can be imported using the endpoint id and service id, e.g.
*
* ```sh
* $ pulumi import volcengine:privatelink/vpcEndpointConnection:VpcEndpointConnection default ep-3rel74u229dz45zsk2i6l69qa:epsvc-2byz5mykk9y4g2dx0efs4aqz3
* ```
*/
class VpcEndpointConnection extends pulumi.CustomResource {
/**
* Get an existing VpcEndpointConnection resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new VpcEndpointConnection(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of VpcEndpointConnection. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === VpcEndpointConnection.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["connectionStatus"] = state ? state.connectionStatus : undefined;
resourceInputs["creationTime"] = state ? state.creationTime : undefined;
resourceInputs["endpointId"] = state ? state.endpointId : undefined;
resourceInputs["endpointOwnerAccountId"] = state ? state.endpointOwnerAccountId : undefined;
resourceInputs["endpointVpcId"] = state ? state.endpointVpcId : undefined;
resourceInputs["serviceId"] = state ? state.serviceId : undefined;
resourceInputs["updateTime"] = state ? state.updateTime : undefined;
resourceInputs["zones"] = state ? state.zones : undefined;
}
else {
const args = argsOrState;
if ((!args || args.endpointId === undefined) && !opts.urn) {
throw new Error("Missing required property 'endpointId'");
}
if ((!args || args.serviceId === undefined) && !opts.urn) {
throw new Error("Missing required property 'serviceId'");
}
resourceInputs["endpointId"] = args ? args.endpointId : undefined;
resourceInputs["serviceId"] = args ? args.serviceId : undefined;
resourceInputs["connectionStatus"] = undefined /*out*/;
resourceInputs["creationTime"] = undefined /*out*/;
resourceInputs["endpointOwnerAccountId"] = undefined /*out*/;
resourceInputs["endpointVpcId"] = undefined /*out*/;
resourceInputs["updateTime"] = undefined /*out*/;
resourceInputs["zones"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(VpcEndpointConnection.__pulumiType, name, resourceInputs, opts);
}
}
exports.VpcEndpointConnection = VpcEndpointConnection;
/** @internal */
VpcEndpointConnection.__pulumiType = 'volcengine:privatelink/vpcEndpointConnection:VpcEndpointConnection';
//# sourceMappingURL=vpcEndpointConnection.js.map