mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
63 lines
2.1 KiB
TypeScript
63 lines
2.1 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 GroupUpdateByIdRequest
|
|
*/
|
|
export interface GroupUpdateByIdRequest {
|
|
/**
|
|
* Entity IDs to be assigned as group members.
|
|
* @type {Array<string>}
|
|
* @memberof GroupUpdateByIdRequest
|
|
*/
|
|
memberEntityIds?: Array<string>;
|
|
/**
|
|
* Group IDs to be assigned as group members.
|
|
* @type {Array<string>}
|
|
* @memberof GroupUpdateByIdRequest
|
|
*/
|
|
memberGroupIds?: Array<string>;
|
|
/**
|
|
* 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 <command> <path> 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<string>}
|
|
* @memberof GroupUpdateByIdRequest
|
|
*/
|
|
policies?: Array<string>;
|
|
/**
|
|
* 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;
|