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

# Globalization

## Realm Operations

Resource path:

```
/realm-config/services/globalization
```

Resource version: `0.0`

### create

**Usage**

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

**Parameters**

* *\--body*

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

  ```json
  {
    "type" : "object",
    "properties" : {
      "commonNameFormats" : {
        "title" : "Auto Generated Common Name Format",
        "description" : "Use this list to configure how OpenAM formats names shown in the console banner.<br><br>This setting allows the name of the authenticated user shown in the OpenAM console banner to be customised based on the locale of the user.",
        "propertyOrder" : 300,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      }
    }
  }
  ```

### delete

**Usage**

```
am> delete Globalization --realm Realm
```

### getAllTypes

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

**Usage**

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

### getCreatableTypes

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

**Usage**

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

### nextdescendents

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

**Usage**

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

### read

**Usage**

```
am> read Globalization --realm Realm
```

### update

**Usage**

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

**Parameters**

* *\--body*

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

  ```json
  {
    "type" : "object",
    "properties" : {
      "commonNameFormats" : {
        "title" : "Auto Generated Common Name Format",
        "description" : "Use this list to configure how OpenAM formats names shown in the console banner.<br><br>This setting allows the name of the authenticated user shown in the OpenAM console banner to be customised based on the locale of the user.",
        "propertyOrder" : 300,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      }
    }
  }
  ```

## Global Operations

Resource path:

```
/global-config/services/globalization
```

Resource version: `1.0`

### getAllTypes

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

**Usage**

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

### getCreatableTypes

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

**Usage**

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

### nextdescendents

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

**Usage**

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

### read

**Usage**

```
am> read Globalization --global
```

### update

**Usage**

```
am> update Globalization --global --body body
```

**Parameters**

* *\--body*

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

  ```json
  {
    "type" : "object",
    "properties" : {
      "sun-identity-g11n-settings-charset-alias-mapping" : {
        "title" : "Charset Aliases",
        "description" : "Use this list to map between different character set names used in Java and in MIME.",
        "propertyOrder" : 200,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      },
      "charsetMappings" : {
        "title" : "Charsets Supported by Each Locale",
        "description" : "This table lets you configure the order of supported character sets used for each supported locale. Change the settings only if the defaults are not appropriate.",
        "propertyOrder" : 100,
        "required" : true,
        "items" : {
          "type" : "string"
        },
        "type" : "array",
        "exampleValue" : ""
      },
      "defaults" : {
        "properties" : {
          "commonNameFormats" : {
            "title" : "Auto Generated Common Name Format",
            "description" : "Use this list to configure how OpenAM formats names shown in the console banner.<br><br>This setting allows the name of the authenticated user shown in the OpenAM console banner to be customised based on the locale of the user.",
            "propertyOrder" : 300,
            "required" : true,
            "items" : {
              "type" : "string"
            },
            "type" : "array",
            "exampleValue" : ""
          }
        },
        "type" : "object",
        "title" : "Realm Defaults"
      }
    }
  }
  ```
