UNPKG

@pulumi/vault

Version:

A Pulumi package for creating and managing HashiCorp Vault cloud resources.

189 lines (188 loc) 5.71 kB
import * as pulumi from "@pulumi/pulumi"; /** * Resource for configuring the pingid MFA method. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vault from "@pulumi/vault"; * * const example = new vault.identity.MfaPingid("example", {settingsFileBase64: "CnVzZV9iYXNlNjR[...]HBtCg=="}); * ``` * * ## Import * * Resource can be imported using its `uuid` field, e.g. * * ```sh * $ pulumi import vault:identity/mfaPingid:MfaPingid example 0d89c36a-4ff5-4d70-8749-bb6a5598aeec * ``` */ export declare class MfaPingid extends pulumi.CustomResource { /** * Get an existing MfaPingid 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<pulumi.ID>, state?: MfaPingidState, opts?: pulumi.CustomResourceOptions): MfaPingid; /** * Returns true if the given object is an instance of MfaPingid. 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 MfaPingid; /** * The admin URL, derived from "settingsFileBase64" */ readonly adminUrl: pulumi.Output<string>; /** * A unique identifier of the organization, derived from "settingsFileBase64" */ readonly authenticatorUrl: pulumi.Output<string>; /** * The IDP URL, derived from "settingsFileBase64" */ readonly idpUrl: pulumi.Output<string>; /** * Method ID. */ readonly methodId: pulumi.Output<string>; /** * Mount accessor. */ readonly mountAccessor: pulumi.Output<string>; /** * Method name. */ readonly name: pulumi.Output<string>; /** * Target namespace. (requires Enterprise) */ readonly namespace: pulumi.Output<string | undefined>; /** * Method's namespace ID. */ readonly namespaceId: pulumi.Output<string>; /** * Method's namespace path. */ readonly namespacePath: pulumi.Output<string>; /** * The name of the PingID client organization, derived from "settingsFileBase64" */ readonly orgAlias: pulumi.Output<string>; /** * A base64-encoded third-party settings contents as retrieved from PingID's configuration page. */ readonly settingsFileBase64: pulumi.Output<string>; /** * MFA type. */ readonly type: pulumi.Output<string>; /** * Use signature value, derived from "settingsFileBase64" */ readonly useSignature: pulumi.Output<boolean>; /** * A template string for mapping Identity names to MFA methods. */ readonly usernameFormat: pulumi.Output<string | undefined>; /** * Resource UUID. */ readonly uuid: pulumi.Output<string>; /** * Create a MfaPingid 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: MfaPingidArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MfaPingid resources. */ export interface MfaPingidState { /** * The admin URL, derived from "settingsFileBase64" */ adminUrl?: pulumi.Input<string>; /** * A unique identifier of the organization, derived from "settingsFileBase64" */ authenticatorUrl?: pulumi.Input<string>; /** * The IDP URL, derived from "settingsFileBase64" */ idpUrl?: pulumi.Input<string>; /** * Method ID. */ methodId?: pulumi.Input<string>; /** * Mount accessor. */ mountAccessor?: pulumi.Input<string>; /** * Method name. */ name?: pulumi.Input<string>; /** * Target namespace. (requires Enterprise) */ namespace?: pulumi.Input<string>; /** * Method's namespace ID. */ namespaceId?: pulumi.Input<string>; /** * Method's namespace path. */ namespacePath?: pulumi.Input<string>; /** * The name of the PingID client organization, derived from "settingsFileBase64" */ orgAlias?: pulumi.Input<string>; /** * A base64-encoded third-party settings contents as retrieved from PingID's configuration page. */ settingsFileBase64?: pulumi.Input<string>; /** * MFA type. */ type?: pulumi.Input<string>; /** * Use signature value, derived from "settingsFileBase64" */ useSignature?: pulumi.Input<boolean>; /** * A template string for mapping Identity names to MFA methods. */ usernameFormat?: pulumi.Input<string>; /** * Resource UUID. */ uuid?: pulumi.Input<string>; } /** * The set of arguments for constructing a MfaPingid resource. */ export interface MfaPingidArgs { /** * Target namespace. (requires Enterprise) */ namespace?: pulumi.Input<string>; /** * A base64-encoded third-party settings contents as retrieved from PingID's configuration page. */ settingsFileBase64: pulumi.Input<string>; /** * A template string for mapping Identity names to MFA methods. */ usernameFormat?: pulumi.Input<string>; }