import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleArgoSmartRouting = cloudflare.getArgoSmartRouting({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * }); * ``` */ export declare function getArgoSmartRouting(args: GetArgoSmartRoutingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getArgoSmartRouting. */ export interface GetArgoSmartRoutingArgs { /** * Specifies the zone associated with the API call. */ zoneId: string; } /** * A collection of values returned by getArgoSmartRouting. */ export interface GetArgoSmartRoutingResult { /** * Specifies if the setting is editable. */ readonly editable: boolean; /** * Specifies the identifier of the Argo Smart Routing setting. */ readonly id: string; /** * Specifies the time when the setting was last modified. */ readonly modifiedOn: string; /** * Specifies the enablement value of Argo Smart Routing. * Available values: "on", "off". */ readonly value: string; /** * Specifies the zone associated with the API call. */ readonly zoneId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleArgoSmartRouting = cloudflare.getArgoSmartRouting({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * }); * ``` */ export declare function getArgoSmartRoutingOutput(args: GetArgoSmartRoutingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getArgoSmartRouting. */ export interface GetArgoSmartRoutingOutputArgs { /** * Specifies the zone associated with the API call. */ zoneId: pulumi.Input; }