import * as pulumi from "@pulumi/pulumi"; export declare class DockerConfig extends pulumi.CustomResource { /** * Get an existing DockerConfig 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?: DockerConfigState, opts?: pulumi.CustomResourceOptions): DockerConfig; /** * Returns true if the given object is an instance of DockerConfig. 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 DockerConfig; /** * Base64-encoded config payload stored in the Docker Swarm config. */ readonly data: pulumi.Output; readonly dockerConfigId: pulumi.Output; /** * ID of the Portainer environment (Docker Swarm) where the config is created. */ readonly endpointId: pulumi.Output; /** * Key/value labels attached to the Docker Swarm config. */ readonly labels: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Name of the Docker Swarm config. */ readonly name: pulumi.Output; /** * ID of the Portainer resource control associated with this Docker Swarm config. */ readonly resourceControlId: pulumi.Output; /** * Templating driver configuration applied to the config payload at runtime. */ readonly templating: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a DockerConfig 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: DockerConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DockerConfig resources. */ export interface DockerConfigState { /** * Base64-encoded config payload stored in the Docker Swarm config. */ data?: pulumi.Input; dockerConfigId?: pulumi.Input; /** * ID of the Portainer environment (Docker Swarm) where the config is created. */ endpointId?: pulumi.Input; /** * Key/value labels attached to the Docker Swarm config. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Name of the Docker Swarm config. */ name?: pulumi.Input; /** * ID of the Portainer resource control associated with this Docker Swarm config. */ resourceControlId?: pulumi.Input; /** * Templating driver configuration applied to the config payload at runtime. */ templating?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; } /** * The set of arguments for constructing a DockerConfig resource. */ export interface DockerConfigArgs { /** * Base64-encoded config payload stored in the Docker Swarm config. */ data: pulumi.Input; dockerConfigId?: pulumi.Input; /** * ID of the Portainer environment (Docker Swarm) where the config is created. */ endpointId: pulumi.Input; /** * Key/value labels attached to the Docker Swarm config. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Name of the Docker Swarm config. */ name?: pulumi.Input; /** * Templating driver configuration applied to the config payload at runtime. */ templating?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; } //# sourceMappingURL=dockerConfig.d.ts.map