DataCubeController.GetDataCubeAndParents Method |
Retrieves a data cube and it's parent 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[HttpGetAttribute("DataCubeAndParents/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<DataCubeInfoData>> GetDataCubeAndParents(
Guid id,
Guid? tenantId = null,
Guid? sessionId = null
)
<HttpGetAttribute("DataCubeAndParents/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function GetDataCubeAndParents (
id As Guid,
Optional tenantId As Guid? = Nothing,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of DataCubeInfoData))
public:
[HttpGetAttribute(L"DataCubeAndParents/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<DataCubeInfoData^>^>^ GetDataCubeAndParents(
Guid id,
Nullable<Guid> tenantId = nullptr,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("DataCubeAndParents/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member GetDataCubeAndParents :
id : Guid *
?tenantId : Nullable<Guid> *
?sessionId : Nullable<Guid>
(* Defaults:
let _tenantId = defaultArg tenantId null
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<DataCubeInfoData>>
Parameters
- id
- Type: System.Guid
The ID of the data cube to retrieve along with parent reference data cubes. - tenantId (Optional)
- Type: System.Nullable<Guid>
The tenant ID. Use null when requesting information for no tenants. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult<IList<DataCubeInfoData>>The operation completed successfully. The payload contains an array of
DataCubeInfoData objects.
See Also