Show / Hide Table of Contents

Class AddonError

The error info of the addon.

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

Properties

Code

Declaration
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }
Property Value
Type Description
string

A short error code that defines the upstream error, meant for programmatic parsing. See API Errors.

Message

Declaration
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
Type Description
string

A human-readable error string of the upstream error.

Status

Declaration
[JsonProperty(PropertyName = "status")]
public string Status { get; set; }
Property Value
Type Description
string

The status of the HTTP response encountered in the upstream error.

In this article
Back to top