import * as pulumi from "@pulumi/pulumi";
/**
 * Represents an instance of an Event Threat Detection custom module, including
 * its full module name, display name, enablement state, andlast updated time.
 * You can create a custom module at the organization level only.
 *
 * To get more information about EventThreatDetectionCustomModule, see:
 *
 * * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v1/organizations.eventThreatDetectionSettings.customModules)
 * * How-to Guides
 *     * [Overview of custom modules for Event Threat Detection](https://cloud.google.com/security-command-center/docs/custom-modules-etd-overview)
 *
 * ## Example Usage
 *
 * ### Scc Event Threat Detection Custom Module
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 *
 * const example = new gcp.securitycenter.EventThreatDetectionCustomModule("example", {
 *     organization: "123456789",
 *     displayName: "basic_custom_module",
 *     enablementState: "ENABLED",
 *     type: "CONFIGURABLE_BAD_IP",
 *     description: "My Event Threat Detection Custom Module",
 *     config: JSON.stringify({
 *         metadata: {
 *             severity: "LOW",
 *             description: "Flagged by Forcepoint as malicious",
 *             recommendation: "Contact the owner of the relevant project.",
 *         },
 *         ips: [
 *             "192.0.2.1",
 *             "192.0.2.0/24",
 *         ],
 *     }),
 * });
 * ```
 *
 * ## Import
 *
 * EventThreatDetectionCustomModule can be imported using any of these accepted formats:
 *
 * * `organizations/{{organization}}/eventThreatDetectionSettings/customModules/{{name}}`
 * * `{{organization}}/{{name}}`
 *
 * When using the `pulumi import` command, EventThreatDetectionCustomModule can be imported using one of the formats above. For example:
 *
 * ```sh
 * $ pulumi import gcp:securitycenter/eventThreatDetectionCustomModule:EventThreatDetectionCustomModule default organizations/{{organization}}/eventThreatDetectionSettings/customModules/{{name}}
 * $ pulumi import gcp:securitycenter/eventThreatDetectionCustomModule:EventThreatDetectionCustomModule default {{organization}}/{{name}}
 * ```
 */
export declare class EventThreatDetectionCustomModule extends pulumi.CustomResource {
    /**
     * Get an existing EventThreatDetectionCustomModule 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?: EventThreatDetectionCustomModuleState, opts?: pulumi.CustomResourceOptions): EventThreatDetectionCustomModule;
    /**
     * Returns true if the given object is an instance of EventThreatDetectionCustomModule.  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 EventThreatDetectionCustomModule;
    /**
     * Config for the module. For the resident module, its config value is defined at this level.
     * For the inherited module, its config value is inherited from the ancestor module.
     */
    readonly config: pulumi.Output<string>;
    /**
     * Whether Terraform will be prevented from destroying the resource. Defaults to DELETE.
     * When a 'terraform destroy' or 'pulumi up' would delete the resource,
     * the command will fail if this field is set to "PREVENT" in Terraform state.
     * When set to "ABANDON", the command will remove the resource from Terraform
     * management without updating or deleting the resource in the API.
     * When set to "DELETE", deleting the resource is allowed.
     */
    readonly deletionPolicy: pulumi.Output<string>;
    /**
     * The human readable name to be displayed for the module.
     */
    readonly displayName: pulumi.Output<string | undefined>;
    /**
     * The state of enablement for the module at the given level of the hierarchy.
     * Possible values are: `ENABLED`, `DISABLED`.
     */
    readonly enablementState: pulumi.Output<string>;
    /**
     * The editor that last updated the custom module
     */
    readonly lastEditor: pulumi.Output<string>;
    /**
     * The resource name of the Event Threat Detection custom module.
     * Its format is "organizations/{organization}/eventThreatDetectionSettings/customModules/{module}".
     */
    readonly name: pulumi.Output<string>;
    /**
     * Numerical ID of the parent organization.
     */
    readonly organization: pulumi.Output<string>;
    /**
     * Immutable. Type for the module. e.g. CONFIGURABLE_BAD_IP.
     */
    readonly type: pulumi.Output<string>;
    /**
     * The time at which the custom module was last updated.
     * A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and
     * up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
     */
    readonly updateTime: pulumi.Output<string>;
    /**
     * Create a EventThreatDetectionCustomModule 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: EventThreatDetectionCustomModuleArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering EventThreatDetectionCustomModule resources.
 */
export interface EventThreatDetectionCustomModuleState {
    /**
     * Config for the module. For the resident module, its config value is defined at this level.
     * For the inherited module, its config value is inherited from the ancestor module.
     */
    config?: pulumi.Input<string | undefined>;
    /**
     * Whether Terraform will be prevented from destroying the resource. Defaults to DELETE.
     * When a 'terraform destroy' or 'pulumi up' would delete the resource,
     * the command will fail if this field is set to "PREVENT" in Terraform state.
     * When set to "ABANDON", the command will remove the resource from Terraform
     * management without updating or deleting the resource in the API.
     * When set to "DELETE", deleting the resource is allowed.
     */
    deletionPolicy?: pulumi.Input<string | undefined>;
    /**
     * The human readable name to be displayed for the module.
     */
    displayName?: pulumi.Input<string | undefined>;
    /**
     * The state of enablement for the module at the given level of the hierarchy.
     * Possible values are: `ENABLED`, `DISABLED`.
     */
    enablementState?: pulumi.Input<string | undefined>;
    /**
     * The editor that last updated the custom module
     */
    lastEditor?: pulumi.Input<string | undefined>;
    /**
     * The resource name of the Event Threat Detection custom module.
     * Its format is "organizations/{organization}/eventThreatDetectionSettings/customModules/{module}".
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * Numerical ID of the parent organization.
     */
    organization?: pulumi.Input<string | undefined>;
    /**
     * Immutable. Type for the module. e.g. CONFIGURABLE_BAD_IP.
     */
    type?: pulumi.Input<string | undefined>;
    /**
     * The time at which the custom module was last updated.
     * A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and
     * up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
     */
    updateTime?: pulumi.Input<string | undefined>;
}
/**
 * The set of arguments for constructing a EventThreatDetectionCustomModule resource.
 */
export interface EventThreatDetectionCustomModuleArgs {
    /**
     * Config for the module. For the resident module, its config value is defined at this level.
     * For the inherited module, its config value is inherited from the ancestor module.
     */
    config: pulumi.Input<string>;
    /**
     * Whether Terraform will be prevented from destroying the resource. Defaults to DELETE.
     * When a 'terraform destroy' or 'pulumi up' would delete the resource,
     * the command will fail if this field is set to "PREVENT" in Terraform state.
     * When set to "ABANDON", the command will remove the resource from Terraform
     * management without updating or deleting the resource in the API.
     * When set to "DELETE", deleting the resource is allowed.
     */
    deletionPolicy?: pulumi.Input<string | undefined>;
    /**
     * The human readable name to be displayed for the module.
     */
    displayName?: pulumi.Input<string | undefined>;
    /**
     * The state of enablement for the module at the given level of the hierarchy.
     * Possible values are: `ENABLED`, `DISABLED`.
     */
    enablementState: pulumi.Input<string>;
    /**
     * Numerical ID of the parent organization.
     */
    organization: pulumi.Input<string>;
    /**
     * Immutable. Type for the module. e.g. CONFIGURABLE_BAD_IP.
     */
    type: pulumi.Input<string>;
}
//# sourceMappingURL=eventThreatDetectionCustomModule.d.ts.map