# The ExternalGroup object

An external group from the customer's Identity Provider, resolved into
 Databricks. This is a read-only resource keyed by the IdP external ID.
 The Get method may trigger an idempotent sync from the customer's IdP to
 provision or refresh the group's data in Databricks.

## Attributes

- `name` (string, Beta)
  The resource name of the external group. The format depends on the API that
   returned it:
     - Account-scoped: accounts/{account_id}/external-groups/{external_group_id}
     - Workspace-scoped: external-groups/{external_group_id}
- `external_group_id` (string, Beta)
  The external ID of the group in the customer's IdP.
- `internal_id` (string, Beta)
  Internal groupId of the group in Databricks.
- `display_name` (string, Beta)
  Display name of the group from the customer's IdP.
- `account_id` (string, Beta)
  The parent account ID, from Databricks.

## Example

```json
{
  "name": "string",
  "external_group_id": "string",
  "internal_id": "string",
  "display_name": "string",
  "account_id": "string"
}
```


