CubePerspectiveController.GenerateCubePerspective Method |
Generates a new cube perspective.
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]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
[ProducesResponseTypeAttribute(500)]
[ProducesResponseTypeAttribute(503)]
public ActionResult<CubePerspectiveData> GenerateCubePerspective(
[FromBodyAttribute] GenerateCubePerspectiveOptions cubeOptions,
Guid? sessionId = null
)
<HttpPostAttribute>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
<ProducesResponseTypeAttribute(500)>
<ProducesResponseTypeAttribute(503)>
Public Function GenerateCubePerspective (
<FromBodyAttribute> cubeOptions As GenerateCubePerspectiveOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of CubePerspectiveData)
public:
[HttpPostAttribute]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
[ProducesResponseTypeAttribute(500)]
[ProducesResponseTypeAttribute(503)]
ActionResult<CubePerspectiveData^>^ GenerateCubePerspective(
[FromBodyAttribute] GenerateCubePerspectiveOptions^ cubeOptions,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
[<ProducesResponseTypeAttribute(500)>]
[<ProducesResponseTypeAttribute(503)>]
member GenerateCubePerspective :
[<FromBodyAttribute>] cubeOptions : GenerateCubePerspectiveOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<CubePerspectiveData>
Parameters
- cubeOptions
- Type: Dundas.BI.WebApi.Models.GenerateCubePerspectiveOptions
The cube perspective options for creating the cube perspective. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult<CubePerspectiveData>The operation completed successfully. The payload contains a
CubePerspectiveData object.
See Also