import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleLogpushDatasetField = cloudflare.getLogpushDatasetField({ * datasetId: "gateway_dns", * accountId: "account_id", * zoneId: "zone_id", * }); * ``` */ export declare function getLogpushDatasetField(args: GetLogpushDatasetFieldArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogpushDatasetField. */ export interface GetLogpushDatasetFieldArgs { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ accountId?: string; /** * Name of the dataset. A list of supported datasets can be found on the [Developer Docs](https://developers.cloudflare.com/logs/reference/log-fields/). */ datasetId: string; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zoneId?: string; } /** * A collection of values returned by getLogpushDatasetField. */ export interface GetLogpushDatasetFieldResult { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ readonly accountId?: string; /** * Name of the dataset. A list of supported datasets can be found on the [Developer Docs](https://developers.cloudflare.com/logs/reference/log-fields/). */ readonly datasetId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ readonly zoneId?: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleLogpushDatasetField = cloudflare.getLogpushDatasetField({ * datasetId: "gateway_dns", * accountId: "account_id", * zoneId: "zone_id", * }); * ``` */ export declare function getLogpushDatasetFieldOutput(args: GetLogpushDatasetFieldOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogpushDatasetField. */ export interface GetLogpushDatasetFieldOutputArgs { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ accountId?: pulumi.Input; /** * Name of the dataset. A list of supported datasets can be found on the [Developer Docs](https://developers.cloudflare.com/logs/reference/log-fields/). */ datasetId: pulumi.Input; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zoneId?: pulumi.Input; }