@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
85 lines • 4.23 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.RouteEntry = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage cen route entry
* ## Import
*
* CenRouteEntry can be imported using the CenId:DestinationCidrBlock:InstanceId:InstanceType:InstanceRegionId, e.g.
*
* ```sh
* $ pulumi import volcengine:cen/routeEntry:RouteEntry default cen-2nim00ybaylts7trquyzt****:100.XX.XX.0/24:vpc-vtbnbb04qw3k2hgi12cv****:VPC:cn-beijing
* ```
*/
class RouteEntry extends pulumi.CustomResource {
/**
* Get an existing RouteEntry 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 RouteEntry(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of RouteEntry. 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'] === RouteEntry.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["asPaths"] = state ? state.asPaths : undefined;
resourceInputs["cenId"] = state ? state.cenId : undefined;
resourceInputs["destinationCidrBlock"] = state ? state.destinationCidrBlock : undefined;
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
resourceInputs["instanceRegionId"] = state ? state.instanceRegionId : undefined;
resourceInputs["instanceType"] = state ? state.instanceType : undefined;
resourceInputs["publishStatus"] = state ? state.publishStatus : undefined;
resourceInputs["status"] = state ? state.status : undefined;
}
else {
const args = argsOrState;
if ((!args || args.cenId === undefined) && !opts.urn) {
throw new Error("Missing required property 'cenId'");
}
if ((!args || args.destinationCidrBlock === undefined) && !opts.urn) {
throw new Error("Missing required property 'destinationCidrBlock'");
}
if ((!args || args.instanceId === undefined) && !opts.urn) {
throw new Error("Missing required property 'instanceId'");
}
if ((!args || args.instanceRegionId === undefined) && !opts.urn) {
throw new Error("Missing required property 'instanceRegionId'");
}
resourceInputs["cenId"] = args ? args.cenId : undefined;
resourceInputs["destinationCidrBlock"] = args ? args.destinationCidrBlock : undefined;
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
resourceInputs["instanceRegionId"] = args ? args.instanceRegionId : undefined;
resourceInputs["instanceType"] = args ? args.instanceType : undefined;
resourceInputs["asPaths"] = undefined /*out*/;
resourceInputs["publishStatus"] = undefined /*out*/;
resourceInputs["status"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(RouteEntry.__pulumiType, name, resourceInputs, opts);
}
}
exports.RouteEntry = RouteEntry;
/** @internal */
RouteEntry.__pulumiType = 'volcengine:cen/routeEntry:RouteEntry';
//# sourceMappingURL=routeEntry.js.map