import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Rule Sets in Oracle Cloud Infrastructure Load Balancer service. * * Lists all rule sets associated with the specified load balancer. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRuleSets = oci.loadbalancer.getRuleSets({ * loadBalancerId: testLoadBalancer.id, * }); * ``` */ export declare function getRuleSets(args: GetRuleSetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRuleSets. */ export interface GetRuleSetsArgs { filters?: inputs.LoadBalancer.GetRuleSetsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the specified load balancer. */ loadBalancerId: string; } /** * A collection of values returned by getRuleSets. */ export interface GetRuleSetsResult { readonly filters?: outputs.LoadBalancer.GetRuleSetsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly loadBalancerId: string; /** * The list of rule_sets. */ readonly ruleSets: outputs.LoadBalancer.GetRuleSetsRuleSet[]; } /** * This data source provides the list of Rule Sets in Oracle Cloud Infrastructure Load Balancer service. * * Lists all rule sets associated with the specified load balancer. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRuleSets = oci.loadbalancer.getRuleSets({ * loadBalancerId: testLoadBalancer.id, * }); * ``` */ export declare function getRuleSetsOutput(args: GetRuleSetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRuleSets. */ export interface GetRuleSetsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the specified load balancer. */ loadBalancerId: pulumi.Input; } //# sourceMappingURL=getRuleSets.d.ts.map