DataCubeController.ScheduleStorage Method |
Creates a scheduled task for storing the data cube in the warehouse or in-memory.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPostAttribute("Schedule/{id}")]
[ProducesResponseTypeAttribute(410)]
public ActionResult ScheduleStorage(
Guid id,
[FromBodyAttribute] StorageOptions options,
Guid? sessionId = null
)
<HttpPostAttribute("Schedule/{id}")>
<ProducesResponseTypeAttribute(410)>
Public Function ScheduleStorage (
id As Guid,
<FromBodyAttribute> options As StorageOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpPostAttribute(L"Schedule/{id}")]
[ProducesResponseTypeAttribute(410)]
ActionResult^ ScheduleStorage(
Guid id,
[FromBodyAttribute] StorageOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("Schedule/{id}")>]
[<ProducesResponseTypeAttribute(410)>]
member ScheduleStorage :
id : Guid *
[<FromBodyAttribute>] options : StorageOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- id
- Type: System.Guid
The ID of the data cube to build the warehouse on. - options
- Type: Dundas.BI.WebApi.Models.StorageOptions
The options to build the warehouse. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult
See Also