DataCubeController.ScheduleInMemoryCubes Method |
Configure in-memory storage and the referenced cubes processing priorities for the specified data cubes.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPutAttribute("ScheduleInMemoryCubes")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult ScheduleInMemoryCubes(
[FromBodyAttribute] ScheduleDataCubesOptions options,
Guid? sessionId = null
)
<HttpPutAttribute("ScheduleInMemoryCubes")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(440)>
Public Function ScheduleInMemoryCubes (
<FromBodyAttribute> options As ScheduleDataCubesOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpPutAttribute(L"ScheduleInMemoryCubes")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ ScheduleInMemoryCubes(
[FromBodyAttribute] ScheduleDataCubesOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPutAttribute("ScheduleInMemoryCubes")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(440)>]
member ScheduleInMemoryCubes :
[<FromBodyAttribute>] options : ScheduleDataCubesOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- options
- Type: Dundas.BI.WebApi.Models.ScheduleDataCubesOptions
The options used to set up the data cube storage. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult
See Also