Capítulo 545 de 988
<ExperimentalBadge> <p> Cloud Run is in <a href="/docs/cloudrun/status">Alpha status and not actively being developed.
const {sites, buckets} = await getSites('europe-west4');
for (const site of sites) {
console.log(site.id); // A unique ID for referring to that project
console.log(site.bucketName); // In which bucket the site resides in.
console.log(site.bucketRegion); // In which region the bucket resides in.
console.log(site.serveUrl); // URL of the deployed site that you can pass to `renderMediaOnCloudRun()`
}
for (const bucket of buckets) {
console.log(bucket.name); // The name of the Cloud Storage bucket.
console.log(bucket.creationDate); // A unix timestamp of when the site was created.
console.log(bucket.region); // 'europe-west4'
}