Values.PutAlertManagerDefinitionRequestSourceRepresents the input of a PutAlertManagerDefinition operation.
type nonrec t = {workspaceId : WorkspaceId.t;The ID of the workspace to update the alert manager definition in.
*)data : AlertManagerDefinitionData.t;The alert manager definition to use. A base64-encoded version of the YAML alert manager definition file. For details about the alert manager definition, see AlertManagedDefinitionData.
*)clientToken : IdempotencyToken.t option;A unique identifier that you can provide to ensure the idempotency of the request. Case-sensitive.
*)}val make :
?clientToken:??? ->
workspaceId:WorkspaceId.t ->
data:AlertManagerDefinitionData.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Blob of AlertManagerDefinitionData.t | `String of WorkspaceId.t ])
list ]