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

# ConfigurationVersionService

## Global Operations

Resource path:

```
/global-config/services/ConfigurationVersionService
```

Resource version: `1.0`

### getAllTypes

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

**Usage**

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

### getCreatableTypes

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

**Usage**

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

### nextdescendents

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

**Usage**

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

### read

**Usage**

```
am> read ConfigurationVersionService --global
```

### update

**Usage**

```
am> update ConfigurationVersionService --global --body body
```

**Parameters**

* *\--body*

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

  ```json
  {
    "type" : "object",
    "properties" : {
      "configurationCommit" : {
        "title" : "configurationCommit",
        "description" : "",
        "propertyOrder" : 200,
        "required" : true,
        "type" : "string",
        "exampleValue" : ""
      },
      "appliedRuleIds" : {
        "title" : "appliedRuleIds",
        "description" : "",
        "propertyOrder" : 300,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      },
      "configurationVersion" : {
        "title" : "Configuration Version",
        "description" : "AM's configuration version",
        "propertyOrder" : 100,
        "required" : true,
        "type" : "string",
        "exampleValue" : ""
      }
    }
  }
  ```
