Skip to content

Commit 0978d14

Browse files
feat(api): api update (#2244)
1 parent 86ca907 commit 0978d14

File tree

7 files changed

+49
-13
lines changed

7 files changed

+49
-13
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 1448
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-1fd56d8b296b94813055efeb0207b08e331534303d4967b674513550f33e0ccb.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-5d9269029aa80ea06158ff1156ec30914cbeca10b8893ba9ef2df46511e10aae.yml

src/cloudflare/types/zero_trust/access/infrastructure/target_create_params.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,21 @@ class IPIPV4(TypedDict, total=False):
2828
"""IP address of the target"""
2929

3030
virtual_network_id: str
31-
"""Private virtual network identifier for the target"""
31+
"""(optional) Private virtual network identifier for the target.
32+
33+
If omitted, the default virtual network ID will be used.
34+
"""
3235

3336

3437
class IPIPV6(TypedDict, total=False):
3538
ip_addr: str
3639
"""IP address of the target"""
3740

3841
virtual_network_id: str
39-
"""Private virtual network identifier for the target"""
42+
"""(optional) Private virtual network identifier for the target.
43+
44+
If omitted, the default virtual network ID will be used.
45+
"""
4046

4147

4248
class IP(TypedDict, total=False):

src/cloudflare/types/zero_trust/access/infrastructure/target_create_response.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,21 @@ class IPIPV4(BaseModel):
1313
"""IP address of the target"""
1414

1515
virtual_network_id: Optional[str] = None
16-
"""Private virtual network identifier for the target"""
16+
"""(optional) Private virtual network identifier for the target.
17+
18+
If omitted, the default virtual network ID will be used.
19+
"""
1720

1821

1922
class IPIPV6(BaseModel):
2023
ip_addr: Optional[str] = None
2124
"""IP address of the target"""
2225

2326
virtual_network_id: Optional[str] = None
24-
"""Private virtual network identifier for the target"""
27+
"""(optional) Private virtual network identifier for the target.
28+
29+
If omitted, the default virtual network ID will be used.
30+
"""
2531

2632

2733
class IP(BaseModel):

src/cloudflare/types/zero_trust/access/infrastructure/target_get_response.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,21 @@ class IPIPV4(BaseModel):
1313
"""IP address of the target"""
1414

1515
virtual_network_id: Optional[str] = None
16-
"""Private virtual network identifier for the target"""
16+
"""(optional) Private virtual network identifier for the target.
17+
18+
If omitted, the default virtual network ID will be used.
19+
"""
1720

1821

1922
class IPIPV6(BaseModel):
2023
ip_addr: Optional[str] = None
2124
"""IP address of the target"""
2225

2326
virtual_network_id: Optional[str] = None
24-
"""Private virtual network identifier for the target"""
27+
"""(optional) Private virtual network identifier for the target.
28+
29+
If omitted, the default virtual network ID will be used.
30+
"""
2531

2632

2733
class IP(BaseModel):

src/cloudflare/types/zero_trust/access/infrastructure/target_list_response.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,21 @@ class IPIPV4(BaseModel):
1313
"""IP address of the target"""
1414

1515
virtual_network_id: Optional[str] = None
16-
"""Private virtual network identifier for the target"""
16+
"""(optional) Private virtual network identifier for the target.
17+
18+
If omitted, the default virtual network ID will be used.
19+
"""
1720

1821

1922
class IPIPV6(BaseModel):
2023
ip_addr: Optional[str] = None
2124
"""IP address of the target"""
2225

2326
virtual_network_id: Optional[str] = None
24-
"""Private virtual network identifier for the target"""
27+
"""(optional) Private virtual network identifier for the target.
28+
29+
If omitted, the default virtual network ID will be used.
30+
"""
2531

2632

2733
class IP(BaseModel):

src/cloudflare/types/zero_trust/access/infrastructure/target_update_params.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,21 @@ class IPIPV4(TypedDict, total=False):
2828
"""IP address of the target"""
2929

3030
virtual_network_id: str
31-
"""Private virtual network identifier for the target"""
31+
"""(optional) Private virtual network identifier for the target.
32+
33+
If omitted, the default virtual network ID will be used.
34+
"""
3235

3336

3437
class IPIPV6(TypedDict, total=False):
3538
ip_addr: str
3639
"""IP address of the target"""
3740

3841
virtual_network_id: str
39-
"""Private virtual network identifier for the target"""
42+
"""(optional) Private virtual network identifier for the target.
43+
44+
If omitted, the default virtual network ID will be used.
45+
"""
4046

4147

4248
class IP(TypedDict, total=False):

src/cloudflare/types/zero_trust/access/infrastructure/target_update_response.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,21 @@ class IPIPV4(BaseModel):
1313
"""IP address of the target"""
1414

1515
virtual_network_id: Optional[str] = None
16-
"""Private virtual network identifier for the target"""
16+
"""(optional) Private virtual network identifier for the target.
17+
18+
If omitted, the default virtual network ID will be used.
19+
"""
1720

1821

1922
class IPIPV6(BaseModel):
2023
ip_addr: Optional[str] = None
2124
"""IP address of the target"""
2225

2326
virtual_network_id: Optional[str] = None
24-
"""Private virtual network identifier for the target"""
27+
"""(optional) Private virtual network identifier for the target.
28+
29+
If omitted, the default virtual network ID will be used.
30+
"""
2531

2632

2733
class IP(BaseModel):

0 commit comments

Comments
 (0)