| 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] |
from launchdarkly_api.models.views_access_denied_reason import ViewsAccessDeniedReason
# TODO update the JSON string below
json = "{}"
# create an instance of ViewsAccessDeniedReason from a JSON string
views_access_denied_reason_instance = ViewsAccessDeniedReason.from_json(json)
# print the JSON string representation of the object
print(ViewsAccessDeniedReason.to_json())
# convert the object into a dict
views_access_denied_reason_dict = views_access_denied_reason_instance.to_dict()
# create an instance of ViewsAccessDeniedReason from a dict
views_access_denied_reason_from_dict = ViewsAccessDeniedReason.from_dict(views_access_denied_reason_dict)
[Back to Model list] [Back to API list] [Back to README]