LaunchDarklyApi::StatementPost Properties Name Type Description Notes resources Array<String> Resource specifier strings [optional] not_resources Array<String> Targeted resources are the resources NOT in this list. The <code>resources</code> field must be empty to use this field. [optional] actions Array<String> Actions to perform on a resource [optional] not_actions Array<String> Targeted actions are the actions NOT in this list. The <code>actions</code> field must be empty to use this field. [optional] effect String Whether this statement should allow or deny actions on the resources. Example require 'launchdarkly_api' instance = LaunchDarklyApi::StatementPost.new( resources: ["proj/*:env/*:flag/*;testing-tag"], not_resources: null, actions: ["*"], not_actions: null, effect: allow )