Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 863 Bytes

RegexpTokenizerInfo.md

File metadata and controls

24 lines (18 loc) · 863 Bytes

Akeyless::RegexpTokenizerInfo

Properties

Name Type Description Notes
alphabet String The Alphabet used for the tokenization [optional]
decoding_template String Transformation to perform on the decrypted data [optional]
encoding_template String Transformation to perform on the encrypted data, if the required output template doesn't match the input string The output Should still be valid for the Pattern, otherwise the secret would be able to be decrypted. [optional]
pattern String Regexp pattern to extract and deposit the text/encdata [optional]

Example

require 'akeyless'

instance = Akeyless::RegexpTokenizerInfo.new(
  alphabet: null,
  decoding_template: null,
  encoding_template: null,
  pattern: null
)