Skip to content

Commit b403c15

Browse files
digitalocean-engineeringAPI Engineering
andauthored
[bot] Updated client based on openapi-98af163/clientgen (#523)
Co-authored-by: API Engineering <[email protected]>
1 parent 19d0f33 commit b403c15

File tree

8 files changed

+5078
-502
lines changed

8 files changed

+5078
-502
lines changed

DO_OPENAPI_COMMIT_SHA.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5c389af
1+
98af163

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ azure-core==1.30.1 ; python_version >= "3.8" and python_full_version < "4.0.0"
1010
azure-identity==1.16.1 ; python_version >= "3.8" and python_full_version < "4.0.0"
1111
babel==2.15.0 ; python_version >= "3.8" and python_full_version < "4.0.0"
1212
black==24.3.0 ; python_version >= "3.8" and python_full_version < "4.0.0"
13-
certifi==2024.2.2 ; python_version >= "3.8" and python_full_version < "4.0.0"
13+
certifi==2024.7.4 ; python_version >= "3.8" and python_full_version < "4.0.0"
1414
cffi==1.16.0 ; python_version >= "3.8" and python_full_version < "4.0.0" and platform_python_implementation != "PyPy"
1515
charset-normalizer==3.3.2 ; python_version >= "3.8" and python_full_version < "4.0.0"
1616
click==8.1.7 ; python_version >= "3.8" and python_full_version < "4.0.0"
1717
colorama==0.4.6 ; python_version >= "3.8" and python_full_version < "4.0.0" and (sys_platform == "win32" or platform_system == "Windows")
18-
cryptography==42.0.7 ; python_version >= "3.8" and python_full_version < "4.0.0"
18+
cryptography==43.0.1 ; python_version >= "3.8" and python_full_version < "4.0.0"
1919
dill==0.3.8 ; python_version >= "3.8" and python_full_version < "4.0.0"
2020
docutils==0.18.1 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0"
2121
exceptiongroup==1.2.1 ; python_full_version >= "3.8.0" and python_version < "3.11"
@@ -69,4 +69,4 @@ typing-extensions==4.12.0 ; python_version >= "3.8" and python_full_version < "4
6969
urllib3==2.2.2 ; python_version >= "3.8" and python_full_version < "4.0.0"
7070
wrapt==1.16.0 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0"
7171
yarl==1.9.4 ; python_version >= "3.8" and python_full_version < "4.0.0"
72-
zipp==3.19.0 ; python_version >= "3.8" and python_version < "3.10"
72+
zipp==3.19.1 ; python_version >= "3.8" and python_version < "3.10"

src/pydo/_client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
VolumeSnapshotsOperations,
5757
VolumesOperations,
5858
VpcPeeringsOperations,
59+
VpcnatgatewaysOperations,
5960
VpcsOperations,
6061
)
6162

@@ -651,6 +652,8 @@ class GeneratedClient: # pylint: disable=client-accepts-api-version-keyword,too
651652
:vartype vpcs: pydo.operations.VpcsOperations
652653
:ivar vpc_peerings: VpcPeeringsOperations operations
653654
:vartype vpc_peerings: pydo.operations.VpcPeeringsOperations
655+
:ivar vpcnatgateways: VpcnatgatewaysOperations operations
656+
:vartype vpcnatgateways: pydo.operations.VpcnatgatewaysOperations
654657
:ivar uptime: UptimeOperations operations
655658
:vartype uptime: pydo.operations.UptimeOperations
656659
:ivar genai: GenaiOperations operations
@@ -820,6 +823,9 @@ def __init__(
820823
self.vpc_peerings = VpcPeeringsOperations(
821824
self._client, self._config, self._serialize, self._deserialize
822825
)
826+
self.vpcnatgateways = VpcnatgatewaysOperations(
827+
self._client, self._config, self._serialize, self._deserialize
828+
)
823829
self.uptime = UptimeOperations(
824830
self._client, self._config, self._serialize, self._deserialize
825831
)

src/pydo/aio/_client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
VolumeSnapshotsOperations,
5757
VolumesOperations,
5858
VpcPeeringsOperations,
59+
VpcnatgatewaysOperations,
5960
VpcsOperations,
6061
)
6162

@@ -651,6 +652,8 @@ class GeneratedClient: # pylint: disable=client-accepts-api-version-keyword,too
651652
:vartype vpcs: pydo.aio.operations.VpcsOperations
652653
:ivar vpc_peerings: VpcPeeringsOperations operations
653654
:vartype vpc_peerings: pydo.aio.operations.VpcPeeringsOperations
655+
:ivar vpcnatgateways: VpcnatgatewaysOperations operations
656+
:vartype vpcnatgateways: pydo.aio.operations.VpcnatgatewaysOperations
654657
:ivar uptime: UptimeOperations operations
655658
:vartype uptime: pydo.aio.operations.UptimeOperations
656659
:ivar genai: GenaiOperations operations
@@ -820,6 +823,9 @@ def __init__(
820823
self.vpc_peerings = VpcPeeringsOperations(
821824
self._client, self._config, self._serialize, self._deserialize
822825
)
826+
self.vpcnatgateways = VpcnatgatewaysOperations(
827+
self._client, self._config, self._serialize, self._deserialize
828+
)
823829
self.uptime = UptimeOperations(
824830
self._client, self._config, self._serialize, self._deserialize
825831
)

src/pydo/aio/operations/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
from ._operations import VolumeSnapshotsOperations
4646
from ._operations import VpcsOperations
4747
from ._operations import VpcPeeringsOperations
48+
from ._operations import VpcnatgatewaysOperations
4849
from ._operations import UptimeOperations
4950
from ._operations import GenaiOperations
5051

@@ -94,6 +95,7 @@
9495
"VolumeSnapshotsOperations",
9596
"VpcsOperations",
9697
"VpcPeeringsOperations",
98+
"VpcnatgatewaysOperations",
9799
"UptimeOperations",
98100
"GenaiOperations",
99101
]

0 commit comments

Comments
 (0)