Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.36 KB

PathRule.md

File metadata and controls

38 lines (29 loc) · 1.36 KB

PathRule

Properties

Name Type Description Notes
assigners List[RuleAssigner] [optional]
capabilities List[str] The approved/denied capabilities in the path [optional]
cb int [optional]
is_limit_access bool flag that indicate that this rule is allowed to be access RemainingAccess of times. [optional]
number_of_access_used int [optional]
number_of_allowed_access int [optional]
path str The path the rule refers to [optional]
start_time int [optional]
ttl int [optional]
type str [optional]

Example

from akeyless.models.path_rule import PathRule

# TODO update the JSON string below
json = "{}"
# create an instance of PathRule from a JSON string
path_rule_instance = PathRule.from_json(json)
# print the JSON string representation of the object
print(PathRule.to_json())

# convert the object into a dict
path_rule_dict = path_rule_instance.to_dict()
# create an instance of PathRule from a dict
path_rule_from_dict = PathRule.from_dict(path_rule_dict)

[Back to Model list] [Back to API list] [Back to README]