@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
159 lines • 6.31 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.ApigGatewayService = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage apig gateway 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 foo1 = new volcengine.vpc.Subnet("foo1", {
* subnetName: "acc-test-subnet",
* cidrBlock: "172.16.0.0/24",
* zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
* vpcId: fooVpc.id,
* });
* const foo2 = new volcengine.vpc.Subnet("foo2", {
* subnetName: "acc-test-subnet",
* cidrBlock: "172.16.1.0/24",
* zoneId: fooZones.then(fooZones => fooZones.zones?.[1]?.id),
* vpcId: fooVpc.id,
* });
* const fooApigGateway = new volcengine.apig.ApigGateway("fooApigGateway", {
* type: "standard",
* comments: "acc-test",
* projectName: "default",
* tags: [{
* key: "k1",
* value: "v1",
* }],
* networkSpec: {
* vpcId: fooVpc.id,
* subnetIds: [
* foo1.id,
* foo2.id,
* ],
* },
* resourceSpec: {
* replicas: 2,
* instanceSpecCode: "1c2g",
* clbSpecCode: "small_1",
* publicNetworkBillingType: "bandwidth",
* publicNetworkBandwidth: 1,
* networkType: {
* enablePublicNetwork: true,
* enablePrivateNetwork: true,
* },
* },
* logSpec: {
* enable: true,
* projectId: "d3cb87c0-faeb-4074-b1ee-9bd747865a76",
* topicId: "d339482e-d86d-4bd8-a9bb-f270417f00a1",
* },
* monitorSpec: {
* enable: true,
* workspaceId: "4ed1caf3-279d-4c5f-8301-87ea38e92ffc",
* },
* });
* const fooApigGatewayService = new volcengine.apig.ApigGatewayService("fooApigGatewayService", {
* gatewayId: fooApigGateway.id,
* serviceName: "acc-test-apig-service",
* comments: "acc-test",
* protocols: [
* "HTTP",
* "HTTPS",
* ],
* authSpec: {
* enable: false,
* },
* });
* ```
*
* ## Import
*
* ApigGatewayService can be imported using the id, e.g.
*
* ```sh
* $ pulumi import volcengine:apig/apigGatewayService:ApigGatewayService default resource_id
* ```
*/
class ApigGatewayService extends pulumi.CustomResource {
/**
* Get an existing ApigGatewayService 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 ApigGatewayService(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of ApigGatewayService. 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'] === ApigGatewayService.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["authSpec"] = state ? state.authSpec : undefined;
resourceInputs["comments"] = state ? state.comments : undefined;
resourceInputs["createTime"] = state ? state.createTime : undefined;
resourceInputs["gatewayId"] = state ? state.gatewayId : undefined;
resourceInputs["message"] = state ? state.message : undefined;
resourceInputs["protocols"] = state ? state.protocols : undefined;
resourceInputs["serviceName"] = state ? state.serviceName : undefined;
resourceInputs["status"] = state ? state.status : undefined;
}
else {
const args = argsOrState;
if ((!args || args.authSpec === undefined) && !opts.urn) {
throw new Error("Missing required property 'authSpec'");
}
if ((!args || args.gatewayId === undefined) && !opts.urn) {
throw new Error("Missing required property 'gatewayId'");
}
if ((!args || args.protocols === undefined) && !opts.urn) {
throw new Error("Missing required property 'protocols'");
}
if ((!args || args.serviceName === undefined) && !opts.urn) {
throw new Error("Missing required property 'serviceName'");
}
resourceInputs["authSpec"] = args ? args.authSpec : undefined;
resourceInputs["comments"] = args ? args.comments : undefined;
resourceInputs["gatewayId"] = args ? args.gatewayId : undefined;
resourceInputs["protocols"] = args ? args.protocols : undefined;
resourceInputs["serviceName"] = args ? args.serviceName : undefined;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["message"] = undefined /*out*/;
resourceInputs["status"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(ApigGatewayService.__pulumiType, name, resourceInputs, opts);
}
}
exports.ApigGatewayService = ApigGatewayService;
/** @internal */
ApigGatewayService.__pulumiType = 'volcengine:apig/apigGatewayService:ApigGatewayService';
//# sourceMappingURL=apigGatewayService.js.map