UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

191 lines (190 loc) 5.62 kB
import * as pulumi from "@pulumi/pulumi"; 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, * }); * ``` */ export declare function getRules(args: GetRulesArgs, opts?: pulumi.InvokeOptions): Promise<GetRulesResult>; /** * A collection of arguments for invoking getRules. */ export interface GetRulesArgs { /** * A list of Rule IDs. */ ids?: string[]; /** * The Id of listener. */ listenerId: string; /** * File name where to save data source results. */ outputFile?: string; } /** * A collection of values returned by getRules. */ export interface GetRulesResult { /** * 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.GetRulesRule[]; } /** * 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, * }); * ``` */ export declare function getRulesOutput(args: GetRulesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRulesResult>; /** * A collection of arguments for invoking getRules. */ export interface GetRulesOutputArgs { /** * 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>; }