toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessMode = this.accessMode;
final architecture = this.architecture;
final description = this.description;
final diskEncryptionKey = this.diskEncryptionKey;
final enableConfidentialCompute = this.enableConfidentialCompute;
final guestOsFeature = this.guestOsFeature;
final labels = this.labels;
final licenses = this.licenses;
final name = this.name;
final physicalBlockSizeBytes = this.physicalBlockSizeBytes;
final provisionedIops = this.provisionedIops;
final provisionedThroughput = this.provisionedThroughput;
final resourceManagerTags = this.resourceManagerTags;
final resourcePolicy = this.resourcePolicy;
final sizeGb = this.sizeGb;
final storagePool = this.storagePool;
final type = this.type;
return {
'accessMode': ?accessMode,
'architecture': ?architecture,
'description': ?description,
'diskEncryptionKey': ?diskEncryptionKey,
'enableConfidentialCompute': ?enableConfidentialCompute,
'guestOsFeature': ?guestOsFeature,
'labels': ?labels,
'licenses': ?licenses,
'name': ?name,
'physicalBlockSizeBytes': ?physicalBlockSizeBytes,
'provisionedIops': ?provisionedIops,
'provisionedThroughput': ?provisionedThroughput,
'resourceManagerTags': ?resourceManagerTags,
'resourcePolicy': ?resourcePolicy,
'sizeGb': ?sizeGb,
'storagePool': ?storagePool,
'type': ?type,
};
}