Show / Hide Table of Contents

Class CreateAssessmentDetails

Common Create Assessment details.

Inheritance
object
CreateAssessmentDetails
CreateMySqlAssessmentDetails
CreateOracleAssessmentDetails
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
[JsonConverter(typeof(CreateAssessmentDetailsModelConverter))]
public class CreateAssessmentDetails

Properties

AcceptableDowntime

Declaration
[Required(ErrorMessage = "AcceptableDowntime is required.")]
[JsonProperty(PropertyName = "acceptableDowntime")]
[JsonConverter(typeof(StringEnumConverter))]
public AcceptableDowntime? AcceptableDowntime { get; set; }
Property Value
Type Description
AcceptableDowntime?

Time allowed for the application downtime.

Remarks

Required

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the resource being referenced.

Remarks

Required

CreationType

Declaration
[JsonProperty(PropertyName = "creationType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreationType? CreationType { get; set; }
Property Value
Type Description
CreationType?

The type of assessment creation.

DatabaseDataSize

Declaration
[Required(ErrorMessage = "DatabaseDataSize is required.")]
[JsonProperty(PropertyName = "databaseDataSize")]
[JsonConverter(typeof(StringEnumConverter))]
public DatabaseDataSize? DatabaseDataSize { get; set; }
Property Value
Type Description
DatabaseDataSize?

The size of a source database.

Remarks

Required

DdlExpectation

Declaration
[Required(ErrorMessage = "DdlExpectation is required.")]
[JsonProperty(PropertyName = "ddlExpectation")]
[JsonConverter(typeof(StringEnumConverter))]
public DdlExpectation? DdlExpectation { get; set; }
Property Value
Type Description
DdlExpectation?

DDL expectation values.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

NetworkSpeedMegabitPerSecond

Declaration
[Required(ErrorMessage = "NetworkSpeedMegabitPerSecond is required.")]
[JsonProperty(PropertyName = "networkSpeedMegabitPerSecond")]
[JsonConverter(typeof(StringEnumConverter))]
public NetworkSpeedMegabitPerSecond? NetworkSpeedMegabitPerSecond { get; set; }
Property Value
Type Description
NetworkSpeedMegabitPerSecond?

A network speed in Megabits per second.

Remarks

Required

SourceDatabaseConnection

Declaration
[Required(ErrorMessage = "SourceDatabaseConnection is required.")]
[JsonProperty(PropertyName = "sourceDatabaseConnection")]
public SourceAssessmentConnection SourceDatabaseConnection { get; set; }
Property Value
Type Description
SourceAssessmentConnection
Remarks

Required

TargetDatabaseConnection

Declaration
[Required(ErrorMessage = "TargetDatabaseConnection is required.")]
[JsonProperty(PropertyName = "targetDatabaseConnection")]
public TargetAssessmentConnection TargetDatabaseConnection { get; set; }
Property Value
Type Description
TargetAssessmentConnection
Remarks

Required

In this article
Back to top