mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
57 lines
1.7 KiB
TypeScript
57 lines
1.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.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 AliasCreateRequest
|
|
*/
|
|
export interface AliasCreateRequest {
|
|
/**
|
|
* Entity ID to which this alias belongs to
|
|
* @type {string}
|
|
* @memberof AliasCreateRequest
|
|
*/
|
|
canonicalId?: string;
|
|
/**
|
|
* Entity ID to which this alias belongs to. This field is deprecated in favor of 'canonical_id'.
|
|
* @type {string}
|
|
* @memberof AliasCreateRequest
|
|
*/
|
|
entityId?: string;
|
|
/**
|
|
* ID of the alias
|
|
* @type {string}
|
|
* @memberof AliasCreateRequest
|
|
*/
|
|
id?: string;
|
|
/**
|
|
* Mount accessor to which this alias belongs to
|
|
* @type {string}
|
|
* @memberof AliasCreateRequest
|
|
*/
|
|
mountAccessor?: string;
|
|
/**
|
|
* Name of the alias
|
|
* @type {string}
|
|
* @memberof AliasCreateRequest
|
|
*/
|
|
name?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the AliasCreateRequest interface.
|
|
*/
|
|
export declare function instanceOfAliasCreateRequest(value: object): value is AliasCreateRequest;
|
|
export declare function AliasCreateRequestFromJSON(json: any): AliasCreateRequest;
|
|
export declare function AliasCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AliasCreateRequest;
|
|
export declare function AliasCreateRequestToJSON(json: any): AliasCreateRequest;
|
|
export declare function AliasCreateRequestToJSONTyped(value?: AliasCreateRequest | null, ignoreDiscriminator?: boolean): any;
|