{"id":9581,"date":"2021-07-10T10:03:24","date_gmt":"2021-07-10T10:03:24","guid":{"rendered":"https:\/\/prwatech.in\/blog\/?p=9581"},"modified":"2024-03-21T07:33:14","modified_gmt":"2024-03-21T07:33:14","slug":"basic-configuration-file-deployment-manager","status":"publish","type":"post","link":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/","title":{"rendered":"Basic configuration file : Deployment Manager"},"content":{"rendered":"\r\n<h2><span data-sheets-root=\"1\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Deployment Manager configuration file structure&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\">Deployment Manager configuration file structure<\/span><\/h2>\r\n<p>&nbsp;<\/p>\r\n<p>Deployment Manager configuration files are YAML or Jinja2 templates used to define and manage cloud resources in Google Cloud Platform (GCP). These configuration files follow a specific structure that dictates how resources are provisioned, configured, and connected within GCP environments.<\/p>\r\n<p>At the core of a Deployment Manager configuration file is the definition of resources, such as virtual machines, storage buckets, networking components, and more. Each resource is described using YAML or Jinja2 syntax, specifying attributes such as resource type, name, properties, and dependencies.<\/p>\r\n<p>Deployment Manager configuration files also support referencing variables, templates, and imports, enabling users to parameterize configurations, reuse code snippets, and organize complex deployments effectively. Additionally, these files may include metadata, outputs, and other declarations to further customize and enhance the deployment process.<\/p>\r\n<p>&nbsp;<\/p>\r\n<h3><strong>Prerequisites<\/strong><\/h3>\r\n\r\n\r\n\r\n<p>GCP <a href=\"https:\/\/cloud.google.com\/free\/?utm_source=google&amp;utm_medium=cpc&amp;utm_campaign=japac-IN-all-en-dr-BKWS-all-core-trial-EXA-dr-1605216&amp;utm_content=text-ad-none-none-DEV_c-CRE_644159077391-ADGP_Hybrid+%7C+BKWS+-+EXA+%7C+Txt+~+GCP_General_core+brand_main-KWID_43700074766895889-aud-970366092687:kwd-87853815&amp;userloc_9062009-network_g&amp;utm_term=KW_gcp&amp;gad_source=1&amp;gclid=CjwKCAjw7-SvBhB6EiwAwYdCAR4cDE-TsZ_kVCYCYR1mZTa-kz1Gw1XbOOsZqzwmt_zR6_Ql78ybzhoCRi0QAvD_BwE&amp;gclsrc=aw.ds\">account<\/a><\/p>\r\n\r\n\r\n\r\n<p><a href=\"https:\/\/prwatech.in\/blog\/\">Open<\/a> Console.<\/p>\r\n\r\n\r\n\r\n<p>Open the cloud shell<\/p>\r\n\r\n\r\n\r\n<p>To list of all supported types<\/p>\r\n\r\n\r\n\r\n<p>$ gcloud deployment-manager types list<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-9590\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg\" alt=\"\" width=\"752\" height=\"213\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg 852w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1-300x85.jpg 300w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1-768x218.jpg 768w\" sizes=\"auto, (max-width: 752px) 100vw, 752px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Create a file with extension .yaml. This will be your configuration file.<\/p>\r\n\r\n\r\n\r\n<p>$ nano vm.yaml<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-9591\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/2.jpg\" alt=\"\" width=\"653\" height=\"52\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/2.jpg 634w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/2-300x24.jpg 300w\" sizes=\"auto, (max-width: 653px) 100vw, 653px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Paste the code below into that file.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\"># Copyright 2016 Google Inc. All rights reserved.\r\n#\r\n# Licensed under the Apache License, Version 2.0 (the \"License\");\r\n# you may not use this file except in compliance with the License.\r\n# You may obtain a copy of the License at\r\n#\r\n# \u00a0 \u00a0 http:\/\/www.apache.org\/licenses\/LICENSE-2.0\r\n#\r\n# Unless required by applicable law or agreed to in writing, software\r\n# distributed under the License is distributed on an \"AS IS\" BASIS,\r\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n# See the License for the specific language governing permissions and\r\n# limitations under the License.\r\nresources:\r\n- name: vm-created-by-deployment-manager\r\n\u00a0 type: compute.v1.instance\r\n\u00a0 properties:\r\n\u00a0 \u00a0 zone: us-central1-a\r\n\u00a0 \u00a0 machineType: zones\/us-central1-a\/machineTypes\/n1-standard-1\r\n\u00a0 \u00a0 disks:\r\n\u00a0 \u00a0 - deviceName: boot\r\n\u00a0 \u00a0 \u00a0 type: PERSISTENT\r\n\u00a0 \u00a0 \u00a0 boot: true\r\n\u00a0 \u00a0 \u00a0 autoDelete: true\r\n\u00a0 \u00a0 \u00a0 initializeParams:\r\n\u00a0 \u00a0 \u00a0 \u00a0 sourceImage: projects\/debian-cloud\/global\/images\/family\/debian-9\r\n\u00a0 \u00a0 networkInterfaces:\r\n\u00a0 \u00a0 - network: global\/networks\/default<\/pre>\r\n\r\n\r\n\r\n<p>To close, Press ctrl+x\u00a0 then y\u00a0 to confirm. Then enter. The file will be saved.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-9593\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/3-1.jpg\" alt=\"\" width=\"680\" height=\"400\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/3-1.jpg 723w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/3-1-300x177.jpg 300w\" sizes=\"auto, (max-width: 680px) 100vw, 680px\" \/><\/figure>\r\n\r\n\r\n\r\n<h5 class=\"wp-block-heading\"><strong>Preview a configuration\u00a0<\/strong><\/h5>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">$     gcloud deployment-manager deployments create example-config --config configuration-file.yaml --preview<\/pre>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-9594\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/4.jpg\" alt=\"\" width=\"746\" height=\"147\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/4.jpg 870w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/4-300x59.jpg 300w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/4-768x152.jpg 768w\" sizes=\"auto, (max-width: 746px) 100vw, 746px\" \/><\/figure>\r\n\r\n\r\n\r\n<h5 class=\"wp-block-heading\"><strong>Canceling a preview<\/strong><\/h5>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">$     gcloud deployment-manager deployments cancel-preview example-config<\/pre>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-9595\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/5.jpg\" alt=\"\" width=\"792\" height=\"127\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/5.jpg 870w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/5-300x48.jpg 300w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/5-768x124.jpg 768w\" sizes=\"auto, (max-width: 792px) 100vw, 792px\" \/><\/figure>\r\n\r\n\r\n\r\n<h5 class=\"wp-block-heading\">Deleting a preview<\/h5>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">$     gcloud deployment-manager deployments delete example-config<\/pre>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"628\" height=\"158\" class=\"wp-image-9596\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/image-60.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/image-60.png 628w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/image-60-300x75.png 300w\" sizes=\"auto, (max-width: 628px) 100vw, 628px\" \/><\/figure>\r\n\r\n\r\n\r\n<h5 class=\"wp-block-heading\">Deploying a preview<\/h5>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">$     gcloud deployment-manager deployments update example-config<\/pre>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"628\" height=\"120\" class=\"wp-image-9597\" src=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/image-61.png\" alt=\"\" srcset=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/image-61.png 628w, https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/image-61-300x57.png 300w\" sizes=\"auto, (max-width: 628px) 100vw, 628px\" \/><\/figure>\r\n<p>&nbsp;<\/p>\r\n<p>Deployment Manager configuration file structure<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Deployment Manager configuration file structure &nbsp; Deployment Manager configuration files are YAML or Jinja2 templates used to define and manage cloud resources in Google Cloud Platform (GCP). These configuration files follow a specific structure that dictates how resources are provisioned, configured, and connected within GCP environments. At the core of a Deployment Manager configuration file [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,1629],"tags":[1412,1411,605,699,700,984,617,683,684,685,611,1400,692],"class_list":["post-9581","post","type-post","status-publish","format-standard","hentry","category-google-cloud-platform","category-instance","tag-dataproc-cluster","tag-dataproc-in-gcp","tag-gcp","tag-gcp-certification","tag-gcp-cloud-console","tag-gcp-course","tag-google-cloud","tag-google-cloud-certification","tag-google-cloud-console","tag-google-cloud-courses","tag-google-cloud-platform","tag-google-cloud-platform-tutorial","tag-google-cloud-training"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Deployment Manager configuration file structure - Prwatech<\/title>\n<meta name=\"description\" content=\"Master Deployment Manager Configuration File Structure - Dive deep with our expert instructors and comprehensive curriculum.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deployment Manager configuration file structure - Prwatech\" \/>\n<meta property=\"og:description\" content=\"Master Deployment Manager Configuration File Structure - Dive deep with our expert instructors and comprehensive curriculum.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/\" \/>\n<meta property=\"og:site_name\" content=\"Prwatech\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prwatech.in\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-10T10:03:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-21T07:33:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg\" \/>\n<meta name=\"author\" content=\"Prwatech\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Eduprwatech\" \/>\n<meta name=\"twitter:site\" content=\"@Eduprwatech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prwatech\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/\",\"url\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/\",\"name\":\"Deployment Manager configuration file structure - Prwatech\",\"isPartOf\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg\",\"datePublished\":\"2021-07-10T10:03:24+00:00\",\"dateModified\":\"2024-03-21T07:33:14+00:00\",\"author\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\"},\"description\":\"Master Deployment Manager Configuration File Structure - Dive deep with our expert instructors and comprehensive curriculum.\",\"breadcrumb\":{\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#primaryimage\",\"url\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg\",\"contentUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg\",\"width\":852,\"height\":242},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/prwatech.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Basic configuration file : Deployment Manager\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/prwatech.in\/blog\/#website\",\"url\":\"https:\/\/prwatech.in\/blog\/\",\"name\":\"Prwatech\",\"description\":\"Share Ideas, Start Something Good.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/prwatech.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\",\"name\":\"Prwatech\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g\",\"caption\":\"Prwatech\"},\"url\":\"https:\/\/prwatech.in\/blog\/author\/prwatech123\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Deployment Manager configuration file structure - Prwatech","description":"Master Deployment Manager Configuration File Structure - Dive deep with our expert instructors and comprehensive curriculum.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Deployment Manager configuration file structure - Prwatech","og_description":"Master Deployment Manager Configuration File Structure - Dive deep with our expert instructors and comprehensive curriculum.","og_url":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/","og_site_name":"Prwatech","article_publisher":"https:\/\/www.facebook.com\/prwatech.in\/","article_published_time":"2021-07-10T10:03:24+00:00","article_modified_time":"2024-03-21T07:33:14+00:00","og_image":[{"url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg","type":"","width":"","height":""}],"author":"Prwatech","twitter_card":"summary_large_image","twitter_creator":"@Eduprwatech","twitter_site":"@Eduprwatech","twitter_misc":{"Written by":"Prwatech","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/","url":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/","name":"Deployment Manager configuration file structure - Prwatech","isPartOf":{"@id":"https:\/\/prwatech.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#primaryimage"},"image":{"@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#primaryimage"},"thumbnailUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg","datePublished":"2021-07-10T10:03:24+00:00","dateModified":"2024-03-21T07:33:14+00:00","author":{"@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3"},"description":"Master Deployment Manager Configuration File Structure - Dive deep with our expert instructors and comprehensive curriculum.","breadcrumb":{"@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#primaryimage","url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg","contentUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2021\/07\/1.jpg","width":852,"height":242},{"@type":"BreadcrumbList","@id":"https:\/\/prwatech.in\/blog\/google-cloud-platform\/instance\/basic-configuration-file-deployment-manager\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/prwatech.in\/blog\/"},{"@type":"ListItem","position":2,"name":"Basic configuration file : Deployment Manager"}]},{"@type":"WebSite","@id":"https:\/\/prwatech.in\/blog\/#website","url":"https:\/\/prwatech.in\/blog\/","name":"Prwatech","description":"Share Ideas, Start Something Good.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/prwatech.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3","name":"Prwatech","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g","caption":"Prwatech"},"url":"https:\/\/prwatech.in\/blog\/author\/prwatech123\/"}]}},"_links":{"self":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/9581","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/comments?post=9581"}],"version-history":[{"count":7,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/9581\/revisions"}],"predecessor-version":[{"id":11067,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/9581\/revisions\/11067"}],"wp:attachment":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/media?parent=9581"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/categories?post=9581"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/tags?post=9581"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}