File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1278,6 +1278,7 @@ Types:
12781278
12791279```python
12801280from cloudflare.types.ssl import (
1281+ CertificatePackStatus,
12811282 Host,
12821283 CertificatePackListResponse,
12831284 CertificatePackDeleteResponse,
Original file line number Diff line number Diff line change 66from .verification import Verification as Verification
77from .analyze_create_params import AnalyzeCreateParams as AnalyzeCreateParams
88from .analyze_create_response import AnalyzeCreateResponse as AnalyzeCreateResponse
9+ from .certificate_pack_status import CertificatePackStatus as CertificatePackStatus
910from .verification_get_params import VerificationGetParams as VerificationGetParams
1011from .verification_edit_params import VerificationEditParams as VerificationEditParams
1112from .verification_get_response import VerificationGetResponse as VerificationGetResponse
Original file line number Diff line number Diff line change 55
66from .host import Host
77from ..._models import BaseModel
8+ from .certificate_pack_status import CertificatePackStatus
89
910__all__ = ["CertificatePackEditResponse" ]
1011
@@ -33,31 +34,7 @@ class CertificatePackEditResponse(BaseModel):
3334 empty.
3435 """
3536
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
6138 """Status of certificate pack."""
6239
6340 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 55
66from ..host import Host
77from ...._models import BaseModel
8+ from ..certificate_pack_status import CertificatePackStatus
89
910__all__ = ["OrderCreateResponse" ]
1011
@@ -33,31 +34,7 @@ class OrderCreateResponse(BaseModel):
3334 empty.
3435 """
3536
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
6138 """Status of certificate pack."""
6239
6340 type : Optional [Literal ["advanced" ]] = None
You can’t perform that action at this time.
0 commit comments