JobController.SetJobMaintainer Method |
Sets the job maintainer.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPutAttribute("Maintainer/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult SetJobMaintainer(
Guid id,
[FromBodyAttribute] Guid? maintainerId,
Guid? sessionId = null
)
<HttpPutAttribute("Maintainer/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(405)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function SetJobMaintainer (
id As Guid,
<FromBodyAttribute> maintainerId As Guid?,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpPutAttribute(L"Maintainer/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ SetJobMaintainer(
Guid id,
[FromBodyAttribute] Nullable<Guid> maintainerId,
Nullable<Guid> sessionId = nullptr
)
[<HttpPutAttribute("Maintainer/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(405)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member SetJobMaintainer :
id : Guid *
[<FromBodyAttribute>] maintainerId : Nullable<Guid> *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- id
- Type: System.Guid
The ID of the job to update. - maintainerId
- Type: System.Nullable<Guid>
The maintainer ID. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult
See Also