Show / Hide Table of Contents

Class MigrationPhaseSummary

Migration Phase Summary of details.

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

Properties

Name

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

ODMS Job phase name

Remarks

Required

RecommendedAction

Declaration
[JsonProperty(PropertyName = "recommendedAction")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OdmsPhaseActions? RecommendedAction { get; set; }
Property Value
Type Description
OdmsPhaseActions?

Action recommended for this phase. If not included in the response, there is no recommended action for the phase.

SupportedActions

Declaration
[Required(ErrorMessage = "SupportedActions is required.")]
[JsonProperty(PropertyName = "supportedActions")]
public List<OdmsPhaseActions> SupportedActions { get; set; }
Property Value
Type Description
List<OdmsPhaseActions>

Array of actions for the corresponding phase. Empty array would indicate there is no supported action for the phase.

Remarks

Required

In this article
Back to top