UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

130 lines 5.13 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.SecurityGroup = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage privatelink security group * ## 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 foo1 = new volcengine.vpc.SecurityGroup("foo1", { * securityGroupName: "acc-test-security-group-new", * 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", * }); * const fooPrivatelink_securityGroupSecurityGroup = new volcengine.privatelink.SecurityGroup("fooPrivatelink/securityGroupSecurityGroup", { * endpointId: fooVpcEndpoint.id, * securityGroupId: foo1.id, * }); * ``` * * ## Import * * PrivateLink Security Group Service can be imported using the endpoint id and security group id, e.g. * * ```sh * $ pulumi import volcengine:privatelink/securityGroup:SecurityGroup default ep-2fe630gurkl37k5gfuy33****:sg-xxxxx * ``` */ class SecurityGroup extends pulumi.CustomResource { /** * Get an existing SecurityGroup 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 SecurityGroup(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of SecurityGroup. 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'] === SecurityGroup.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["endpointId"] = state ? state.endpointId : undefined; resourceInputs["securityGroupId"] = state ? state.securityGroupId : undefined; } else { const args = argsOrState; if ((!args || args.endpointId === undefined) && !opts.urn) { throw new Error("Missing required property 'endpointId'"); } if ((!args || args.securityGroupId === undefined) && !opts.urn) { throw new Error("Missing required property 'securityGroupId'"); } resourceInputs["endpointId"] = args ? args.endpointId : undefined; resourceInputs["securityGroupId"] = args ? args.securityGroupId : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(SecurityGroup.__pulumiType, name, resourceInputs, opts); } } exports.SecurityGroup = SecurityGroup; /** @internal */ SecurityGroup.__pulumiType = 'volcengine:privatelink/securityGroup:SecurityGroup'; //# sourceMappingURL=securityGroup.js.map