Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.77 KB

File metadata and controls

34 lines (25 loc) · 1.77 KB

AnnouncementAccessAllowedReason

Properties

Name Type Description Notes
resources List[str] Resource specifier strings [optional]
not_resources List[str] Targeted resources are the resources NOT in this list. The <code>resources</code> and <code>notActions</code> fields must be empty to use this field. [optional]
actions List[str] Actions to perform on a resource [optional]
not_actions List[str] Targeted actions are the actions NOT in this list. The <code>actions</code> and <code>notResources</code> fields must be empty to use this field. [optional]
effect str Whether this statement should allow or deny actions on the resources.
role_name str [optional]

Example

from launchdarkly_api.models.announcement_access_allowed_reason import AnnouncementAccessAllowedReason

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

# convert the object into a dict
announcement_access_allowed_reason_dict = announcement_access_allowed_reason_instance.to_dict()
# create an instance of AnnouncementAccessAllowedReason from a dict
announcement_access_allowed_reason_from_dict = AnnouncementAccessAllowedReason.from_dict(announcement_access_allowed_reason_dict)

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