GoogleCloudDataplexV1ActionIncompatibleDataSchema.fromJson constructor

GoogleCloudDataplexV1ActionIncompatibleDataSchema.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1ActionIncompatibleDataSchema.fromJson(core.Map json_)
    : this(
        existingSchema: json_.containsKey('existingSchema')
            ? json_['existingSchema'] as core.String
            : null,
        newSchema: json_.containsKey('newSchema')
            ? json_['newSchema'] as core.String
            : null,
        sampledDataLocations: json_.containsKey('sampledDataLocations')
            ? (json_['sampledDataLocations'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        schemaChange: json_.containsKey('schemaChange')
            ? json_['schemaChange'] as core.String
            : null,
        table:
            json_.containsKey('table') ? json_['table'] as core.String : null,
      );