/** * 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 GroupCreateAliasRequest */ export interface GroupCreateAliasRequest { /** * ID of the group to which this is an alias. * @type {string} * @memberof GroupCreateAliasRequest */ canonicalId?: string; /** * ID of the group alias. * @type {string} * @memberof GroupCreateAliasRequest */ id?: string; /** * Mount accessor to which this alias belongs to. * @type {string} * @memberof GroupCreateAliasRequest */ mountAccessor?: string; /** * Alias of the group. * @type {string} * @memberof GroupCreateAliasRequest */ name?: string; } /** * Check if a given object implements the GroupCreateAliasRequest interface. */ export declare function instanceOfGroupCreateAliasRequest(value: object): value is GroupCreateAliasRequest; export declare function GroupCreateAliasRequestFromJSON(json: any): GroupCreateAliasRequest; export declare function GroupCreateAliasRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupCreateAliasRequest; export declare function GroupCreateAliasRequestToJSON(json: any): GroupCreateAliasRequest; export declare function GroupCreateAliasRequestToJSONTyped(value?: GroupCreateAliasRequest | null, ignoreDiscriminator?: boolean): any;