Versiones comparadas

Clave

  • Se ha añadido esta línea.
  • Se ha eliminado esta línea.
  • El formato se ha cambiado.

Nuevo concepto de sección para la ubicación física de recursos de infraestructura

La ubicación física de un recurso de infraestructura establecía hasta ahora una estructura de Edificio, Planta y Sala.

Para un ajuste más fiel a la estructura real, ha sido necesario incorporar un nuevo concepto entre planta y sala denominado Sección.

Este cambio implica un conjunto de modificaciones en los siguientes métodos REST de la API para los que será necesaria su adaptación:

Listado y detalle de recursos de infraestructura:

  • La estructura jerarquizada de la ubicación física incluirá la sección dentro de la planta y la sala dentro de la sección, deprecándose el objeto sala dentro de la planta.

Creación y edición de recursos de infraestructura:

  • La misma jerarquía anterior aplica a los datos enviados en el cuerpo de la petición a la hora de crear y editar recursos. Queda por lo tanto deprecado el envío de la sala dentro del objeto de planta.
  • No será posible la edición de la información de la ubicación física por parte de técnicos si el usuario ha informado personalmente su ubicación en la aplicación de ayudaDIGITAL Escritorio.

Ubicación física para contactos:

  • El detalle de un contacto también pasará a contar con un nivel de jerarquía adicional en la estructura de la respuesta para incluir la sección.
  • La creación y edición de contactos (de uso exclusivo para herramientas internas) también recibirá la nueva estructura en el cuerpo de la petición.

Tablas maestras:

  • Se ha creado una consulta para extraer las secciones de una planta.
  • Se ha creado una consulta para extraer las salas de una sección.
  • La consulta del listado de plantas de un edificio dejará de mostrar las salas disponibles y mostrará las secciones disponibles. Cambián también los links para acceder a los recursos asociados a la planta.
  • Queda deprecada la consulta para extraer salas de una planta.
  • Del mismo modo, la creación y edición de plantas, secciones y salas (de uso exclusivo para NWTWeb Técnica) han sufrido modificaciones.

Índice  Índice Principal

Presentación de hijos
pageAPI REST Servicios CGES

Guía detallada

Info

Métodos REST afectados:

Obtener recursos de infraestructura (listado y detalle)

  • No cambia la versión del método utilizada, pero debido a la retirada e inclusión de atributos, solo cambia la estructura de la respuesta.
Expandir
titleInformación adicional...
HTML
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #61affe;background: rgba(97,175,254,.1);">
<div style="border-color: #61affe;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #61affe;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">GET</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: #3b4151;">/cgescms/recursos/infraestructura</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Listado de recursos de infraestructura</div>
</div>
</div>
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #61affe;background: rgba(97,175,254,.1);">
<div style="border-color: #61affe;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #61affe;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">GET</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: #3b4151;">/cgescms/recursos/infraestructura/{uuidRecurso}</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Obtener recurso de infraestructura</div>
</div>
</div>
Atributos deprecadosAtributos que sustituyen
Bloque de código
themeConfluence
firstline1
{
    ...
    "recursos": [{
            ...
            "ubicacionFisica": {
                ...
                "edificio": {
                    ...
                    "planta": {
                        ...
						"sala": {
							"id": 0,
							"nombre": "string"
						}
                    }
                }
            }
        }
    ]
}
Bloque de código
themeConfluence
firstline1
{
    ...
    "recursos": [{
            ...
            "ubicacionFisica": {
                ...
                "edificio": {
                    ...
                    "planta": {
                        ...
                        "seccion": {
                            "id": 0,
                            "nombre": "string",
                            "sala": {
                                "id": 0,
                                "nombre": "string"
                            }
                        }
                    }
                }
            }
        }
    ]
}

Para más información respecto al uso de métodos de la API, ver la definición.

Métodos que serán retirados


Crear y editar recursos de infraestructura

  • No cambia la versión del método utilizada, pero debido a la retirada e inclusión de atributos, solo cambia la estructura del cuerpo del mensaje.
