Show / Hide Table of Contents

Class BlocklistEntry

An entry for blocklist to describe blocked operation and reason.

Inheritance
object
BlocklistEntry
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class BlocklistEntry

Properties

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

In this article
Back to top