vault/ui/api-client/dist/esm/models/SystemPatchNamespacesPathRequest.d.ts
Jordan Reimer d90653042d
[UI] API Client Update - Patch Support (#30619)
* adds patch endpoints to api client and missing params for sync

* adds namespace param to sync activation api client method
2025-05-14 11:30:45 -06:00

33 lines
1.4 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.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 SystemPatchNamespacesPathRequest
*/
export interface SystemPatchNamespacesPathRequest {
/**
* User-provided key-value pairs that are used to describe arbitrary information about a namespace.
* @type {object}
* @memberof SystemPatchNamespacesPathRequest
*/
customMetadata?: object;
}
/**
* Check if a given object implements the SystemPatchNamespacesPathRequest interface.
*/
export declare function instanceOfSystemPatchNamespacesPathRequest(value: object): value is SystemPatchNamespacesPathRequest;
export declare function SystemPatchNamespacesPathRequestFromJSON(json: any): SystemPatchNamespacesPathRequest;
export declare function SystemPatchNamespacesPathRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemPatchNamespacesPathRequest;
export declare function SystemPatchNamespacesPathRequestToJSON(json: any): SystemPatchNamespacesPathRequest;
export declare function SystemPatchNamespacesPathRequestToJSONTyped(value?: SystemPatchNamespacesPathRequest | null, ignoreDiscriminator?: boolean): any;