DataCubeController.StorageInfo Method |
Retrieves a data cube's storage information.
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("StorageInfo/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<StorageInfoData> StorageInfo(
Guid id,
Guid? tenantId,
Guid? sessionId = null
)
<HttpGetAttribute("StorageInfo/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function StorageInfo (
id As Guid,
tenantId As Guid?,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of StorageInfoData)
public:
[HttpGetAttribute(L"StorageInfo/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult<StorageInfoData^>^ StorageInfo(
Guid id,
Nullable<Guid> tenantId,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("StorageInfo/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member StorageInfo :
id : Guid *
tenantId : Nullable<Guid> *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<StorageInfoData>
Parameters
- id
- Type: System.Guid
The ID of the data cube to retrieve storage information for. - tenantId
- Type: System.Nullable<Guid>
The tenant ID. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult<StorageInfoData>The operation completed successfully. The payload contains a
StorageInfoData object.
See Also