[Yandex Cloud documentation](../../index.md) > [Yandex Cloud Interconnect](../index.md) > [Step-by-step guides](index.md) > Updating trunk parameters

# Updating trunk parameters

Currently, users can perform limited operations when updating a trunk:
* Updating the trunk name: `new-name`.
* Update the trunk description in `description`.
* Changing [labels](../../resource-manager/concepts/labels.md) assigned to a trunk.
* Set or remove the trunk deletion protection flag, `deletion-protection`.

To update other trunk parameters, e.g., [change the trunk capacity](../tutorials/trunk-capacity-change.md), you still need to contact support.

For example, to change the trunk name, follow these steps:

{% note info %}

You need the [cic.editor](../security/index.md#cic-editor) role to run this operation.

{% endnote %}

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), click ![layout-side-content-left](../../_assets/console-icons/layout-side-content-left.svg) or ![chevron-down](../../_assets/console-icons/chevron-down.svg) in the top panel and select the [folder](../../resource-manager/concepts/resources-hierarchy.md#folder).
  1. [Navigate](../../console/operations/select-service.md#select-service) to **Cloud Interconnect**.
  1. In the left-hand panel, select ![pipeline](../../_assets/console-icons/pipeline.svg) **Trunk connections**.
  1. In the row with the trunk, click ![ellipsis](../../_assets/console-icons/ellipsis.svg) and select ![pencil](../../_assets/console-icons/pencil.svg) **Edit**. In the window that opens:

      1. Optionally, change the connection **Name**. The naming requirements are as follows:

          * Length: between 3 and 63 characters.
          * It can only contain lowercase Latin letters, numbers, and hyphens.
          * It must start with a letter and cannot end with a hyphen.

          If you do not specify a name, the trunk name will be identical to the trunk [ID](../../api-design-guide/concepts/resources-identification.md).

      1. Optionally, change the connection **Description**.
      1. Optionally, change the [**Labels**](../../resource-manager/concepts/labels.md) assigned to the connection.
      1. Optionally, enable or disable the **Deletion protection** setting based on whether you need to protect the connection from accidental deletion.
      1. Click **Save**.

- CLI {#cli}

  1. See the description of the CLI command for updating [trunk](../concepts/trunk.md) parameters:

      ```bash
      yc cic trunk-connection update --help
      ```

  1. Change the trunk name:

      ```bash
      yc cic trunk-connection update cf3dcodot14p******** \
        --new-name my-new-trunk-name \
        --async
      ```

      Result:



{% endlist %}