DataCubeController.DeleteRelationship Method |
Deletes the relationship by join for the given data cube.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpDeleteAttribute("Relationships/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult DeleteRelationship(
Guid id,
Guid transformId,
Guid? sessionId = null
)
<HttpDeleteAttribute("Relationships/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function DeleteRelationship (
id As Guid,
transformId As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpDeleteAttribute(L"Relationships/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ DeleteRelationship(
Guid id,
Guid transformId,
Nullable<Guid> sessionId = nullptr
)
[<HttpDeleteAttribute("Relationships/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member DeleteRelationship :
id : Guid *
transformId : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- id
- Type: System.Guid
The ID of the data cube to delete the relationships for. - transformId
- Type: System.Guid
The ID of the transform to delete the relationships for. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult
See Also