// *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** import * as pulumi from "@pulumi/pulumi"; import * as utilities from "./utilities"; export class Security extends pulumi.CustomResource { /** * Get an existing Security 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. */ public static get(name: string, id: pulumi.Input, state?: SecurityState, opts?: pulumi.CustomResourceOptions): Security { return new Security(name, state, { ...opts, id: id }); } /** @internal */ public static readonly __pulumiType = 'dokploy:index/security:Security'; /** * Returns true if the given object is an instance of Security. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ public static isInstance(obj: any): obj is Security { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === Security.__pulumiType; } /** * Application these credentials protect. */ declare public readonly applicationId: pulumi.Output; /** * RFC 3339 timestamp of when the credentials were created. */ declare public /*out*/ readonly createdAt: pulumi.Output; /** * Basic auth password. */ declare public readonly password: pulumi.Output; /** * Basic auth username. */ declare public readonly username: pulumi.Output; /** * Create a Security 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: SecurityArgs, opts?: pulumi.CustomResourceOptions) constructor(name: string, argsOrState?: SecurityArgs | SecurityState, opts?: pulumi.CustomResourceOptions) { let resourceInputs: pulumi.Inputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState as SecurityState | undefined; resourceInputs["applicationId"] = state?.applicationId; resourceInputs["createdAt"] = state?.createdAt; resourceInputs["password"] = state?.password; resourceInputs["username"] = state?.username; } else { const args = argsOrState as SecurityArgs | undefined; if (args?.applicationId === undefined && !opts.urn) { throw new Error("Missing required property 'applicationId'"); } if (args?.password === undefined && !opts.urn) { throw new Error("Missing required property 'password'"); } if (args?.username === undefined && !opts.urn) { throw new Error("Missing required property 'username'"); } resourceInputs["applicationId"] = args?.applicationId; resourceInputs["password"] = args?.password ? pulumi.secret(args.password) : undefined; resourceInputs["username"] = args?.username; resourceInputs["createdAt"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const secretOpts = { additionalSecretOutputs: ["password"] }; opts = pulumi.mergeOptions(opts, secretOpts); super(Security.__pulumiType, name, resourceInputs, opts); } } /** * Input properties used for looking up and filtering Security resources. */ export interface SecurityState { /** * Application these credentials protect. */ applicationId?: pulumi.Input; /** * RFC 3339 timestamp of when the credentials were created. */ createdAt?: pulumi.Input; /** * Basic auth password. */ password?: pulumi.Input; /** * Basic auth username. */ username?: pulumi.Input; } /** * The set of arguments for constructing a Security resource. */ export interface SecurityArgs { /** * Application these credentials protect. */ applicationId: pulumi.Input; /** * Basic auth password. */ password: pulumi.Input; /** * Basic auth username. */ username: pulumi.Input; }