import * as pulumi from "@pulumi/pulumi"; export declare class DockerSecret extends pulumi.CustomResource { /** * Get an existing DockerSecret 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, state?: DockerSecretState, opts?: pulumi.CustomResourceOptions): DockerSecret; /** * Returns true if the given object is an instance of DockerSecret. 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 DockerSecret; /** * Base64-encoded secret data (stored in Terraform state). */ readonly data: pulumi.Output; /** * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations. * Write-only secret data (supports ephemeral values; not stored in Terraform state). */ readonly dataWo: pulumi.Output; /** * Version flag for write-only data; must be set when using `dataWo` to trigger updates. */ readonly dataWoVersion: pulumi.Output; readonly dockerSecretId: pulumi.Output; /** * External secret driver configuration used to fetch the secret value at runtime. */ readonly driver: pulumi.Output<{ [key: string]: string; } | undefined>; /** * ID of the Portainer environment (Docker Swarm) where the secret is created. */ readonly endpointId: pulumi.Output; /** * Key/value labels attached to the Docker Swarm secret. */ readonly labels: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Name of the Docker Swarm secret. */ readonly name: pulumi.Output; /** * ID of the Portainer resource control associated with this Docker Swarm secret. */ readonly resourceControlId: pulumi.Output; /** * Templating driver configuration applied to the secret payload at runtime. */ readonly templating: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a DockerSecret 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: DockerSecretArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DockerSecret resources. */ export interface DockerSecretState { /** * Base64-encoded secret data (stored in Terraform state). */ data?: pulumi.Input; /** * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations. * Write-only secret data (supports ephemeral values; not stored in Terraform state). */ dataWo?: pulumi.Input; /** * Version flag for write-only data; must be set when using `dataWo` to trigger updates. */ dataWoVersion?: pulumi.Input; dockerSecretId?: pulumi.Input; /** * External secret driver configuration used to fetch the secret value at runtime. */ driver?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * ID of the Portainer environment (Docker Swarm) where the secret is created. */ endpointId?: pulumi.Input; /** * Key/value labels attached to the Docker Swarm secret. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Name of the Docker Swarm secret. */ name?: pulumi.Input; /** * ID of the Portainer resource control associated with this Docker Swarm secret. */ resourceControlId?: pulumi.Input; /** * Templating driver configuration applied to the secret payload at runtime. */ templating?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; } /** * The set of arguments for constructing a DockerSecret resource. */ export interface DockerSecretArgs { /** * Base64-encoded secret data (stored in Terraform state). */ data?: pulumi.Input; /** * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations. * Write-only secret data (supports ephemeral values; not stored in Terraform state). */ dataWo?: pulumi.Input; /** * Version flag for write-only data; must be set when using `dataWo` to trigger updates. */ dataWoVersion?: pulumi.Input; dockerSecretId?: pulumi.Input; /** * External secret driver configuration used to fetch the secret value at runtime. */ driver?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * ID of the Portainer environment (Docker Swarm) where the secret is created. */ endpointId: pulumi.Input; /** * Key/value labels attached to the Docker Swarm secret. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Name of the Docker Swarm secret. */ name?: pulumi.Input; /** * Templating driver configuration applied to the secret payload at runtime. */ templating?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; } //# sourceMappingURL=dockerSecret.d.ts.map