Skip to content

docs: correction of description #934

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
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/function/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ async def get_function_download_url(
"""
Get a download URL of a function.
Get a download URL for a function associated with the specified ID.
:param function_id: UUID of the function to get the the download URL for.
:param function_id: UUID of the function to get the download URL for.
:param region: Region to target. If none is passed will use default region from the config.
:return: :class:`DownloadURL <DownloadURL>`

Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/function/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ class GetDomainRequest:
class GetFunctionDownloadURLRequest:
function_id: str
"""
UUID of the function to get the the download URL for.
UUID of the function to get the download URL for.
"""

region: Optional[ScwRegion]
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/iam/v1alpha1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ async def add_group_member(
) -> Group:
"""
Add a user or an application to a group.
Add a user or an application to a group. You can specify a `user_id` and and `application_id` in the body of your request. Note that you can only add one of each per request.
Add a user or an application to a group. You can specify a `user_id` and `application_id` in the body of your request. Note that you can only add one of each per request.
:param group_id: ID of the group.
:param user_id: ID of the user to add.
One-Of ('member'): at most one of 'user_id', 'application_id' could be set.
Expand Down Expand Up @@ -1491,7 +1491,7 @@ async def remove_group_member(
) -> Group:
"""
Remove a user or an application from a group.
Remove a user or an application from a group. You can specify a `user_id` and and `application_id` in the body of your request. Note that you can only remove one of each per request. Removing a user from a group means that any permissions given to them via the group (i.e. from an attached policy) will no longer apply. Be sure you want to remove these permissions from the user before proceeding.
Remove a user or an application from a group. You can specify a `user_id` and `application_id` in the body of your request. Note that you can only remove one of each per request. Removing a user from a group means that any permissions given to them via the group (i.e. from an attached policy) will no longer apply. Be sure you want to remove these permissions from the user before proceeding.
:param group_id: ID of the group.
:param user_id: ID of the user to remove.
One-Of ('member'): at most one of 'user_id', 'application_id' could be set.
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/vpc/v2/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async def list_vp_cs(
:param page: Page number to return, from the paginated results.
:param page_size: Maximum number of VPCs to return per page.
:param name: Name to filter for. Only VPCs with names containing this string will be returned.
:param tags: Tags to filter for. Only VPCs with one more more matching tags will be returned.
:param tags: Tags to filter for. Only VPCs with one or more matching tags will be returned.
:param organization_id: Organization ID to filter for. Only VPCs belonging to this Organization will be returned.
:param project_id: Project ID to filter for. Only VPCs belonging to this Project will be returned.
:param is_default: Defines whether to filter only for VPCs which are the default one for their Project.
Expand Down Expand Up @@ -148,7 +148,7 @@ async def list_vp_cs_all(
:param page: Page number to return, from the paginated results.
:param page_size: Maximum number of VPCs to return per page.
:param name: Name to filter for. Only VPCs with names containing this string will be returned.
:param tags: Tags to filter for. Only VPCs with one more more matching tags will be returned.
:param tags: Tags to filter for. Only VPCs with one or more matching tags will be returned.
:param organization_id: Organization ID to filter for. Only VPCs belonging to this Organization will be returned.
:param project_id: Project ID to filter for. Only VPCs belonging to this Project will be returned.
:param is_default: Defines whether to filter only for VPCs which are the default one for their Project.
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/vpc/v2/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ class ListVPCsRequest:

tags: Optional[List[str]]
"""
Tags to filter for. Only VPCs with one more more matching tags will be returned.
Tags to filter for. Only VPCs with one or more matching tags will be returned.
"""

organization_id: Optional[str]
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/vpcgw/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ async def create_gateway_network(
One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set.
:param dhcp: New DHCP configuration object to use for this GatewayNetwork.
One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set.
:param address: Static IP address in CIDR format to to use without DHCP.
:param address: Static IP address in CIDR format to use without DHCP.
One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set.
:param ipam_config: Note: all or none of the GatewayNetworks for a single gateway can use the IPAM. DHCP and IPAM configurations cannot be mixed. Some products may require that the Public Gateway uses the IPAM, to ensure correct functionality.
One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set.
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/webhosting/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1814,7 +1814,7 @@ class ResourceSummary:

websites_count: int
"""
Total number of active domains in the the Web Hosting plan.
Total number of active domains in the Web Hosting plan.
"""


Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/function/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def get_function_download_url(
"""
Get a download URL of a function.
Get a download URL for a function associated with the specified ID.
:param function_id: UUID of the function to get the the download URL for.
:param function_id: UUID of the function to get the download URL for.
:param region: Region to target. If none is passed will use default region from the config.
:return: :class:`DownloadURL <DownloadURL>`

Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/function/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ class GetDomainRequest:
class GetFunctionDownloadURLRequest:
function_id: str
"""
UUID of the function to get the the download URL for.
UUID of the function to get the download URL for.
"""

region: Optional[ScwRegion]
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/iam/v1alpha1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ def add_group_member(
) -> Group:
"""
Add a user or an application to a group.
Add a user or an application to a group. You can specify a `user_id` and and `application_id` in the body of your request. Note that you can only add one of each per request.
Add a user or an application to a group. You can specify a `user_id` and `application_id` in the body of your request. Note that you can only add one of each per request.
:param group_id: ID of the group.
:param user_id: ID of the user to add.
One-Of ('member'): at most one of 'user_id', 'application_id' could be set.
Expand Down Expand Up @@ -1491,7 +1491,7 @@ def remove_group_member(
) -> Group:
"""
Remove a user or an application from a group.
Remove a user or an application from a group. You can specify a `user_id` and and `application_id` in the body of your request. Note that you can only remove one of each per request. Removing a user from a group means that any permissions given to them via the group (i.e. from an attached policy) will no longer apply. Be sure you want to remove these permissions from the user before proceeding.
Remove a user or an application from a group. You can specify a `user_id` and `application_id` in the body of your request. Note that you can only remove one of each per request. Removing a user from a group means that any permissions given to them via the group (i.e. from an attached policy) will no longer apply. Be sure you want to remove these permissions from the user before proceeding.
:param group_id: ID of the group.
:param user_id: ID of the user to remove.
One-Of ('member'): at most one of 'user_id', 'application_id' could be set.
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/vpc/v2/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def list_vp_cs(
:param page: Page number to return, from the paginated results.
:param page_size: Maximum number of VPCs to return per page.
:param name: Name to filter for. Only VPCs with names containing this string will be returned.
:param tags: Tags to filter for. Only VPCs with one more more matching tags will be returned.
:param tags: Tags to filter for. Only VPCs with one or more matching tags will be returned.
:param organization_id: Organization ID to filter for. Only VPCs belonging to this Organization will be returned.
:param project_id: Project ID to filter for. Only VPCs belonging to this Project will be returned.
:param is_default: Defines whether to filter only for VPCs which are the default one for their Project.
Expand Down Expand Up @@ -148,7 +148,7 @@ def list_vp_cs_all(
:param page: Page number to return, from the paginated results.
:param page_size: Maximum number of VPCs to return per page.
:param name: Name to filter for. Only VPCs with names containing this string will be returned.
:param tags: Tags to filter for. Only VPCs with one more more matching tags will be returned.
:param tags: Tags to filter for. Only VPCs with one or more matching tags will be returned.
:param organization_id: Organization ID to filter for. Only VPCs belonging to this Organization will be returned.
:param project_id: Project ID to filter for. Only VPCs belonging to this Project will be returned.
:param is_default: Defines whether to filter only for VPCs which are the default one for their Project.
Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/vpc/v2/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ class ListVPCsRequest:

tags: Optional[List[str]]
"""
Tags to filter for. Only VPCs with one more more matching tags will be returned.
Tags to filter for. Only VPCs with one or more matching tags will be returned.
"""

organization_id: Optional[str]
Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/vpcgw/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ def create_gateway_network(
One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set.
:param dhcp: New DHCP configuration object to use for this GatewayNetwork.
One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set.
:param address: Static IP address in CIDR format to to use without DHCP.
:param address: Static IP address in CIDR format to use without DHCP.
One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set.
:param ipam_config: Note: all or none of the GatewayNetworks for a single gateway can use the IPAM. DHCP and IPAM configurations cannot be mixed. Some products may require that the Public Gateway uses the IPAM, to ensure correct functionality.
One-Of ('ip_config'): at most one of 'dhcp_id', 'dhcp', 'address', 'ipam_config' could be set.
Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/webhosting/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1814,7 +1814,7 @@ class ResourceSummary:

websites_count: int
"""
Total number of active domains in the the Web Hosting plan.
Total number of active domains in the Web Hosting plan.
"""


Expand Down