Show / Hide Table of Contents

Class CreateParameterFileVersionDetails

Details about a specific ParameterFileVersion

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

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

Kind

Declaration
[Required(ErrorMessage = "Kind is required.")]
[JsonProperty(PropertyName = "kind")]
[JsonConverter(typeof(StringEnumConverter))]
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
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Customizable name for the paramenter file version.

In this article
Back to top