DataConnectorController.DiscoverDataStructures Method |
Discovers the data structures for a given data connector.
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("Discover/{id}")]
[ProducesResponseTypeAttribute(500)]
[ProducesResponseTypeAttribute(503)]
public ActionResult DiscoverDataStructures(
Guid id,
[FromBodyAttribute] SupportedDataStructures dataStructureTypes,
Guid? sessionId = null
)
<HttpPostAttribute("Discover/{id}")>
<ProducesResponseTypeAttribute(500)>
<ProducesResponseTypeAttribute(503)>
Public Function DiscoverDataStructures (
id As Guid,
<FromBodyAttribute> dataStructureTypes As SupportedDataStructures,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpPostAttribute(L"Discover/{id}")]
[ProducesResponseTypeAttribute(500)]
[ProducesResponseTypeAttribute(503)]
ActionResult^ DiscoverDataStructures(
Guid id,
[FromBodyAttribute] SupportedDataStructures dataStructureTypes,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("Discover/{id}")>]
[<ProducesResponseTypeAttribute(500)>]
[<ProducesResponseTypeAttribute(503)>]
member DiscoverDataStructures :
id : Guid *
[<FromBodyAttribute>] dataStructureTypes : SupportedDataStructures *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- id
- Type: System.Guid
The ID of the data connector. - dataStructureTypes
- Type: Dundas.BI.Data.Metadata.SupportedDataStructures
The data structure types. See SupportedDataStructures. - sessionId (Optional)
- Type: System.Nullable<Guid>
The ID of the session.
Return Value
Type:
ActionResult
See Also