Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 699 Bytes

CustomRolePost.md

File metadata and controls

26 lines (20 loc) · 699 Bytes

LaunchDarklyApi::CustomRolePost

Properties

Name Type Description Notes
name String A human-friendly name for the custom role
key String The custom role key
description String Description of custom role [optional]
policy Array<StatementPost>
base_permissions String [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::CustomRolePost.new(
  name: Ops team,
  key: role-key-123abc,
  description: An example role for members of the ops team,
  policy: null,
  base_permissions: null
)