mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-16 23:01:03 +00:00
feat(api): api update
This commit is contained in:
parent
5a1cebf4fb
commit
666946a5de
3 changed files with 10 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
|||
configured_endpoints: 1752
|
||||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-0aa694b232ca0bb2b7f5d6b20540d5c887671b7212280d6c2852db6f01b81dad.yml
|
||||
openapi_spec_hash: cf2a3e09ffb1c64264d8d49822f6a666
|
||||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-626d9c234c47f7453502aa83d51021ae22f3b7b3f3fdc398d4713ba06b863da7.yml
|
||||
openapi_spec_hash: 17d03e0ecccce4c79e474b331352f2c3
|
||||
config_hash: 8f5aab183b4a8e0f4a9ec9c0293b54f1
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ class TeamsDevicesClientCertificateV2InputRequest(BaseModel):
|
|||
"""Operating system."""
|
||||
|
||||
cn: Optional[str] = None
|
||||
"""Common Name that is protected by the client certificate.
|
||||
"""Certificate Common Name.
|
||||
|
||||
This may include one or more variables in the ${ } notation. Only
|
||||
${serial_number} and ${hostname} are valid variables.
|
||||
|
|
@ -100,6 +100,9 @@ class TeamsDevicesClientCertificateV2InputRequest(BaseModel):
|
|||
|
||||
locations: Optional[TeamsDevicesClientCertificateV2InputRequestLocations] = None
|
||||
|
||||
subject_alternative_names: Optional[List[str]] = None
|
||||
"""List of certificate Subject Alternative Names."""
|
||||
|
||||
|
||||
class TeamsDevicesCustomS2sInputRequest(BaseModel):
|
||||
connection_id: str
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ class TeamsDevicesClientCertificateV2InputRequest(TypedDict, total=False):
|
|||
"""Operating system."""
|
||||
|
||||
cn: str
|
||||
"""Common Name that is protected by the client certificate.
|
||||
"""Certificate Common Name.
|
||||
|
||||
This may include one or more variables in the ${ } notation. Only
|
||||
${serial_number} and ${hostname} are valid variables.
|
||||
|
|
@ -101,6 +101,9 @@ class TeamsDevicesClientCertificateV2InputRequest(TypedDict, total=False):
|
|||
|
||||
locations: TeamsDevicesClientCertificateV2InputRequestLocations
|
||||
|
||||
subject_alternative_names: List[str]
|
||||
"""List of certificate Subject Alternative Names."""
|
||||
|
||||
|
||||
class TeamsDevicesCustomS2sInputRequest(TypedDict, total=False):
|
||||
connection_id: Required[str]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue