Skip to content

[bot] VPC Peering Updates: Re-Generated From digitalocean/openapi@705f149 #361

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
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 @@
e67d14f
705f149
12 changes: 12 additions & 0 deletions src/pydo/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
VolumeActionsOperations,
VolumeSnapshotsOperations,
VolumesOperations,
VpcPeeringsOperations,
VpcsOperations,
VpcsPeeringsOperations,
)

if TYPE_CHECKING:
Expand Down Expand Up @@ -626,6 +628,10 @@ class GeneratedClient: # pylint: disable=client-accepts-api-version-keyword,too
:vartype volume_snapshots: pydo.operations.VolumeSnapshotsOperations
:ivar vpcs: VpcsOperations operations
:vartype vpcs: pydo.operations.VpcsOperations
:ivar vpcs_peerings: VpcsPeeringsOperations operations
:vartype vpcs_peerings: pydo.operations.VpcsPeeringsOperations
:ivar vpc_peerings: VpcPeeringsOperations operations
:vartype vpc_peerings: pydo.operations.VpcPeeringsOperations
:ivar uptime: UptimeOperations operations
:vartype uptime: pydo.operations.UptimeOperations
:param credential: Credential needed for the client to connect to Azure. Required.
Expand Down Expand Up @@ -769,6 +775,12 @@ def __init__(
self.vpcs = VpcsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.vpcs_peerings = VpcsPeeringsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.vpc_peerings = VpcPeeringsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.uptime = UptimeOperations(
self._client, self._config, self._serialize, self._deserialize
)
Expand Down
12 changes: 12 additions & 0 deletions src/pydo/aio/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
VolumeActionsOperations,
VolumeSnapshotsOperations,
VolumesOperations,
VpcPeeringsOperations,
VpcsOperations,
VpcsPeeringsOperations,
)

if TYPE_CHECKING:
Expand Down Expand Up @@ -626,6 +628,10 @@ class GeneratedClient: # pylint: disable=client-accepts-api-version-keyword,too
:vartype volume_snapshots: pydo.aio.operations.VolumeSnapshotsOperations
:ivar vpcs: VpcsOperations operations
:vartype vpcs: pydo.aio.operations.VpcsOperations
:ivar vpcs_peerings: VpcsPeeringsOperations operations
:vartype vpcs_peerings: pydo.aio.operations.VpcsPeeringsOperations
:ivar vpc_peerings: VpcPeeringsOperations operations
:vartype vpc_peerings: pydo.aio.operations.VpcPeeringsOperations
:ivar uptime: UptimeOperations operations
:vartype uptime: pydo.aio.operations.UptimeOperations
:param credential: Credential needed for the client to connect to Azure. Required.
Expand Down Expand Up @@ -769,6 +775,12 @@ def __init__(
self.vpcs = VpcsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.vpcs_peerings = VpcsPeeringsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.vpc_peerings = VpcPeeringsOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.uptime = UptimeOperations(
self._client, self._config, self._serialize, self._deserialize
)
Expand Down
4 changes: 4 additions & 0 deletions src/pydo/aio/operations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
from ._operations import VolumeActionsOperations
from ._operations import VolumeSnapshotsOperations
from ._operations import VpcsOperations
from ._operations import VpcsPeeringsOperations
from ._operations import VpcPeeringsOperations
from ._operations import UptimeOperations

from ._patch import __all__ as _patch_all
Expand Down Expand Up @@ -77,6 +79,8 @@
"VolumeActionsOperations",
"VolumeSnapshotsOperations",
"VpcsOperations",
"VpcsPeeringsOperations",
"VpcPeeringsOperations",
"UptimeOperations",
]
__all__.extend([p for p in _patch_all if p not in __all__])
Expand Down
Loading
Loading