Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 2.1 KB

CreateTokenizer.md

File metadata and controls

48 lines (42 loc) · 2.1 KB

Akeyless::CreateTokenizer

Properties

Name Type Description Notes
alphabet String Alphabet to use in regexp vaultless tokenization [optional]
decoding_template String The Decoding output template to use in regexp vaultless tokenization [optional]
delete_protection String Protection from accidental deletion of this object [true/false] [optional]
description String Description of the object [optional]
encoding_template String The Encoding output template to use in regexp vaultless tokenization [optional]
encryption_key_name String AES key name to use in vaultless tokenization [optional]
json Boolean Set output format to JSON [optional][default to false]
metadata String Deprecated - use description [optional]
name String Tokenizer name
pattern String Pattern to use in regexp vaultless tokenization [optional]
tag Array<String> List of the tags attached to this key [optional]
template_type String Which template type this tokenizer is used for [SSN,CreditCard,USPhoneNumber,Email,Regexp]
token String Authentication token (see `/auth` and `/configure`) [optional]
tokenizer_type String Tokenizer type [default to 'vaultless']
tweak_type String The tweak type to use in vaultless tokenization [Supplied, Generated, Internal, Masking] [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::CreateTokenizer.new(
  alphabet: null,
  decoding_template: null,
  delete_protection: null,
  description: null,
  encoding_template: null,
  encryption_key_name: null,
  json: null,
  metadata: null,
  name: null,
  pattern: null,
  tag: null,
  template_type: null,
  token: null,
  tokenizer_type: null,
  tweak_type: null,
  uid_token: null
)