vault/ui/api-client/dist/esm/models/RawWriteRequest.js

48 lines
1.5 KiB
JavaScript

/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
/**
* Check if a given object implements the RawWriteRequest interface.
*/
export function instanceOfRawWriteRequest(value) {
return true;
}
export function RawWriteRequestFromJSON(json) {
return RawWriteRequestFromJSONTyped(json, false);
}
export function RawWriteRequestFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'compressed': json['compressed'] == null ? undefined : json['compressed'],
'compressionType': json['compression_type'] == null ? undefined : json['compression_type'],
'encoding': json['encoding'] == null ? undefined : json['encoding'],
'value': json['value'] == null ? undefined : json['value'],
};
}
export function RawWriteRequestToJSON(json) {
return RawWriteRequestToJSONTyped(json, false);
}
export function RawWriteRequestToJSONTyped(value, ignoreDiscriminator = false) {
if (value == null) {
return value;
}
return {
'compressed': value['compressed'],
'compression_type': value['compressionType'],
'encoding': value['encoding'],
'value': value['value'],
};
}