Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.01 KB

CustomRole.md

File metadata and controls

32 lines (26 loc) · 1.01 KB

LaunchDarklyApi::CustomRole

Properties

Name Type Description Notes
_id String The ID of the custom role
_links Hash<String, Link> The location and content type of related resources
_access Access [optional]
description String The description of the custom role [optional]
key String The key of the custom role
name String The name of the custom role
policy Array<Statement> An array of the policies that comprise this custom role
base_permissions String [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::CustomRole.new(
  _id: 1234a56b7c89d012345e678f,
  _links: null,
  _access: null,
  description: This custom role is just an example,
  key: example-custom-role,
  name: Example custom role,
  policy: null,
  base_permissions: null
)