GoogleCloudAiplatformV1ImportFeatureValuesRequest.fromJson constructor
GoogleCloudAiplatformV1ImportFeatureValuesRequest.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1ImportFeatureValuesRequest.fromJson(core.Map json_)
: this(
avroSource:
json_.containsKey('avroSource')
? GoogleCloudAiplatformV1AvroSource.fromJson(
json_['avroSource'] as core.Map<core.String, core.dynamic>,
)
: null,
bigquerySource:
json_.containsKey('bigquerySource')
? GoogleCloudAiplatformV1BigQuerySource.fromJson(
json_['bigquerySource']
as core.Map<core.String, core.dynamic>,
)
: null,
csvSource:
json_.containsKey('csvSource')
? GoogleCloudAiplatformV1CsvSource.fromJson(
json_['csvSource'] as core.Map<core.String, core.dynamic>,
)
: null,
disableIngestionAnalysis:
json_['disableIngestionAnalysis'] as core.bool?,
disableOnlineServing: json_['disableOnlineServing'] as core.bool?,
entityIdField: json_['entityIdField'] as core.String?,
featureSpecs:
(json_['featureSpecs'] as core.List?)
?.map(
(value) =>
GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
featureTime: json_['featureTime'] as core.String?,
featureTimeField: json_['featureTimeField'] as core.String?,
workerCount: json_['workerCount'] as core.int?,
);