Show / Hide Table of Contents

Class DatabaseTechnologyType

Technology type e.g. OCI_AUTONOMOUS_DATABASE, array of corresponding sub-types e.g. ADW_SHARED and versions.

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

Properties

DatabaseVersions

Declaration
[JsonProperty(PropertyName = "databaseVersions")]
public List<string> DatabaseVersions { get; set; }
Property Value
Type Description
List<string>

Array of database versions

TechnologySubTypes

Declaration
[JsonProperty(PropertyName = "technologySubTypes")]
public List<DatabaseTechnologySubType> TechnologySubTypes { get; set; }
Property Value
Type Description
List<DatabaseTechnologySubType>

Array of technology sub-types e.g. ADW_SHARED.

TechnologyType

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

The technology type.

Remarks

Required

In this article
Back to top