Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.22 KB

File metadata and controls

28 lines (21 loc) · 1.22 KB

StatementPost

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> field 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> field 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]

Example

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

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

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