Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.07 KB

PathRule.md

File metadata and controls

36 lines (30 loc) · 1.07 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]
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,
  number_of_access_used: null,
  number_of_allowed_access: null,
  path: null,
  start_time: null,
  ttl: null,
  type: null
)