examples/xWebApplication.json

{
   "Modules":[
        "xWebAdministration"
   ],
   "DSCResourcesToExecute":{
      "archtype":{
         "dscResourceName":"File",
         "DestinationPath":"c:\\archtype\\DevOps",
         "Type":"Directory",
         "ensure":"Present"
      },
      "DevOpsApp":{
          "dscResourceName":"xWebApplication",
          "name":"DevOps",
          "PhysicalPath":"C:\\archtype\\DevOps",
          "WebAppPool":"DefaultAppPool",
          "WebSite":"Default Web Site",
          "PreloadEnabled":true,
          "EnabledProtocols":["http"],
          "Ensure":"Present",
          "AuthenticationInfo":[
                {
                    "CimType":"MSFT_xWebApplicationAuthenticationInformation",
                    "Properties":{
                        "Anonymous":true,
                        "Basic":true
                    }
                }
           ]
      }
   }
}