Show / Hide Table of Contents

Class CreateHdfsConnectionDetails

The information about a new Hadoop Distributed File System Connection.

Inheritance
object
CreateConnectionDetails
CreateHdfsConnectionDetails
Inherited Members
CreateConnectionDetails.DisplayName
CreateConnectionDetails.Description
CreateConnectionDetails.CompartmentId
CreateConnectionDetails.FreeformTags
CreateConnectionDetails.DefinedTags
CreateConnectionDetails.Locks
CreateConnectionDetails.VaultId
CreateConnectionDetails.KeyId
CreateConnectionDetails.NsgIds
CreateConnectionDetails.SubnetId
CreateConnectionDetails.RoutingMethod
CreateConnectionDetails.DoesUseSecretIds
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class CreateHdfsConnectionDetails : CreateConnectionDetails

Properties

CoreSiteXml

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

The base64 encoded content of the Hadoop Distributed File System configuration file (core-site.xml). It is not included in GET responses if the view=COMPACT query parameter is specified.

Remarks

Required

TechnologyType

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

The Hadoop Distributed File System technology type.

Remarks

Required

In this article
Back to top