Skip to content

Commit 7888a65

Browse files
chore(api): update composite API spec
1 parent 56b8ae2 commit 7888a65

8 files changed

Lines changed: 3 additions & 385 deletions

File tree

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 2418
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare/cloudflare-bd56ab70f18eeddb377203f0766f19e3c4d91162e1782a20848e579729778608.yml
3-
openapi_spec_hash: 75ded8f4018def0946f2b3e23ca4b929
1+
configured_endpoints: 2417
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare/cloudflare-08f6951dff1022387f05582fe54cd8eff8e606ad0809b0e3efb5874ebb11cf01.yml
3+
openapi_spec_hash: 6b8ffc5d6d40adc6dc83fbb44811ef18
44
config_hash: cd80863b2a094f3805409e4a5676b0b8

src/cloudflare/resources/ssl/__init__.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,6 @@
3232
VerificationResourceWithStreamingResponse,
3333
AsyncVerificationResourceWithStreamingResponse,
3434
)
35-
from .recommendations import (
36-
RecommendationsResource,
37-
AsyncRecommendationsResource,
38-
RecommendationsResourceWithRawResponse,
39-
AsyncRecommendationsResourceWithRawResponse,
40-
RecommendationsResourceWithStreamingResponse,
41-
AsyncRecommendationsResourceWithStreamingResponse,
42-
)
4335
from .certificate_packs import (
4436
CertificatePacksResource,
4537
AsyncCertificatePacksResource,
@@ -70,12 +62,6 @@
7062
"AsyncCertificatePacksResourceWithRawResponse",
7163
"CertificatePacksResourceWithStreamingResponse",
7264
"AsyncCertificatePacksResourceWithStreamingResponse",
73-
"RecommendationsResource",
74-
"AsyncRecommendationsResource",
75-
"RecommendationsResourceWithRawResponse",
76-
"AsyncRecommendationsResourceWithRawResponse",
77-
"RecommendationsResourceWithStreamingResponse",
78-
"AsyncRecommendationsResourceWithStreamingResponse",
7965
"AutoOriginTLSKexResource",
8066
"AsyncAutoOriginTLSKexResource",
8167
"AutoOriginTLSKexResourceWithRawResponse",

src/cloudflare/resources/ssl/api.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,6 @@ Methods:
4444

4545
- <code title="get /zones/{zone_id}/ssl/certificate_packs/quota">client.ssl.certificate_packs.quota.<a href="./src/cloudflare/resources/ssl/certificate_packs/quota.py">get</a>(\*, zone_id) -> <a href="./src/cloudflare/types/ssl/certificate_packs/quota_get_response.py">Optional[QuotaGetResponse]</a></code>
4646

47-
## Recommendations
48-
49-
Types:
50-
51-
```python
52-
from cloudflare.types.ssl import RecommendationGetResponse
53-
```
54-
55-
Methods:
56-
57-
- <code title="get /zones/{zone_id}/ssl/recommendation">client.ssl.recommendations.<a href="./src/cloudflare/resources/ssl/recommendations.py">get</a>(\*, zone_id) -> <a href="./src/cloudflare/types/ssl/recommendation_get_response.py">RecommendationGetResponse</a></code>
58-
5947
## AutoOriginTLSKex
6048

6149
Types:

src/cloudflare/resources/ssl/recommendations.py

Lines changed: 0 additions & 186 deletions
This file was deleted.

src/cloudflare/resources/ssl/ssl.py

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,6 @@
2020
VerificationResourceWithStreamingResponse,
2121
AsyncVerificationResourceWithStreamingResponse,
2222
)
23-
from .recommendations import (
24-
RecommendationsResource,
25-
AsyncRecommendationsResource,
26-
RecommendationsResourceWithRawResponse,
27-
AsyncRecommendationsResourceWithRawResponse,
28-
RecommendationsResourceWithStreamingResponse,
29-
AsyncRecommendationsResourceWithStreamingResponse,
30-
)
3123
from .auto_origin_tls_kex import (
3224
AutoOriginTLSKexResource,
3325
AsyncAutoOriginTLSKexResource,
@@ -65,10 +57,6 @@ def analyze(self) -> AnalyzeResource:
6557
def certificate_packs(self) -> CertificatePacksResource:
6658
return CertificatePacksResource(self._client)
6759

68-
@cached_property
69-
def recommendations(self) -> RecommendationsResource:
70-
return RecommendationsResource(self._client)
71-
7260
@cached_property
7361
def auto_origin_tls_kex(self) -> AutoOriginTLSKexResource:
7462
return AutoOriginTLSKexResource(self._client)
@@ -110,10 +98,6 @@ def analyze(self) -> AsyncAnalyzeResource:
11098
def certificate_packs(self) -> AsyncCertificatePacksResource:
11199
return AsyncCertificatePacksResource(self._client)
112100

113-
@cached_property
114-
def recommendations(self) -> AsyncRecommendationsResource:
115-
return AsyncRecommendationsResource(self._client)
116-
117101
@cached_property
118102
def auto_origin_tls_kex(self) -> AsyncAutoOriginTLSKexResource:
119103
return AsyncAutoOriginTLSKexResource(self._client)
@@ -158,10 +142,6 @@ def analyze(self) -> AnalyzeResourceWithRawResponse:
158142
def certificate_packs(self) -> CertificatePacksResourceWithRawResponse:
159143
return CertificatePacksResourceWithRawResponse(self._ssl.certificate_packs)
160144

161-
@cached_property
162-
def recommendations(self) -> RecommendationsResourceWithRawResponse:
163-
return RecommendationsResourceWithRawResponse(self._ssl.recommendations)
164-
165145
@cached_property
166146
def auto_origin_tls_kex(self) -> AutoOriginTLSKexResourceWithRawResponse:
167147
return AutoOriginTLSKexResourceWithRawResponse(self._ssl.auto_origin_tls_kex)
@@ -187,10 +167,6 @@ def analyze(self) -> AsyncAnalyzeResourceWithRawResponse:
187167
def certificate_packs(self) -> AsyncCertificatePacksResourceWithRawResponse:
188168
return AsyncCertificatePacksResourceWithRawResponse(self._ssl.certificate_packs)
189169

190-
@cached_property
191-
def recommendations(self) -> AsyncRecommendationsResourceWithRawResponse:
192-
return AsyncRecommendationsResourceWithRawResponse(self._ssl.recommendations)
193-
194170
@cached_property
195171
def auto_origin_tls_kex(self) -> AsyncAutoOriginTLSKexResourceWithRawResponse:
196172
return AsyncAutoOriginTLSKexResourceWithRawResponse(self._ssl.auto_origin_tls_kex)
@@ -216,10 +192,6 @@ def analyze(self) -> AnalyzeResourceWithStreamingResponse:
216192
def certificate_packs(self) -> CertificatePacksResourceWithStreamingResponse:
217193
return CertificatePacksResourceWithStreamingResponse(self._ssl.certificate_packs)
218194

219-
@cached_property
220-
def recommendations(self) -> RecommendationsResourceWithStreamingResponse:
221-
return RecommendationsResourceWithStreamingResponse(self._ssl.recommendations)
222-
223195
@cached_property
224196
def auto_origin_tls_kex(self) -> AutoOriginTLSKexResourceWithStreamingResponse:
225197
return AutoOriginTLSKexResourceWithStreamingResponse(self._ssl.auto_origin_tls_kex)
@@ -245,10 +217,6 @@ def analyze(self) -> AsyncAnalyzeResourceWithStreamingResponse:
245217
def certificate_packs(self) -> AsyncCertificatePacksResourceWithStreamingResponse:
246218
return AsyncCertificatePacksResourceWithStreamingResponse(self._ssl.certificate_packs)
247219

248-
@cached_property
249-
def recommendations(self) -> AsyncRecommendationsResourceWithStreamingResponse:
250-
return AsyncRecommendationsResourceWithStreamingResponse(self._ssl.recommendations)
251-
252220
@cached_property
253221
def auto_origin_tls_kex(self) -> AsyncAutoOriginTLSKexResourceWithStreamingResponse:
254222
return AsyncAutoOriginTLSKexResourceWithStreamingResponse(self._ssl.auto_origin_tls_kex)

src/cloudflare/types/ssl/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from .verification_edit_params import VerificationEditParams as VerificationEditParams
1313
from .verification_get_response import VerificationGetResponse as VerificationGetResponse
1414
from .verification_edit_response import VerificationEditResponse as VerificationEditResponse
15-
from .recommendation_get_response import RecommendationGetResponse as RecommendationGetResponse
1615
from .certificate_pack_edit_params import CertificatePackEditParams as CertificatePackEditParams
1716
from .certificate_pack_list_params import CertificatePackListParams as CertificatePackListParams
1817
from .certificate_pack_get_response import CertificatePackGetResponse as CertificatePackGetResponse

src/cloudflare/types/ssl/recommendation_get_response.py

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)