{"id":17592,"date":"2020-08-24T09:32:29","date_gmt":"2020-08-24T09:32:29","guid":{"rendered":"https:\/\/www.testpreptraining.com\/tutorial\/?page_id=17592"},"modified":"2020-08-28T05:10:42","modified_gmt":"2020-08-28T05:10:42","slug":"creating-a-windows-vm-from-a-resource-manager-template","status":"publish","type":"page","link":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/","title":{"rendered":"Creating a Windows VM from a Resource Manager template"},"content":{"rendered":"\n<p class=\"has-text-align-right\"><strong><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-az-104-microsoft-azure-administrator-associate\/\" target=\"_blank\" rel=\"noreferrer noopener\">Return to AZ-104 Tutorial<\/a><\/strong><\/p>\n\n\n\n<p>Here, you will learn about the Resource Manager and how to create a Windows virtual machine and Azure PowerShell from the Azure Cloud Shell. Here you\u2019ll see the template that deploys a single virtual machine running Windows Server in a new virtual network with a single subnet. So, let\u2019s begin<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Create a virtual machine<\/strong><\/h4>\n\n\n\n<p>In order to create an Azure virtual machine using an Azure Resource Manager, you&#8217;ll usually require these two steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, create a resource group. An Azure resource group is a logical container into which Azure resources are deployed and managed. A resource group should be created before a VM.<\/li><li>And, now create a VM.<\/li><\/ul>\n\n\n\n<p>The following example creates a VM from an Azure Quickstart template. Here is a copy of the template:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{<br>\"$schema\": \"https:\/\/schema.management.azure.com\/schemas\/2019-04-01\/deploymentTemplate.json#\",<br>\"contentVersion\": \"1.0.0.0\",<br>\"parameters\": {<br>\"adminUsername\": {<br>\"type\": \"string\",<br>\"metadata\": {<br>\"description\": \"Username for the Virtual Machine.\"<br>}<br>},<br>\"adminPassword\": {<br>\"type\": \"securestring\",<br>\"metadata\": {<br>\"description\": \"Password for the Virtual Machine.\"<br>}<br>},<br>\"dnsLabelPrefix\": {<br>\"type\": \"string\",<br>\"metadata\": {<br>\"description\": \"Unique DNS Name for the Public IP used to access the Virtual Machine.\"<br>}<br>},<br>\"windowsOSVersion\": {<br>\"type\": \"string\",<br>\"defaultValue\": \"2016-Datacenter\",<br>\"allowedValues\": [<br>\"2008-R2-SP1\",<br>\"2012-Datacenter\",<br>\"2012-R2-Datacenter\",<br>\"2016-Nano-Server\",<br>\"2016-Datacenter-with-Containers\",<br>\"2016-Datacenter\",<br>\"2019-Datacenter\"<br>],<br>\"metadata\": {<br>\"description\": \"The Windows version for the VM. This will pick a fully patched image of this given Windows version.\"<br>}<br>},<br>\"vmSize\": {<br>\"type\": \"string\",<br>\"defaultValue\": \"Standard_D2_v3\",<br>\"metadata\": {<br>\"description\": \"Size of the virtual machine.\"<br>}<br>},<br>\"location\": {<br>\"type\": \"string\",<br>\"defaultValue\": \"[resourceGroup().location]\",<br>\"metadata\": {<br>\"description\": \"Location for all resources.\"<br>}<br>}<br>},<br>\"variables\": {<br>\"storageAccountName\": \"[concat(uniquestring(resourceGroup().id), 'sawinvm')]\",<br>\"nicName\": \"myVMNic\",<br>\"addressPrefix\": \"10.0.0.0\/16\",<br>\"subnetName\": \"Subnet\",<br>\"subnetPrefix\": \"10.0.0.0\/24\",<br>\"publicIPAddressName\": \"myPublicIP\",<br>\"vmName\": \"SimpleWinVM\",<br>\"virtualNetworkName\": \"MyVNET\",<br>\"subnetRef\": \"[resourceId('Microsoft.Network\/virtualNetworks\/subnets', variables('virtualNetworkName'), variables('subnetName'))]\",<br>\"networkSecurityGroupName\": \"default-NSG\"<br>},<br>\"resources\": [<br>{<br>\"type\": \"Microsoft.Storage\/storageAccounts\",<br>\"apiVersion\": \"2018-11-01\",<br>\"name\": \"[variables('storageAccountName')]\",<br>\"location\": \"[parameters('location')]\",<br>\"sku\": {<br>\"name\": \"Standard_LRS\"<br>},<br>\"kind\": \"Storage\",<br>\"properties\": {}<br>},<br>{<br>\"type\": \"Microsoft.Network\/publicIPAddresses\",<br>\"apiVersion\": \"2018-11-01\",<br>\"name\": \"[variables('publicIPAddressName')]\",<br>\"location\": \"[parameters('location')]\",<br>\"properties\": {<br>\"publicIPAllocationMethod\": \"Dynamic\",<br>\"dnsSettings\": {<br>\"domainNameLabel\": \"[parameters('dnsLabelPrefix')]\"<br>}<br>}<br>},<br>{<br>\"comments\": \"Default Network Security Group for template\",<br>\"type\": \"Microsoft.Network\/networkSecurityGroups\",<br>\"apiVersion\": \"2019-08-01\",<br>\"name\": \"[variables('networkSecurityGroupName')]\",<br>\"location\": \"[parameters('location')]\",<br>\"properties\": {<br>\"securityRules\": [<br>{<br>\"name\": \"default-allow-3389\",<br>\"properties\": {<br>\"priority\": 1000,<br>\"access\": \"Allow\",<br>\"direction\": \"Inbound\",<br>\"destinationPortRange\": \"3389\",<br>\"protocol\": \"Tcp\",<br>\"sourcePortRange\": \"<em>\", \"sourceAddressPrefix\": \"<\/em>\",<br>\"destinationAddressPrefix\": \"*\"<br>}<br>}<br>]}<br>},<br>{<br>\"type\": \"Microsoft.Network\/virtualNetworks\",<br>\"apiVersion\": \"2018-11-01\",<br>\"name\": \"[variables('virtualNetworkName')]\",<br>\"location\": \"[parameters('location')]\",<br>\"dependsOn\": [<br>\"[resourceId('Microsoft.Network\/networkSecurityGroups', variables('networkSecurityGroupName'))]\"<br>],<br>\"properties\": {<br>\"addressSpace\": {<br>\"addressPrefixes\": [<br>\"[variables('addressPrefix')]\"<br>]},<br>\"subnets\": [<br>{<br>\"name\": \"[variables('subnetName')]\",<br>\"properties\": {<br>\"addressPrefix\": \"[variables('subnetPrefix')]\",<br>\"networkSecurityGroup\": {<br>\"id\": \"[resourceId('Microsoft.Network\/networkSecurityGroups', variables('networkSecurityGroupName'))]\"<br>}<br>}<br>}<br>]}<br>},<br>{<br>\"type\": \"Microsoft.Network\/networkInterfaces\",<br>\"apiVersion\": \"2018-11-01\",<br>\"name\": \"[variables('nicName')]\",<br>\"location\": \"[parameters('location')]\",<br>\"dependsOn\": [<br>\"[resourceId('Microsoft.Network\/publicIPAddresses\/', variables('publicIPAddressName'))]\",<br>\"[resourceId('Microsoft.Network\/virtualNetworks\/', variables('virtualNetworkName'))]\"<br>],<br>\"properties\": {<br>\"ipConfigurations\": [<br>{<br>\"name\": \"ipconfig1\",<br>\"properties\": {<br>\"privateIPAllocationMethod\": \"Dynamic\",<br>\"publicIPAddress\": {<br>\"id\": \"[resourceId('Microsoft.Network\/publicIPAddresses',variables('publicIPAddressName'))]\"<br>},<br>\"subnet\": {<br>\"id\": \"[variables('subnetRef')]\"<br>}<br>}<br>}<br>]}<br>},<br>{<br>\"type\": \"Microsoft.Compute\/virtualMachines\",<br>\"apiVersion\": \"2018-10-01\",<br>\"name\": \"[variables('vmName')]\",<br>\"location\": \"[parameters('location')]\",<br>\"dependsOn\": [<br>\"[resourceId('Microsoft.Storage\/storageAccounts\/', variables('storageAccountName'))]\",<br>\"[resourceId('Microsoft.Network\/networkInterfaces\/', variables('nicName'))]\"<br>],<br>\"properties\": {<br>\"hardwareProfile\": {<br>\"vmSize\": \"[parameters('vmSize')]\"<br>},<br>\"osProfile\": {<br>\"computerName\": \"[variables('vmName')]\",<br>\"adminUsername\": \"[parameters('adminUsername')]\",<br>\"adminPassword\": \"[parameters('adminPassword')]\"<br>},<br>\"storageProfile\": {<br>\"imageReference\": {<br>\"publisher\": \"MicrosoftWindowsServer\",<br>\"offer\": \"WindowsServer\",<br>\"sku\": \"[parameters('windowsOSVersion')]\",<br>\"version\": \"latest\"<br>},<br>\"osDisk\": {<br>\"createOption\": \"FromImage\"<br>},<br>\"dataDisks\": [<br>{<br>\"diskSizeGB\": 1023,<br>\"lun\": 0,<br>\"createOption\": \"Empty\"<br>}<br>]},<br>\"networkProfile\": {<br>\"networkInterfaces\": [<br>{<br>\"id\": \"[resourceId('Microsoft.Network\/networkInterfaces',variables('nicName'))]\"<br>}<br>]},<br>\"diagnosticsProfile\": {<br>\"bootDiagnostics\": {<br>\"enabled\": true,<br>\"storageUri\": \"[reference(resourceId('Microsoft.Storage\/storageAccounts\/', variables('storageAccountName'))).primaryEndpoints.blob]\"<br>}<br>}<br>}<br>}<br>],<br>\"outputs\": {<br>\"hostname\": {<br>\"type\": \"string\",<br>\"value\": \"[reference(variables('publicIPAddressName')).dnsSettings.fqdn]\"<br>}<br>}<br>}<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/www.testpreptraining.ai\/microsoft-azure-administrator-associate-az-104-free-practice-test\" target=\"_blank\" rel=\"noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/06\/practice-test-2.png\" alt=\"Practice Test for AZ-104\"\/><\/a><\/figure><\/div>\n\n\n\n<p>To run the PowerShell script, Select Try it to open the Azure Cloud shell. To paste the script, right-click the shell, and then select Paste:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$resourceGroupName = Read-Host -Prompt \"Enter the Resource Group name\"\n$location = Read-Host -Prompt \"Enter the location (i.e. centralus)\"\n$adminUsername = Read-Host -Prompt \"Enter the administrator username\"\n$adminPassword = Read-Host -Prompt \"Enter the administrator password\" -AsSecureString\n$dnsLabelPrefix = Read-Host -Prompt \"Enter an unique DNS name for the public IP\"\nNew-AzResourceGroup -Name $resourceGroupName -Location \"$location\"\nNew-AzResourceGroupDeployment <code>-ResourceGroupName $resourceGroupName<\/code>\n-TemplateUri \"https:\/\/raw.githubusercontent.com\/Azure\/azure-quickstart-templates\/master\/101-vm-simple-windows\/azuredeploy.json\" <code>-adminUsername $adminUsername<\/code>\n-adminPassword $adminPassword `\n-dnsLabelPrefix $dnsLabelPrefix\n(Get-AzVm -ResourceGroupName $resourceGroupName).name<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/www.testpreptraining.ai\/microsoft-azure-administrator-associate-az-104-online-course\" target=\"_blank\" rel=\"noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/07\/testpreptraining.ai-2-750x117.png\" alt=\"Resource Manager\"\/><\/a><\/figure><\/div>\n\n\n\n<p class=\"has-text-align-right\"><strong>Reference: <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/virtual-machines\/windows\/ps-template\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft Documentation<\/a><\/strong><\/p>\n\n\n\n<p><strong><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-az-104-microsoft-azure-administrator-associate\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><a href=\"https:\/\/www.testpreptraining.ai\/tutorial\/exam-az-104-microsoft-azure-administrator-associate\/\" target=\"_blank\" rel=\"noreferrer noopener\">Return to AZ-104 Tutorial<\/a><\/strong><\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Return to AZ-104 Tutorial Here, you will learn about the Resource Manager and how to create a Windows virtual machine and Azure PowerShell from the Azure Cloud Shell. Here you\u2019ll see the template that deploys a single virtual machine running Windows Server in a new virtual network with a single subnet. So, let\u2019s begin Create&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-17592","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Creating a Windows VM from a Resource Manager template - Testprep Training Tutorials<\/title>\n<meta name=\"description\" content=\"Increase your skills by learning about Resource Manager with Azure compute resources using Microsoft Azure AZ-104 online course Now!\" \/>\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.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating a Windows VM from a Resource Manager template - Testprep Training Tutorials\" \/>\n<meta property=\"og:description\" content=\"Increase your skills by learning about Resource Manager with Azure compute resources using Microsoft Azure AZ-104 online course Now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/\" \/>\n<meta property=\"og:site_name\" content=\"Testprep Training Tutorials\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-28T05:10:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/06\/practice-test-2.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/\",\"name\":\"Creating a Windows VM from a Resource Manager template - Testprep Training Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\"},\"datePublished\":\"2020-08-24T09:32:29+00:00\",\"dateModified\":\"2020-08-28T05:10:42+00:00\",\"description\":\"Increase your skills by learning about Resource Manager with Azure compute resources using Microsoft Azure AZ-104 online course Now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating a Windows VM from a Resource Manager template\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#website\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"name\":\"Testprep Training Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#organization\",\"name\":\"Testprep Training\",\"url\":\"https:\/\/www.testpreptraining.ai\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"contentUrl\":\"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png\",\"width\":583,\"height\":153,\"caption\":\"Testprep Training\"},\"image\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating a Windows VM from a Resource Manager template - Testprep Training Tutorials","description":"Increase your skills by learning about Resource Manager with Azure compute resources using Microsoft Azure AZ-104 online course Now!","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.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/","og_locale":"en_US","og_type":"article","og_title":"Creating a Windows VM from a Resource Manager template - Testprep Training Tutorials","og_description":"Increase your skills by learning about Resource Manager with Azure compute resources using Microsoft Azure AZ-104 online course Now!","og_url":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/","og_site_name":"Testprep Training Tutorials","article_modified_time":"2020-08-28T05:10:42+00:00","og_image":[{"url":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2020\/06\/practice-test-2.png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/","url":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/","name":"Creating a Windows VM from a Resource Manager template - Testprep Training Tutorials","isPartOf":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website"},"datePublished":"2020-08-24T09:32:29+00:00","dateModified":"2020-08-28T05:10:42+00:00","description":"Increase your skills by learning about Resource Manager with Azure compute resources using Microsoft Azure AZ-104 online course Now!","breadcrumb":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/creating-a-windows-vm-from-a-resource-manager-template\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.testpreptraining.ai\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Creating a Windows VM from a Resource Manager template"}]},{"@type":"WebSite","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#website","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","name":"Testprep Training Tutorials","description":"","publisher":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.testpreptraining.ai\/tutorial\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#organization","name":"Testprep Training","url":"https:\/\/www.testpreptraining.ai\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","contentUrl":"https:\/\/www.testpreptraining.com\/tutorial\/wp-content\/uploads\/2020\/07\/tpt-logo-6.png","width":583,"height":153,"caption":"Testprep Training"},"image":{"@id":"https:\/\/www.testpreptraining.ai\/tutorial\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/17592","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/comments?post=17592"}],"version-history":[{"count":4,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/17592\/revisions"}],"predecessor-version":[{"id":18406,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/pages\/17592\/revisions\/18406"}],"wp:attachment":[{"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/media?parent=17592"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/categories?post=17592"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/tutorial\/wp-json\/wp\/v2\/tags?post=17592"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}