Show / Hide Table of Contents

Class TablespaceAdminStatus

The status of a tablespace admin action.

Inheritance
object
TablespaceAdminStatus
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 TablespaceAdminStatus

Properties

ErrorCode

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

The error code that denotes failure if the tablespace admin action is not successful. The error code is "null" if the admin action is successful.

ErrorMessage

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

The error message that indicates the reason for failure if the tablespace admin action is not successful. The error message is "null" if the admin action is successful.

Status

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

The status of a tablespace admin action.

Remarks

Required

In this article
Back to top