import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Information about a daemon resource.
 */
export declare class Daemon extends pulumi.CustomResource {
    /**
     * Get an existing Daemon 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 opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Daemon;
    /**
     * Returns true if the given object is an instance of Daemon.  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 Daemon;
    /**
     * The Amazon Resource Names (ARNs) of the capacity providers associated with the daemon.
     */
    readonly capacityProviderArns: pulumi.Output<string[] | undefined>;
    /**
     * The Amazon Resource Name (ARN) of the cluster that the daemon is running in.
     */
    readonly clusterArn: pulumi.Output<string | undefined>;
    readonly createdAt: pulumi.Output<string>;
    readonly daemonArn: pulumi.Output<string>;
    readonly daemonName: pulumi.Output<string | undefined>;
    readonly daemonStatus: pulumi.Output<enums.ecs.DaemonStatus>;
    /**
     * The Amazon Resource Name (ARN) of the daemon task definition used by this revision.
     */
    readonly daemonTaskDefinitionArn: pulumi.Output<string | undefined>;
    readonly deploymentArn: pulumi.Output<string>;
    /**
     * The deployment configuration used for this daemon deployment.
     */
    readonly deploymentConfiguration: pulumi.Output<outputs.ecs.DaemonDeploymentConfiguration | undefined>;
    /**
     * Specifies whether Amazon ECS managed tags are turned on for the daemon tasks.
     */
    readonly enableEcsManagedTags: pulumi.Output<boolean | undefined>;
    /**
     * Specifies whether the execute command functionality is turned on for the daemon tasks.
     */
    readonly enableExecuteCommand: pulumi.Output<boolean | undefined>;
    /**
     * Specifies whether tags are propagated from the daemon to the daemon tasks.
     */
    readonly propagateTags: pulumi.Output<enums.ecs.DaemonPropagateTags | undefined>;
    readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
    readonly updatedAt: pulumi.Output<string>;
    /**
     * Create a Daemon 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?: DaemonArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a Daemon resource.
 */
export interface DaemonArgs {
    /**
     * The Amazon Resource Names (ARNs) of the capacity providers associated with the daemon.
     */
    capacityProviderArns?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The Amazon Resource Name (ARN) of the cluster that the daemon is running in.
     */
    clusterArn?: pulumi.Input<string>;
    daemonName?: pulumi.Input<string>;
    /**
     * The Amazon Resource Name (ARN) of the daemon task definition used by this revision.
     */
    daemonTaskDefinitionArn?: pulumi.Input<string>;
    /**
     * The deployment configuration used for this daemon deployment.
     */
    deploymentConfiguration?: pulumi.Input<inputs.ecs.DaemonDeploymentConfigurationArgs>;
    /**
     * Specifies whether Amazon ECS managed tags are turned on for the daemon tasks.
     */
    enableEcsManagedTags?: pulumi.Input<boolean>;
    /**
     * Specifies whether the execute command functionality is turned on for the daemon tasks.
     */
    enableExecuteCommand?: pulumi.Input<boolean>;
    /**
     * Specifies whether tags are propagated from the daemon to the daemon tasks.
     */
    propagateTags?: pulumi.Input<enums.ecs.DaemonPropagateTags>;
    tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}
