You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromlaunchdarkly_api.models.announcement_access_allowed_reasonimportAnnouncementAccessAllowedReason# TODO update the JSON string belowjson="{}"# create an instance of AnnouncementAccessAllowedReason from a JSON stringannouncement_access_allowed_reason_instance=AnnouncementAccessAllowedReason.from_json(json)
# print the JSON string representation of the objectprint(AnnouncementAccessAllowedReason.to_json())
# convert the object into a dictannouncement_access_allowed_reason_dict=announcement_access_allowed_reason_instance.to_dict()
# create an instance of AnnouncementAccessAllowedReason from a dictannouncement_access_allowed_reason_from_dict=AnnouncementAccessAllowedReason.from_dict(announcement_access_allowed_reason_dict)