GoogleCloudBeyondcorpSecuritygatewaysV1Application.fromJson constructor
GoogleCloudBeyondcorpSecuritygatewaysV1Application.fromJson(
- Map json_
Implementation
GoogleCloudBeyondcorpSecuritygatewaysV1Application.fromJson(core.Map json_)
: this(
createTime: json_['createTime'] as core.String?,
displayName: json_['displayName'] as core.String?,
endpointMatchers:
(json_['endpointMatchers'] as core.List?)
?.map(
(value) =>
GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
name: json_['name'] as core.String?,
schema: json_['schema'] as core.String?,
updateTime: json_['updateTime'] as core.String?,
upstreams:
(json_['upstreams'] as core.List?)
?.map(
(value) =>
GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);