dhall-kubernetes/default/io.k8s.api.core.v1.ISCSIPersistentVolumeSource.dhall
Fabrizio Ferrai 6acb5b3e18 Update to Dhall 1.14
Switch Integer to Natural
2018-07-08 20:47:09 +03:00

14 lines
578 B
Plaintext

\(_params : {iqn : (Text), lun : (Natural), targetPortal : (Text)}) ->
{ chapAuthDiscovery = ([] : Optional (Bool))
, chapAuthSession = ([] : Optional (Bool))
, fsType = ([] : Optional (Text))
, initiatorName = ([] : Optional (Text))
, iqn = _params.iqn
, iscsiInterface = ([] : Optional (Text))
, lun = _params.lun
, portals = ([] : Optional (List Text))
, readOnly = ([] : Optional (Bool))
, secretRef = ([] : Optional (../types/io.k8s.api.core.v1.SecretReference.dhall))
, targetPortal = _params.targetPortal
} : ../types/io.k8s.api.core.v1.ISCSIPersistentVolumeSource.dhall