{"id":372,"date":"2016-08-16T06:51:31","date_gmt":"2016-08-16T06:51:31","guid":{"rendered":"http:\/\/172.16.10.10:8080\/?p=372"},"modified":"2016-08-16T16:08:06","modified_gmt":"2016-08-16T16:08:06","slug":"add-vlan-in-ucs-with-powershell","status":"publish","type":"post","link":"http:\/\/vblog.hochsticher.de\/?p=372","title":{"rendered":"Add VLAN in UCS with PowerShell"},"content":{"rendered":"<p>Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell?<\/p>\n<p><!--more--><\/p>\n<p>When I have to create a lot of new VLANs, I\u00a0want to do this in CLI\u00a0\ud83d\ude0e<\/p>\n<p>The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command.<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true \">#Load Cisco UCS PS Module\r\nImport-Module CiscoUcsPS\r\n\r\n#Creds\r\n$ucsUserName = \"myuser\"\r\n$ucsPassword = \"myp@ssword\"\r\n$ucsSysName1 = \"my-ucs-manager\"\r\n\r\n# The UCSM connection requires a PSCredential to login, so we must convert our plain text password to make an object\r\n$ucsPassword = ConvertTo-SecureString -String $ucsPassword -AsPlainText -Force\r\n$cred = new-object -typename System.Management.Automation.PSCredential -argumentlist $ucsUserName, $ucsPassword\r\n\r\n########################\r\n# Authenticate to UCSM #\r\n########################\r\n$handle1 = Connect-Ucs $ucsSysName1 -NotDefault -Credential $cred\r\n\r\n#Define Variables\r\n$vlanid = 229\r\n$vlname = \"229-MyNewVlan\"\r\n$vlangroup = \"ESX-DMZ\"\r\n$macpool = \"My-MAC-Pool\"\r\n$qpol = \"ESX-Gold\"\r\n$vnictmpdmzA = \"DMZ-Data-FabA\"\r\n$vnictmpdmzB = \"DMZ-Data-FabB\"\r\n\r\n\r\n\r\n\r\n\r\n#Create VLAN Global\r\n$handle1 = Connect-Ucs $ucsSysName1 -NotDefault -Credential $cred\r\nGet-UcsLanCloud | Add-UcsVlan -CompressionType \"included\" -DefaultNet \"no\" -Id $vlanid -McastPolicyName \"\" -Name $vlname -PolicyOwner \"local\" -PubNwName \"\" -Sharing \"none\"\r\n\r\n\r\n#Add VLAN to Group\r\nStart-UcsTransaction  -Ucs $handle1\r\n$mo = Get-UcsLanCloud -Ucs $handle1 | Add-UcsFabricNetGroup -ModifyPresent  -Descr \"\" -NativeNet \"\" -PolicyOwner \"local\" -Type \"mgmt\" -Name $vlangroup\r\n$mo_1 = $mo | Add-UcsFabricPooledVlan -ModifyPresent -Name $vlname\r\nComplete-UcsTransaction -Ucs $handle1\r\n\r\n\r\n#Add to Template FAB A\r\nStart-UcsTransaction -Ucs $handle1\r\n$mo = Get-UcsOrg -Ucs $handle1 -Level root  | Add-UcsVnicTemplate -ModifyPresent  -Descr \"\" -IdentPoolName $macpool -Mtu 1500 -NwCtrlPolicyName \"Enable-CDP\" -PinToGroupName \"\" -PolicyOwner \"local\" -QosPolicyName $qpol -StatsPolicyName \"default\" -SwitchId \"A\" -TemplType \"updating-template\" -Name $vnictmpdmzA -XtraProperty @{CdnSource=\"vnic-name\"; RedundancyPairType=\"none\"; PeerRedundancyTemplName=\"\"; AdminCdnName=\"\"; }\r\n$mo_1 = $mo | Add-UcsVnicInterface -ModifyPresent -DefaultNet \"no\" -Name $vlname\r\nComplete-UcsTransaction\r\n\r\n#Add to Template FAB B\r\nStart-UcsTransaction -Ucs $handle1\r\n$mo = Get-UcsOrg -Ucs $handle1 -Level root  | Add-UcsVnicTemplate -ModifyPresent  -Descr \"\" -IdentPoolName $macpool -Mtu 1500 -NwCtrlPolicyName \"Enable-CDP\" -PinToGroupName \"\" -PolicyOwner \"local\" -QosPolicyName $qpol -StatsPolicyName \"default\" -SwitchId \"B\" -TemplType \"updating-template\" -Name $vnictmpdmzB -XtraProperty @{CdnSource=\"vnic-name\"; RedundancyPairType=\"none\"; PeerRedundancyTemplName=\"\"; AdminCdnName=\"\"; }\r\n$mo_1 = $mo | Add-UcsVnicInterface -ModifyPresent -DefaultNet \"no\" -Name $vlname\r\nComplete-UcsTransaction -Ucs $handle1\r\n<\/pre>\n<p>Please, check out and write a comment!<\/p>\n<p style=\"text-align: left;\"><em>Scared? Try first in a emulator\u00a0to\u00a0feel\u00a0more confident.<\/em><\/p>\n<p style=\"text-align: left;\"><a href=\"https:\/\/communities.cisco.com\/docs\/DOC-37827\" target=\"_blank\">Link: Cisco UCS Platform Emulator<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell?<\/p>\n","protected":false},"author":1,"featured_media":242,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"footnotes":""},"categories":[3,4],"tags":[],"class_list":["post-372","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cisco-ucs","category-powercli"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell? When I have to create a lot of new VLANs, I want to do this in CLI 8-) The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Christoph Hochsticher\"\/>\n\t<meta name=\"google-site-verification\" content=\"lo0g577VbySpy05Melx7kVchEKh4qiUJhEtBpOiRLg8\" \/>\n\t<link rel=\"canonical\" href=\"http:\/\/vblog.hochsticher.de\/?p=372\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Chris - vBlog - Blog about Virtualization\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Add VLAN in UCS with PowerShell - Chris - vBlog\" \/>\n\t\t<meta property=\"og:description\" content=\"Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell? When I have to create a lot of new VLANs, I want to do this in CLI 8-) The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command.\" \/>\n\t\t<meta property=\"og:url\" content=\"http:\/\/vblog.hochsticher.de\/?p=372\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-08-16T06:51:31+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-08-16T16:08:06+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Add VLAN in UCS with PowerShell - Chris - vBlog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell? When I have to create a lot of new VLANs, I want to do this in CLI 8-) The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#blogposting\",\"name\":\"Add VLAN in UCS with PowerShell - Chris - vBlog\",\"headline\":\"Add VLAN in UCS with PowerShell\",\"author\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"publisher\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/wp-content\\\/uploads\\\/2016\\\/07\\\/CiscoUCS.png?wsr\",\"width\":624,\"height\":390},\"datePublished\":\"2016-08-16T06:51:31+02:00\",\"dateModified\":\"2016-08-16T16:08:06+02:00\",\"inLanguage\":\"en-US\",\"commentCount\":4,\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#webpage\"},\"isPartOf\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#webpage\"},\"articleSection\":\"Cisco UCS, PowerCLI\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/vblog.hochsticher.de\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=3#listItem\",\"name\":\"Cisco UCS\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=3#listItem\",\"position\":2,\"name\":\"Cisco UCS\",\"item\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=3\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#listItem\",\"name\":\"Add VLAN in UCS with PowerShell\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#listItem\",\"position\":3,\"name\":\"Add VLAN in UCS with PowerShell\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=3#listItem\",\"name\":\"Cisco UCS\"}}]},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1\",\"name\":\"Christoph Hochsticher\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d87fe995d7081d178014a72c729204792aff213f894bac1d28d0e0cc956c1171?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Christoph Hochsticher\"}},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#webpage\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372\",\"name\":\"Add VLAN in UCS with PowerShell - Chris - vBlog\",\"description\":\"Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell? When I have to create a lot of new VLANs, I want to do this in CLI 8-) The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#website\"},\"breadcrumb\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#breadcrumblist\"},\"author\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"creator\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/wp-content\\\/uploads\\\/2016\\\/07\\\/CiscoUCS.png?wsr\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372\\\/#mainImage\",\"width\":624,\"height\":390},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=372#mainImage\"},\"datePublished\":\"2016-08-16T06:51:31+02:00\",\"dateModified\":\"2016-08-16T16:08:06+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#website\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/\",\"name\":\"Chris - vBlog\",\"description\":\"Blog about Virtualization\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Add VLAN in UCS with PowerShell - Chris - vBlog","description":"Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell? When I have to create a lot of new VLANs, I want to do this in CLI 8-) The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command.","canonical_url":"http:\/\/vblog.hochsticher.de\/?p=372","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"lo0g577VbySpy05Melx7kVchEKh4qiUJhEtBpOiRLg8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"http:\/\/vblog.hochsticher.de\/?p=372#blogposting","name":"Add VLAN in UCS with PowerShell - Chris - vBlog","headline":"Add VLAN in UCS with PowerShell","author":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"publisher":{"@id":"http:\/\/vblog.hochsticher.de\/#person"},"image":{"@type":"ImageObject","url":"http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/07\/CiscoUCS.png?wsr","width":624,"height":390},"datePublished":"2016-08-16T06:51:31+02:00","dateModified":"2016-08-16T16:08:06+02:00","inLanguage":"en-US","commentCount":4,"mainEntityOfPage":{"@id":"http:\/\/vblog.hochsticher.de\/?p=372#webpage"},"isPartOf":{"@id":"http:\/\/vblog.hochsticher.de\/?p=372#webpage"},"articleSection":"Cisco UCS, PowerCLI"},{"@type":"BreadcrumbList","@id":"http:\/\/vblog.hochsticher.de\/?p=372#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de#listItem","position":1,"name":"Home","item":"http:\/\/vblog.hochsticher.de","nextItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=3#listItem","name":"Cisco UCS"}},{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=3#listItem","position":2,"name":"Cisco UCS","item":"http:\/\/vblog.hochsticher.de\/?cat=3","nextItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?p=372#listItem","name":"Add VLAN in UCS with PowerShell"},"previousItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de#listItem","name":"Home"}},{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?p=372#listItem","position":3,"name":"Add VLAN in UCS with PowerShell","previousItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=3#listItem","name":"Cisco UCS"}}]},{"@type":"Person","@id":"http:\/\/vblog.hochsticher.de\/?author=1#author","url":"http:\/\/vblog.hochsticher.de\/?author=1","name":"Christoph Hochsticher","image":{"@type":"ImageObject","@id":"http:\/\/vblog.hochsticher.de\/?p=372#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d87fe995d7081d178014a72c729204792aff213f894bac1d28d0e0cc956c1171?s=96&d=mm&r=g","width":96,"height":96,"caption":"Christoph Hochsticher"}},{"@type":"WebPage","@id":"http:\/\/vblog.hochsticher.de\/?p=372#webpage","url":"http:\/\/vblog.hochsticher.de\/?p=372","name":"Add VLAN in UCS with PowerShell - Chris - vBlog","description":"Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell? When I have to create a lot of new VLANs, I want to do this in CLI 8-) The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command.","inLanguage":"en-US","isPartOf":{"@id":"http:\/\/vblog.hochsticher.de\/#website"},"breadcrumb":{"@id":"http:\/\/vblog.hochsticher.de\/?p=372#breadcrumblist"},"author":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"creator":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"image":{"@type":"ImageObject","url":"http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/07\/CiscoUCS.png?wsr","@id":"http:\/\/vblog.hochsticher.de\/?p=372\/#mainImage","width":624,"height":390},"primaryImageOfPage":{"@id":"http:\/\/vblog.hochsticher.de\/?p=372#mainImage"},"datePublished":"2016-08-16T06:51:31+02:00","dateModified":"2016-08-16T16:08:06+02:00"},{"@type":"WebSite","@id":"http:\/\/vblog.hochsticher.de\/#website","url":"http:\/\/vblog.hochsticher.de\/","name":"Chris - vBlog","description":"Blog about Virtualization","inLanguage":"en-US","publisher":{"@id":"http:\/\/vblog.hochsticher.de\/#person"}}]},"og:locale":"en_US","og:site_name":"Chris - vBlog - Blog about Virtualization","og:type":"article","og:title":"Add VLAN in UCS with PowerShell - Chris - vBlog","og:description":"Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell? When I have to create a lot of new VLANs, I want to do this in CLI 8-) The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command.","og:url":"http:\/\/vblog.hochsticher.de\/?p=372","article:published_time":"2016-08-16T06:51:31+00:00","article:modified_time":"2016-08-16T16:08:06+00:00","twitter:card":"summary_large_image","twitter:title":"Add VLAN in UCS with PowerShell - Chris - vBlog","twitter:description":"Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell? When I have to create a lot of new VLANs, I want to do this in CLI 8-) The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command."},"aioseo_meta_data":{"post_id":"372","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-03-16 21:35:58","updated":"2025-06-03 20:33:12","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/vblog.hochsticher.de\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/vblog.hochsticher.de\/?cat=3\" title=\"Cisco UCS\">Cisco UCS<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tAdd VLAN in UCS with PowerShell\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"http:\/\/vblog.hochsticher.de"},{"label":"Cisco UCS","link":"http:\/\/vblog.hochsticher.de\/?cat=3"},{"label":"Add VLAN in UCS with PowerShell","link":"http:\/\/vblog.hochsticher.de\/?p=372"}],"_links":{"self":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/372","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=372"}],"version-history":[{"count":11,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/372\/revisions"}],"predecessor-version":[{"id":374,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/372\/revisions\/374"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/media\/242"}],"wp:attachment":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=372"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=372"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=372"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}