Expandir
titleInformación adicional...
HTML
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: 
#ebebeb
#49cc90;background: rgba(
235
73,
235
204,
235
144,.1);">
<div style="border-color: 
#ebebeb
#49cc90;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: 
#ebebeb
#49cc90;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;"
>GET<
>POST</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: 
rgb(59,65,81);text-decoration-line:line-through;">/cgescms/aplicaciones<
#3b4151;">/cgescms/recursos/infraestructura</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;"
>Obtener
>Crear recurso 
aplicaciones [v1.1]<
de infraestructura</div>
</div>
</div>
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: 
#ebebeb
#fca130;background: rgba(
235
252,
235
161,
235
48,.1);">
<div style="border-color: 
#ebebeb
#fca130;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: 
#ebebeb
#fca130;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;"
>GET<
>PUT</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: 
rgb(59,65,81);text-decoration-line:line-through
#3b4151;">/cgescms/
aplicaciones
recursos/infraestructura/{
uuidAplicacion
uuidRecurso}</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;"
>Obtener
>Modificar recurso 
aplicación [v1.0]<
de infraestructura</div>
</div>
</div>
Atributos deprecadosAtributos que sustituyen
Bloque de código
themeConfluence
firstline1
"ubicacionFisica": {
	...
	"edificio": {
		...
		"planta": {
			...
			"sala": {
				"id": 0
			}
		}
	}
}
Bloque de código
themeConfluence
firstline1
"ubicacionFisica": {
	...
	"edificio": {
		...
		"planta": {
			...
			"seccion": {
				"id": 0,
				"sala": {
					"id": 0
				}
			}
		}
	}
}

Ubicación física para contactos

  • No cambia la versión del método utilizada, pero debido a la retirada e inclusión de atributos, solo cambia la estructura de la respuesta.
Expandir
titleInformación adicional...
HTML
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #61affe;background: rgba(97,175,254,.1);">
<div style="border-color: #61affe;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #61affe;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">GET</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: #3b4151;">/cges/links/contactos/{idContacto}</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Obtener contacto según la clave recibida</div>
</div>
</div>
Atributos deprecadosAtributos que sustituyen
Bloque de código
themeConfluence
firstline1
"ubicacionFisica": {
	...
	"edificio": {
		...
		"planta": {
			...
			"sala": {
				"id": 0,
				"nombre": "string"
			}
		}
	}
}
Bloque de código
themeConfluence
firstline1
"ubicacionFisica": {
	...
	"edificio": {
		...
		"planta": {
			...
			"seccion": {
				"id": 0,
				"nombre": "string",
				"sala": {
					"id": 0,
					"nombre": "string"
				}
			}
		}
	}
}


Para más información respecto al uso de métodos de la API, ver la definición.

Métodos que serán retirados

HTML
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #ebebeb;background: rgba(235,235,235,.1);">
<div style="border-color: #ebebeb;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #ebebeb;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">GET</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: rgb(59,65,81);text-decoration-line:line-through;">/cges/tablas/ubicaciones/{uuidUbicacion}/edificios/{idEdificio}/plantas/{idPlanta}/salas</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Obtener salas</div>
</div>
</div>
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #ebebeb;background: rgba(235,235,235,.1);">
<div style="border-color: #ebebeb;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #ebebeb;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">POST</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: rgb(59,65,81);text-decoration-line:line-through;">/cges/tablas/ubicaciones/{uuidUbicacion}/edificios/{idEdificio}/plantas/{idPlanta}/salas</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Crear sala</div>
</div>
</div>
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #ebebeb;background: rgba(235,235,235,.1);">
<div style="border-color: #ebebeb;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #ebebeb;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">PUT</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: rgb(59,65,81);text-decoration-line:line-through;">/cges/tablas/ubicaciones/{uuidUbicacion}/edificios/{idEdificio}/plantas/{idPlanta}/salas/{idSala}</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Modificar sala</div>
</div>
</div>

Métodos que sustituyen

