Skip to content

Commit 3b9ea5d

Browse files
feat(api): api update
1 parent 3117368 commit 3b9ea5d

12 files changed

+52
-52
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1793
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-04b4dbda89df6bee81c7e2dbb83fe3b82e5a06d8f5d6c88dc0e5ca91e81fe7b6.yml
3-
openapi_spec_hash: 61a00ddb0dd600d4e2b6258cc2da1517
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-67567350789775e1a836ca8c4ec5c9a53fa4f323317bd70350e07a1112d5ada5.yml
3+
openapi_spec_hash: 5dfd94e9f9564db9e16524beebb3fc2d
44
config_hash: 04c3e87def66bed3001640fca84ff9c5

src/cloudflare/types/dns/https_record.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212

1313
class Data(BaseModel):
1414
priority: Optional[float] = None
15-
"""priority."""
15+
"""Priority."""
1616

1717
target: Optional[str] = None
18-
"""target."""
18+
"""Target."""
1919

2020
value: Optional[str] = None
21-
"""value."""
21+
"""Value."""
2222

2323

2424
class Settings(BaseModel):

src/cloudflare/types/dns/https_record_param.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313

1414
class Data(TypedDict, total=False):
1515
priority: float
16-
"""priority."""
16+
"""Priority."""
1717

1818
target: str
19-
"""target."""
19+
"""Target."""
2020

2121
value: str
22-
"""value."""
22+
"""Value."""
2323

2424

2525
class Settings(TypedDict, total=False):

src/cloudflare/types/dns/record_create_params.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -868,13 +868,13 @@ class HTTPSRecord(TypedDict, total=False):
868868

869869
class HTTPSRecordData(TypedDict, total=False):
870870
priority: float
871-
"""priority."""
871+
"""Priority."""
872872

873873
target: str
874-
"""target."""
874+
"""Target."""
875875

876876
value: str
877-
"""value."""
877+
"""Value."""
878878

879879

880880
class HTTPSRecordSettings(TypedDict, total=False):
@@ -1253,13 +1253,13 @@ class SSHFPRecord(TypedDict, total=False):
12531253

12541254
class SSHFPRecordData(TypedDict, total=False):
12551255
algorithm: float
1256-
"""algorithm."""
1256+
"""Algorithm."""
12571257

12581258
fingerprint: str
1259-
"""fingerprint."""
1259+
"""Fingerprint."""
12601260

12611261
type: float
1262-
"""type."""
1262+
"""Type."""
12631263

12641264

12651265
class SSHFPRecordSettings(TypedDict, total=False):
@@ -1321,13 +1321,13 @@ class SVCBRecord(TypedDict, total=False):
13211321

13221322
class SVCBRecordData(TypedDict, total=False):
13231323
priority: float
1324-
"""priority."""
1324+
"""Priority."""
13251325

13261326
target: str
1327-
"""target."""
1327+
"""Target."""
13281328

13291329
value: str
1330-
"""value."""
1330+
"""Value."""
13311331

13321332

13331333
class SVCBRecordSettings(TypedDict, total=False):
@@ -1389,7 +1389,7 @@ class TLSARecord(TypedDict, total=False):
13891389

13901390
class TLSARecordData(TypedDict, total=False):
13911391
certificate: str
1392-
"""certificate."""
1392+
"""Certificate."""
13931393

13941394
matching_type: float
13951395
"""Matching Type."""

src/cloudflare/types/dns/record_edit_params.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -868,13 +868,13 @@ class HTTPSRecord(TypedDict, total=False):
868868

869869
class HTTPSRecordData(TypedDict, total=False):
870870
priority: float
871-
"""priority."""
871+
"""Priority."""
872872

873873
target: str
874-
"""target."""
874+
"""Target."""
875875

876876
value: str
877-
"""value."""
877+
"""Value."""
878878

879879

880880
class HTTPSRecordSettings(TypedDict, total=False):
@@ -1253,13 +1253,13 @@ class SSHFPRecord(TypedDict, total=False):
12531253

12541254
class SSHFPRecordData(TypedDict, total=False):
12551255
algorithm: float
1256-
"""algorithm."""
1256+
"""Algorithm."""
12571257

12581258
fingerprint: str
1259-
"""fingerprint."""
1259+
"""Fingerprint."""
12601260

12611261
type: float
1262-
"""type."""
1262+
"""Type."""
12631263

12641264

