ISCSIPersistentVolumeSource constructor

const ISCSIPersistentVolumeSource({
  1. bool? chapAuthDiscovery,
  2. bool? chapAuthSession,
  3. String? fsType,
  4. String? initiatorName,
  5. required String iqn,
  6. String? iscsiInterface,
  7. required int lun,
  8. List<String>? portals,
  9. bool? readOnly,
  10. SecretReference? secretRef,
  11. required String targetPortal,
})

The main constructor.

Implementation

const ISCSIPersistentVolumeSource({
  this.chapAuthDiscovery,
  this.chapAuthSession,
  this.fsType,
  this.initiatorName,
  required this.iqn,
  this.iscsiInterface,
  required this.lun,
  this.portals,
  this.readOnly,
  this.secretRef,
  required this.targetPortal,
});