UNPKG

ravendb

Version:
22 lines 690 B
import { serializeTransformation } from "./Transformation.js"; export class EtlConfiguration { taskId; name; mentorNode; connectionStringName; transforms; disabled; allowEtlOnNonEncryptedChannel; serialize(conventions) { return { TaskId: this.taskId, Name: this.name, MentorNode: this.mentorNode, ConnectionStringName: this.connectionStringName, Transforms: this.transforms.map(x => serializeTransformation(x)), Disabled: this.disabled, AllowEtlOnNonEncryptedChannel: this.allowEtlOnNonEncryptedChannel }; } } //# sourceMappingURL=EtlConfiguration.js.map