/** * 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 GroupsCreateDuplicatesRequest */ export interface GroupsCreateDuplicatesRequest { /** * Number of groups to create * @type {number} * @memberof GroupsCreateDuplicatesRequest */ count?: number; /** * Create entities with different case variations * @type {boolean} * @memberof GroupsCreateDuplicatesRequest */ differentCase?: boolean; /** * ID of the group. If set, updates the corresponding existing group. * @type {string} * @memberof GroupsCreateDuplicatesRequest */ id?: string; /** * Entity IDs to be assigned as group members. * @type {Array} * @memberof GroupsCreateDuplicatesRequest */ memberEntityIds?: Array; /** * Group IDs to be assigned as group members. * @type {Array} * @memberof GroupsCreateDuplicatesRequest */ 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 GroupsCreateDuplicatesRequest */ metadata?: object; /** * Name of the group. * @type {string} * @memberof GroupsCreateDuplicatesRequest */ name?: string; /** * NamespaceID of the entities to create * @type {string} * @memberof GroupsCreateDuplicatesRequest */ namespaceId?: string; /** * Policies to be tied to the group. * @type {Array} * @memberof GroupsCreateDuplicatesRequest */ policies?: Array; /** * Type of the group, 'internal' or 'external'. Defaults to 'internal' * @type {string} * @memberof GroupsCreateDuplicatesRequest */ type?: string; } /** * Check if a given object implements the GroupsCreateDuplicatesRequest interface. */ export declare function instanceOfGroupsCreateDuplicatesRequest(value: object): value is GroupsCreateDuplicatesRequest; export declare function GroupsCreateDuplicatesRequestFromJSON(json: any): GroupsCreateDuplicatesRequest; export declare function GroupsCreateDuplicatesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupsCreateDuplicatesRequest; export declare function GroupsCreateDuplicatesRequestToJSON(json: any): GroupsCreateDuplicatesRequest; export declare function GroupsCreateDuplicatesRequestToJSONTyped(value?: GroupsCreateDuplicatesRequest | null, ignoreDiscriminator?: boolean): any;