Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e1a2474

Browse files
committedMar 11, 2025·
feat(api): api update (#2518)
1 parent 401b717 commit e1a2474

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

‎.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 1607
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-9566037032a1a8a0f3b6738beb772a1fb47b952610799ce49d8d11bfbd412bcb.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-6c816cd91b03585d85f0a6f7fa80d121e74c3b6e9de1d79449652e840f25d3dc.yml

‎src/cloudflare/types/logpush/output_options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class OutputOptions(BaseModel):
1717
batch_suffix: Optional[str] = None
1818
"""String to be appended after each batch."""
1919

20-
cve_2021_4428: Optional[bool] = FieldInfo(alias="CVE-2021-4428", default=None)
20+
cve_2021_44228: Optional[bool] = FieldInfo(alias="CVE-2021-44228", default=None)
2121
"""
2222
If set to true, will cause all occurrences of `${` in the generated files to be
2323
replaced with `x{`.

‎src/cloudflare/types/logpush/output_options_param.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class OutputOptionsParam(TypedDict, total=False):
1717
batch_suffix: Optional[str]
1818
"""String to be appended after each batch."""
1919

20-
cve_2021_4428: Annotated[Optional[bool], PropertyInfo(alias="CVE-2021-4428")]
20+
cve_2021_44228: Annotated[Optional[bool], PropertyInfo(alias="CVE-2021-44228")]
2121
"""
2222
If set to true, will cause all occurrences of `${` in the generated files to be
2323
replaced with `x{`.

‎tests/api_resources/logpush/test_jobs.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_method_create_with_all_params(self, client: Cloudflare) -> None:
4545
output_options={
4646
"batch_prefix": "batch_prefix",
4747
"batch_suffix": "batch_suffix",
48-
"cve_2021_4428": True,
48+
"cve_2021_44228": True,
4949
"field_delimiter": "field_delimiter",
5050
"field_names": ["ClientIP", "EdgeStartTimestamp", "RayID"],
5151
"output_type": "ndjson",
@@ -130,7 +130,7 @@ def test_method_update_with_all_params(self, client: Cloudflare) -> None:
130130
output_options={
131131
"batch_prefix": "batch_prefix",
132132
"batch_suffix": "batch_suffix",
133-
"cve_2021_4428": True,
133+
"cve_2021_44228": True,
134134
"field_delimiter": "field_delimiter",
135135
"field_names": ["ClientIP", "EdgeStartTimestamp", "RayID"],
136136
"output_type": "ndjson",
@@ -396,7 +396,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncCloudflare
396396
output_options={
397397
"batch_prefix": "batch_prefix",
398398
"batch_suffix": "batch_suffix",
399-
"cve_2021_4428": True,
399+
"cve_2021_44228": True,
400400
"field_delimiter": "field_delimiter",
401401
"field_names": ["ClientIP", "EdgeStartTimestamp", "RayID"],
402402
"output_type": "ndjson",
@@ -481,7 +481,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncCloudflare
481481
output_options={
482482
"batch_prefix": "batch_prefix",
483483
"batch_suffix": "batch_suffix",
484-
"cve_2021_4428": True,
484+
"cve_2021_44228": True,
485485
"field_delimiter": "field_delimiter",
486486
"field_names": ["ClientIP", "EdgeStartTimestamp", "RayID"],
487487
"output_type": "ndjson",

0 commit comments

Comments
 (0)
Please sign in to comment.