Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.82 KB

File metadata and controls

34 lines (25 loc) · 1.82 KB

ReleasePoliciesAccessAllowedReason

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.release_policies_access_allowed_reason import ReleasePoliciesAccessAllowedReason

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

# convert the object into a dict
release_policies_access_allowed_reason_dict = release_policies_access_allowed_reason_instance.to_dict()
# create an instance of ReleasePoliciesAccessAllowedReason from a dict
release_policies_access_allowed_reason_from_dict = ReleasePoliciesAccessAllowedReason.from_dict(release_policies_access_allowed_reason_dict)

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