Show / Hide Table of Contents

Class CreateSourceApplicationInfo

The information about the application.

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

Properties

ApplicationKey

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

The source application key to use when creating the application.

CopyType

Declaration
[JsonProperty(PropertyName = "copyType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateSourceApplicationInfo.CopyTypeEnum? CopyType { get; set; }
Property Value
Type Description
CreateSourceApplicationInfo.CopyTypeEnum?

Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.

WorkspaceId

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

The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.

In this article
Back to top