GceShieldedInstanceConfig.fromJson constructor
GceShieldedInstanceConfig.fromJson(
- Map json_
Implementation
GceShieldedInstanceConfig.fromJson(core.Map json_)
: this(
enableIntegrityMonitoring:
json_.containsKey('enableIntegrityMonitoring')
? json_['enableIntegrityMonitoring'] as core.bool
: null,
enableSecureBoot: json_.containsKey('enableSecureBoot')
? json_['enableSecureBoot'] as core.bool
: null,
enableVtpm: json_.containsKey('enableVtpm')
? json_['enableVtpm'] as core.bool
: null,
);