Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.41 KB

File metadata and controls

30 lines (23 loc) · 1.41 KB

ViewsAccessDeniedReason

Properties

Name Type Description Notes
resources Array<string> Resource specifier strings [optional] [default to undefined]
notResources Array<string> 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] [default to undefined]
actions Array<string> Actions to perform on a resource [optional] [default to undefined]
notActions Array<string> 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] [default to undefined]
effect string Whether this statement should allow or deny actions on the resources. [default to undefined]
role_name string [optional] [default to undefined]

Example

import { ViewsAccessDeniedReason } from 'launchdarkly-api-typescript';

const instance: ViewsAccessDeniedReason = {
    resources,
    notResources,
    actions,
    notActions,
    effect,
    role_name,
};

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