@Deprecated
 public void setAutoSanZoning(Boolean autoSanZoning) {
   if (blockSettings == null) {
     blockSettings = new BlockSettings();
   }
   blockSettings.setAutoSanZoning(autoSanZoning);
 }
 /**
  * ViPR creates the required zones in the SAN fabric when a request to export a volume is made in
  * this virtualstorage array. This will allow the exported volume to be visible on the specified
  * hosts.
  *
  * @valid true
  * @valid false
  */
 @XmlElement(name = "auto_san_zoning")
 @Deprecated
 public Boolean getAutoSanZoning() {
   if (blockSettings != null) {
     return blockSettings.getAutoSanZoning();
   } else {
     return null;
   }
 }