import * as pulumi from "@pulumi/pulumi";
/**
 * Provides a resource to manage kafka allow list associate
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooAllowList = new volcengine.kafka.AllowList("fooAllowList", {
 *     allowLists: [
 *         "192.168.0.1",
 *         "10.32.55.66",
 *         "10.22.55.66",
 *     ],
 *     allowListName: "tf-test",
 * });
 * const fooAllowListAssociate = new volcengine.kafka.AllowListAssociate("fooAllowListAssociate", {
 *     allowListId: fooAllowList.id,
 *     instanceId: "kafka-cnoex9j4un63uqjr",
 * });
 * ```
 *
 * ## Import
 *
 * KafkaAllowListAssociate can be imported using the id, e.g.
 *
 * ```sh
 * $ pulumi import volcengine:kafka/allowListAssociate:AllowListAssociate default kafka-cnitzqgn**:acl-d1fd76693bd54e658912e7337d5b****
 * ```
 */
export declare class AllowListAssociate extends pulumi.CustomResource {
    /**
     * Get an existing AllowListAssociate 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?: AllowListAssociateState, opts?: pulumi.CustomResourceOptions): AllowListAssociate;
    /**
     * Returns true if the given object is an instance of AllowListAssociate.  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 AllowListAssociate;
    /**
     * The id of the allow list.
     */
    readonly allowListId: pulumi.Output<string>;
    /**
     * The id of the kafka instance.
     */
    readonly instanceId: pulumi.Output<string>;
    /**
     * Create a AllowListAssociate 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: AllowListAssociateArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering AllowListAssociate resources.
 */
export interface AllowListAssociateState {
    /**
     * The id of the allow list.
     */
    allowListId?: pulumi.Input<string>;
    /**
     * The id of the kafka instance.
     */
    instanceId?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a AllowListAssociate resource.
 */
export interface AllowListAssociateArgs {
    /**
     * The id of the allow list.
     */
    allowListId: pulumi.Input<string>;
    /**
     * The id of the kafka instance.
     */
    instanceId: pulumi.Input<string>;
}
