ShieldedInstanceConfig.fromJson constructor
ShieldedInstanceConfig.fromJson(
- Map json_
Implementation
ShieldedInstanceConfig.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,
);