MetricSetController.RemoveStateGroupOnMetricSet Method (Guid, String, Nullable<Guid>) |
Deletes the specified custom hierarchy group from a metric set.
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("RemoveCustomHierarchyGroup/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<MetricSetData> RemoveStateGroupOnMetricSet(
Guid id,
string groupUniqueName,
Guid? sessionId = null
)
<HttpDeleteAttribute("RemoveCustomHierarchyGroup/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(409)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function RemoveStateGroupOnMetricSet (
id As Guid,
groupUniqueName As String,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of MetricSetData)
public:
[HttpDeleteAttribute(L"RemoveCustomHierarchyGroup/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult<MetricSetData^>^ RemoveStateGroupOnMetricSet(
Guid id,
String^ groupUniqueName,
Nullable<Guid> sessionId = nullptr
)
[<HttpDeleteAttribute("RemoveCustomHierarchyGroup/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(409)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member RemoveStateGroupOnMetricSet :
id : Guid *
groupUniqueName : string *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<MetricSetData>
Parameters
- id
- Type: System.Guid
The ID of the metric set. - groupUniqueName
- Type: System.String
The unique name of the group to delete. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<MetricSetData>The operation completed successfully. The payload contains a
MetricSetData object containing the updated metric set data.
See Also