Show / Hide Table of Contents

Class CreateConnectionFromOraclePeopleSoft

The details to create an Oracle PeopleSoft data asset connection.

Inheritance
object
CreateConnectionDetails
CreateConnectionFromOraclePeopleSoft
Inherited Members
CreateConnectionDetails.Key
CreateConnectionDetails.ModelVersion
CreateConnectionDetails.ParentRef
CreateConnectionDetails.Name
CreateConnectionDetails.Description
CreateConnectionDetails.ObjectStatus
CreateConnectionDetails.Identifier
CreateConnectionDetails.ConnectionProperties
CreateConnectionDetails.RegistryMetadata
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 CreateConnectionFromOraclePeopleSoft : CreateConnectionDetails

Properties

Password

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

The password for the connection.

Remarks

Required

PasswordSecret

Declaration
[JsonProperty(PropertyName = "passwordSecret")]
public SensitiveAttribute PasswordSecret { get; set; }
Property Value
Type Description
SensitiveAttribute

Username

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

The user name for the connection.

Remarks

Required

In this article
Back to top