Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 781 Bytes

CustomRolePost.md

File metadata and controls

28 lines (22 loc) · 781 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]
resource_category 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,
  resource_category: null
)