import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Provides a resource to manage rds mysql parameter template
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const foo = new volcengine.rds_mysql.ParameterTemplate("foo", {
 *     templateDesc: "test",
 *     templateName: "test",
 *     templateParams: [{
 *         name: "auto_increment_increment",
 *         runningValue: "1",
 *     }],
 *     templateType: "Mysql",
 *     templateTypeVersion: "MySQL_8_0",
 * });
 * ```
 *
 * ## Import
 *
 * RdsMysqlParameterTemplate can be imported using the id, e.g.
 *
 * ```sh
 * $ pulumi import volcengine:rds_mysql/parameterTemplate:ParameterTemplate default resource_id
 * ```
 */
export declare class ParameterTemplate extends pulumi.CustomResource {
    /**
     * Get an existing ParameterTemplate 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?: ParameterTemplateState, opts?: pulumi.CustomResourceOptions): ParameterTemplate;
    /**
     * Returns true if the given object is an instance of ParameterTemplate.  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 ParameterTemplate;
    /**
     * Parameter template description.
     */
    readonly templateDesc: pulumi.Output<string | undefined>;
    /**
     * Parameter template name.
     */
    readonly templateName: pulumi.Output<string>;
    /**
     * Parameters contained in the parameter template.
     */
    readonly templateParams: pulumi.Output<outputs.rds_mysql.ParameterTemplateTemplateParam[]>;
    /**
     * Database type of parameter template. The default value is Mysql.
     */
    readonly templateType: pulumi.Output<string>;
    /**
     * Database version of parameter template. Value range:
     * MySQL_5_7: Default value. MySQL 5.7 version.
     * MySQL_8_0: MySQL 8.0 version.
     */
    readonly templateTypeVersion: pulumi.Output<string>;
    /**
     * Create a ParameterTemplate 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: ParameterTemplateArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering ParameterTemplate resources.
 */
export interface ParameterTemplateState {
    /**
     * Parameter template description.
     */
    templateDesc?: pulumi.Input<string>;
    /**
     * Parameter template name.
     */
    templateName?: pulumi.Input<string>;
    /**
     * Parameters contained in the parameter template.
     */
    templateParams?: pulumi.Input<pulumi.Input<inputs.rds_mysql.ParameterTemplateTemplateParam>[]>;
    /**
     * Database type of parameter template. The default value is Mysql.
     */
    templateType?: pulumi.Input<string>;
    /**
     * Database version of parameter template. Value range:
     * MySQL_5_7: Default value. MySQL 5.7 version.
     * MySQL_8_0: MySQL 8.0 version.
     */
    templateTypeVersion?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a ParameterTemplate resource.
 */
export interface ParameterTemplateArgs {
    /**
     * Parameter template description.
     */
    templateDesc?: pulumi.Input<string>;
    /**
     * Parameter template name.
     */
    templateName: pulumi.Input<string>;
    /**
     * Parameters contained in the parameter template.
     */
    templateParams: pulumi.Input<pulumi.Input<inputs.rds_mysql.ParameterTemplateTemplateParam>[]>;
    /**
     * Database type of parameter template. The default value is Mysql.
     */
    templateType: pulumi.Input<string>;
    /**
     * Database version of parameter template. Value range:
     * MySQL_5_7: Default value. MySQL 5.7 version.
     * MySQL_8_0: MySQL 8.0 version.
     */
    templateTypeVersion: pulumi.Input<string>;
}
