UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

127 lines 6.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.NetworkInterface = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage network interface * ## 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-sg", * vpcId: fooVpc.id, * }); * const fooNetworkInterface = new volcengine.vpc.NetworkInterface("fooNetworkInterface", { * networkInterfaceName: "acc-test-eni", * description: "acc-test", * subnetId: fooSubnet.id, * securityGroupIds: [fooSecurityGroup.id], * primaryIpAddress: "172.16.0.253", * portSecurityEnabled: false, * privateIpAddresses: ["172.16.0.2"], * projectName: "default", * tags: [{ * key: "k1", * value: "v1", * }], * }); * ``` * * ## Import * * Network interface can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:vpc/networkInterface:NetworkInterface default eni-bp1fgnh68xyz9**** * ``` */ class NetworkInterface extends pulumi.CustomResource { /** * Get an existing NetworkInterface 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 NetworkInterface(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of NetworkInterface. 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'] === NetworkInterface.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["ipv6AddressCount"] = state ? state.ipv6AddressCount : undefined; resourceInputs["ipv6Addresses"] = state ? state.ipv6Addresses : undefined; resourceInputs["networkInterfaceName"] = state ? state.networkInterfaceName : undefined; resourceInputs["portSecurityEnabled"] = state ? state.portSecurityEnabled : undefined; resourceInputs["primaryIpAddress"] = state ? state.primaryIpAddress : undefined; resourceInputs["privateIpAddresses"] = state ? state.privateIpAddresses : undefined; resourceInputs["projectName"] = state ? state.projectName : undefined; resourceInputs["secondaryPrivateIpAddressCount"] = state ? state.secondaryPrivateIpAddressCount : undefined; resourceInputs["securityGroupIds"] = state ? state.securityGroupIds : undefined; resourceInputs["status"] = state ? state.status : undefined; resourceInputs["subnetId"] = state ? state.subnetId : undefined; resourceInputs["tags"] = state ? state.tags : undefined; } else { const args = argsOrState; if ((!args || args.securityGroupIds === undefined) && !opts.urn) { throw new Error("Missing required property 'securityGroupIds'"); } if ((!args || args.subnetId === undefined) && !opts.urn) { throw new Error("Missing required property 'subnetId'"); } resourceInputs["description"] = args ? args.description : undefined; resourceInputs["ipv6AddressCount"] = args ? args.ipv6AddressCount : undefined; resourceInputs["ipv6Addresses"] = args ? args.ipv6Addresses : undefined; resourceInputs["networkInterfaceName"] = args ? args.networkInterfaceName : undefined; resourceInputs["portSecurityEnabled"] = args ? args.portSecurityEnabled : undefined; resourceInputs["primaryIpAddress"] = args ? args.primaryIpAddress : undefined; resourceInputs["privateIpAddresses"] = args ? args.privateIpAddresses : undefined; resourceInputs["projectName"] = args ? args.projectName : undefined; resourceInputs["secondaryPrivateIpAddressCount"] = args ? args.secondaryPrivateIpAddressCount : undefined; resourceInputs["securityGroupIds"] = args ? args.securityGroupIds : undefined; resourceInputs["subnetId"] = args ? args.subnetId : undefined; resourceInputs["tags"] = args ? args.tags : undefined; resourceInputs["status"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(NetworkInterface.__pulumiType, name, resourceInputs, opts); } } exports.NetworkInterface = NetworkInterface; /** @internal */ NetworkInterface.__pulumiType = 'volcengine:vpc/networkInterface:NetworkInterface'; //# sourceMappingURL=networkInterface.js.map