GooglePrivacyDlpV2CloudSqlDiscoveryTarget.fromJson constructor
GooglePrivacyDlpV2CloudSqlDiscoveryTarget.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2CloudSqlDiscoveryTarget.fromJson(core.Map json_)
: this(
conditions: json_.containsKey('conditions')
? GooglePrivacyDlpV2DiscoveryCloudSqlConditions.fromJson(
json_['conditions'] as core.Map<core.String, core.dynamic>)
: null,
disabled: json_.containsKey('disabled')
? GooglePrivacyDlpV2Disabled.fromJson(
json_['disabled'] as core.Map<core.String, core.dynamic>)
: null,
filter: json_.containsKey('filter')
? GooglePrivacyDlpV2DiscoveryCloudSqlFilter.fromJson(
json_['filter'] as core.Map<core.String, core.dynamic>)
: null,
generationCadence: json_.containsKey('generationCadence')
? GooglePrivacyDlpV2DiscoveryCloudSqlGenerationCadence.fromJson(
json_['generationCadence']
as core.Map<core.String, core.dynamic>)
: null,
);