Google Cloud Storage (GCS) is GCP's core object storage service, offering 99.999999999% (11-nine) data durability and effectively unlimited scale. This article walks through everything you need: Storage Class selection, Lifecycle management, security, and comparisons against AWS S3 / Azure Blob.
| Class | Price ($/GB/month) | Retrieval fee | Min. storage | Use case |
|---|---|---|---|---|
| Standard | 0.020 | Free | — | Frequent access, web serving |
| Nearline | 0.010 | $0.01/GB | 30 days | Less than once a month |
| Coldline | 0.004 | $0.02/GB | 90 days | Once a quarter |
| Archive | 0.0012 | $0.05/GB | 365 days | Long-term archive |
{
"lifecycle": {
"rule": [
{ "action": {"type": "SetStorageClass", "storageClass": "NEARLINE"},
"condition": {"age": 30} },
{ "action": {"type": "SetStorageClass", "storageClass": "COLDLINE"},
"condition": {"age": 90} },
{ "action": {"type": "Delete"},
"condition": {"age": 365} }
]
}
}| Item | GCS | S3 | Azure Blob |
|---|---|---|---|
| Standard class | $0.020/GB | $0.023/GB | $0.018/GB |
| Strong consistency | Yes, from day one | Yes, since 2020 | Yes |
| 11-nine durability | Yes | Yes | Yes |
| Multi-region | Native | Via Replication config | Via GRS |
| Free tier | 5 GB/month | 5 GB (12 months) | 5 GB (12 months) |
How should I choose a Storage Class?
Choose by access frequency: several times a month or more → Standard, less than once a month → Nearline, about once a quarter → Coldline, less than once a year → Archive. Watch out for minimum storage duration (30/90/365 days).
What is the difference between Multi-region and Dual-region?
Multi-region spans multiple regions within a continent (e.g., any region in the US). Dual-region pins replication to two specific regions you choose. Pick based on your DR requirements.
Uniform vs Fine-grained access control?
Uniform = bucket-level IAM only. Fine-grained = ACLs can also be used. Uniform is recommended for new buckets and can be enforced via Organization Policy.
What can Object Lifecycle Management do?
Automatically change Storage Class or delete objects based on conditions (age, creation date, Storage Class). It's a cornerstone of cost optimization.
What about Object Versioning?
Retains older versions whenever an object is overwritten. Useful for recovering from accidental deletes. Older versions are also billed, so delete them appropriately via Lifecycle rules.
What is a Signed URL?
A signed URL grants temporary object access without requiring credentials. You can expose uploads or downloads with a time-limited link.
Cloud Storage vs Filestore vs Persistent Disk?
Object storage → Cloud Storage. NFS file sharing → Filestore. VM-local or network-attached block storage → Persistent Disk.
How does it compare to AWS S3 / Azure Blob?
GCS offers strong consistency (S3 has also been strongly consistent since 2020). Multi-region durability is 99.999999999%. Costs are broadly similar, with GCS slightly cheaper on egress.
Related articles: storage
Professional Cloud Developer (PCD): Complete Guide (2026)
Pass the PCD exam — Cloud Run, GKE, App Engine, Cloud SQL/Spanner. The developer-focused Professional cert.
App Engine Complete Guide: Standard vs Flexible (2026)
App Engine — Standard vs. Flexible, services, versions, traffic splitting. The classic GCP PaaS.
Cloud CDN & Media CDN Guide (2026)
Cloud CDN vs. Media CDN — features, pricing, use cases. The CDN options on GCP.
Professional Cloud Network Engineer (PCNE): Guide (2026)
Pass the PCNE exam — VPC, Cloud Interconnect, Cloud VPN, Cloud Load Balancing, hybrid networking.
* Google Cloud is a trademark of Google LLC. For the latest information, see the official Cloud Storage docs.
Practice with certification-focused question sets
Explore GCP exam prepNicheeLab Editorial Team
NicheeLab editorial team focused on data engineering and cloud certification learning. Content is structured around practical study needs and official exam domains.
Google Cloud Certification Roadmap (2026)
Choose your GCP certification path — Foundational, Associate...
CDL Cloud Digital Leader: Complete Exam Guide (2026)
Pass the Cloud Digital Leader exam — cloud business value, G...
GAIL Generative AI Leader: Complete Exam Guide (2026)
Pass the Generative AI Leader exam — Gemini, Vertex AI, Work...
Vertex AI Fundamentals for GCP Certs (2026)
Vertex AI basics every cert candidate needs — Workbench, Pip...
Associate Cloud Engineer (ACE): Complete Guide (2026)
Pass the Associate Cloud Engineer exam — Console, gcloud, pr...