Show / Hide Table of Contents

Class ParameterFileVersion

Details of a parameter file

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

Properties

Content

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

The content in base64 encoded character string containing the value of the parameter file

Remarks

Required

Description

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

Describes the current parameter file version

IsCurrent

Declaration
[Required(ErrorMessage = "IsCurrent is required.")]
[JsonProperty(PropertyName = "isCurrent")]
public bool? IsCurrent { get; set; }
Property Value
Type Description
bool?

Return boolean true/false for the currently in-use parameter file (factory or a versioned file)

Remarks

Required

IsFactory

Declaration
[Required(ErrorMessage = "IsFactory is required.")]
[JsonProperty(PropertyName = "isFactory")]
public bool? IsFactory { get; set; }
Property Value
Type Description
bool?

Return true/false for whether the parameter file is oracle provided (Factory)

Remarks

Required

Kind

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

Indicator of Parameter File 'kind' (for an EXTRACT or a REPLICAT)

Remarks

Required

Name

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

A unique name associated with the current migration/job and extract/replicat name

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time when this parameter file was applied on the process

Remarks

Required

In this article
Back to top