/** * 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 GroupUpdateByIdRequest */ export interface GroupUpdateByIdRequest { /** * Entity IDs to be assigned as group members. * @type {Array} * @memberof GroupUpdateByIdRequest */ memberEntityIds?: Array; /** * Group IDs to be assigned as group members. * @type {Array} * @memberof GroupUpdateByIdRequest */ memberGroupIds?: Array; /** * Metadata to be associated with the group. In CLI, this parameter can be repeated multiple times, and it all gets merged together. For example: vault metadata=key1=value1 metadata=key2=value2 * @type {object} * @memberof GroupUpdateByIdRequest */ metadata?: object; /** * Name of the group. * @type {string} * @memberof GroupUpdateByIdRequest */ name?: string; /** * Policies to be tied to the group. * @type {Array} * @memberof GroupUpdateByIdRequest */ policies?: Array; /** * Type of the group, 'internal' or 'external'. Defaults to 'internal' * @type {string} * @memberof GroupUpdateByIdRequest */ type?: string; } /** * Check if a given object implements the GroupUpdateByIdRequest interface. */ export declare function instanceOfGroupUpdateByIdRequest(value: object): value is GroupUpdateByIdRequest; export declare function GroupUpdateByIdRequestFromJSON(json: any): GroupUpdateByIdRequest; export declare function GroupUpdateByIdRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupUpdateByIdRequest; export declare function GroupUpdateByIdRequestToJSON(json: any): GroupUpdateByIdRequest; export declare function GroupUpdateByIdRequestToJSONTyped(value?: GroupUpdateByIdRequest | null, ignoreDiscriminator?: boolean): any;