import * as pulumi from "@pulumi/pulumi";
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as sumologic from "@pulumi/sumologic";
 *
 * const inventoryEntityGroupConfiguration = new sumologic.CseInventoryEntityGroupConfiguration("inventory_entity_group_configuration", {
 *     criticality: "HIGH",
 *     description: "Inventory entity group description",
 *     inventoryType: "username",
 *     inventorySource: "Active Directory",
 *     inventoryKey: "groups",
 *     inventoryValue: "http_servers",
 *     name: "Inventory entity group configuration",
 *     suppressed: false,
 *     tags: ["tag"],
 * });
 * ```
 *
 * ## Import
 *
 * Inventory Entity Group Configuration can be imported using the field id, e.g.:
 *
 * hcl
 *
 * ```sh
 * $ pulumi import sumologic:index/cseInventoryEntityGroupConfiguration:CseInventoryEntityGroupConfiguration inventory_entity_group_configuration id
 * ```
 */
export declare class CseInventoryEntityGroupConfiguration extends pulumi.CustomResource {
    /**
     * Get an existing CseInventoryEntityGroupConfiguration 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?: CseInventoryEntityGroupConfigurationState, opts?: pulumi.CustomResourceOptions): CseInventoryEntityGroupConfiguration;
    /**
     * Returns true if the given object is an instance of CseInventoryEntityGroupConfiguration.  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 CseInventoryEntityGroupConfiguration;
    /**
     * The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
     */
    readonly criticality: pulumi.Output<string | undefined>;
    /**
     * The entity group configuration description.
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * If dynamic tags are enabled for configuration.
     */
    readonly dynamicTags: pulumi.Output<boolean | undefined>;
    /**
     * (Deprecated) The entity group configuration inventory group. The field `group` is deprecated and will be removed in a future release of the provider -- please make usage of `inventoryKey`, `inventoryValue`  instead.
     *
     * @deprecated The field `group` is deprecated and will be removed in a future release of the provider -- please make usage of `inventoryKey`, `inventoryValue` instead.
     */
    readonly group: pulumi.Output<string | undefined>;
    /**
     * The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
     */
    readonly inventoryKey: pulumi.Output<string | undefined>;
    /**
     * The inventory source Examples: "Active Directory", "Okta".
     */
    readonly inventorySource: pulumi.Output<string>;
    /**
     * The inventory type Examples: "computer", "username".
     */
    readonly inventoryType: pulumi.Output<string>;
    /**
     * The inventory value to match.
     */
    readonly inventoryValue: pulumi.Output<string | undefined>;
    /**
     * The entity group configuration name.
     */
    readonly name: pulumi.Output<string>;
    readonly suppressed: pulumi.Output<boolean | undefined>;
    /**
     * The tag schema to be used for dynamic tags.
     */
    readonly tagSchema: pulumi.Output<string | undefined>;
    /**
     * The entity group configuration tags list.
     *
     * The following attributes are exported:
     */
    readonly tags: pulumi.Output<string[] | undefined>;
    /**
     * Create a CseInventoryEntityGroupConfiguration 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: CseInventoryEntityGroupConfigurationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering CseInventoryEntityGroupConfiguration resources.
 */
export interface CseInventoryEntityGroupConfigurationState {
    /**
     * The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
     */
    criticality?: pulumi.Input<string>;
    /**
     * The entity group configuration description.
     */
    description?: pulumi.Input<string>;
    /**
     * If dynamic tags are enabled for configuration.
     */
    dynamicTags?: pulumi.Input<boolean>;
    /**
     * (Deprecated) The entity group configuration inventory group. The field `group` is deprecated and will be removed in a future release of the provider -- please make usage of `inventoryKey`, `inventoryValue`  instead.
     *
     * @deprecated The field `group` is deprecated and will be removed in a future release of the provider -- please make usage of `inventoryKey`, `inventoryValue` instead.
     */
    group?: pulumi.Input<string>;
    /**
     * The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
     */
    inventoryKey?: pulumi.Input<string>;
    /**
     * The inventory source Examples: "Active Directory", "Okta".
     */
    inventorySource?: pulumi.Input<string>;
    /**
     * The inventory type Examples: "computer", "username".
     */
    inventoryType?: pulumi.Input<string>;
    /**
     * The inventory value to match.
     */
    inventoryValue?: pulumi.Input<string>;
    /**
     * The entity group configuration name.
     */
    name?: pulumi.Input<string>;
    suppressed?: pulumi.Input<boolean>;
    /**
     * The tag schema to be used for dynamic tags.
     */
    tagSchema?: pulumi.Input<string>;
    /**
     * The entity group configuration tags list.
     *
     * The following attributes are exported:
     */
    tags?: pulumi.Input<pulumi.Input<string>[]>;
}
/**
 * The set of arguments for constructing a CseInventoryEntityGroupConfiguration resource.
 */
export interface CseInventoryEntityGroupConfigurationArgs {
    /**
     * The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
     */
    criticality?: pulumi.Input<string>;
    /**
     * The entity group configuration description.
     */
    description?: pulumi.Input<string>;
    /**
     * If dynamic tags are enabled for configuration.
     */
    dynamicTags?: pulumi.Input<boolean>;
    /**
     * (Deprecated) The entity group configuration inventory group. The field `group` is deprecated and will be removed in a future release of the provider -- please make usage of `inventoryKey`, `inventoryValue`  instead.
     *
     * @deprecated The field `group` is deprecated and will be removed in a future release of the provider -- please make usage of `inventoryKey`, `inventoryValue` instead.
     */
    group?: pulumi.Input<string>;
    /**
     * The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
     */
    inventoryKey?: pulumi.Input<string>;
    /**
     * The inventory source Examples: "Active Directory", "Okta".
     */
    inventorySource: pulumi.Input<string>;
    /**
     * The inventory type Examples: "computer", "username".
     */
    inventoryType: pulumi.Input<string>;
    /**
     * The inventory value to match.
     */
    inventoryValue?: pulumi.Input<string>;
    /**
     * The entity group configuration name.
     */
    name?: pulumi.Input<string>;
    suppressed?: pulumi.Input<boolean>;
    /**
     * The tag schema to be used for dynamic tags.
     */
    tagSchema?: pulumi.Input<string>;
    /**
     * The entity group configuration tags list.
     *
     * The following attributes are exported:
     */
    tags?: pulumi.Input<pulumi.Input<string>[]>;
}
