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 exampleSchemaValidationSchemasList = cloudflare.getSchemaValidationSchemasList({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * validationEnabled: true, * }); * ``` */ export declare function getSchemaValidationSchemasList(args: GetSchemaValidationSchemasListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSchemaValidationSchemasList. */ export interface GetSchemaValidationSchemasListArgs { /** * Max items to fetch, default: 1000 */ maxItems?: number; /** * Omit the source-files of schemas and only retrieve their meta-data. */ omitSource?: boolean; /** * Filter for enabled schemas */ validationEnabled?: boolean; /** * Identifier. */ zoneId: string; } /** * A collection of values returned by getSchemaValidationSchemasList. */ export interface GetSchemaValidationSchemasListResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Max items to fetch, default: 1000 */ readonly maxItems?: number; /** * Omit the source-files of schemas and only retrieve their meta-data. */ readonly omitSource: boolean; /** * The items returned by the data source */ readonly results: outputs.GetSchemaValidationSchemasListResult[]; /** * Filter for enabled schemas */ readonly validationEnabled?: boolean; /** * Identifier. */ readonly zoneId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleSchemaValidationSchemasList = cloudflare.getSchemaValidationSchemasList({ * zoneId: "023e105f4ecef8ad9ca31a8372d0c353", * validationEnabled: true, * }); * ``` */ export declare function getSchemaValidationSchemasListOutput(args: GetSchemaValidationSchemasListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSchemaValidationSchemasList. */ export interface GetSchemaValidationSchemasListOutputArgs { /** * Max items to fetch, default: 1000 */ maxItems?: pulumi.Input; /** * Omit the source-files of schemas and only retrieve their meta-data. */ omitSource?: pulumi.Input; /** * Filter for enabled schemas */ validationEnabled?: pulumi.Input; /** * Identifier. */ zoneId: pulumi.Input; }