GooglePrivacyDlpV2DiscoveryTarget.fromJson constructor
GooglePrivacyDlpV2DiscoveryTarget.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DiscoveryTarget.fromJson(core.Map json_)
: this(
bigQueryTarget: json_.containsKey('bigQueryTarget')
? GooglePrivacyDlpV2BigQueryDiscoveryTarget.fromJson(
json_['bigQueryTarget']
as core.Map<core.String, core.dynamic>)
: null,
cloudSqlTarget: json_.containsKey('cloudSqlTarget')
? GooglePrivacyDlpV2CloudSqlDiscoveryTarget.fromJson(
json_['cloudSqlTarget']
as core.Map<core.String, core.dynamic>)
: null,
secretsTarget: json_.containsKey('secretsTarget')
? GooglePrivacyDlpV2SecretsDiscoveryTarget.fromJson(
json_['secretsTarget'] as core.Map<core.String, core.dynamic>)
: null,
);