/** * 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 AliasUpdateByIdRequest */ export interface AliasUpdateByIdRequest { /** * Entity ID to which this alias should be tied to * @type {string} * @memberof AliasUpdateByIdRequest */ canonicalId?: string; /** * Entity ID to which this alias should be tied to. This field is deprecated in favor of 'canonical_id'. * @type {string} * @memberof AliasUpdateByIdRequest */ entityId?: string; /** * Mount accessor to which this alias belongs to * @type {string} * @memberof AliasUpdateByIdRequest */ mountAccessor?: string; /** * Name of the alias * @type {string} * @memberof AliasUpdateByIdRequest */ name?: string; } /** * Check if a given object implements the AliasUpdateByIdRequest interface. */ export declare function instanceOfAliasUpdateByIdRequest(value: object): value is AliasUpdateByIdRequest; export declare function AliasUpdateByIdRequestFromJSON(json: any): AliasUpdateByIdRequest; export declare function AliasUpdateByIdRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AliasUpdateByIdRequest; export declare function AliasUpdateByIdRequestToJSON(json: any): AliasUpdateByIdRequest; export declare function AliasUpdateByIdRequestToJSONTyped(value?: AliasUpdateByIdRequest | null, ignoreDiscriminator?: boolean): any;