@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
107 lines • 5.45 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.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 "@volcengine/pulumi";
*
* const foo = new volcengine.vpc.NetworkInterface("foo", {
* description: "tf-test-up",
* networkInterfaceName: "tf-test-up",
* portSecurityEnabled: false,
* primaryIpAddress: "192.168.5.253",
* privateIpAddresses: ["192.168.5.2"],
* projectName: "default",
* securityGroupIds: ["sg-2fepz3c793g1s59gp67y21r34"],
* subnetId: "subnet-2fe79j7c8o5c059gp68ksxr93",
* });
* ```
*
* ## 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