summaryrefslogtreecommitdiff
path: root/types/zoneentry.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-05-05 01:30:27 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-06-06 18:31:16 +0200
commita10167a79528b9c46b0d088112fa0642e24b9586 (patch)
tree580a0c1bd32b2f9ede454c22ce9aec5f8fc70cb3 /types/zoneentry.pp
parentDefalut values. (diff)
downloaddns-a10167a79528b9c46b0d088112fa0642e24b9586.tar.gz
dns-a10167a79528b9c46b0d088112fa0642e24b9586.tar.xz
types
Diffstat (limited to '')
-rw-r--r--types/zoneentry.pp10
1 files changed, 5 insertions, 5 deletions
diff --git a/types/zoneentry.pp b/types/zoneentry.pp
index 6f4fc0f..a862bd6 100644
--- a/types/zoneentry.pp
+++ b/types/zoneentry.pp
@@ -4,9 +4,9 @@ type Dns::Zoneentry = Struct[{
ns => Optional[Array[String]],
records => Optional[Array[Dns::Recordentry]],
update_policy => Optional[String],
- refresh => Dns::Ttl,
- retry => Dns::Ttl,
- expire => Dns::Ttl,
- negative_ttl => Dns::Ttl,
- ttl => Dns::Ttl,
+ refresh => Optional[Dns::Ttl],
+ retry => Optional[Dns::Ttl],
+ expire => Optional[Dns::Ttl],
+ negative_ttl => Optional[Dns::Ttl],
+ ttl => Optional[Dns::Ttl],
}]