GoogleCloudContentwarehouseV1GcsIngestPipeline.fromJson constructor

GoogleCloudContentwarehouseV1GcsIngestPipeline.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1GcsIngestPipeline.fromJson(core.Map json_)
  : this(
      inputPath: json_['inputPath'] as core.String?,
      pipelineConfig: json_.containsKey('pipelineConfig')
          ? GoogleCloudContentwarehouseV1IngestPipelineConfig.fromJson(
              json_['pipelineConfig'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      processorType: json_['processorType'] as core.String?,
      schemaName: json_['schemaName'] as core.String?,
      skipIngestedDocuments: json_['skipIngestedDocuments'] as core.bool?,
    );