HTML
<div 
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #ebebeb#61affe;background: rgba(23597,235175,235254,.1);">
<div style="border-color: #ebebeb#61affe;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #ebebeb#61affe;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">POST<>GET</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: rgb(59,65,81);text-decoration-line:line-through#3b4151;">/cgescms/aplicaciones</cges/tablas/ubicaciones/{uuidUbicacion}/edificios/{idEdificio}/plantas/{idPlanta}/secciones</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Crear aplicación [v1.0]<>Obtener sección</div>
</div>
</div>
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #ebebeb#49cc90;background: rgba(23573,235204,235144,.1);">
<div style="border-color: #ebebeb#49cc90;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #ebebeb#49cc90;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">PUT<>POST</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: rgb(59,65,81);text-decoration-line:line-through;">/cgescms/aplicaciones/{uuidAplicacion}<#3b4151;">/cges/tablas/ubicaciones/{uuidUbicacion}/edificios/{idEdificio}/plantas/{idPlanta}/secciones</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Modificar aplicación [v1.0]<>Crear sección</div>
</div>
</div>

Métodos que sustituyen

HTML

<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #61affe#fca130;background: rgba(97252,175161,25448,.1);">
<div style="border-color: #61affe#fca130;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #61affe#fca130;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">GET<>PUT</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: #3b4151;">/cgescms/aplicaciones</cges/tablas/ubicaciones/{uuidUbicacion}/edificios/{idEdificio}/plantas/{idPlanta}/secciones/{idSeccion}</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Obtener aplicaciones [v2.0]<>Modificar sección</div>
</div>
</div>

<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #61affe;background: rgba(97,175,254,.1);">
<div style="border-color: #61affe;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #61affe;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">GET</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: #3b4151;">/cgescms/aplicaciones/{uuidAplicacion}</cges/tablas/ubicaciones/{uuidUbicacion}/edificios/{idEdificio}/plantas/{idPlanta}/secciones/{idSeccion}/salas</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Obtener aplicación [v2.0]<>Obtener salas</div>
</div>
</div>
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #49cc90;background: rgba(73,204,144,.1);">
<div style="border-color: #49cc90;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #49cc90;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">POST</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: #3b4151;">/cgescms/aplicaciones</cges/tablas/ubicaciones/{uuidUbicacion}/edificios/{idEdificio}/plantas/{idPlanta}/secciones/{idSeccion}/salas</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Crear aplicación [v2.0]<sala</div>
</div>
</div>
<div style="margin: 0 0 15px;margin-top: 0px;margin-right: 0px;margin-bottom: 15px;margin-left: 0px;border: 1px solid #000;border-radius: 4px;-webkit-box-shadow: 0 0 3px rgba(0,0,0,.19);box-shadow: 0 0 3px rgba(0,0,0,.19);border-color: #fca130;background: rgba(252,161,48,.1);">
<div style="border-color: #fca130;display: flex;-webkit-box-align: center;align-items: center;padding: 5px;">
<span style="background: #fca130;font-size: 14px;font-weight: 700;min-width: 80px;padding: 6px 15px;text-align: center;border-radius: 3px;text-shadow: 0 1px 0 rgba(0,0,0,.1);font-family: sans-serif;color: #fff;">PUT</span>
<span style="font-size: 16px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 3 auto;flex: 0 3 auto;-webkit-box-align: center;-ms-flex-align: center;align-items: center;word-break: break-all;padding: 0 10px;font-family: monospace;font-weight: 600;color: #3b4151;">/cgescms/aplicaciones/{uuidRecurso/cges/tablas/ubicaciones/{uuidUbicacion}/edificios/{idEdificio}/plantas/{idPlanta}/secciones/{idSeccion}/salas/{idSala}</span>
<div style="font-size: 13px;-webkit-box-flex: 1;-ms-flex: 1;flex: 1;font-family: sans-serif;color: #3b4151;">Modificar aplicación [v2.0]<sala</div>
</div>
</div>

Artículos Relacionados

Jira
serverJira
columnIdsissuekey,summary,issuetype,created,updated,duedate,assignee,reporter,priority,status,resolution
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIdaea3f5ce-c977-3088-89fe-07be16229731
keySERVCGES-2344