UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

206 lines (205 loc) 6.05 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of clb rules * ## 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 fooClb = new volcengine.clb.Clb("fooClb", { * type: "public", * subnetId: fooSubnet.id, * loadBalancerSpec: "small_1", * description: "acc0Demo", * loadBalancerName: "acc-test-create", * eipBillingConfig: { * isp: "BGP", * eipBillingType: "PostPaidByBandwidth", * bandwidth: 1, * }, * }); * const fooServerGroup = new volcengine.clb.ServerGroup("fooServerGroup", { * loadBalancerId: fooClb.id, * serverGroupName: "acc-test-create", * description: "hello demo11", * }); * const fooListener = new volcengine.clb.Listener("fooListener", { * loadBalancerId: fooClb.id, * listenerName: "acc-test-listener", * protocol: "HTTP", * port: 90, * serverGroupId: fooServerGroup.id, * healthCheck: { * enabled: "on", * interval: 10, * timeout: 3, * healthyThreshold: 5, * unHealthyThreshold: 2, * domain: "volcengine.com", * httpCode: "http_2xx", * method: "GET", * uri: "/", * }, * enabled: "on", * }); * const fooRule = new volcengine.clb.Rule("fooRule", { * listenerId: fooListener.id, * serverGroupId: fooServerGroup.id, * domain: "test-volc123.com", * url: "/yyyy", * }); * const fooRules = volcengine.clb.getRulesOutput({ * ids: [fooRule.id], * listenerId: fooListener.id, * }); * ``` */ /** @deprecated volcengine.clb.Rules has been deprecated in favor of volcengine.clb.getRules */ export declare function rules(args: RulesArgs, opts?: pulumi.InvokeOptions): Promise<RulesResult>; /** * A collection of arguments for invoking Rules. */ export interface RulesArgs { /** * A list of Rule IDs. */ ids?: string[]; /** * The Id of listener. */ listenerId: string; /** * File name where to save data source results. */ outputFile?: string; /** * Tags. */ tags?: inputs.clb.RulesTag[]; } /** * A collection of values returned by Rules. */ export interface RulesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ids?: string[]; readonly listenerId: string; readonly outputFile?: string; /** * The collection of Rule query. */ readonly rules: outputs.clb.RulesRule[]; /** * Tags. */ readonly tags?: outputs.clb.RulesTag[]; } /** * Use this data source to query detailed information of clb rules * ## 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 fooClb = new volcengine.clb.Clb("fooClb", { * type: "public", * subnetId: fooSubnet.id, * loadBalancerSpec: "small_1", * description: "acc0Demo", * loadBalancerName: "acc-test-create", * eipBillingConfig: { * isp: "BGP", * eipBillingType: "PostPaidByBandwidth", * bandwidth: 1, * }, * }); * const fooServerGroup = new volcengine.clb.ServerGroup("fooServerGroup", { * loadBalancerId: fooClb.id, * serverGroupName: "acc-test-create", * description: "hello demo11", * }); * const fooListener = new volcengine.clb.Listener("fooListener", { * loadBalancerId: fooClb.id, * listenerName: "acc-test-listener", * protocol: "HTTP", * port: 90, * serverGroupId: fooServerGroup.id, * healthCheck: { * enabled: "on", * interval: 10, * timeout: 3, * healthyThreshold: 5, * unHealthyThreshold: 2, * domain: "volcengine.com", * httpCode: "http_2xx", * method: "GET", * uri: "/", * }, * enabled: "on", * }); * const fooRule = new volcengine.clb.Rule("fooRule", { * listenerId: fooListener.id, * serverGroupId: fooServerGroup.id, * domain: "test-volc123.com", * url: "/yyyy", * }); * const fooRules = volcengine.clb.getRulesOutput({ * ids: [fooRule.id], * listenerId: fooListener.id, * }); * ``` */ /** @deprecated volcengine.clb.Rules has been deprecated in favor of volcengine.clb.getRules */ export declare function rulesOutput(args: RulesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<RulesResult>; /** * A collection of arguments for invoking Rules. */ export interface RulesOutputArgs { /** * A list of Rule IDs. */ ids?: pulumi.Input<pulumi.Input<string>[]>; /** * The Id of listener. */ listenerId: pulumi.Input<string>; /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; /** * Tags. */ tags?: pulumi.Input<pulumi.Input<inputs.clb.RulesTagArgs>[]>; }