vault/ui/api-client/dist/models/PkiConfigureUrlsResponse.d.ts
Jordan Reimer 3cc24fbecb
[UI] API Client Update (#30380)
* regenerates api client

* updates systemReadUtilizationReport api method to generateUtilizationReport

* updates VoidResponse interface to camelCase keys

* fixes issue in api-client VoidApiResponse

* updates tools components and tests to camel api response keys

* test fixes

* fixes more tests
2025-04-25 10:36:23 -06:00

57 lines
2.5 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 PkiConfigureUrlsResponse
*/
export interface PkiConfigureUrlsResponse {
/**
* 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<string>}
* @memberof PkiConfigureUrlsResponse
*/
crlDistributionPoints?: Array<string>;
/**
* 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<string>}
* @memberof PkiConfigureUrlsResponse
*/
deltaCrlDistributionPoints?: Array<string>;
/**
* Whether or not to enabling 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 PkiConfigureUrlsResponse
*/
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<string>}
* @memberof PkiConfigureUrlsResponse
*/
issuingCertificates?: Array<string>;
/**
* Comma-separated list of URLs to be used for the OCSP servers attribute. See also RFC 5280 Section 4.2.2.1.
* @type {Array<string>}
* @memberof PkiConfigureUrlsResponse
*/
ocspServers?: Array<string>;
}
/**
* Check if a given object implements the PkiConfigureUrlsResponse interface.
*/
export declare function instanceOfPkiConfigureUrlsResponse(value: object): value is PkiConfigureUrlsResponse;
export declare function PkiConfigureUrlsResponseFromJSON(json: any): PkiConfigureUrlsResponse;
export declare function PkiConfigureUrlsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiConfigureUrlsResponse;
export declare function PkiConfigureUrlsResponseToJSON(json: any): PkiConfigureUrlsResponse;
export declare function PkiConfigureUrlsResponseToJSONTyped(value?: PkiConfigureUrlsResponse | null, ignoreDiscriminator?: boolean): any;