{"id":45045,"date":"2022-01-28T00:00:00","date_gmt":"2022-01-28T00:00:00","guid":{"rendered":"urn:uuid:6a56f840-b110-e640-ad2f-7d245fa963f1"},"modified":"2022-01-28T00:00:00","modified_gmt":"2022-01-28T00:00:00","slug":"what-is-cloud-native","status":"publish","type":"post","link":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/","title":{"rendered":"What is Cloud Native?"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/www.trendmicro.com\/content\/dam\/trendmicro\/global\/en\/devops\/22\/a\/what-is-cloud-native\/what-is-cloudnative.jpg\"><\/p>\n<div><img decoding=\"async\" src=\"https:\/\/www.trendmicro.com\/content\/dam\/trendmicro\/global\/en\/devops\/22\/a\/what-is-cloud-native\/what-is-cloudnative.jpg\" class=\"ff-og-image-inserted\"><\/div>\n<p>As businesses have moved to the cloud and adopted new cloud services, the architectures and methodologies for building software have had to mature to meet these new demands. According to Gartner, \u201cmore than 70 percent of companies have now migrated at least some workloads into the cloud.\u201d We can expect this momentum to continue due to COVID-19, which changed the way businesses operated.<\/p>\n<p>The term \u201ccloud native\u201d has grown in popularity, but it has mixed definitions. People often conflate cloud native with technologies like containers and microservices, but leveraging these technologies doesn\u2019t automatically make software cloud native. As the name suggests, cloud native applications run in and developers have architected them for the cloud. In other words, developers have built infrastructure and methodologies optimized for the cloud.<\/p>\n<p>When thinking about a solution as cloud native, it\u2019s essential to think about scaling automation and building infrastructure and software solutions that can adapt and communicate in these dynamic environments. We should treat infrastructure as immutable and tasks as disposable so our software can adjust and scale. We can even physically move our infrastructure at any time, autonomously and with virtually no downtime. Then, we can define our solution as genuinely cloud native.<\/p>\n<p>Let\u2019s explore cloud native software\u2019s anatomy to understand what being cloud native truly means.<\/p>\n<p><span class=\"body-subhead-title\">Anatomy of Cloud Native Software<\/span><\/p>\n<p>A few key factors enable software to become cloud native. The most obvious is that our application runs in the cloud, but simply running on a cloud-based infrastructure isn\u2019t enough.<\/p>\n<p>Let\u2019s say we have an application running on an AWS Elastic Compute Cloud (EC2) instance in AWS. Sure, it\u2019s running in the cloud, but what happens when that EC2 instance goes away, or the system must scale up due to heavy traffic?<\/p>\n<p>If our application can\u2019t handle this, it isn\u2019t yet cloud native \u2014 even if it\u2019s running in the cloud. Actual cloud native applications integrate these fundamental cloud capabilities from the start. As a result, people often talk about containers and microservices synonymously with cloud native applications. Containers help make it easier to dynamically scale environments. By building applications as microservices, we can scale each service independently instead of scaling everything simultaneously.<\/p>\n<p>The <a title=\"CNCF documentation\" href=\"https:\/\/github.com\/cncf\/toc\/blob\/main\/DEFINITION.md\" target=\"_blank\" rel=\"noopener\">Cloud Native Computing Foundation (CNCF) documentation states<\/a> \u201c[c]ontainers, service meshes, microservices, immutable infrastructure, and declarative application programming interfaces (APIs) exemplify [the cloud native] approach.\u201d Let\u2019s break each of these five components down to understand what they are and how they empower cloud native software.<\/p>\n<p><span class=\"body-subhead-title\">1. Containers<\/span><\/p>\n<p>Containers have become synonymous with the term cloud native because using containers helps a solution become cloud native. These software packages contain everything the application needs to run, such as the code, configuration, runtime, system tools, and libraries.<\/p>\n<p>The main benefit of containers is that it\u2019s easy to start, shut down, and restart the application since everything is all in one place. We can also easily port the application as the underlying hardware provides disk space and memory resources. We can manage everything else the application needs within the container. Finally, packaging an application into a container makes it easy to scale. We can simply run multiple containers to increase throughput based on the current workload (if the application architecture supports it).<\/p>\n<p>Each of these features takes an application much closer to hitting the true definition of cloud native. The underlying hardware can be immutable, as we can simply destroy and rebuild the container on different hardware. We can also scale our application by creating more containers or use a containers-as-a-service offering that simplifies deployment, management, and scaling of containerized applications.<\/p>\n<p><span class=\"body-subhead-title\">2. Microservices<\/span><\/p>\n<p>We\u2019ve just discussed the power of containers, but our application architecture must support this modularization in practice. Otherwise, we end up with a monolithic application running inside a container, which negates most of the container\u2019s positives.<\/p>\n<p>A microservice architecture breaks an application down from one extensive system into multiple services that each handle one specific task. Breaking an application up means making each service loosely coupled. Loose coupling makes it quicker to make changes and add a service without impacting the whole codebase. It\u2019s also easier to scale, as now we control which parts of the system to scale and by how much.<\/p>\n<p>For example, instead of sharing a single database across all services in a monolithic application, each microservice can have its own database, ensuring loose coupling.<\/p>\n<p><span class=\"body-subhead-title\">3. Service Meshes<\/span><\/p>\n<p>Breaking your application into smaller chunks makes it easier to manage and scale. Now you have many more services than you can physically separate, but they still need to communicate with each other. Service meshes help solve this challenge.<\/p>\n<p>A service mesh controls how services talk to each other. Managing that communication can be cumbersome if you have many microservices that must speak to specific additional services. Instead of coding how each microservice communicates, you can use a service mesh instead. The service mesh abstracts this communication to a separate infrastructure layer, simplifying the process.<\/p>\n<p>As we\u2019ve already explored, we need to break down our applications into small, self-contained packages to be genuinely cloud native. The simplest way to do this while maintaining inter-service communication is by using service meshes.<\/p>\n<p><span class=\"body-subhead-title\">4. Immutable Infrastructure<\/span><\/p>\n<p>A critical mindset to adopt when making an application cloud native is to consider all infrastructure as immutable. Hosting infrastructure in a cloud provides many benefits. Still, you can realize them only if the infrastructure can die, move physical location, and change size with ease and minimal impact on an application.<\/p>\n<p>This flexibility is one of the main reasons containers and microservices have become synonymous with the term cloud native. Your application must be self-contained and broken into small chunks that make deploying and scaling trivial for the infrastructure to be immutable.<\/p>\n<p>When thinking about immutable infrastructure, one final thing to consider is dealing with failures. If a server fails, your deployments should respond automatically. Technologies like Kubernetes, a container management platform, let you have self-healing containers that you can restart if the container fails a defined health check, which is ideal if a server needs rebooting or replacing.<\/p>\n<p>Rebooting a server with self-healing containers means that you can restore your service when it\u2019s possible. But this doesn\u2019t prevent downtime. For this, you should seriously consider redundancy.<\/p>\n<p>Again, containerized services allow you to run multiple instances anywhere you like. Having a backup service on a different server that you can hot-swap on failure means your service stays online even if there is a server failure. Having the redundancy server in a separate physical location, like using a different AWS availability zone, is also good practice to protect your service from localized cloud service disruption.<\/p>\n<p><span class=\"body-subhead-title\">5. Declarative APIs<\/span><\/p>\n<p>The final point from the CNCF is about declarative APIs. An API is a set of functions or features that perform specific tasks in a particular system. You can build APIs for internal use only or allow other services to interact with them.<\/p>\n<p>The goal of declarative APIs is to allow users to describe what they must do versus how. For example, let\u2019s say you have a use case for creating orders and storing them in a database. You can build an API that exposes this functionality in several ways. A non-declarative example would involve functions that allow the user to describe how to connect to the database and create and save an order. A declarative API, in contrast, would have a single function or endpoint that encapsulates all of this. Now the end-user simply asks your API to create an order, and you control how this happens<\/p>\n<p>The benefit of a declarative API is that now the application controls the business logic and how services communicate with each other. This control enables you to break the components down, ensure they can communicate through service meshes, and build scalable and resilient microservices.<\/p>\n<p>Although these \u201ccloud native\u201d characteristics we\u2019ve just discussed often apply to cloud platforms, you can also apply them to on-premise solutions if you want to have cloud capabilities on your infrastructure. Or, the solution can straddle both in a hybrid cloud environment. If the five points discussed above are built-in, then technically, your solution is cloud native, regardless of your physical hardware\u2019s location.<\/p>\n<p><span class=\"body-subhead-title\">Conclusion<\/span><\/p>\n<p>The term cloud native isn\u2019t just a marketing buzz-term, it\u2019s a method to build resilient and scalable applications.<\/p>\n<p>An application running in a container in the cloud isn\u2019t necessarily cloud native. A monolithic application packaged up in a container and running in a cloud service doesn\u2019t fulfill the core elements of what makes a service genuinely cloud native.<\/p>\n<p>Cloud native really means that an application is scalable and portable. An application should include microservices that run at higher levels of abstraction than virtual machines, such as containers that communicate through service meshes, to be called cloud native. The application must treat any hardware and infrastructure as immutable and be quick to deploy. Finally, any APIs must be declarative to allow users to describe what should happen, not how.<\/p>\n<p>Only when it meets these five requirements can we call an application cloud native.<\/p>\n<p> Read More <a href=\"https:\/\/www.trendmicro.com\/en_us\/devops\/22\/a\/what-is-cloud-native.html\">HERE<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>You\u2019ve most likely heard the term \u201ccloud native,\u201d but what does it really mean? This article explores the five requirements of a true cloud native application. Read More HERE&#8230;<\/p>\n","protected":false},"author":2,"featured_media":45046,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"colormag_page_layout":"default_layout","footnotes":""},"categories":[61],"tags":[9503,9501,9575,9506,9507],"class_list":["post-45045","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-trendmicro","tag-trend-micro-devops-article","tag-trend-micro-devops-cloud-native","tag-trend-micro-devops-container-security","tag-trend-micro-devops-expert-perspective","tag-trend-micro-devops-multi-cloud"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is Cloud Native? 2026 | ThreatsHub Cybersecurity News<\/title>\n<meta name=\"description\" content=\"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security &amp; Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Cloud Native? 2026 | ThreatsHub Cybersecurity News\" \/>\n<meta property=\"og:description\" content=\"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security &amp; Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/\" \/>\n<meta property=\"og:site_name\" content=\"ThreatsHub Cybersecurity News\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-28T00:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.trendmicro.com\/content\/dam\/trendmicro\/global\/en\/devops\/22\/a\/what-is-cloud-native\/what-is-cloudnative.jpg\" \/>\n<meta name=\"author\" content=\"TH Author\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@threatshub\" \/>\n<meta name=\"twitter:site\" content=\"@threatshub\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TH Author\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/\"},\"author\":{\"name\":\"TH Author\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#\\\/schema\\\/person\\\/12e0a8671ff89a863584f193e7062476\"},\"headline\":\"What is Cloud Native?\",\"datePublished\":\"2022-01-28T00:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/\"},\"wordCount\":1527,\"publisher\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/what-is-cloud-native.jpg\",\"keywords\":[\"Trend Micro DevOps : Article\",\"Trend Micro DevOps : Cloud Native\",\"Trend Micro DevOps : Container Security\",\"Trend Micro DevOps : Expert Perspective\",\"Trend Micro DevOps : Multi Cloud\"],\"articleSection\":[\"TrendMicro\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/\",\"name\":\"What is Cloud Native? 2026 | ThreatsHub Cybersecurity News\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/what-is-cloud-native.jpg\",\"datePublished\":\"2022-01-28T00:00:00+00:00\",\"description\":\"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security & Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/what-is-cloud-native.jpg\",\"contentUrl\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/what-is-cloud-native.jpg\",\"width\":641,\"height\":350},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/what-is-cloud-native\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Trend Micro DevOps : Article\",\"item\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/tag\\\/trend-micro-devops-article\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What is Cloud Native?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/\",\"name\":\"ThreatsHub Cybersecurity News\",\"description\":\"%%focuskw%% Threat Intel \u2013 Threat Intel Services \u2013 CyberIntelligence \u2013 Cyber Threat Intelligence - Threat Intelligence Feeds - Threat Intelligence Reports - CyberSecurity Report \u2013 Cyber Security PDF \u2013 Cybersecurity Trends - Cloud Sandbox \u2013- Threat IntelligencePortal \u2013 Incident Response \u2013 Threat Hunting \u2013 IOC - Yara - Security Operations Center \u2013 SecurityOperation Center \u2013 Security SOC \u2013 SOC Services - Advanced Threat - Threat Detection - TargetedAttack \u2013 APT \u2013 Anti-APT \u2013 Advanced Protection \u2013 Cyber Security Services \u2013 Cybersecurity Services -Threat Intelligence Platform\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#organization\"},\"alternateName\":\"Threatshub.org\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#organization\",\"name\":\"ThreatsHub.org\",\"alternateName\":\"Threatshub.org\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Threatshub_Favicon1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Threatshub_Favicon1.jpg\",\"width\":432,\"height\":435,\"caption\":\"ThreatsHub.org\"},\"image\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/threatshub\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#\\\/schema\\\/person\\\/12e0a8671ff89a863584f193e7062476\",\"name\":\"TH Author\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g\",\"caption\":\"TH Author\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Cloud Native? 2026 | ThreatsHub Cybersecurity News","description":"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security & Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/","og_locale":"en_US","og_type":"article","og_title":"What is Cloud Native? 2026 | ThreatsHub Cybersecurity News","og_description":"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security & Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.","og_url":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/","og_site_name":"ThreatsHub Cybersecurity News","article_published_time":"2022-01-28T00:00:00+00:00","og_image":[{"url":"https:\/\/www.trendmicro.com\/content\/dam\/trendmicro\/global\/en\/devops\/22\/a\/what-is-cloud-native\/what-is-cloudnative.jpg","type":"","width":"","height":""}],"author":"TH Author","twitter_card":"summary_large_image","twitter_creator":"@threatshub","twitter_site":"@threatshub","twitter_misc":{"Written by":"TH Author","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/#article","isPartOf":{"@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/"},"author":{"name":"TH Author","@id":"https:\/\/www.threatshub.org\/blog\/#\/schema\/person\/12e0a8671ff89a863584f193e7062476"},"headline":"What is Cloud Native?","datePublished":"2022-01-28T00:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/"},"wordCount":1527,"publisher":{"@id":"https:\/\/www.threatshub.org\/blog\/#organization"},"image":{"@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/#primaryimage"},"thumbnailUrl":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2022\/01\/what-is-cloud-native.jpg","keywords":["Trend Micro DevOps : Article","Trend Micro DevOps : Cloud Native","Trend Micro DevOps : Container Security","Trend Micro DevOps : Expert Perspective","Trend Micro DevOps : Multi Cloud"],"articleSection":["TrendMicro"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/","url":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/","name":"What is Cloud Native? 2026 | ThreatsHub Cybersecurity News","isPartOf":{"@id":"https:\/\/www.threatshub.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/#primaryimage"},"image":{"@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/#primaryimage"},"thumbnailUrl":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2022\/01\/what-is-cloud-native.jpg","datePublished":"2022-01-28T00:00:00+00:00","description":"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security & Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.","breadcrumb":{"@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/#primaryimage","url":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2022\/01\/what-is-cloud-native.jpg","contentUrl":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2022\/01\/what-is-cloud-native.jpg","width":641,"height":350},{"@type":"BreadcrumbList","@id":"https:\/\/www.threatshub.org\/blog\/what-is-cloud-native\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.threatshub.org\/blog\/"},{"@type":"ListItem","position":2,"name":"Trend Micro DevOps : Article","item":"https:\/\/www.threatshub.org\/blog\/tag\/trend-micro-devops-article\/"},{"@type":"ListItem","position":3,"name":"What is Cloud Native?"}]},{"@type":"WebSite","@id":"https:\/\/www.threatshub.org\/blog\/#website","url":"https:\/\/www.threatshub.org\/blog\/","name":"ThreatsHub Cybersecurity News","description":"%%focuskw%% Threat Intel \u2013 Threat Intel Services \u2013 CyberIntelligence \u2013 Cyber Threat Intelligence - Threat Intelligence Feeds - Threat Intelligence Reports - CyberSecurity Report \u2013 Cyber Security PDF \u2013 Cybersecurity Trends - Cloud Sandbox \u2013- Threat IntelligencePortal \u2013 Incident Response \u2013 Threat Hunting \u2013 IOC - Yara - Security Operations Center \u2013 SecurityOperation Center \u2013 Security SOC \u2013 SOC Services - Advanced Threat - Threat Detection - TargetedAttack \u2013 APT \u2013 Anti-APT \u2013 Advanced Protection \u2013 Cyber Security Services \u2013 Cybersecurity Services -Threat Intelligence Platform","publisher":{"@id":"https:\/\/www.threatshub.org\/blog\/#organization"},"alternateName":"Threatshub.org","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.threatshub.org\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.threatshub.org\/blog\/#organization","name":"ThreatsHub.org","alternateName":"Threatshub.org","url":"https:\/\/www.threatshub.org\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.threatshub.org\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2025\/05\/Threatshub_Favicon1.jpg","contentUrl":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2025\/05\/Threatshub_Favicon1.jpg","width":432,"height":435,"caption":"ThreatsHub.org"},"image":{"@id":"https:\/\/www.threatshub.org\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/threatshub"]},{"@type":"Person","@id":"https:\/\/www.threatshub.org\/blog\/#\/schema\/person\/12e0a8671ff89a863584f193e7062476","name":"TH Author","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g","caption":"TH Author"}}]}},"_links":{"self":[{"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/posts\/45045","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/comments?post=45045"}],"version-history":[{"count":0,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/posts\/45045\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/media\/45046"}],"wp:attachment":[{"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/media?parent=45045"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/categories?post=45045"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/tags?post=45045"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}