# set_disco_summary_value

**Descripción**

Establece un valor fijo para una clave del diccionario '\_SUMMARY'.

**Parámetros**

<table border="1" id="bkmrk-module-acepta-el-tip" style="height: 87px; width: 477px;"><tbody><tr style="height: 29px;"><td style="height: 29px; width: 72px;">**Nombre** </td><td style="height: 29px; width: 45px;">**Tipo**</td><td style="height: 29px; width: 83px;">**Requerido**</td><td style="height: 29px; width: 277px;">**Descripción**</td></tr><tr style="height: 29px;"><td style="height: 29px; width: 72px;">key</td><td style="height: 29px; width: 45px;">str</td><td style="height: 29px; width: 83px;">Si</td><td style="height: 29px; width: 277px;">Clave para la que se establece el valor</td></tr><tr style="height: 29px;"><td style="height: 29px; width: 72px;">value</td><td style="height: 29px; width: 45px;">any</td><td style="height: 29px; width: 83px;">Si</td><td style="height: 29px; width: 277px;">Valor a asignar a la clave</td></tr></tbody></table>

**Return**

<table border="1" id="bkmrk-tipo-none" style="border-collapse: collapse; width: 100%;"><tbody><tr><td style="width: 100%;">**Tipo**</td></tr><tr><td style="width: 100%;">None</td></tr></tbody></table>

**Versión**

- 1.0.0

**Ejemplo**

```
import pandoraPlugintools as pt

# Set a fixed value for a specific key in the discovery summary
pt.set_disco_summary_value('total_devices', 100)
pt.set_disco_summary_value('active_devices', 75)
pt.set_disco_summary_value('inactive_devices', 25)

# Verify by printing the updated _SUMMARY
print(pt._SUMMARY)
```