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, 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; /** * The Amazon Resource Name (ARN) of the cluster that the daemon is running in. */ readonly clusterArn: pulumi.Output; readonly createdAt: pulumi.Output; readonly daemonArn: pulumi.Output; readonly daemonName: pulumi.Output; readonly daemonStatus: pulumi.Output; /** * The Amazon Resource Name (ARN) of the daemon task definition used by this revision. */ readonly daemonTaskDefinitionArn: pulumi.Output; readonly deploymentArn: pulumi.Output; /** * The deployment configuration used for this daemon deployment. */ readonly deploymentConfiguration: pulumi.Output; /** * Specifies whether Amazon ECS managed tags are turned on for the daemon tasks. */ readonly enableEcsManagedTags: pulumi.Output; /** * Specifies whether the execute command functionality is turned on for the daemon tasks. */ readonly enableExecuteCommand: pulumi.Output; /** * Specifies whether tags are propagated from the daemon to the daemon tasks. */ readonly propagateTags: pulumi.Output; readonly tags: pulumi.Output; readonly updatedAt: pulumi.Output; /** * 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[]>; /** * The Amazon Resource Name (ARN) of the cluster that the daemon is running in. */ clusterArn?: pulumi.Input; daemonName?: pulumi.Input; /** * The Amazon Resource Name (ARN) of the daemon task definition used by this revision. */ daemonTaskDefinitionArn?: pulumi.Input; /** * The deployment configuration used for this daemon deployment. */ deploymentConfiguration?: pulumi.Input; /** * Specifies whether Amazon ECS managed tags are turned on for the daemon tasks. */ enableEcsManagedTags?: pulumi.Input; /** * Specifies whether the execute command functionality is turned on for the daemon tasks. */ enableExecuteCommand?: pulumi.Input; /** * Specifies whether tags are propagated from the daemon to the daemon tasks. */ propagateTags?: pulumi.Input; tags?: pulumi.Input[]>; }