---
title: IdRepository
description: Resource path:
component: pingam
version: 8.1
page_id: pingam:entity-reference:sec-amster-entity-idrepository
canonical_url: https://docs.pingidentity.com/pingam/8.1/entity-reference/sec-amster-entity-idrepository.html
section_ids:
  sec-amster-entity-idrepository-realm-ops: Realm Operations
  sec-amster-entity-idrepository-realm-ops-create: create
  sec-amster-entity-idrepository-realm-ops-delete: delete
  sec-amster-entity-idrepository-realm-ops-getalltypes: getAllTypes
  sec-amster-entity-idrepository-realm-ops-getcreatabletypes: getCreatableTypes
  sec-amster-entity-idrepository-realm-ops-nextdescendents: nextdescendents
  sec-amster-entity-idrepository-realm-ops-read: read
  sec-amster-entity-idrepository-realm-ops-update: update
  sec-amster-entity-idrepository-global-ops: Global Operations
  sec-amster-entity-idrepository-global-ops-getalltypes: getAllTypes
  sec-amster-entity-idrepository-global-ops-getcreatabletypes: getCreatableTypes
  sec-amster-entity-idrepository-global-ops-nextdescendents: nextdescendents
  sec-amster-entity-idrepository-global-ops-read: read
  sec-amster-entity-idrepository-global-ops-update: update
---

# IdRepository

## Realm Operations

Resource path:

```
/realm-config/services/id-repositories
```

Resource version: `0.0`

### create

**Usage**

```
am> create IdRepository --realm Realm --body body
```

**Parameters**

* *\--body*

  The resource in JSON format, described by the following JSON schema:

  ```json
  {
    "type" : "object",
    "properties" : {
      "sunIdRepoAttributeValidator" : {
        "title" : "Attribute Validator Plug-in",
        "description" : "",
        "propertyOrder" : 300,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      },
      "sunIdRepoAttributeCombiner" : {
        "title" : "Attribute Combiner plug-in",
        "description" : "",
        "propertyOrder" : 100,
        "required" : true,
        "type" : "string",
        "exampleValue" : ""
      }
    }
  }
  ```

### delete

**Usage**

```
am> delete IdRepository --realm Realm
```

### getAllTypes

Obtain the collection of all secondary configuration types related to the resource.

**Usage**

```
am> action IdRepository --realm Realm --actionName getAllTypes
```

### getCreatableTypes

Obtain the collection of secondary configuration types that have yet to be added to the resource.

**Usage**

```
am> action IdRepository --realm Realm --actionName getCreatableTypes
```

### nextdescendents

Obtain the collection of secondary configuration instances that have been added to the resource.

**Usage**

```
am> action IdRepository --realm Realm --actionName nextdescendents
```

### read

**Usage**

```
am> read IdRepository --realm Realm
```

### update

**Usage**

```
am> update IdRepository --realm Realm --body body
```

**Parameters**

* *\--body*

  The resource in JSON format, described by the following JSON schema:

  ```json
  {
    "type" : "object",
    "properties" : {
      "sunIdRepoAttributeValidator" : {
        "title" : "Attribute Validator Plug-in",
        "description" : "",
        "propertyOrder" : 300,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      },
      "sunIdRepoAttributeCombiner" : {
        "title" : "Attribute Combiner plug-in",
        "description" : "",
        "propertyOrder" : 100,
        "required" : true,
        "type" : "string",
        "exampleValue" : ""
      }
    }
  }
  ```

## Global Operations

Resource path:

```
/global-config/services/id-repositories
```

Resource version: `1.0`

### getAllTypes

Obtain the collection of all secondary configuration types related to the resource.

**Usage**

```
am> action IdRepository --global --actionName getAllTypes
```

### getCreatableTypes

Obtain the collection of secondary configuration types that have yet to be added to the resource.

**Usage**

```
am> action IdRepository --global --actionName getCreatableTypes
```

### nextdescendents

Obtain the collection of secondary configuration instances that have been added to the resource.

**Usage**

```
am> action IdRepository --global --actionName nextdescendents
```

### read

**Usage**

```
am> read IdRepository --global
```

### update

**Usage**

```
am> update IdRepository --global --body body
```

**Parameters**

* *\--body*

  The resource in JSON format, described by the following JSON schema:

  ```json
  {
    "type" : "object",
    "properties" : {
      "defaults" : {
        "properties" : {
          "sunIdRepoAttributeValidator" : {
            "title" : "Attribute Validator Plug-in",
            "description" : "",
            "propertyOrder" : 300,
            "required" : true,
            "items" : {
              "type" : "string"
            },
            "type" : "array",
            "exampleValue" : ""
          },
          "sunIdRepoAttributeCombiner" : {
            "title" : "Attribute Combiner plug-in",
            "description" : "",
            "propertyOrder" : 100,
            "required" : true,
            "type" : "string",
            "exampleValue" : ""
          }
        },
        "type" : "object",
        "title" : "Realm Defaults"
      }
    }
  }
  ```
