import * as pulumi from "@pulumi/pulumi"; /** * Cloudflare Argo controls the routing to your origin and tiered caching options to speed up your website browsing experience. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const example = new cloudflare.Argo("example", { * smartRouting: "on", * tieredCaching: "on", * zoneId: "d41d8cd98f00b204e9800998ecf8427e", * }); * ``` * * ## Import * * Argo settings can be imported the zone ID. * * ```sh * $ pulumi import cloudflare:index/argo:Argo example d41d8cd98f00b204e9800998ecf8427e * ``` * * where `d41d8cd98f00b204e9800998ecf8427e` is the zone ID. */ export declare class Argo extends pulumi.CustomResource { /** * Get an existing Argo resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ArgoState, opts?: pulumi.CustomResourceOptions): Argo; /** * Returns true if the given object is an instance of Argo. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Argo; /** * Whether smart routing is enabled. Valid values: `on` or `off`. */ readonly smartRouting: pulumi.Output; /** * Whether tiered caching is enabled. Valid values: `on` or `off`. */ readonly tieredCaching: pulumi.Output; /** * The DNS zone ID that you wish to manage Argo on. */ readonly zoneId: pulumi.Output; /** * Create a Argo resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ArgoArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Argo resources. */ export interface ArgoState { /** * Whether smart routing is enabled. Valid values: `on` or `off`. */ smartRouting?: pulumi.Input; /** * Whether tiered caching is enabled. Valid values: `on` or `off`. */ tieredCaching?: pulumi.Input; /** * The DNS zone ID that you wish to manage Argo on. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a Argo resource. */ export interface ArgoArgs { /** * Whether smart routing is enabled. Valid values: `on` or `off`. */ smartRouting?: pulumi.Input; /** * Whether tiered caching is enabled. Valid values: `on` or `off`. */ tieredCaching?: pulumi.Input; /** * The DNS zone ID that you wish to manage Argo on. */ zoneId: pulumi.Input; }