GoogleCloudDataplexV1MetadataJobImportJobSpec.fromJson constructor

GoogleCloudDataplexV1MetadataJobImportJobSpec.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1MetadataJobImportJobSpec.fromJson(core.Map json_)
  : this(
      aspectSyncMode: json_['aspectSyncMode'] as core.String?,
      entrySyncMode: json_['entrySyncMode'] as core.String?,
      logLevel: json_['logLevel'] as core.String?,
      scope:
          json_.containsKey('scope')
              ? GoogleCloudDataplexV1MetadataJobImportJobSpecImportJobScope.fromJson(
                json_['scope'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      sourceCreateTime: json_['sourceCreateTime'] as core.String?,
      sourceStorageUri: json_['sourceStorageUri'] as core.String?,
    );