InstancesStartWithEncryptionKeyRequest.fromJson constructor

InstancesStartWithEncryptionKeyRequest.fromJson(
  1. Map json_
)

Implementation

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