mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
63 lines
2.2 KiB
TypeScript
63 lines
2.2 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 EntitiesCreateDuplicatesRequest
|
|
*/
|
|
export interface EntitiesCreateDuplicatesRequest {
|
|
/**
|
|
* Number of entities to create
|
|
* @type {number}
|
|
* @memberof EntitiesCreateDuplicatesRequest
|
|
*/
|
|
count?: number;
|
|
/**
|
|
* Create entities with different case variations
|
|
* @type {boolean}
|
|
* @memberof EntitiesCreateDuplicatesRequest
|
|
*/
|
|
differentCase?: boolean;
|
|
/**
|
|
* Metadata to be associated with the entity. 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 EntitiesCreateDuplicatesRequest
|
|
*/
|
|
metadata?: object;
|
|
/**
|
|
* Name of the entities to create
|
|
* @type {string}
|
|
* @memberof EntitiesCreateDuplicatesRequest
|
|
*/
|
|
name?: string;
|
|
/**
|
|
* NamespaceID of the entities to create
|
|
* @type {string}
|
|
* @memberof EntitiesCreateDuplicatesRequest
|
|
*/
|
|
namespaceId?: string;
|
|
/**
|
|
* Policies to be tied to the entity.
|
|
* @type {Array<string>}
|
|
* @memberof EntitiesCreateDuplicatesRequest
|
|
*/
|
|
policies?: Array<string>;
|
|
}
|
|
/**
|
|
* Check if a given object implements the EntitiesCreateDuplicatesRequest interface.
|
|
*/
|
|
export declare function instanceOfEntitiesCreateDuplicatesRequest(value: object): value is EntitiesCreateDuplicatesRequest;
|
|
export declare function EntitiesCreateDuplicatesRequestFromJSON(json: any): EntitiesCreateDuplicatesRequest;
|
|
export declare function EntitiesCreateDuplicatesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntitiesCreateDuplicatesRequest;
|
|
export declare function EntitiesCreateDuplicatesRequestToJSON(json: any): EntitiesCreateDuplicatesRequest;
|
|
export declare function EntitiesCreateDuplicatesRequestToJSONTyped(value?: EntitiesCreateDuplicatesRequest | null, ignoreDiscriminator?: boolean): any;
|