Show / Hide Table of Contents

Class ParameterFileVersionSummary

Details of a parameter file

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

Properties

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 description to discribe the current parameter file version

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"}

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

SystemTags

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

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

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