Skip to content

Commit 666946a

Browse files
feat(api): api update
1 parent 5a1cebf commit 666946a

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
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: 1752
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-0aa694b232ca0bb2b7f5d6b20540d5c887671b7212280d6c2852db6f01b81dad.yml
3-
openapi_spec_hash: cf2a3e09ffb1c64264d8d49822f6a666
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-626d9c234c47f7453502aa83d51021ae22f3b7b3f3fdc398d4713ba06b863da7.yml
3+
openapi_spec_hash: 17d03e0ecccce4c79e474b331352f2c3
44
config_hash: 8f5aab183b4a8e0f4a9ec9c0293b54f1

src/cloudflare/types/zero_trust/devices/device_input.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class TeamsDevicesClientCertificateV2InputRequest(BaseModel):
8686
"""Operating system."""
8787

8888
cn: Optional[str] = None
89-
"""Common Name that is protected by the client certificate.
89+
"""Certificate Common Name.
9090
9191
This may include one or more variables in the ${ } notation. Only
9292
${serial_number} and ${hostname} are valid variables.
@@ -100,6 +100,9 @@ class TeamsDevicesClientCertificateV2InputRequest(BaseModel):
100100

101101
locations: Optional[TeamsDevicesClientCertificateV2InputRequestLocations] = None
102102

103+
subject_alternative_names: Optional[List[str]] = None
104+
"""List of certificate Subject Alternative Names."""
105+
103106

104107
class TeamsDevicesCustomS2sInputRequest(BaseModel):
105108
connection_id: str

src/cloudflare/types/zero_trust/devices/device_input_param.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class TeamsDevicesClientCertificateV2InputRequest(TypedDict, total=False):
8787
"""Operating system."""
8888

8989
cn: str
90-
"""Common Name that is protected by the client certificate.
90+
"""Certificate Common Name.
9191
9292
This may include one or more variables in the ${ } notation. Only
9393
${serial_number} and ${hostname} are valid variables.
@@ -101,6 +101,9 @@ class TeamsDevicesClientCertificateV2InputRequest(TypedDict, total=False):
101101

102102
locations: TeamsDevicesClientCertificateV2InputRequestLocations
103103

104+
subject_alternative_names: List[str]
105+
"""List of certificate Subject Alternative Names."""
106+
104107

105108
class TeamsDevicesCustomS2sInputRequest(TypedDict, total=False):
106109
connection_id: Required[str]

0 commit comments

Comments
 (0)