SecurityProfileGroup.fromJson constructor
SecurityProfileGroup.fromJson(
- Map json_
Implementation
SecurityProfileGroup.fromJson(core.Map json_)
: this(
createTime: json_['createTime'] as core.String?,
customInterceptProfile:
json_['customInterceptProfile'] as core.String?,
customMirroringProfile:
json_['customMirroringProfile'] as core.String?,
dataPathId: json_['dataPathId'] as core.String?,
description: json_['description'] as core.String?,
etag: json_['etag'] as core.String?,
labels:
(json_['labels'] as core.Map<core.String, core.dynamic>?)?.map(
(key, value) => core.MapEntry(
key,
value as core.String,
),
),
name: json_['name'] as core.String?,
threatPreventionProfile:
json_['threatPreventionProfile'] as core.String?,
updateTime: json_['updateTime'] as core.String?,
);