mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
39 lines
2.3 KiB
TypeScript
39 lines
2.3 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 PkiReadClusterConfigurationResponse
|
|
*/
|
|
export interface PkiReadClusterConfigurationResponse {
|
|
/**
|
|
* Optional URI to this mount's AIA distribution point; may refer to an external non-Vault responder. This is for resolving AIA URLs and providing the {{cluster_aia_path}} template parameter and will not be used for other purposes. As such, unlike path above, this could safely be an insecure transit mechanism (like HTTP without TLS). For example: http://cdn.example.com/pr1/pki
|
|
* @type {string}
|
|
* @memberof PkiReadClusterConfigurationResponse
|
|
*/
|
|
aiaPath?: string;
|
|
/**
|
|
* Canonical URI to this mount on this performance replication cluster's external address. This is for resolving AIA URLs and providing the {{cluster_path}} template parameter but might be used for other purposes in the future. This should only point back to this particular PR replica and should not ever point to another PR cluster. It may point to any node in the PR replica, including standby nodes, and need not always point to the active node. For example: https://pr1.vault.example.com:8200/v1/pki
|
|
* @type {string}
|
|
* @memberof PkiReadClusterConfigurationResponse
|
|
*/
|
|
path?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the PkiReadClusterConfigurationResponse interface.
|
|
*/
|
|
export declare function instanceOfPkiReadClusterConfigurationResponse(value: object): value is PkiReadClusterConfigurationResponse;
|
|
export declare function PkiReadClusterConfigurationResponseFromJSON(json: any): PkiReadClusterConfigurationResponse;
|
|
export declare function PkiReadClusterConfigurationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiReadClusterConfigurationResponse;
|
|
export declare function PkiReadClusterConfigurationResponseToJSON(json: any): PkiReadClusterConfigurationResponse;
|
|
export declare function PkiReadClusterConfigurationResponseToJSONTyped(value?: PkiReadClusterConfigurationResponse | null, ignoreDiscriminator?: boolean): any;
|