Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DO_OPENAPI_COMMIT_SHA.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5c389af
932526c
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ azure-core==1.30.1 ; python_version >= "3.8" and python_full_version < "4.0.0"
azure-identity==1.16.1 ; python_version >= "3.8" and python_full_version < "4.0.0"
babel==2.15.0 ; python_version >= "3.8" and python_full_version < "4.0.0"
black==24.3.0 ; python_version >= "3.8" and python_full_version < "4.0.0"
certifi==2024.2.2 ; python_version >= "3.8" and python_full_version < "4.0.0"
certifi==2024.7.4 ; python_version >= "3.8" and python_full_version < "4.0.0"
cffi==1.16.0 ; python_version >= "3.8" and python_full_version < "4.0.0" and platform_python_implementation != "PyPy"
charset-normalizer==3.3.2 ; python_version >= "3.8" and python_full_version < "4.0.0"
click==8.1.7 ; python_version >= "3.8" and python_full_version < "4.0.0"
colorama==0.4.6 ; python_version >= "3.8" and python_full_version < "4.0.0" and (sys_platform == "win32" or platform_system == "Windows")
cryptography==42.0.7 ; python_version >= "3.8" and python_full_version < "4.0.0"
cryptography==43.0.1 ; python_version >= "3.8" and python_full_version < "4.0.0"
dill==0.3.8 ; python_version >= "3.8" and python_full_version < "4.0.0"
docutils==0.18.1 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0"
exceptiongroup==1.2.1 ; python_full_version >= "3.8.0" and python_version < "3.11"
Expand Down Expand Up @@ -69,4 +69,4 @@ typing-extensions==4.12.0 ; python_version >= "3.8" and python_full_version < "4
urllib3==2.2.2 ; python_version >= "3.8" and python_full_version < "4.0.0"
wrapt==1.16.0 ; python_full_version >= "3.8.0" and python_full_version < "4.0.0"
yarl==1.9.4 ; python_version >= "3.8" and python_full_version < "4.0.0"
zipp==3.19.0 ; python_version >= "3.8" and python_version < "3.10"
zipp==3.19.1 ; python_version >= "3.8" and python_version < "3.10"
6 changes: 6 additions & 0 deletions src/pydo/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
VolumeSnapshotsOperations,
VolumesOperations,
VpcPeeringsOperations,
VpcnatgatewaysOperations,
VpcsOperations,
)

Expand Down Expand Up @@ -651,6 +652,8 @@ class GeneratedClient: # pylint: disable=client-accepts-api-version-keyword,too
:vartype vpcs: pydo.operations.VpcsOperations
:ivar vpc_peerings: VpcPeeringsOperations operations
:vartype vpc_peerings: pydo.operations.VpcPeeringsOperations
:ivar vpcnatgateways: VpcnatgatewaysOperations operations
:vartype vpcnatgateways: pydo.operations.VpcnatgatewaysOperations
:ivar uptime: UptimeOperations operations
:vartype uptime: pydo.operations.UptimeOperations
:ivar genai: GenaiOperations operations
Expand Down Expand Up @@ -820,6 +823,9 @@ def __init__(
self.vpc_peerings = VpcPeeringsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.vpcnatgateways = VpcnatgatewaysOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.uptime = UptimeOperations(
self._client, self._config, self._serialize, self._deserialize
)
Expand Down
6 changes: 6 additions & 0 deletions src/pydo/aio/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
VolumeSnapshotsOperations,
VolumesOperations,
VpcPeeringsOperations,
VpcnatgatewaysOperations,
VpcsOperations,
)

Expand Down Expand Up @@ -651,6 +652,8 @@ class GeneratedClient: # pylint: disable=client-accepts-api-version-keyword,too
:vartype vpcs: pydo.aio.operations.VpcsOperations
:ivar vpc_peerings: VpcPeeringsOperations operations
:vartype vpc_peerings: pydo.aio.operations.VpcPeeringsOperations
:ivar vpcnatgateways: VpcnatgatewaysOperations operations
:vartype vpcnatgateways: pydo.aio.operations.VpcnatgatewaysOperations
:ivar uptime: UptimeOperations operations
:vartype uptime: pydo.aio.operations.UptimeOperations
:ivar genai: GenaiOperations operations
Expand Down Expand Up @@ -820,6 +823,9 @@ def __init__(
self.vpc_peerings = VpcPeeringsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.vpcnatgateways = VpcnatgatewaysOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.uptime = UptimeOperations(
self._client, self._config, self._serialize, self._deserialize
)
Expand Down
2 changes: 2 additions & 0 deletions src/pydo/aio/operations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
from ._operations import VolumeSnapshotsOperations
from ._operations import VpcsOperations
from ._operations import VpcPeeringsOperations
from ._operations import VpcnatgatewaysOperations
from ._operations import UptimeOperations
from ._operations import GenaiOperations

Expand Down Expand Up @@ -94,6 +95,7 @@
"VolumeSnapshotsOperations",
"VpcsOperations",
"VpcPeeringsOperations",
"VpcnatgatewaysOperations",
"UptimeOperations",
"GenaiOperations",
]
Expand Down
Loading