Skip to content

Commit 1ba1b45

Browse files
authoredNov 25, 2024··
Add missing tls cert event property (#525)
1 parent b2a64ee commit 1ba1b45

File tree

1 file changed

+33
-11
lines changed

1 file changed

+33
-11
lines changed
 

‎components/schemas/dns/tls/TlsCertificate.yml

+33-11
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,41 @@ properties:
2121
expires:
2222
$ref: ../../DateTime.yml
2323
state:
24-
allOf:
25-
- required:
26-
- current
27-
properties:
28-
current:
29-
description: The current state of the TLS certificate.
30-
type: string
31-
enum:
32-
- new
33-
- processing
34-
- live
24+
allOf:
25+
- required:
26+
- current
27+
properties:
28+
current:
29+
description: The current state of the TLS certificate.
30+
type: string
31+
enum:
32+
- new
33+
- processing
34+
- live
3535
- deprecated
3636
- $ref: ../../State.yml
37+
events:
38+
title: TlsCertificateEvents
39+
type: object
40+
description: A collection of timestamps for each event in the TLS certificate's lifetime.
41+
required:
42+
- created
43+
- updated
44+
- deleted
45+
- generated
46+
properties:
47+
created:
48+
description: The timestamp of when the TLS certificate was created.
49+
"$ref": "../../DateTime.yml"
50+
updated:
51+
description: The timestamp of when the TLS certificate was updated.
52+
"$ref": "../../DateTime.yml"
53+
deleted:
54+
description: The timestamp of when the TLS certificate was deleted.
55+
"$ref": ../../DateTime.yml
56+
generated:
57+
description: The timestamp of when the TLS certificate was generated.
58+
"$ref": "../../DateTime.yml"
3759
required:
3860
- id
3961
- user_supplied

0 commit comments

Comments
 (0)
Please sign in to comment.