File tree 5 files changed +35
-50
lines changed
5 files changed +35
-50
lines changed Original file line number Diff line number Diff line change @@ -1278,6 +1278,7 @@ Types:
1278
1278
1279
1279
```python
1280
1280
from cloudflare.types.ssl import (
1281
+ CertificatePackStatus,
1281
1282
Host,
1282
1283
CertificatePackListResponse,
1283
1284
CertificatePackDeleteResponse,
Original file line number Diff line number Diff line change 6
6
from .verification import Verification as Verification
7
7
from .analyze_create_params import AnalyzeCreateParams as AnalyzeCreateParams
8
8
from .analyze_create_response import AnalyzeCreateResponse as AnalyzeCreateResponse
9
+ from .certificate_pack_status import CertificatePackStatus as CertificatePackStatus
9
10
from .verification_get_params import VerificationGetParams as VerificationGetParams
10
11
from .verification_edit_params import VerificationEditParams as VerificationEditParams
11
12
from .verification_get_response import VerificationGetResponse as VerificationGetResponse
Original file line number Diff line number Diff line change 5
5
6
6
from .host import Host
7
7
from ..._models import BaseModel
8
+ from .certificate_pack_status import CertificatePackStatus
8
9
9
10
__all__ = ["CertificatePackEditResponse" ]
10
11
@@ -33,31 +34,7 @@ class CertificatePackEditResponse(BaseModel):
33
34
empty.
34
35
"""
35
36
36
- status : Optional [
37
- Literal [
38
- "initializing" ,
39
- "pending_validation" ,
40
- "deleted" ,
41
- "pending_issuance" ,
42
- "pending_deployment" ,
43
- "pending_deletion" ,
44
- "pending_expiration" ,
45
- "expired" ,
46
- "active" ,
47
- "initializing_timed_out" ,
48
- "validation_timed_out" ,
49
- "issuance_timed_out" ,
50
- "deployment_timed_out" ,
51
- "deletion_timed_out" ,
52
- "pending_cleanup" ,
53
- "staging_deployment" ,
54
- "staging_active" ,
55
- "deactivating" ,
56
- "inactive" ,
57
- "backup_issued" ,
58
- "holding_deployment" ,
59
- ]
60
- ] = None
37
+ status : Optional [CertificatePackStatus ] = None
61
38
"""Status of certificate pack."""
62
39
63
40
type : Optional [Literal ["advanced" ]] = None
Original file line number Diff line number Diff line change
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing_extensions import Literal
4
+
5
+ __all__ = ["CertificatePackStatus" ]
6
+
7
+ CertificatePackStatus = Literal [
8
+ "initializing" ,
9
+ "pending_validation" ,
10
+ "deleted" ,
11
+ "pending_issuance" ,
12
+ "pending_deployment" ,
13
+ "pending_deletion" ,
14
+ "pending_expiration" ,
15
+ "expired" ,
16
+ "active" ,
17
+ "initializing_timed_out" ,
18
+ "validation_timed_out" ,
19
+ "issuance_timed_out" ,
20
+ "deployment_timed_out" ,
21
+ "deletion_timed_out" ,
22
+ "pending_cleanup" ,
23
+ "staging_deployment" ,
24
+ "staging_active" ,
25
+ "deactivating" ,
26
+ "inactive" ,
27
+ "backup_issued" ,
28
+ "holding_deployment" ,
29
+ ]
Original file line number Diff line number Diff line change 5
5
6
6
from ..host import Host
7
7
from ...._models import BaseModel
8
+ from ..certificate_pack_status import CertificatePackStatus
8
9
9
10
__all__ = ["OrderCreateResponse" ]
10
11
@@ -33,31 +34,7 @@ class OrderCreateResponse(BaseModel):
33
34
empty.
34
35
"""
35
36
36
- status : Optional [
37
- Literal [
38
- "initializing" ,
39
- "pending_validation" ,
40
- "deleted" ,
41
- "pending_issuance" ,
42
- "pending_deployment" ,
43
- "pending_deletion" ,
44
- "pending_expiration" ,
45
- "expired" ,
46
- "active" ,
47
- "initializing_timed_out" ,
48
- "validation_timed_out" ,
49
- "issuance_timed_out" ,
50
- "deployment_timed_out" ,
51
- "deletion_timed_out" ,
52
- "pending_cleanup" ,
53
- "staging_deployment" ,
54
- "staging_active" ,
55
- "deactivating" ,
56
- "inactive" ,
57
- "backup_issued" ,
58
- "holding_deployment" ,
59
- ]
60
- ] = None
37
+ status : Optional [CertificatePackStatus ] = None
61
38
"""Status of certificate pack."""
62
39
63
40
type : Optional [Literal ["advanced" ]] = None
You can’t perform that action at this time.
0 commit comments