GoldengateSnowflakeConnectionProperties.fromJson constructor

GoldengateSnowflakeConnectionProperties.fromJson(
  1. Map json_
)

Implementation

GoldengateSnowflakeConnectionProperties.fromJson(core.Map json_)
  : this(
      authenticationType: json_['authenticationType'] as core.String?,
      connectionUrl: json_['connectionUrl'] as core.String?,
      password: json_['password'] as core.String?,
      passwordSecretVersion: json_['passwordSecretVersion'] as core.String?,
      privateKeyFile: json_['privateKeyFile'] as core.String?,
      privateKeyPassphraseSecret:
          json_['privateKeyPassphraseSecret'] as core.String?,
      technologyType: json_['technologyType'] as core.String?,
      username: json_['username'] as core.String?,
    );