import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
 * This resource can manage a Cisco ThousandEyes feature template.
 *   - Minimum SD-WAN Manager version: `15.0.0`
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as sdwan from "@pulumi/sdwan";
 *
 * const example = new sdwan.CiscoThousandeyesFeatureTemplate("example", {
 *     name: "Example",
 *     description: "My Example",
 *     deviceTypes: ["vedge-C8000V"],
 *     virtualApplications: [{
 *         instanceId: "1",
 *         applicationType: "te",
 *         teAccountGroupToken: "1234567",
 *         teVpn: 1,
 *         teAgentIp: "1.1.1.2/24",
 *         teDefaultGateway: "1.1.1.255",
 *         teNameServer: "10.2.2.2",
 *         teHostname: "agent1",
 *         teWebProxyType: "static",
 *         teProxyHost: "3.3.3.3",
 *         teProxyPort: 80,
 *     }],
 * });
 * ```
 *
 * ## Import
 *
 * The `pulumi import` command can be used, for example:
 *
 * ```sh
 * $ pulumi import sdwan:index/ciscoThousandeyesFeatureTemplate:CiscoThousandeyesFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd"
 * ```
 */
export declare class CiscoThousandeyesFeatureTemplate extends pulumi.CustomResource {
    /**
     * Get an existing CiscoThousandeyesFeatureTemplate 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?: CiscoThousandeyesFeatureTemplateState, opts?: pulumi.CustomResourceOptions): CiscoThousandeyesFeatureTemplate;
    /**
     * Returns true if the given object is an instance of CiscoThousandeyesFeatureTemplate.  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 CiscoThousandeyesFeatureTemplate;
    /**
     * The description of the feature template
     */
    readonly description: pulumi.Output<string>;
    /**
     * List of supported device types
     *   - Choices: `vedge-C8000V`, `vedge-C8300-1N1S-4T2X`, `vedge-C8300-1N1S-6T`, `vedge-C8300-2N2S-6T`, `vedge-C8300-2N2S-4T2X`, `vedge-C8500-12X4QC`, `vedge-C8500-12X`, `vedge-C8500-20X6C`, `vedge-C8500L-8S4X`, `vedge-C8200-1N-4T`, `vedge-C8200L-1N-4T`
     */
    readonly deviceTypes: pulumi.Output<string[]>;
    /**
     * The name of the feature template
     */
    readonly name: pulumi.Output<string>;
    /**
     * The template type
     */
    readonly templateType: pulumi.Output<string>;
    /**
     * The version of the feature template
     */
    readonly version: pulumi.Output<number>;
    /**
     * Virtual application Instance
     */
    readonly virtualApplications: pulumi.Output<outputs.CiscoThousandeyesFeatureTemplateVirtualApplication[] | undefined>;
    /**
     * Create a CiscoThousandeyesFeatureTemplate 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: CiscoThousandeyesFeatureTemplateArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering CiscoThousandeyesFeatureTemplate resources.
 */
export interface CiscoThousandeyesFeatureTemplateState {
    /**
     * The description of the feature template
     */
    description?: pulumi.Input<string>;
    /**
     * List of supported device types
     *   - Choices: `vedge-C8000V`, `vedge-C8300-1N1S-4T2X`, `vedge-C8300-1N1S-6T`, `vedge-C8300-2N2S-6T`, `vedge-C8300-2N2S-4T2X`, `vedge-C8500-12X4QC`, `vedge-C8500-12X`, `vedge-C8500-20X6C`, `vedge-C8500L-8S4X`, `vedge-C8200-1N-4T`, `vedge-C8200L-1N-4T`
     */
    deviceTypes?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The name of the feature template
     */
    name?: pulumi.Input<string>;
    /**
     * The template type
     */
    templateType?: pulumi.Input<string>;
    /**
     * The version of the feature template
     */
    version?: pulumi.Input<number>;
    /**
     * Virtual application Instance
     */
    virtualApplications?: pulumi.Input<pulumi.Input<inputs.CiscoThousandeyesFeatureTemplateVirtualApplication>[]>;
}
/**
 * The set of arguments for constructing a CiscoThousandeyesFeatureTemplate resource.
 */
export interface CiscoThousandeyesFeatureTemplateArgs {
    /**
     * The description of the feature template
     */
    description: pulumi.Input<string>;
    /**
     * List of supported device types
     *   - Choices: `vedge-C8000V`, `vedge-C8300-1N1S-4T2X`, `vedge-C8300-1N1S-6T`, `vedge-C8300-2N2S-6T`, `vedge-C8300-2N2S-4T2X`, `vedge-C8500-12X4QC`, `vedge-C8500-12X`, `vedge-C8500-20X6C`, `vedge-C8500L-8S4X`, `vedge-C8200-1N-4T`, `vedge-C8200L-1N-4T`
     */
    deviceTypes: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The name of the feature template
     */
    name?: pulumi.Input<string>;
    /**
     * Virtual application Instance
     */
    virtualApplications?: pulumi.Input<pulumi.Input<inputs.CiscoThousandeyesFeatureTemplateVirtualApplication>[]>;
}
