GCS Objects
On GCP Console (restricted)
const tdSize = document.createElement('td');
tdSize.textContent = row.size;
tr.appendChild(tdSize);
const tdUpdated = document.createElement('td');
tdUpdated.textContent = row.updated;
tr.appendChild(tdUpdated);
tbody.appendChild(tr);
});
table.appendChild(tbody);
// Append table to container
tableContainer.appendChild(table);
});