/** * 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.20.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 OidcConfigureRequest */ export interface OidcConfigureRequest { /** * Issuer URL to be used in the iss claim of the token. If not set, Vault's app_addr will be used. * @type {string} * @memberof OidcConfigureRequest */ issuer?: string; } /** * Check if a given object implements the OidcConfigureRequest interface. */ export declare function instanceOfOidcConfigureRequest(value: object): value is OidcConfigureRequest; export declare function OidcConfigureRequestFromJSON(json: any): OidcConfigureRequest; export declare function OidcConfigureRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OidcConfigureRequest; export declare function OidcConfigureRequestToJSON(json: any): OidcConfigureRequest; export declare function OidcConfigureRequestToJSONTyped(value?: OidcConfigureRequest | null, ignoreDiscriminator?: boolean): any;