UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

131 lines 5.96 kB
"use strict"; // *** 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.VpcEndpointService = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage privatelink vpc endpoint service * ## 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 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, * }); * ``` * * ## Import * * VpcEndpointService can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:privatelink/vpcEndpointService:VpcEndpointService default epsvc-2fe630gurkl37k5gfuy33**** * ``` * It is recommended to bind resources using the resources' field in this resource instead of using vpc_endpoint_service_resource. * For operations that jointly use this resource and vpc_endpoint_service_resource, use lifecycle ignore_changes to suppress changes to the resources field. */ class VpcEndpointService extends pulumi.CustomResource { /** * Get an existing VpcEndpointService 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 VpcEndpointService(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of VpcEndpointService. 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'] === VpcEndpointService.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["autoAcceptEnabled"] = state ? state.autoAcceptEnabled : undefined; resourceInputs["creationTime"] = state ? state.creationTime : undefined; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["resources"] = state ? state.resources : undefined; resourceInputs["serviceDomain"] = state ? state.serviceDomain : undefined; resourceInputs["serviceId"] = state ? state.serviceId : undefined; resourceInputs["serviceName"] = state ? state.serviceName : undefined; resourceInputs["serviceResourceType"] = state ? state.serviceResourceType : undefined; resourceInputs["serviceType"] = state ? state.serviceType : undefined; resourceInputs["status"] = state ? state.status : undefined; resourceInputs["updateTime"] = state ? state.updateTime : undefined; resourceInputs["zoneIds"] = state ? state.zoneIds : undefined; } else { const args = argsOrState; if ((!args || args.resources === undefined) && !opts.urn) { throw new Error("Missing required property 'resources'"); } resourceInputs["autoAcceptEnabled"] = args ? args.autoAcceptEnabled : undefined; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["resources"] = args ? args.resources : undefined; resourceInputs["creationTime"] = undefined /*out*/; resourceInputs["serviceDomain"] = undefined /*out*/; resourceInputs["serviceId"] = undefined /*out*/; resourceInputs["serviceName"] = undefined /*out*/; resourceInputs["serviceResourceType"] = undefined /*out*/; resourceInputs["serviceType"] = undefined /*out*/; resourceInputs["status"] = undefined /*out*/; resourceInputs["updateTime"] = undefined /*out*/; resourceInputs["zoneIds"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(VpcEndpointService.__pulumiType, name, resourceInputs, opts); } } exports.VpcEndpointService = VpcEndpointService; /** @internal */ VpcEndpointService.__pulumiType = 'volcengine:privatelink/vpcEndpointService:VpcEndpointService'; //# sourceMappingURL=vpcEndpointService.js.map