Skip to content

Files

Latest commit

f76636a · Nov 17, 2023

History

History
22 lines (16 loc) · 913 Bytes

MemberPermissionGrantSummaryRep.md

File metadata and controls

22 lines (16 loc) · 913 Bytes

LaunchDarklyApi::MemberPermissionGrantSummaryRep

Properties

Name Type Description Notes
action_set String The name of the group of related actions to allow. A permission grant may have either an <code>actionSet</code> or a list of <code>actions</code> but not both at the same time. [optional]
actions Array<String> A list of actions to allow. A permission grant may have either an <code>actionSet</code> or a list of <code>actions</code> but not both at the same time. [optional]
resource String The resource for which the actions are allowed

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::MemberPermissionGrantSummaryRep.new(
  action_set: null,
  actions: [&quot;maintainTeam&quot;],
  resource: team/qa-team
)