PostgresqlSourceConfig.fromJson constructor

PostgresqlSourceConfig.fromJson(
  1. Map json_
)

Implementation

PostgresqlSourceConfig.fromJson(core.Map json_)
  : this(
      excludeObjects: json_.containsKey('excludeObjects')
          ? PostgresqlRdbms.fromJson(
              json_['excludeObjects'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      includeObjects: json_.containsKey('includeObjects')
          ? PostgresqlRdbms.fromJson(
              json_['includeObjects'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      maxConcurrentBackfillTasks:
          json_['maxConcurrentBackfillTasks'] as core.int?,
      publication: json_['publication'] as core.String?,
      replicationSlot: json_['replicationSlot'] as core.String?,
    );