mirror of
https://github.com/dhall-lang/dhall-kubernetes.git
synced 2024-11-03 21:05:47 +03:00
8 lines
442 B
Plaintext
8 lines
442 B
Plaintext
\(_params : {metadata : (../types/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.dhall), spec : (../types/io.k8s.api.storage.v1.VolumeAttachmentSpec.dhall)}) ->
|
|
{ apiVersion = ("storage.k8s.io/v1" : Text)
|
|
, kind = ("VolumeAttachment" : Text)
|
|
, metadata = _params.metadata
|
|
, spec = _params.spec
|
|
, status = ([] : Optional (../types/io.k8s.api.storage.v1.VolumeAttachmentStatus.dhall))
|
|
} : ../types/io.k8s.api.storage.v1.VolumeAttachment.dhall
|