import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
 * Provides a `Sumologic GCP Metrics Source`
 *
 * __IMPORTANT:__ The Service Account parameters (including private key) are stored in plain-text in the state. This is a potential security issue.
 *
 * ## Import
 *
 * GCP Metrics sources can be imported using the collector and source IDs (`collector/source`), e.g.:
 *
 * hcl
 *
 * ```sh
 * $ pulumi import sumologic:index/gcpMetricsSource:GcpMetricsSource test 123/456
 * ```
 *
 * GCP Metrics sources can be imported using the collector name and source name (`collectorName/sourceName`), e.g.:
 *
 * hcl
 *
 * ```sh
 * $ pulumi import sumologic:index/gcpMetricsSource:GcpMetricsSource test my-test-collector/my-test-source
 * ```
 *
 * [1]: https://help.sumologic.com/Send_Data/Sources/03Use_JSON_to_Configure_Sources/JSON_Parameters_for_Hosted_Sources
 */
export declare class GcpMetricsSource extends pulumi.CustomResource {
    /**
     * Get an existing GcpMetricsSource 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<pulumi.ID>, state?: GcpMetricsSourceState, opts?: pulumi.CustomResourceOptions): GcpMetricsSource;
    /**
     * Returns true if the given object is an instance of GcpMetricsSource.  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 GcpMetricsSource;
    /**
     * Authentication details for connecting to the  GCP Monitoring using serviceAccount credentials.
     */
    readonly authentication: pulumi.Output<outputs.GcpMetricsSourceAuthentication>;
    readonly automaticDateParsing: pulumi.Output<boolean | undefined>;
    readonly category: pulumi.Output<string | undefined>;
    readonly collectorId: pulumi.Output<number>;
    /**
     * The content-type of the collected data. Details can be found in the [Sumologic documentation for hosted sources](https://help.sumologic.com/Send_Data/Sources/03Use_JSON_to_Configure_Sources/JSON_Parameters_for_Hosted_Sources).
     */
    readonly contentType: pulumi.Output<string>;
    readonly cutoffRelativeTime: pulumi.Output<string | undefined>;
    readonly cutoffTimestamp: pulumi.Output<number | undefined>;
    readonly defaultDateFormats: pulumi.Output<outputs.GcpMetricsSourceDefaultDateFormat[] | undefined>;
    readonly description: pulumi.Output<string | undefined>;
    readonly fields: pulumi.Output<{
        [key: string]: string;
    } | undefined>;
    readonly filters: pulumi.Output<outputs.GcpMetricsSourceFilter[] | undefined>;
    readonly forceTimezone: pulumi.Output<boolean | undefined>;
    readonly hashAlgorithm: pulumi.Output<string | undefined>;
    readonly hostName: pulumi.Output<string | undefined>;
    readonly manualPrefixRegexp: pulumi.Output<string | undefined>;
    readonly multilineProcessingEnabled: pulumi.Output<boolean | undefined>;
    readonly name: pulumi.Output<string>;
    /**
     * Details about what data to ingest
     */
    readonly path: pulumi.Output<outputs.GcpMetricsSourcePath>;
    /**
     * When set to true, the scanner is paused. To disable, set to false.
     */
    readonly paused: pulumi.Output<boolean | undefined>;
    /**
     * Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
     */
    readonly scanInterval: pulumi.Output<number | undefined>;
    readonly timezone: pulumi.Output<string | undefined>;
    readonly url: pulumi.Output<string>;
    readonly useAutolineMatching: pulumi.Output<boolean | undefined>;
    /**
     * Create a GcpMetricsSource 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: GcpMetricsSourceArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering GcpMetricsSource resources.
 */
export interface GcpMetricsSourceState {
    /**
     * Authentication details for connecting to the  GCP Monitoring using serviceAccount credentials.
     */
    authentication?: pulumi.Input<inputs.GcpMetricsSourceAuthentication>;
    automaticDateParsing?: pulumi.Input<boolean>;
    category?: pulumi.Input<string>;
    collectorId?: pulumi.Input<number>;
    /**
     * The content-type of the collected data. Details can be found in the [Sumologic documentation for hosted sources](https://help.sumologic.com/Send_Data/Sources/03Use_JSON_to_Configure_Sources/JSON_Parameters_for_Hosted_Sources).
     */
    contentType?: pulumi.Input<string>;
    cutoffRelativeTime?: pulumi.Input<string>;
    cutoffTimestamp?: pulumi.Input<number>;
    defaultDateFormats?: pulumi.Input<pulumi.Input<inputs.GcpMetricsSourceDefaultDateFormat>[]>;
    description?: pulumi.Input<string>;
    fields?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
    filters?: pulumi.Input<pulumi.Input<inputs.GcpMetricsSourceFilter>[]>;
    forceTimezone?: pulumi.Input<boolean>;
    hashAlgorithm?: pulumi.Input<string>;
    hostName?: pulumi.Input<string>;
    manualPrefixRegexp?: pulumi.Input<string>;
    multilineProcessingEnabled?: pulumi.Input<boolean>;
    name?: pulumi.Input<string>;
    /**
     * Details about what data to ingest
     */
    path?: pulumi.Input<inputs.GcpMetricsSourcePath>;
    /**
     * When set to true, the scanner is paused. To disable, set to false.
     */
    paused?: pulumi.Input<boolean>;
    /**
     * Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
     */
    scanInterval?: pulumi.Input<number>;
    timezone?: pulumi.Input<string>;
    url?: pulumi.Input<string>;
    useAutolineMatching?: pulumi.Input<boolean>;
}
/**
 * The set of arguments for constructing a GcpMetricsSource resource.
 */
export interface GcpMetricsSourceArgs {
    /**
     * Authentication details for connecting to the  GCP Monitoring using serviceAccount credentials.
     */
    authentication: pulumi.Input<inputs.GcpMetricsSourceAuthentication>;
    automaticDateParsing?: pulumi.Input<boolean>;
    category?: pulumi.Input<string>;
    collectorId: pulumi.Input<number>;
    /**
     * The content-type of the collected data. Details can be found in the [Sumologic documentation for hosted sources](https://help.sumologic.com/Send_Data/Sources/03Use_JSON_to_Configure_Sources/JSON_Parameters_for_Hosted_Sources).
     */
    contentType: pulumi.Input<string>;
    cutoffRelativeTime?: pulumi.Input<string>;
    cutoffTimestamp?: pulumi.Input<number>;
    defaultDateFormats?: pulumi.Input<pulumi.Input<inputs.GcpMetricsSourceDefaultDateFormat>[]>;
    description?: pulumi.Input<string>;
    fields?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
    filters?: pulumi.Input<pulumi.Input<inputs.GcpMetricsSourceFilter>[]>;
    forceTimezone?: pulumi.Input<boolean>;
    hashAlgorithm?: pulumi.Input<string>;
    hostName?: pulumi.Input<string>;
    manualPrefixRegexp?: pulumi.Input<string>;
    multilineProcessingEnabled?: pulumi.Input<boolean>;
    name?: pulumi.Input<string>;
    /**
     * Details about what data to ingest
     */
    path: pulumi.Input<inputs.GcpMetricsSourcePath>;
    /**
     * When set to true, the scanner is paused. To disable, set to false.
     */
    paused?: pulumi.Input<boolean>;
    /**
     * Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
     */
    scanInterval?: pulumi.Input<number>;
    timezone?: pulumi.Input<string>;
    useAutolineMatching?: pulumi.Input<boolean>;
}
