import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Rule Set resource in Oracle Cloud Infrastructure Load Balancer service. * * Gets the specified set of rules. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRuleSet = oci.loadbalancer.getRuleSet({ * loadBalancerId: testLoadBalancer.id, * name: ruleSetName, * }); * ``` */ export declare function getRuleSet(args: GetRuleSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRuleSet. */ export interface GetRuleSetArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the specified load balancer. */ loadBalancerId: string; /** * The name of the rule set to retrieve. Example: `exampleRuleSet` */ name: string; } /** * A collection of values returned by getRuleSet. */ export interface GetRuleSetResult { readonly id: string; /** * An array of rules that compose the rule set. */ readonly items: outputs.LoadBalancer.GetRuleSetItem[]; readonly loadBalancerId: string; /** * The name for this set of rules. It must be unique and it cannot be changed. Avoid entering confidential information. Example: `exampleRuleSet` */ readonly name: string; readonly state: string; } /** * This data source provides details about a specific Rule Set resource in Oracle Cloud Infrastructure Load Balancer service. * * Gets the specified set of rules. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRuleSet = oci.loadbalancer.getRuleSet({ * loadBalancerId: testLoadBalancer.id, * name: ruleSetName, * }); * ``` */ export declare function getRuleSetOutput(args: GetRuleSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRuleSet. */ export interface GetRuleSetOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the specified load balancer. */ loadBalancerId: pulumi.Input; /** * The name of the rule set to retrieve. Example: `exampleRuleSet` */ name: pulumi.Input; } //# sourceMappingURL=getRuleSet.d.ts.map