toArgMap method

Map<String, Object?> toArgMap()

Implementation

Map<String, Object?> toArgMap() => {
  'cluster_id': clusterId.toTfJson(),
  if (zone != null) 'zone': zone!.toTfJson(),
  if (numNodes != null) 'num_nodes': numNodes!.toTfJson(),
  if (storageType != null) 'storage_type': storageType!.toTfJson(),
  if (kmsKeyName != null) 'kms_key_name': kmsKeyName!.toTfJson(),
};