Commit 1ba1b45 authored Nov 25, 2024 · 10 / 10 · Verified
1 parent b2a64ee commit 1ba1b45 Copy full SHA for 1ba1b45
File tree 1 file changed +33
-11
lines changed
components/schemas/dns/tls
1 file changed +33
-11
lines changed Original file line number Diff line number Diff line change @@ -21,19 +21,41 @@ properties:
21
21
expires :
22
22
$ref : ../../DateTime.yml
23
23
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
35
35
- deprecated
36
36
- $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"
37
59
required :
38
60
- id
39
61
- user_supplied
You can’t perform that action at this time.
0 commit comments