import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSnippetList(args: GetSnippetListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSnippetList. */ export interface GetSnippetListArgs { /** * Max items to fetch, default: 1000 */ maxItems?: number; /** * The unique ID of the zone. */ zoneId: string; } /** * A collection of values returned by getSnippetList. */ export interface GetSnippetListResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Max items to fetch, default: 1000 */ readonly maxItems?: number; /** * The items returned by the data source */ readonly results: outputs.GetSnippetListResult[]; /** * The unique ID of the zone. */ readonly zoneId: string; } export declare function getSnippetListOutput(args: GetSnippetListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSnippetList. */ export interface GetSnippetListOutputArgs { /** * Max items to fetch, default: 1000 */ maxItems?: pulumi.Input; /** * The unique ID of the zone. */ zoneId: pulumi.Input; }