mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
* removes dist from api-client gitignore * ignores api-client/dist directory for eslint and prettier * builds api client
99 lines
3.7 KiB
TypeScript
99 lines
3.7 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.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 PkiConfigureCrlResponse
|
|
*/
|
|
export interface PkiConfigureCrlResponse {
|
|
/**
|
|
* If set to true, enables automatic rebuilding of the CRL
|
|
* @type {boolean}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
autoRebuild?: boolean;
|
|
/**
|
|
* The time before the CRL expires to automatically rebuild it, when enabled. Must be shorter than the CRL expiry. Defaults to 12h.
|
|
* @type {string}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
autoRebuildGracePeriod?: string;
|
|
/**
|
|
* Whether to enable a global, cross-cluster revocation queue. Must be used with auto_rebuild=true.
|
|
* @type {boolean}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
crossClusterRevocation?: boolean;
|
|
/**
|
|
* The time between delta CRL rebuilds if a new revocation has occurred. Must be shorter than the CRL expiry. Defaults to 15m.
|
|
* @type {string}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
deltaRebuildInterval?: string;
|
|
/**
|
|
* If set to true, disables generating the CRL entirely.
|
|
* @type {boolean}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
disable?: boolean;
|
|
/**
|
|
* Whether to enable delta CRLs between authoritative CRL rebuilds
|
|
* @type {boolean}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
enableDelta?: boolean;
|
|
/**
|
|
* The amount of time the generated CRL should be valid; defaults to 72 hours
|
|
* @type {string}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
expiry?: string;
|
|
/**
|
|
* The maximum number of entries the CRL can contain. This is meant as a guard against accidental runaway revocations overloading Vault storage. If this limit is exceeded writing the CRL will fail. If set to -1 this limit is disabled.
|
|
* @type {number}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
maxCrlEntries?: number;
|
|
/**
|
|
* If set to true, ocsp unauthorized responses will be returned.
|
|
* @type {boolean}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
ocspDisable?: boolean;
|
|
/**
|
|
* The amount of time an OCSP response will be valid (controls the NextUpdate field); defaults to 12 hours
|
|
* @type {string}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
ocspExpiry?: string;
|
|
/**
|
|
* If set to true enables global replication of revocation entries, also enabling unified versions of OCSP and CRLs if their respective features are enabled. disable for CRLs and ocsp_disable for OCSP.
|
|
* @type {boolean}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
unifiedCrl?: boolean;
|
|
/**
|
|
* If set to true, existing CRL and OCSP paths will return the unified CRL instead of a response based on cluster-local data
|
|
* @type {boolean}
|
|
* @memberof PkiConfigureCrlResponse
|
|
*/
|
|
unifiedCrlOnExistingPaths?: boolean;
|
|
}
|
|
/**
|
|
* Check if a given object implements the PkiConfigureCrlResponse interface.
|
|
*/
|
|
export declare function instanceOfPkiConfigureCrlResponse(value: object): value is PkiConfigureCrlResponse;
|
|
export declare function PkiConfigureCrlResponseFromJSON(json: any): PkiConfigureCrlResponse;
|
|
export declare function PkiConfigureCrlResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiConfigureCrlResponse;
|
|
export declare function PkiConfigureCrlResponseToJSON(json: any): PkiConfigureCrlResponse;
|
|
export declare function PkiConfigureCrlResponseToJSONTyped(value?: PkiConfigureCrlResponse | null, ignoreDiscriminator?: boolean): any;
|