Show / Hide Table of Contents

Class ConfigParameterValue

Contains the parameter configuration values.

Inheritance
object
ConfigParameterValue
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class ConfigParameterValue

Properties

IntValue

Declaration
[JsonProperty(PropertyName = "intValue")]
public int? IntValue { get; set; }
Property Value
Type Description
int?

An integer value of the parameter.

ObjectValue

Declaration
[JsonProperty(PropertyName = "objectValue")]
public object ObjectValue { get; set; }
Property Value
Type Description
object

An object value of the parameter.

ParameterValue

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

Reference to the parameter by its key.

RefValue

Declaration
[JsonProperty(PropertyName = "refValue")]
public object RefValue { get; set; }
Property Value
Type Description
object

The root object reference value.

RootObjectValue

Declaration
[JsonProperty(PropertyName = "rootObjectValue")]
public object RootObjectValue { get; set; }
Property Value
Type Description
object

The root object value, used in custom parameters.

StringValue

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

A string value of the parameter.

In this article
Back to top