Show / Hide Table of Contents

Class DatabaseParameterUpdateStatus

The result of database parameter update.

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

Properties

ErrorCode

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

An error code that defines the failure or null if the parameter was updated successfully.

ErrorMessage

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

The error message indicating the reason for failure or null if the parameter was updated successfully.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseParameterUpdateStatus.StatusEnum? Status { get; set; }
Property Value
Type Description
DatabaseParameterUpdateStatus.StatusEnum?

The status of the parameter update.

In this article
Back to top