GoldengateDatabricksConnectionProperties.fromJson constructor

GoldengateDatabricksConnectionProperties.fromJson(
  1. Map json_
)

Implementation

GoldengateDatabricksConnectionProperties.fromJson(core.Map json_)
  : this(
      authenticationType: json_['authenticationType'] as core.String?,
      clientId: json_['clientId'] as core.String?,
      clientSecret: json_['clientSecret'] as core.String?,
      connectionUrl: json_['connectionUrl'] as core.String?,
      password: json_['password'] as core.String?,
      passwordSecretVersion: json_['passwordSecretVersion'] as core.String?,
      storageCredential: json_['storageCredential'] as core.String?,
      technologyType: json_['technologyType'] as core.String?,
    );