mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 22:57:02 +02:00
45 lines
2.0 KiB
TypeScript
45 lines
2.0 KiB
TypeScript
/**
|
|
* HashiCorp Vault API
|
|
* HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.
|
|
*
|
|
* The version of the OpenAPI document: 1.21.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface MfaCreatePingIdMethodRequest
|
|
*/
|
|
export interface MfaCreatePingIdMethodRequest {
|
|
/**
|
|
* The unique name identifier for this MFA method.
|
|
* @type {string}
|
|
* @memberof MfaCreatePingIdMethodRequest
|
|
*/
|
|
methodName?: string;
|
|
/**
|
|
* The settings file provided by Ping, Base64-encoded. This must be a settings file suitable for third-party clients, not the PingID SDK or PingFederate.
|
|
* @type {string}
|
|
* @memberof MfaCreatePingIdMethodRequest
|
|
*/
|
|
settingsFileBase64?: string;
|
|
/**
|
|
* A template string for mapping Identity names to MFA method names. Values to subtitute should be placed in {{}}. For example, "{{alias.name}}@example.com". Currently-supported mappings: alias.name: The name returned by the mount configured via the mount_accessor parameter If blank, the Alias's name field will be used as-is.
|
|
* @type {string}
|
|
* @memberof MfaCreatePingIdMethodRequest
|
|
*/
|
|
usernameFormat?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the MfaCreatePingIdMethodRequest interface.
|
|
*/
|
|
export declare function instanceOfMfaCreatePingIdMethodRequest(value: object): value is MfaCreatePingIdMethodRequest;
|
|
export declare function MfaCreatePingIdMethodRequestFromJSON(json: any): MfaCreatePingIdMethodRequest;
|
|
export declare function MfaCreatePingIdMethodRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MfaCreatePingIdMethodRequest;
|
|
export declare function MfaCreatePingIdMethodRequestToJSON(json: any): MfaCreatePingIdMethodRequest;
|
|
export declare function MfaCreatePingIdMethodRequestToJSONTyped(value?: MfaCreatePingIdMethodRequest | null, ignoreDiscriminator?: boolean): any;
|