Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 985 Bytes

PermissionGrantInput.md

File metadata and controls

22 lines (16 loc) · 985 Bytes

LaunchDarklyApi::PermissionGrantInput

Properties

Name Type Description Notes
action_set String A group of related actions to allow. Specify either <code>actionSet</code> or <code>actions</code>. Use <code>maintainTeam</code> to add team maintainers. [optional]
actions Array<String> A list of actions to allow. Specify either <code>actionSet</code> or <code>actions</code>. To learn more, read Role actions. [optional]
member_ids Array<String> A list of member IDs who receive the permission grant. [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::PermissionGrantInput.new(
  action_set: maintainTeam,
  actions: [&quot;updateTeamMembers&quot;],
  member_ids: [&quot;12ab3c45de678910fgh12345&quot;]
)