Name |
Type |
Description |
Notes |
description |
String |
A description of the team |
[optional] |
key |
String |
The team key |
[optional] |
name |
String |
A human-friendly name for the team |
[optional] |
_access |
Access |
|
[optional] |
_creation_date |
Integer |
|
[optional] |
_links |
Hash<String, Link> |
The location and content type of related resources |
[optional] |
_last_modified |
Integer |
|
[optional] |
_version |
Integer |
The team version |
[optional] |
_idp_synced |
Boolean |
Whether the team has been synced with an external identity provider (IdP). Team sync is available to customers on an Enterprise plan. |
[optional] |
role_attributes |
Hash<String, Array> |
|
[optional] |
roles |
TeamCustomRoles |
|
[optional] |
members |
TeamMembers |
|
[optional] |
projects |
TeamProjects |
|
[optional] |
maintainers |
TeamMaintainers |
|
[optional] |
require 'launchdarkly_api'
instance = LaunchDarklyApi::Team.new(
description: Description for this team.,
key: team-key-123abc,
name: Example team,
_access: null,
_creation_date: null,
_links: {"parent":{"href":"/api/v2/teams","type":"application/json"},"roles":{"href":"/api/v2/teams/example-team/roles","type":"application/json"},"self":{"href":"/api/v2/teams/example-team","type":"application/json"}},
_last_modified: null,
_version: 3,
_idp_synced: true,
role_attributes: null,
roles: null,
members: null,
projects: null,
maintainers: null
)