Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.19 KB

File metadata and controls

38 lines (32 loc) · 1.19 KB

Akeyless::PathRule

Properties

Name Type Description Notes
assigners Array<RuleAssigner> [optional]
capabilities Array<String> The approved/denied capabilities in the path [optional]
cb Integer [optional]
is_limit_access Boolean flag that indicate that this rule is allowed to be access RemainingAccess of times. [optional]
item_id Integer The item id this rule directly refers to (when applicable) [optional]
number_of_access_used Integer [optional]
number_of_allowed_access Integer [optional]
path String The path the rule refers to [optional]
start_time Integer [optional]
ttl Integer [optional]
type String [optional]

Example

require 'akeyless'

instance = Akeyless::PathRule.new(
  assigners: null,
  capabilities: null,
  cb: null,
  is_limit_access: null,
  item_id: null,
  number_of_access_used: null,
  number_of_allowed_access: null,
  path: null,
  start_time: null,
  ttl: null,
  type: null
)