GooglePrivacyDlpV2DiscoveryCloudSqlFilter.fromJson constructor
GooglePrivacyDlpV2DiscoveryCloudSqlFilter.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DiscoveryCloudSqlFilter.fromJson(core.Map json_)
: this(
collection: json_.containsKey('collection')
? GooglePrivacyDlpV2DatabaseResourceCollection.fromJson(
json_['collection'] as core.Map<core.String, core.dynamic>)
: null,
databaseResourceReference:
json_.containsKey('databaseResourceReference')
? GooglePrivacyDlpV2DatabaseResourceReference.fromJson(
json_['databaseResourceReference']
as core.Map<core.String, core.dynamic>)
: null,
others: json_.containsKey('others')
? GooglePrivacyDlpV2AllOtherDatabaseResources.fromJson(
json_['others'] as core.Map<core.String, core.dynamic>)
: null,
);