Skip to content
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
6 changes: 0 additions & 6 deletions scaleway-async/scaleway_async/messageq/v1alpha1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,6 @@ async def list_deployments(
page_size: Optional[int] = None,
tags: Optional[list[str]] = None,
name: Optional[str] = None,
version: Optional[str] = None,
) -> ListDeploymentsResponse:
"""
Retrieve a list of MessageQ deployments.
Expand All @@ -351,7 +350,6 @@ async def list_deployments(
:param page_size: Number of deployments to return per page.
:param tags: Tags to filter for, only deployments with one or more matching tags will be returned.
:param name: Deployment name to filter for, only deployments with this string within their name will be returned.
:param version: Engine version to filter for, only deployments with this version will be returned.
:return: :class:`ListDeploymentsResponse <ListDeploymentsResponse>`

Usage:
Expand All @@ -376,7 +374,6 @@ async def list_deployments(
"page_size": page_size or self.client.default_page_size,
"project_id": project_id or self.client.default_project_id,
"tags": tags,
"version": version,
},
)

Expand All @@ -394,7 +391,6 @@ async def list_deployments_all(
page_size: Optional[int] = None,
tags: Optional[list[str]] = None,
name: Optional[str] = None,
version: Optional[str] = None,
) -> list[Deployment]:
"""
Retrieve a list of MessageQ deployments.
Expand All @@ -406,7 +402,6 @@ async def list_deployments_all(
:param page_size: Number of deployments to return per page.
:param tags: Tags to filter for, only deployments with one or more matching tags will be returned.
:param name: Deployment name to filter for, only deployments with this string within their name will be returned.
:param version: Engine version to filter for, only deployments with this version will be returned.
:return: :class:`list[Deployment] <list[Deployment]>`

Usage:
Expand All @@ -428,7 +423,6 @@ async def list_deployments_all(
"page_size": page_size,
"tags": tags,
"name": name,
"version": version,
},
)

Expand Down
5 changes: 0 additions & 5 deletions scaleway-async/scaleway_async/messageq/v1alpha1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,11 +549,6 @@ class ListDeploymentsRequest:
Deployment name to filter for, only deployments with this string within their name will be returned.
"""

version: Optional[str] = None
"""
Engine version to filter for, only deployments with this version will be returned.
"""


@dataclass
class ListDeploymentsResponse:
Expand Down
6 changes: 0 additions & 6 deletions scaleway/scaleway/messageq/v1alpha1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,6 @@ def list_deployments(
page_size: Optional[int] = None,
tags: Optional[list[str]] = None,
name: Optional[str] = None,
version: Optional[str] = None,
) -> ListDeploymentsResponse:
"""
Retrieve a list of MessageQ deployments.
Expand All @@ -349,7 +348,6 @@ def list_deployments(
:param page_size: Number of deployments to return per page.
:param tags: Tags to filter for, only deployments with one or more matching tags will be returned.
:param name: Deployment name to filter for, only deployments with this string within their name will be returned.
:param version: Engine version to filter for, only deployments with this version will be returned.
:return: :class:`ListDeploymentsResponse <ListDeploymentsResponse>`

Usage:
Expand All @@ -374,7 +372,6 @@ def list_deployments(
"page_size": page_size or self.client.default_page_size,
"project_id": project_id or self.client.default_project_id,
"tags": tags,
"version": version,
},
)

Expand All @@ -392,7 +389,6 @@ def list_deployments_all(
page_size: Optional[int] = None,
tags: Optional[list[str]] = None,
name: Optional[str] = None,
version: Optional[str] = None,
) -> list[Deployment]:
"""
Retrieve a list of MessageQ deployments.
Expand All @@ -404,7 +400,6 @@ def list_deployments_all(
:param page_size: Number of deployments to return per page.
:param tags: Tags to filter for, only deployments with one or more matching tags will be returned.
:param name: Deployment name to filter for, only deployments with this string within their name will be returned.
:param version: Engine version to filter for, only deployments with this version will be returned.
:return: :class:`list[Deployment] <list[Deployment]>`

Usage:
Expand All @@ -426,7 +421,6 @@ def list_deployments_all(
"page_size": page_size,
"tags": tags,
"name": name,
"version": version,
},
)

Expand Down
5 changes: 0 additions & 5 deletions scaleway/scaleway/messageq/v1alpha1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,11 +549,6 @@ class ListDeploymentsRequest:
Deployment name to filter for, only deployments with this string within their name will be returned.
"""

version: Optional[str] = None
"""
Engine version to filter for, only deployments with this version will be returned.
"""


@dataclass
class ListDeploymentsResponse:
Expand Down
Loading