CSIPersistentVolumeSource constructor

const CSIPersistentVolumeSource({
  1. SecretReference? controllerExpandSecretRef,
  2. SecretReference? controllerPublishSecretRef,
  3. required String driver,
  4. String? fsType,
  5. SecretReference? nodeExpandSecretRef,
  6. SecretReference? nodePublishSecretRef,
  7. SecretReference? nodeStageSecretRef,
  8. bool? readOnly,
  9. Map<String, String>? volumeAttributes,
  10. required String volumeHandle,
})

Default constructor.

Implementation

const CSIPersistentVolumeSource({
  this.controllerExpandSecretRef,
  this.controllerPublishSecretRef,
  required this.driver,
  this.fsType,
  this.nodeExpandSecretRef,
  this.nodePublishSecretRef,
  this.nodeStageSecretRef,
  this.readOnly,
  this.volumeAttributes,
  required this.volumeHandle,
});