GoogleCloudAiplatformV1FeaturestoreMonitoringConfig.fromJson constructor

GoogleCloudAiplatformV1FeaturestoreMonitoringConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1FeaturestoreMonitoringConfig.fromJson(core.Map json_)
    : this(
        categoricalThresholdConfig: json_
                .containsKey('categoricalThresholdConfig')
            ? GoogleCloudAiplatformV1FeaturestoreMonitoringConfigThresholdConfig
                .fromJson(json_['categoricalThresholdConfig']
                    as core.Map<core.String, core.dynamic>)
            : null,
        importFeaturesAnalysis: json_.containsKey('importFeaturesAnalysis')
            ? GoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysis
                .fromJson(json_['importFeaturesAnalysis']
                    as core.Map<core.String, core.dynamic>)
            : null,
        numericalThresholdConfig: json_
                .containsKey('numericalThresholdConfig')
            ? GoogleCloudAiplatformV1FeaturestoreMonitoringConfigThresholdConfig
                .fromJson(json_['numericalThresholdConfig']
                    as core.Map<core.String, core.dynamic>)
            : null,
        snapshotAnalysis: json_.containsKey('snapshotAnalysis')
            ? GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis
                .fromJson(json_['snapshotAnalysis']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );