import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleSnippets = cloudflare.getSnippets({ * zoneId: "9f1839b6152d298aca64c4e906b6d074", * }); * ``` */ export declare function getSnippets(args: GetSnippetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSnippets. */ export interface GetSnippetsArgs { /** * The identifying name of the snippet. */ snippetName: string; /** * The unique ID of the zone. */ zoneId: string; } /** * A collection of values returned by getSnippets. */ export interface GetSnippetsResult { /** * The timestamp of when the snippet was created. */ readonly createdOn: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The timestamp of when the snippet was last modified. */ readonly modifiedOn: string; /** * The identifying name of the snippet. */ readonly snippetName: string; /** * The unique ID of the zone. */ readonly zoneId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleSnippets = cloudflare.getSnippets({ * zoneId: "9f1839b6152d298aca64c4e906b6d074", * }); * ``` */ export declare function getSnippetsOutput(args: GetSnippetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSnippets. */ export interface GetSnippetsOutputArgs { /** * The identifying name of the snippet. */ snippetName: pulumi.Input; /** * The unique ID of the zone. */ zoneId: pulumi.Input; }