InstancesStartWithEncryptionKeyRequest.fromJson constructor
InstancesStartWithEncryptionKeyRequest.fromJson(
- Map json_
Implementation
InstancesStartWithEncryptionKeyRequest.fromJson(core.Map json_)
: this(
disks: json_.containsKey('disks')
? (json_['disks'] as core.List)
.map((value) => CustomerEncryptionKeyProtectedDisk.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);