@@ -431,6 +431,9 @@ internal static SiteConfigResource ConvertToSiteConfigResource(this SiteConfig c
431
431
HandlerMappings = config . HandlerMappings ,
432
432
HttpLoggingEnabled = config . HttpLoggingEnabled ,
433
433
IpSecurityRestrictions = config . IpSecurityRestrictions ,
434
+ ScmIpSecurityRestrictions = config . ScmIpSecurityRestrictions ,
435
+ ScmIpSecurityRestrictionsUseMain = config . ScmIpSecurityRestrictionsUseMain ,
436
+ Http20Enabled = config . Http20Enabled ,
434
437
JavaContainer = config . JavaContainer ,
435
438
JavaContainerVersion = config . JavaContainerVersion ,
436
439
JavaVersion = config . JavaVersion ,
@@ -457,7 +460,11 @@ internal static SiteConfigResource ConvertToSiteConfigResource(this SiteConfig c
457
460
VirtualApplications = config . VirtualApplications ,
458
461
VnetName = config . VnetName ,
459
462
WebSocketsEnabled = config . WebSocketsEnabled ,
460
- WindowsFxVersion = config . WindowsFxVersion
463
+ WindowsFxVersion = config . WindowsFxVersion ,
464
+ ManagedServiceIdentityId = config . ManagedServiceIdentityId ,
465
+ MinTlsVersion = config . MinTlsVersion ,
466
+ FtpsState = config . FtpsState ,
467
+ ReservedInstanceCount = config . ReservedInstanceCount
461
468
} ;
462
469
}
463
470
@@ -508,6 +515,13 @@ internal static SiteConfig ConvertToSiteConfig(this SiteConfigResource config)
508
515
VnetName = config . VnetName ,
509
516
WebSocketsEnabled = config . WebSocketsEnabled ,
510
517
WindowsFxVersion = config . WindowsFxVersion ,
518
+ ReservedInstanceCount = config . ReservedInstanceCount ,
519
+ ManagedServiceIdentityId = config . ManagedServiceIdentityId ,
520
+ MinTlsVersion = config . MinTlsVersion ,
521
+ FtpsState = config . FtpsState ,
522
+ ScmIpSecurityRestrictions = config . ScmIpSecurityRestrictions ,
523
+ ScmIpSecurityRestrictionsUseMain = config . ScmIpSecurityRestrictionsUseMain ,
524
+ Http20Enabled = config . Http20Enabled
511
525
} ;
512
526
}
513
527
}
0 commit comments