internal LinkConnection(LinkConnectionSourceDatabase sourceDatabase, LinkConnectionTargetDatabase targetDatabase, LinkConnectionLandingZone landingZone, LinkConnectionCompute compute)
 {
     SourceDatabase = sourceDatabase;
     TargetDatabase = targetDatabase;
     LandingZone    = landingZone;
     Compute        = compute;
 }
Exemplo n.º 2
0
 public PSLinkConnectionSourceDatabase(LinkConnectionSourceDatabase sourceDatabase)
 {
     this.LinkedService  = sourceDatabase?.LinkedService != null ? new PSLinkedServiceReference(sourceDatabase?.LinkedService) : null;
     this.TypeProperties = sourceDatabase?.TypeProperties != null ? new PSLinkConnectionSourceDatabaseTypeProperties(sourceDatabase?.TypeProperties) : null;
 }