vault/ui/api-client/dist/esm/models/SystemPatchNamespacesPathRequest.d.ts

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.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 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;