@piiano/vault-client
Version:
Piiano Vault generated typescript client
20 lines • 777 B
TypeScript
import type { EncryptedObjectInput } from './EncryptedObjectInput';
import type { EncryptionType } from './EncryptionType';
import type { ObjectFields } from './ObjectFields';
import type { PropertyName } from './PropertyName';
export type UpdateEncryptionRequest = {
type?: EncryptionType;
encrypted_object: EncryptedObjectInput;
fields: ObjectFields;
/**
* The properties to include in the updated encrypted object.
*/
props?: Array<PropertyName>;
/**
* A classification for the updated encrypted object that is added to the ciphertext as associated data (AAD).
* An object encrypted with a scope can be decrypted only with the same scope.
*
*/
scope?: string;
};
//# sourceMappingURL=UpdateEncryptionRequest.d.ts.map