You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -202,11 +202,11 @@ public async Task<IActionResult> GetAverageCarbonIntensity([FromQuery] CarbonInt
202
202
/// </summary>
203
203
/// <remarks>
204
204
/// The application only supports batching across a single location with different time boundaries. If multiple locations are provided, an error is returned.
205
-
/// For each item in the request array, the application returns a corresponding object containing the location, time boundaries, and average marginal carbon intensity.
205
+
/// For each item in the request array, the application returns a corresponding object containing the location, time boundaries, and average carbon intensity.
206
206
/// </remarks>
207
-
/// <param name="requestedCarbonIntensities"> Array of inputs where each contains a "location", "startDate", and "endDate" for which to calculate average marginal carbon intensity. </param>
208
-
/// <returns>An array of CarbonIntensityDTO objects which each have a location, start time, end time, and the average marginal carbon intensity over that time period.</returns>
209
-
/// <response code="200">Returns an array of objects where each contains location, time boundaries and the corresponding average marginal carbon intensity</response>
207
+
/// <param name="requestedCarbonIntensities"> Array of inputs where each contains a "location", "startDate", and "endDate" for which to calculate average carbon intensity. </param>
208
+
/// <returns>An array of CarbonIntensityDTO objects which each have a location, start time, end time, and the average carbon intensity over that time period.</returns>
209
+
/// <response code="200">Returns an array of objects where each contains location, time boundaries and the corresponding average carbon intensity</response>
210
210
/// <response code="400">Returned if any of the requested items are invalid</response>
211
211
/// <response code="500">Internal server error</response>
/// Retrieves the most recent forecasted data and calculates the optimal marginal carbon intensity window.
8
+
/// Retrieves the most recent forecasted data and calculates the optimal carbon intensity window.
9
9
/// </summary>
10
10
/// <param name="locations">Array of locations where the workflow is run (ex: ["eastus", "westus"])</param>
11
11
/// <param name="dataStartAt">Start time boundary of forecasted data points. Ignores current forecast data points before this time (ex: 2022-03-01T15:30:00Z)</param>
@@ -15,13 +15,13 @@ public interface IForecastHandler
/// Retrieves the historical forecasted data for the given date range and calculates the optimal marginal carbon intensity window.
18
+
/// Retrieves the historical forecasted data for the given date range and calculates the optimal carbon intensity window.
19
19
/// </summary>
20
20
/// <param name="location">String location where the workflow is run (ex: "eastus")</param>
21
21
/// <param name="dataStartAt">Start time boundary of forecasted data points. Ignores current forecast data points before this time (ex: 2022-03-01T15:30:00Z)</param>
22
22
/// <param name="dataEndAt">End time boundary of forecasted data points. Ignores current forecast data points after this time (ex: 2022-03-01T18:30:00Z)</param>
23
23
/// <param name="requestedAt">The timestamp used to access the most recently generated forecast as of that time. (ex: 2022-03-01T18:30:00Z)</param>
24
24
/// <param name="windowSize">The estimated duration (in minutes) of the workload.</param>
25
-
/// <returns>An <see cref="EmissionsForecast"/> with the optimal marginal carbon intensity window.</returns>
25
+
/// <returns>An <see cref="EmissionsForecast"/> with the optimal carbon intensity window.</returns>
0 commit comments