UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

110 lines 4.2 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.serverGroupsOutput = exports.serverGroups = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of alb server groups * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * import * as volcengine from "@volcengine/pulumi"; * * const fooVpc = new volcengine.vpc.Vpc("fooVpc", { * vpcName: "acc-test-vpc", * cidrBlock: "172.16.0.0/16", * }); * const fooServerGroup: volcengine.alb.ServerGroup[] = []; * for (const range = {value: 0}; range.value < 3; range.value++) { * fooServerGroup.push(new volcengine.alb.ServerGroup(`fooServerGroup-${range.value}`, { * vpcId: fooVpc.id, * serverGroupName: `acc-test-server-group-${range.value}`, * description: "acc-test", * serverGroupType: "instance", * scheduler: "sh", * projectName: "default", * healthCheck: { * enabled: "on", * interval: 3, * timeout: 3, * method: "GET", * }, * stickySessionConfig: { * stickySessionEnabled: "on", * stickySessionType: "insert", * cookieTimeout: 1100, * }, * })); * } * const fooServerGroups = volcengine.alb.getServerGroupsOutput({ * ids: fooServerGroup.map(__item => __item.id), * }); * ``` */ /** @deprecated volcengine.alb.ServerGroups has been deprecated in favor of volcengine.alb.getServerGroups */ function serverGroups(args, opts) { pulumi.log.warn("serverGroups is deprecated: volcengine.alb.ServerGroups has been deprecated in favor of volcengine.alb.getServerGroups"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:alb/serverGroups:ServerGroups", { "ids": args.ids, "nameRegex": args.nameRegex, "outputFile": args.outputFile, "projectName": args.projectName, "serverGroupNames": args.serverGroupNames, "serverGroupType": args.serverGroupType, "tags": args.tags, "vpcId": args.vpcId, }, opts); } exports.serverGroups = serverGroups; /** * Use this data source to query detailed information of alb server groups * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * import * as volcengine from "@volcengine/pulumi"; * * const fooVpc = new volcengine.vpc.Vpc("fooVpc", { * vpcName: "acc-test-vpc", * cidrBlock: "172.16.0.0/16", * }); * const fooServerGroup: volcengine.alb.ServerGroup[] = []; * for (const range = {value: 0}; range.value < 3; range.value++) { * fooServerGroup.push(new volcengine.alb.ServerGroup(`fooServerGroup-${range.value}`, { * vpcId: fooVpc.id, * serverGroupName: `acc-test-server-group-${range.value}`, * description: "acc-test", * serverGroupType: "instance", * scheduler: "sh", * projectName: "default", * healthCheck: { * enabled: "on", * interval: 3, * timeout: 3, * method: "GET", * }, * stickySessionConfig: { * stickySessionEnabled: "on", * stickySessionType: "insert", * cookieTimeout: 1100, * }, * })); * } * const fooServerGroups = volcengine.alb.getServerGroupsOutput({ * ids: fooServerGroup.map(__item => __item.id), * }); * ``` */ /** @deprecated volcengine.alb.ServerGroups has been deprecated in favor of volcengine.alb.getServerGroups */ function serverGroupsOutput(args, opts) { return pulumi.output(args).apply((a) => serverGroups(a, opts)); } exports.serverGroupsOutput = serverGroupsOutput; //# sourceMappingURL=serverGroups.js.map