DataCubeControllerQueryDataCubeInfos Method

GET /DataCube/QueryDataCubeInfos/ Gets the collection of DataCubeInfoData for the specified project and tenant ID.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (9.0.0.1000)
Syntax
[HttpGetAttribute]
[ActionNameAttribute("QueryDataCubeInfos")]
public HttpResponseMessage QueryDataCubeInfos(
	Nullable<Guid> projectId = null,
	Nullable<Guid> tenantId = null,
	Nullable<StorageType> storageType = null,
	Nullable<JobRunResult> jobRunResult = null,
	Nullable<Guid> sessionId = null
)

Parameters

projectId (Optional)
Type: SystemNullableGuid
The project ID. Use when requesting information for all projects.
tenantId (Optional)
Type: SystemNullableGuid
The tenant ID. Use when requesting information for all tenants.
storageType (Optional)
Type: SystemNullableStorageType
The storage type by which to filter the data cubes.
jobRunResult (Optional)
Type: SystemNullableJobRunResult
The job result by which to filter the data cubes.
sessionId (Optional)
Type: SystemNullableGuid
The current session ID.

Return Value

Type: HttpResponseMessage
An array of DataCubeInfoData object, or a status code indicating the problem.
See Also