vault/ui/api-client/dist/esm/models/GroupUpdateAliasByIdRequest.d.ts

45 lines
1.6 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 GroupUpdateAliasByIdRequest
*/
export interface GroupUpdateAliasByIdRequest {
/**
* ID of the group to which this is an alias.
* @type {string}
* @memberof GroupUpdateAliasByIdRequest
*/
canonicalId?: string;
/**
* Mount accessor to which this alias belongs to.
* @type {string}
* @memberof GroupUpdateAliasByIdRequest
*/
mountAccessor?: string;
/**
* Alias of the group.
* @type {string}
* @memberof GroupUpdateAliasByIdRequest
*/
name?: string;
}
/**
* Check if a given object implements the GroupUpdateAliasByIdRequest interface.
*/
export declare function instanceOfGroupUpdateAliasByIdRequest(value: object): value is GroupUpdateAliasByIdRequest;
export declare function GroupUpdateAliasByIdRequestFromJSON(json: any): GroupUpdateAliasByIdRequest;
export declare function GroupUpdateAliasByIdRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupUpdateAliasByIdRequest;
export declare function GroupUpdateAliasByIdRequestToJSON(json: any): GroupUpdateAliasByIdRequest;
export declare function GroupUpdateAliasByIdRequestToJSONTyped(value?: GroupUpdateAliasByIdRequest | null, ignoreDiscriminator?: boolean): any;