import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class DockerPlugin extends pulumi.CustomResource { /** * Get an existing DockerPlugin 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?: DockerPluginState, opts?: pulumi.CustomResourceOptions): DockerPlugin; /** * Returns true if the given object is an instance of DockerPlugin. 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 DockerPlugin; readonly dockerPluginId: pulumi.Output; /** * Whether to enable the Docker plugin immediately after installation. */ readonly enable: pulumi.Output; /** * ID of the Portainer environment (Docker host) where the plugin is installed. */ readonly endpointId: pulumi.Output; /** * Local alias name for the installed Docker plugin. */ readonly name: pulumi.Output; /** * Base64-encoded registry authentication payload used to pull the plugin from a private registry. */ readonly registryAuth: pulumi.Output; /** * Remote source URL or registry reference of the Docker plugin to pull. */ readonly remote: pulumi.Output; /** * Configuration settings applied to the Docker plugin during installation. */ readonly settings: pulumi.Output; /** * Create a DockerPlugin 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: DockerPluginArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DockerPlugin resources. */ export interface DockerPluginState { dockerPluginId?: pulumi.Input; /** * Whether to enable the Docker plugin immediately after installation. */ enable?: pulumi.Input; /** * ID of the Portainer environment (Docker host) where the plugin is installed. */ endpointId?: pulumi.Input; /** * Local alias name for the installed Docker plugin. */ name?: pulumi.Input; /** * Base64-encoded registry authentication payload used to pull the plugin from a private registry. */ registryAuth?: pulumi.Input; /** * Remote source URL or registry reference of the Docker plugin to pull. */ remote?: pulumi.Input; /** * Configuration settings applied to the Docker plugin during installation. */ settings?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a DockerPlugin resource. */ export interface DockerPluginArgs { dockerPluginId?: pulumi.Input; /** * Whether to enable the Docker plugin immediately after installation. */ enable?: pulumi.Input; /** * ID of the Portainer environment (Docker host) where the plugin is installed. */ endpointId: pulumi.Input; /** * Local alias name for the installed Docker plugin. */ name?: pulumi.Input; /** * Base64-encoded registry authentication payload used to pull the plugin from a private registry. */ registryAuth?: pulumi.Input; /** * Remote source URL or registry reference of the Docker plugin to pull. */ remote: pulumi.Input; /** * Configuration settings applied to the Docker plugin during installation. */ settings?: pulumi.Input[] | undefined>; } //# sourceMappingURL=dockerPlugin.d.ts.map