TlsInspectionPolicy.fromJson constructor
TlsInspectionPolicy.fromJson(
- Map json_
Implementation
TlsInspectionPolicy.fromJson(core.Map json_)
: this(
caPool: json_['caPool'] as core.String?,
createTime: json_['createTime'] as core.String?,
customTlsFeatures: (json_['customTlsFeatures'] as core.List?)
?.map((value) => value as core.String)
.toList(),
description: json_['description'] as core.String?,
excludePublicCaSet: json_['excludePublicCaSet'] as core.bool?,
minTlsVersion: json_['minTlsVersion'] as core.String?,
name: json_['name'] as core.String?,
tlsFeatureProfile: json_['tlsFeatureProfile'] as core.String?,
trustConfig: json_['trustConfig'] as core.String?,
updateTime: json_['updateTime'] as core.String?,
);