Skip to content

feat(interlink): add support dedicated connection #931

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

Merged
merged 2 commits into from
Mar 31, 2025
Merged
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
24 changes: 24 additions & 0 deletions scaleway-async/scaleway_async/interlink/v1beta1/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# This file was automatically generated. DO NOT EDIT.
# If you have any remark or suggestion do not hesitate to open an issue.
from .types import BgpStatus
from .types import DedicatedConnectionStatus
from .content import DEDICATED_CONNECTION_TRANSIENT_STATUSES
from .types import LinkKind
from .types import LinkStatus
from .content import LINK_TRANSIENT_STATUSES
from .types import ListDedicatedConnectionsRequestOrderBy
from .types import ListLinksRequestOrderBy
from .types import ListPartnersRequestOrderBy
from .types import ListPopsRequestOrderBy
from .types import ListRoutingPoliciesRequestOrderBy
from .types import BgpConfig
from .types import PartnerHost
from .types import SelfHost
from .types import DedicatedConnection
from .types import Link
from .types import Partner
from .types import Pop
Expand All @@ -20,10 +29,13 @@
from .types import DetachVpcRequest
from .types import DisableRoutePropagationRequest
from .types import EnableRoutePropagationRequest
from .types import GetDedicatedConnectionRequest
from .types import GetLinkRequest
from .types import GetPartnerRequest
from .types import GetPopRequest
from .types import GetRoutingPolicyRequest
from .types import ListDedicatedConnectionsRequest
from .types import ListDedicatedConnectionsResponse
from .types import ListLinksRequest
from .types import ListLinksResponse
from .types import ListPartnersRequest
Expand All @@ -38,11 +50,20 @@

__all__ = [
"BgpStatus",
"DedicatedConnectionStatus",
"DEDICATED_CONNECTION_TRANSIENT_STATUSES",
"LinkKind",
"LinkStatus",
"LINK_TRANSIENT_STATUSES",
"ListDedicatedConnectionsRequestOrderBy",
"ListLinksRequestOrderBy",
"ListPartnersRequestOrderBy",
"ListPopsRequestOrderBy",
"ListRoutingPoliciesRequestOrderBy",
"BgpConfig",
"PartnerHost",
"SelfHost",
"DedicatedConnection",
"Link",
"Partner",
"Pop",
Expand All @@ -57,10 +78,13 @@
"DetachVpcRequest",
"DisableRoutePropagationRequest",
"EnableRoutePropagationRequest",
"GetDedicatedConnectionRequest",
"GetLinkRequest",
"GetPartnerRequest",
"GetPopRequest",
"GetRoutingPolicyRequest",
"ListDedicatedConnectionsRequest",
"ListDedicatedConnectionsResponse",
"ListLinksRequest",
"ListLinksResponse",
"ListPartnersRequest",
Expand Down
Loading