/// <summary> /// Add iotedge hub configuration model as modules content /// </summary> /// <param name="config"></param> /// <param name="model"></param> public static void AddModulesContent(this ConfigurationContentModel config, EdgeHubConfigurationModel model) { config.AddModulesContent("$edgeHub", model); }
/// <summary> /// Add iotedge agent configuration model as modules content /// </summary> /// <param name="config"></param> /// <param name="model"></param> public static void AddModulesContent(this ConfigurationContentModel config, EdgeAgentConfigurationModel model) => config.AddModulesContent("$edgeAgent", model);