Skip to content

Commit 58e1844

Browse files
chore(api): update composite API spec
1 parent 0fa71d5 commit 58e1844

37 files changed

Lines changed: 130 additions & 126 deletions

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 2283
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a6c352830d1270d0abb5bb983058ea21815e1bb7d2e163965335dcb0e706f057.yml
3-
openapi_spec_hash: 19d68c687776270888d6bfb14532284f
3+
openapi_spec_hash: fcbb1d06511fd70c310313541db5984d
44
config_hash: af64aebd155c327064f15fb62f55c6fc

src/cloudflare/resources/acm/custom_trust_store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def list(
117117
118118
limit: Limit to the number of records returned.
119119
120-
offset: Offset the results
120+
offset: Offset the results.
121121
122122
page: Page number of paginated results.
123123
@@ -349,7 +349,7 @@ def list(
349349
350350
limit: Limit to the number of records returned.
351351
352-
offset: Offset the results
352+
offset: Offset the results.
353353
354354
page: Page number of paginated results.
355355

src/cloudflare/resources/certificate_authorities/hostname_associations.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def update(
6060
timeout: float | httpx.Timeout | None | NotGiven = not_given,
6161
) -> Optional[HostnameAssociationUpdateResponse]:
6262
"""
63-
Replace Hostname Associations
63+
Replace Hostname Associations.
6464
6565
Args:
6666
zone_id: Identifier.
@@ -113,7 +113,7 @@ def get(
113113
timeout: float | httpx.Timeout | None | NotGiven = not_given,
114114
) -> Optional[HostnameAssociationGetResponse]:
115115
"""
116-
List Hostname Associations
116+
List Hostname Associations.
117117
118118
Args:
119119
zone_id: Identifier.
@@ -183,7 +183,7 @@ async def update(
183183
timeout: float | httpx.Timeout | None | NotGiven = not_given,
184184
) -> Optional[HostnameAssociationUpdateResponse]:
185185
"""
186-
Replace Hostname Associations
186+
Replace Hostname Associations.
187187
188188
Args:
189189
zone_id: Identifier.
@@ -236,7 +236,7 @@ async def get(
236236
timeout: float | httpx.Timeout | None | NotGiven = not_given,
237237
) -> Optional[HostnameAssociationGetResponse]:
238238
"""
239-
List Hostname Associations
239+
List Hostname Associations.
240240
241241
Args:
242242
zone_id: Identifier.

src/cloudflare/resources/client_certificates/client_certificates.py

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,15 @@ def create(
6464
timeout: float | httpx.Timeout | None | NotGiven = not_given,
6565
) -> Optional[ClientCertificate]:
6666
"""
67-
Create a new API Shield mTLS Client Certificate
67+
Create a new API Shield mTLS Client Certificate.
6868
6969
Args:
7070
zone_id: Identifier.
7171
7272
csr: The Certificate Signing Request (CSR). Must be newline-encoded.
7373
74-
validity_days: The number of days the Client Certificate will be valid after the issued_on date
74+
validity_days: The number of days the Client Certificate will be valid after the issued_on
75+
date.
7576
7677
extra_headers: Send extra headers
7778
@@ -120,14 +121,14 @@ def list(
120121
) -> SyncV4PagePaginationArray[ClientCertificate]:
121122
"""
122123
List all of your Zone's API Shield mTLS Client Certificates by Status and/or
123-
using Pagination
124+
using Pagination.
124125
125126
Args:
126127
zone_id: Identifier.
127128
128129
limit: Limit to the number of records returned.
129130
130-
offset: Offset the results
131+
offset: Offset the results.
131132
132133
page: Page number of paginated results.
133134
@@ -286,7 +287,7 @@ def get(
286287
timeout: float | httpx.Timeout | None | NotGiven = not_given,
287288
) -> Optional[ClientCertificate]:
288289
"""
289-
Get Details for a single mTLS API Shield Client Certificate
290+
Get Details for a single mTLS API Shield Client Certificate.
290291
291292
Args:
292293
zone_id: Identifier.
@@ -358,14 +359,15 @@ async def create(
358359
timeout: float | httpx.Timeout | None | NotGiven = not_given,
359360
) -> Optional[ClientCertificate]:
360361
"""
361-
Create a new API Shield mTLS Client Certificate
362+
Create a new API Shield mTLS Client Certificate.
362363
363364
Args:
364365
zone_id: Identifier.
365366
366367
csr: The Certificate Signing Request (CSR). Must be newline-encoded.
367368
368-
validity_days: The number of days the Client Certificate will be valid after the issued_on date
369+
validity_days: The number of days the Client Certificate will be valid after the issued_on
370+
date.
369371
370372
extra_headers: Send extra headers
371373
@@ -414,14 +416,14 @@ def list(
414416
) -> AsyncPaginator[ClientCertificate, AsyncV4PagePaginationArray[ClientCertificate]]:
415417
"""
416418
List all of your Zone's API Shield mTLS Client Certificates by Status and/or
417-
using Pagination
419+
using Pagination.
418420
419421
Args:
420422
zone_id: Identifier.
421423
422424
limit: Limit to the number of records returned.
423425
424-
offset: Offset the results
426+
offset: Offset the results.
425427
426428
page: Page number of paginated results.
427429
@@ -580,7 +582,7 @@ async def get(
580582
timeout: float | httpx.Timeout | None | NotGiven = not_given,
581583
) -> Optional[ClientCertificate]:
582584
"""
583-
Get Details for a single mTLS API Shield Client Certificate
585+
Get Details for a single mTLS API Shield Client Certificate.
584586
585587
Args:
586588
zone_id: Identifier.

src/cloudflare/resources/custom_certificates/custom_certificates.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def create(
100100
101101
custom_csr_id: The identifier for the Custom CSR that was used.
102102
103-
deploy: The environment to deploy the certificate to, defaults to production
103+
deploy: The environment to deploy the certificate to, defaults to production.
104104
105105
geo_restrictions: Specify the region where your private key can be held locally for optimal TLS
106106
performance. HTTPS connections to any excluded data center will still be fully
@@ -317,7 +317,7 @@ def edit(
317317
318318
custom_csr_id: The identifier for the Custom CSR that was used.
319319
320-
deploy: The environment to deploy the certificate to, defaults to production
320+
deploy: The environment to deploy the certificate to, defaults to production.
321321
322322
geo_restrictions: Specify the region where your private key can be held locally for optimal TLS
323323
performance. HTTPS connections to any excluded data center will still be fully
@@ -495,7 +495,7 @@ async def create(
495495
496496
custom_csr_id: The identifier for the Custom CSR that was used.
497497
498-
deploy: The environment to deploy the certificate to, defaults to production
498+
deploy: The environment to deploy the certificate to, defaults to production.
499499
500500
geo_restrictions: Specify the region where your private key can be held locally for optimal TLS
501501
performance. HTTPS connections to any excluded data center will still be fully
@@ -712,7 +712,7 @@ async def edit(
712712
713713
custom_csr_id: The identifier for the Custom CSR that was used.
714714
715-
deploy: The environment to deploy the certificate to, defaults to production
715+
deploy: The environment to deploy the certificate to, defaults to production.
716716
717717
geo_restrictions: Specify the region where your private key can be held locally for optimal TLS
718718
performance. HTTPS connections to any excluded data center will still be fully

src/cloudflare/resources/hostnames/settings/tls.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -73,22 +73,22 @@ def update(
7373
The TLS Setting name. The value type depends on the setting:
7474
7575
- `ciphers`: value is an array of cipher suite strings (e.g.,
76-
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`)
76+
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`).
7777
- `min_tls_version`: value is a TLS version string (`"1.0"`, `"1.1"`, `"1.2"`,
78-
or `"1.3"`)
79-
- `http2`: value is `"on"` or `"off"`
78+
or `"1.3"`).
79+
- `http2`: value is `"on"` or `"off"`.
8080
8181
hostname: The hostname for which the tls settings are set.
8282
8383
value: The TLS setting value. The type depends on the `setting_id` used in the request
8484
path:
8585
8686
- `ciphers`: an array of allowed cipher suite strings in BoringSSL format (e.g.,
87-
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`)
87+
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`).
8888
- `min_tls_version`: a string indicating the minimum TLS version — one of
89-
`"1.0"`, `"1.1"`, `"1.2"`, or `"1.3"` (e.g., `"1.2"`)
89+
`"1.0"`, `"1.1"`, `"1.2"`, or `"1.3"` (e.g., `"1.2"`).
9090
- `http2`: a string indicating whether HTTP/2 is enabled — `"on"` or `"off"`
91-
(e.g., `"on"`)
91+
(e.g., `"on"`).
9292
9393
extra_headers: Send extra headers
9494
@@ -145,10 +145,10 @@ def delete(
145145
The TLS Setting name. The value type depends on the setting:
146146
147147
- `ciphers`: value is an array of cipher suite strings (e.g.,
148-
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`)
148+
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`).
149149
- `min_tls_version`: value is a TLS version string (`"1.0"`, `"1.1"`, `"1.2"`,
150-
or `"1.3"`)
151-
- `http2`: value is `"on"` or `"off"`
150+
or `"1.3"`).
151+
- `http2`: value is `"on"` or `"off"`.
152152
153153
hostname: The hostname for which the tls settings are set.
154154
@@ -205,10 +205,10 @@ def get(
205205
The TLS Setting name. The value type depends on the setting:
206206
207207
- `ciphers`: value is an array of cipher suite strings (e.g.,
208-
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`)
208+
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`).
209209
- `min_tls_version`: value is a TLS version string (`"1.0"`, `"1.1"`, `"1.2"`,
210-
or `"1.3"`)
211-
- `http2`: value is `"on"` or `"off"`
210+
or `"1.3"`).
211+
- `http2`: value is `"on"` or `"off"`.
212212
213213
extra_headers: Send extra headers
214214
@@ -276,22 +276,22 @@ async def update(
276276
The TLS Setting name. The value type depends on the setting:
277277
278278
- `ciphers`: value is an array of cipher suite strings (e.g.,
279-
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`)
279+
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`).
280280
- `min_tls_version`: value is a TLS version string (`"1.0"`, `"1.1"`, `"1.2"`,
281-
or `"1.3"`)
282-
- `http2`: value is `"on"` or `"off"`
281+
or `"1.3"`).
282+
- `http2`: value is `"on"` or `"off"`.
283283
284284
hostname: The hostname for which the tls settings are set.
285285
286286
value: The TLS setting value. The type depends on the `setting_id` used in the request
287287
path:
288288
289289
- `ciphers`: an array of allowed cipher suite strings in BoringSSL format (e.g.,
290-
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`)
290+
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`).
291291
- `min_tls_version`: a string indicating the minimum TLS version — one of
292-
`"1.0"`, `"1.1"`, `"1.2"`, or `"1.3"` (e.g., `"1.2"`)
292+
`"1.0"`, `"1.1"`, `"1.2"`, or `"1.3"` (e.g., `"1.2"`).
293293
- `http2`: a string indicating whether HTTP/2 is enabled — `"on"` or `"off"`
294-
(e.g., `"on"`)
294+
(e.g., `"on"`).
295295
296296
extra_headers: Send extra headers
297297
@@ -348,10 +348,10 @@ async def delete(
348348
The TLS Setting name. The value type depends on the setting:
349349
350350
- `ciphers`: value is an array of cipher suite strings (e.g.,
351-
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`)
351+
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`).
352352
- `min_tls_version`: value is a TLS version string (`"1.0"`, `"1.1"`, `"1.2"`,
353-
or `"1.3"`)
354-
- `http2`: value is `"on"` or `"off"`
353+
or `"1.3"`).
354+
- `http2`: value is `"on"` or `"off"`.
355355
356356
hostname: The hostname for which the tls settings are set.
357357
@@ -408,10 +408,10 @@ def get(
408408
The TLS Setting name. The value type depends on the setting:
409409
410410
- `ciphers`: value is an array of cipher suite strings (e.g.,
411-
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`)
411+
`["ECDHE-RSA-AES128-GCM-SHA256", "AES128-GCM-SHA256"]`).
412412
- `min_tls_version`: value is a TLS version string (`"1.0"`, `"1.1"`, `"1.2"`,
413-
or `"1.3"`)
414-
- `http2`: value is `"on"` or `"off"`
413+
or `"1.3"`).
414+
- `http2`: value is `"on"` or `"off"`.
415415
416416
extra_headers: Send extra headers
417417

src/cloudflare/resources/keyless_certificates/keyless_certificates.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def create(
8787
8888
name: The keyless SSL name.
8989
90-
tunnel: Configuration for using Keyless SSL through a Cloudflare Tunnel
90+
tunnel: Configuration for using Keyless SSL through a Cloudflare Tunnel.
9191
9292
extra_headers: Send extra headers
9393
@@ -248,7 +248,7 @@ def edit(
248248
port: The keyless SSL port used to communicate between Cloudflare and the client's
249249
Keyless SSL server.
250250
251-
tunnel: Configuration for using Keyless SSL through a Cloudflare Tunnel
251+
tunnel: Configuration for using Keyless SSL through a Cloudflare Tunnel.
252252
253253
extra_headers: Send extra headers
254254
@@ -399,7 +399,7 @@ async def create(
399399
400400
name: The keyless SSL name.
401401
402-
tunnel: Configuration for using Keyless SSL through a Cloudflare Tunnel
402+
tunnel: Configuration for using Keyless SSL through a Cloudflare Tunnel.
403403
404404
extra_headers: Send extra headers
405405
@@ -560,7 +560,7 @@ async def edit(
560560
port: The keyless SSL port used to communicate between Cloudflare and the client's
561561
Keyless SSL server.
562562
563-
tunnel: Configuration for using Keyless SSL through a Cloudflare Tunnel
563+
tunnel: Configuration for using Keyless SSL through a Cloudflare Tunnel.
564564
565565
extra_headers: Send extra headers
566566

src/cloudflare/resources/origin_ca_certificates/origin_ca_certificates.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def list(
140140
141141
limit: Limit to the number of records returned.
142142
143-
offset: Offset the results
143+
offset: Offset the results.
144144
145145
page: Page number of paginated results.
146146
@@ -374,7 +374,7 @@ def list(
374374
375375
limit: Limit to the number of records returned.
376376
377-
offset: Offset the results
377+
offset: Offset the results.
378378
379379
page: Page number of paginated results.
380380

src/cloudflare/resources/ssl/certificate_packs/certificate_packs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def create(
8888
8989
certificate_authority: Certificate Authority selected for the order. For information on any certificate
9090
authority specific details or restrictions
91-
[see this page for more details.](https://developers.cloudflare.com/ssl/reference/certificate-authorities)
91+
[see this page for more details](https://developers.cloudflare.com/ssl/reference/certificate-authorities).
9292
9393
hosts: Comma separated list of valid host names for the certificate packs. Must contain
9494
the zone apex, may not contain more than 50 hosts, and may not be empty.
@@ -404,7 +404,7 @@ async def create(
404404
405405
certificate_authority: Certificate Authority selected for the order. For information on any certificate
406406
authority specific details or restrictions
407-
[see this page for more details.](https://developers.cloudflare.com/ssl/reference/certificate-authorities)
407+
[see this page for more details](https://developers.cloudflare.com/ssl/reference/certificate-authorities).
408408
409409
hosts: Comma separated list of valid host names for the certificate packs. Must contain
410410
the zone apex, may not contain more than 50 hosts, and may not be empty.

src/cloudflare/types/acm/custom_trust_store_list_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class CustomTrustStoreListParams(TypedDict, total=False):
1515
"""Limit to the number of records returned."""
1616

1717
offset: int
18-
"""Offset the results"""
18+
"""Offset the results."""
1919

2020
page: float
2121
"""Page number of paginated results."""

0 commit comments

Comments
 (0)