Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.01 KB

AccessDeniedReason.md

File metadata and controls

28 lines (22 loc) · 1.01 KB

LaunchDarklyApi::AccessDeniedReason

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 &quot;resources&quot; and &quot;notActions&quot; fields 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 &quot;actions&quot; and &quot;notResources&quot; fields must be empty to use this field. [optional]
effect String
role_name String [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::AccessDeniedReason.new(
  resources: null,
  not_resources: null,
  actions: null,
  not_actions: null,
  effect: null,
  role_name: null
)