12651265
class SSHFPRecordSettings(TypedDict, total=False):
@@ -1321,13 +1321,13 @@ class SVCBRecord(TypedDict, total=False):
13211321

13221322
class SVCBRecordData(TypedDict, total=False):
13231323
priority: float
1324-
"""priority."""
1324+
"""Priority."""
13251325

13261326
target: str
1327-
"""target."""
1327+
"""Target."""
13281328

13291329
value: str
1330-
"""value."""
1330+
"""Value."""
13311331

13321332

13331333
class SVCBRecordSettings(TypedDict, total=False):
@@ -1389,7 +1389,7 @@ class TLSARecord(TypedDict, total=False):
13891389

13901390
class TLSARecordData(TypedDict, total=False):
13911391
certificate: str
1392-
"""certificate."""
1392+
"""Certificate."""
13931393

13941394
matching_type: float
13951395
"""Matching Type."""

src/cloudflare/types/dns/record_update_params.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -868,13 +868,13 @@ class HTTPSRecord(TypedDict, total=False):
868868

869869
class HTTPSRecordData(TypedDict, total=False):
870870
priority: float
871-
"""priority."""
871+
"""Priority."""
872872

873873
target: str
874-
"""target."""
874+
"""Target."""
875875

876876
value: str
877-
"""value."""
877+
"""Value."""
878878

879879

880880
class HTTPSRecordSettings(TypedDict, total=False):
@@ -1253,13 +1253,13 @@ class SSHFPRecord(TypedDict, total=False):
12531253

12541254
class SSHFPRecordData(TypedDict, total=False):
12551255
algorithm: float
1256-
"""algorithm."""
1256+
"""Algorithm."""
12571257

12581258
fingerprint: str
1259-
"""fingerprint."""
1259+
"""Fingerprint."""
12601260

12611261
type: float
1262-
"""type."""
1262+
"""Type."""
12631263

12641264

12651265
class SSHFPRecordSettings(TypedDict, total=False):
@@ -1321,13 +1321,13 @@ class SVCBRecord(TypedDict, total=False):
13211321

13221322
class SVCBRecordData(TypedDict, total=False):
13231323
priority: float
1324-
"""priority."""
1324+
"""Priority."""
13251325

13261326
target: str
1327-
"""target."""
1327+
"""Target."""
13281328

13291329
value: str
1330-
"""value."""
1330+
"""Value."""
13311331

13321332

13331333
class SVCBRecordSettings(TypedDict, total=False):
@@ -1389,7 +1389,7 @@ class TLSARecord(TypedDict, total=False):
13891389

13901390
class TLSARecordData(TypedDict, total=False):
13911391
certificate: str
1392-
"""certificate."""
1392+
"""Certificate."""
13931393

13941394
matching_type: float
13951395
"""Matching Type."""

src/cloudflare/types/dns/sshfp_record.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212

1313
class Data(BaseModel):
1414
algorithm: Optional[float] = None
15-
"""algorithm."""
15+
"""Algorithm."""
1616

1717
fingerprint: Optional[str] = None
18-
"""fingerprint."""
18+
"""Fingerprint."""
1919

2020
type: Optional[float] = None
21-
"""type."""
21+
"""Type."""
2222

2323

2424
class Settings(BaseModel):

src/cloudflare/types/dns/sshfp_record_param.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313

1414
class Data(TypedDict, total=False):
1515
algorithm: float
16-
"""algorithm."""
16+
"""Algorithm."""
1717

1818
fingerprint: str
19-
"""fingerprint."""
19+
"""Fingerprint."""
2020

2121
type: float
22-
"""type."""
22+
"""Type."""
2323

2424

2525
class Settings(TypedDict, total=False):

src/cloudflare/types/dns/svcb_record.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212

1313
class Data(BaseModel):
1414
priority: Optional[float] = None
15-
"""priority."""
15+
"""Priority."""
1616

1717
target: Optional[str] = None
18-
"""target."""
18+
"""Target."""
1919

2020
value: Optional[str] = None
21-
"""value."""
21+
"""Value."""
2222

2323

2424
class Settings(BaseModel):

src/cloudflare/types/dns/svcb_record_param.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313

1414
class Data(TypedDict, total=False):
1515
priority: float
16-
"""priority."""
16+
"""Priority."""
1717

1818
target: str
19-
"""target."""
19+
"""Target."""
2020

2121
value: str
22-
"""value."""
22+
"""Value."""
2323

2424

2525
class Settings(TypedDict, total=False):

0 commit comments

Comments
 (0)