GoogleCloudAiplatformV1BatchPredictionJobInputConfig.fromJson constructor
GoogleCloudAiplatformV1BatchPredictionJobInputConfig.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1BatchPredictionJobInputConfig.fromJson(core.Map json_)
: this(
bigquerySource: json_.containsKey('bigquerySource')
? GoogleCloudAiplatformV1BigQuerySource.fromJson(
json_['bigquerySource'] as core.Map<core.String, core.dynamic>,
)
: null,
gcsSource: json_.containsKey('gcsSource')
? GoogleCloudAiplatformV1GcsSource.fromJson(
json_['gcsSource'] as core.Map<core.String, core.dynamic>,
)
: null,
instancesFormat: json_['instancesFormat'] as core.String?,
vertexMultimodalDatasetSource:
json_.containsKey('vertexMultimodalDatasetSource')
? GoogleCloudAiplatformV1VertexMultimodalDatasetSource.fromJson(
json_['vertexMultimodalDatasetSource']
as core.Map<core.String, core.dynamic>,
)
: null,
);