/** * 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 PkiReadUrlsConfigurationResponse */ export interface PkiReadUrlsConfigurationResponse { /** * Comma-separated list of URLs to be used for the CRL distribution points attribute. See also RFC 5280 Section 4.2.1.13. * @type {Array} * @memberof PkiReadUrlsConfigurationResponse */ crlDistributionPoints?: Array; /** * Comma-separated list of URLs to be used for the Delta CRL distribution points attribute. See also RFC 5280 Section 4.2.1.15. * @type {Array} * @memberof PkiReadUrlsConfigurationResponse */ deltaCrlDistributionPoints?: Array; /** * Whether or not to enable templating of the above AIA fields. When templating is enabled the special values '{{issuer_id}}' and '{{cluster_path}}' are available, but the addresses are not checked for URI validity until issuance time. This requires /config/cluster's path to be set on all PR Secondary clusters. * @type {boolean} * @memberof PkiReadUrlsConfigurationResponse */ enableTemplating?: boolean; /** * Comma-separated list of URLs to be used for the issuing certificate attribute. See also RFC 5280 Section 4.2.2.1. * @type {Array} * @memberof PkiReadUrlsConfigurationResponse */ issuingCertificates?: Array; /** * Comma-separated list of URLs to be used for the OCSP servers attribute. See also RFC 5280 Section 4.2.2.1. * @type {Array} * @memberof PkiReadUrlsConfigurationResponse */ ocspServers?: Array; } /** * Check if a given object implements the PkiReadUrlsConfigurationResponse interface. */ export declare function instanceOfPkiReadUrlsConfigurationResponse(value: object): value is PkiReadUrlsConfigurationResponse; export declare function PkiReadUrlsConfigurationResponseFromJSON(json: any): PkiReadUrlsConfigurationResponse; export declare function PkiReadUrlsConfigurationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiReadUrlsConfigurationResponse; export declare function PkiReadUrlsConfigurationResponseToJSON(json: any): PkiReadUrlsConfigurationResponse; export declare function PkiReadUrlsConfigurationResponseToJSONTyped(value?: PkiReadUrlsConfigurationResponse | null, ignoreDiscriminator?: boolean): any;