Example #1
0
 internal FunctionDeploymentSlotsImpl(
     FunctionAppImpl parent,
     IAppServiceManager manager)
     : base(manager.Inner.WebApps, manager)
 {
     this.parent = parent;
 }
Example #2
0
 internal FunctionDeploymentSlotImpl(
     string name,
     SiteInner innerObject,
     SiteConfigResourceInner configObject,
     FunctionAppImpl parent,
     IAppServiceManager manager)
     : base(Regex.Replace(name, ".*/", ""), innerObject, configObject, manager)
 {
     this.name          = Regex.Replace(name, ".*/", "");
     this.parent        = parent;
     Inner.ServerFarmId = parent.AppServicePlanId();
 }
Example #3
0
 internal FunctionCredentials(FunctionAppImpl functionApp)
 {
     this.functionApp = functionApp;
 }