/** * 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 EntityCreateAliasRequest */ export interface EntityCreateAliasRequest { /** * Entity ID to which this alias belongs * @type {string} * @memberof EntityCreateAliasRequest */ canonicalId?: string; /** * User provided key-value pairs * @type {object} * @memberof EntityCreateAliasRequest */ customMetadata?: object; /** * Entity ID to which this alias belongs. This field is deprecated, use canonical_id. * @type {string} * @memberof EntityCreateAliasRequest */ entityId?: string; /** * ID of the entity alias. If set, updates the corresponding entity alias. * @type {string} * @memberof EntityCreateAliasRequest */ id?: string; /** * Mount accessor to which this alias belongs to; unused for a modify * @type {string} * @memberof EntityCreateAliasRequest */ mountAccessor?: string; /** * Name of the alias; unused for a modify * @type {string} * @memberof EntityCreateAliasRequest */ name?: string; } /** * Check if a given object implements the EntityCreateAliasRequest interface. */ export declare function instanceOfEntityCreateAliasRequest(value: object): value is EntityCreateAliasRequest; export declare function EntityCreateAliasRequestFromJSON(json: any): EntityCreateAliasRequest; export declare function EntityCreateAliasRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityCreateAliasRequest; export declare function EntityCreateAliasRequestToJSON(json: any): EntityCreateAliasRequest; export declare function EntityCreateAliasRequestToJSONTyped(value?: EntityCreateAliasRequest | null, ignoreDiscriminator?: boolean): any;