Show / Hide Table of Contents

Class CompatibilityMessage

Information about shape compatibility with the client's current resource configuration.

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

Properties

Message

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

Detailed description of the compatibility issue.

Name

Declaration
[JsonProperty(PropertyName = "name")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CompatibilityMessage.NameEnum? Name { get; set; }
Property Value
Type Description
CompatibilityMessage.NameEnum?

Name of the compatibility issue.

Severity

Declaration
[JsonProperty(PropertyName = "severity")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CompatibilityMessage.SeverityEnum? Severity { get; set; }
Property Value
Type Description
CompatibilityMessage.SeverityEnum?

Severity level of the compatibility issue.

In this article
Back to top