GoogleCloudAiplatformV1PersistentDiskSpec.fromJson constructor

GoogleCloudAiplatformV1PersistentDiskSpec.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1PersistentDiskSpec.fromJson(core.Map json_)
    : this(
        diskSizeGb: json_.containsKey('diskSizeGb')
            ? json_['diskSizeGb'] as core.String
            : null,
        diskType: json_.containsKey('diskType')
            ? json_['diskType'] as core.String
            : null,
      );