import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleCloudConnectorRules = cloudflare.getCloudConnectorRules({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * }); * ``` */ export declare function getCloudConnectorRules(args: GetCloudConnectorRulesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudConnectorRules. */ export interface GetCloudConnectorRulesArgs { /** * Identifier. */ zoneId: string; } /** * A collection of values returned by getCloudConnectorRules. */ export interface GetCloudConnectorRulesResult { /** * The ID of this resource. */ readonly id: string; readonly rules: outputs.GetCloudConnectorRulesRule[]; /** * Identifier. */ readonly zoneId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleCloudConnectorRules = cloudflare.getCloudConnectorRules({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * }); * ``` */ export declare function getCloudConnectorRulesOutput(args: GetCloudConnectorRulesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudConnectorRules. */ export interface GetCloudConnectorRulesOutputArgs { /** * Identifier. */ zoneId: pulumi.Input; }