Class BlocklistEntry
An entry for blocklist to describe blocked operation and reason.
Inherited Members
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class BlocklistEntryProperties
Operation
Declaration
[Required(ErrorMessage = "Operation is required.")]
[JsonProperty(PropertyName = "operation")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OperationType? Operation { get; set; }Property Value
| Type | Description | 
|---|---|
| OperationType? | The operation type. | 
Remarks
Required
Reason
Declaration
[Required(ErrorMessage = "Reason is required.")]
[JsonProperty(PropertyName = "reason")]
public string Reason { get; set; }Property Value
| Type | Description | 
|---|---|
| string | The reason why the operation is blocklisted. | 
Remarks
Required