Skip to content

Files

Latest commit

ce5fd4a · Feb 20, 2025

History

History
39 lines (30 loc) · 1.54 KB

SharingItemFullInfo.md

File metadata and controls

39 lines (30 loc) · 1.54 KB

SharingItemFullInfo

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]
name str [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.sharing_item_full_info import SharingItemFullInfo

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

# convert the object into a dict
sharing_item_full_info_dict = sharing_item_full_info_instance.to_dict()
# create an instance of SharingItemFullInfo from a dict
sharing_item_full_info_from_dict = SharingItemFullInfo.from_dict(sharing_item_full_info_dict)

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