Show / Hide Table of Contents

Class PatchActivityDetails

Details of deploy, update and migrate-listener(only for single Instance database) operations for this resource.

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

Properties

DeployOperationId

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

Operation Identifier for deploy operation.

DeployStatus

Declaration
[JsonProperty(PropertyName = "deployStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchActivityDetails.DeployStatusEnum? DeployStatus { get; set; }
Property Value
Type Description
PatchActivityDetails.DeployStatusEnum?

Status of deploy operation.

DeployTaskId

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

Task identifier for deploy operation.

MigrateListenerOperationId

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

Operation Identifier for migrate listener operation.

MigrateListenerStatus

Declaration
[JsonProperty(PropertyName = "migrateListenerStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchActivityDetails.MigrateListenerStatusEnum? MigrateListenerStatus { get; set; }
Property Value
Type Description
PatchActivityDetails.MigrateListenerStatusEnum?

Status of migrate listener operation.

MigrateListenerTaskId

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

Task identifier for migrate listener operation.

UpdateOperationId

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

Operation Identifier for update operation.

UpdateStatus

Declaration
[JsonProperty(PropertyName = "updateStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PatchActivityDetails.UpdateStatusEnum? UpdateStatus { get; set; }
Property Value
Type Description
PatchActivityDetails.UpdateStatusEnum?

Status of update operation.

UpdateTaskId

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

Task identifier for update operation.

In this article
Back to top