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
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/baremetal/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ class Offer:

price_per_hour: Optional[Money]
"""
Price of the offer for the next 60 minutes (a server order at 11h32 will be payed until 12h32).
Price of the offer for the next 60 minutes (a server order at 11h32 will be paid until 12h32).
"""

price_per_month: Optional[Money]
Expand Down
6 changes: 3 additions & 3 deletions scaleway-async/scaleway_async/dedibox/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ class OfferSANInfo:

ha: bool
"""
High availabilty offer.
High availability offer.
"""

device_type: OfferSANInfoType
Expand Down Expand Up @@ -933,12 +933,12 @@ class OS:

requires_valid_hostname: Optional[bool]
"""
If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criterias must be valid.
If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criteria must be valid.
"""

hostname_regex: Optional[str]
"""
If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criterias must be valid.
If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criteria must be valid.
"""

released_at: Optional[datetime]
Expand Down
16 changes: 8 additions & 8 deletions scaleway-async/scaleway_async/function/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ async def list_functions(
:param page_size: Number of functions per page.
:param order_by: Order of the functions.
:param name: Name of the function.
:param organization_id: UUID of the Organziation the function belongs to.
:param organization_id: UUID of the Organization the function belongs to.
:param project_id: UUID of the Project the function belongs to.
:return: :class:`ListFunctionsResponse <ListFunctionsResponse>`

Expand Down Expand Up @@ -482,7 +482,7 @@ async def list_functions_all(
:param page_size: Number of functions per page.
:param order_by: Order of the functions.
:param name: Name of the function.
:param organization_id: UUID of the Organziation the function belongs to.
:param organization_id: UUID of the Organization the function belongs to.
:param project_id: UUID of the Project the function belongs to.
:return: :class:`List[Function] <List[Function]>`

Expand Down Expand Up @@ -609,7 +609,7 @@ async def create_function(
:param region: Region to target. If none is passed will use default region from the config.
:param name: Name of the function to create.
:param environment_variables: Environment variables of the function.
:param min_scale: Minumum number of instances to scale the function to.
:param min_scale: Minimum number of instances to scale the function to.
:param max_scale: Maximum number of instances to scale the function to.
:param runtime: Runtime to use with the function.
:param memory_limit: Memory limit of the function in MB.
Expand Down Expand Up @@ -689,7 +689,7 @@ async def update_function(
:param function_id: UUID of the function to update.
:param region: Region to target. If none is passed will use default region from the config.
:param environment_variables: Environment variables of the function to update.
:param min_scale: Minumum number of instances to scale the function to.
:param min_scale: Minimum number of instances to scale the function to.
:param max_scale: Maximum number of instances to scale the function to.
:param runtime: Runtime to use with the function.
:param memory_limit: Memory limit of the function in MB.
Expand Down Expand Up @@ -1223,7 +1223,7 @@ async def list_domains(
"""
List all domain name bindings.
List all domain name bindings in a specified region.
:param function_id: UUID of the function the domain is assoicated with.
:param function_id: UUID of the function the domain is associated with.
:param region: Region to target. If none is passed will use default region from the config.
:param page: Page number.
:param page_size: Number of domains per page.
Expand Down Expand Up @@ -1268,7 +1268,7 @@ async def list_domains_all(
"""
List all domain name bindings.
List all domain name bindings in a specified region.
:param function_id: UUID of the function the domain is assoicated with.
:param function_id: UUID of the function the domain is associated with.
:param region: Region to target. If none is passed will use default region from the config.
:param page: Page number.
:param page_size: Number of domains per page.
Expand Down Expand Up @@ -1578,7 +1578,7 @@ async def list_tokens(
:param page: Page number.
:param page_size: Number of tokens per page.
:param order_by: Sort order for the tokens.
:param function_id: UUID of the function the token is assoicated with.
:param function_id: UUID of the function the token is associated with.
:param namespace_id: UUID of the namespace the token is associated with.
:return: :class:`ListTokensResponse <ListTokensResponse>`

Expand Down Expand Up @@ -1623,7 +1623,7 @@ async def list_tokens_all(
:param page: Page number.
:param page_size: Number of tokens per page.
:param order_by: Sort order for the tokens.
:param function_id: UUID of the function the token is assoicated with.
:param function_id: UUID of the function the token is associated with.
:param namespace_id: UUID of the namespace the token is associated with.
:return: :class:`List[Token] <List[Token]>`

Expand Down
10 changes: 5 additions & 5 deletions scaleway-async/scaleway_async/function/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ class CreateFunctionRequest:

min_scale: Optional[int]
"""
Minumum number of instances to scale the function to.
Minimum number of instances to scale the function to.
"""

max_scale: Optional[int]
Expand Down Expand Up @@ -1206,7 +1206,7 @@ class ListCronsResponse:
class ListDomainsRequest:
function_id: str
"""
UUID of the function the domain is assoicated with.
UUID of the function the domain is associated with.
"""

region: Optional[ScwRegion]
Expand Down Expand Up @@ -1298,7 +1298,7 @@ class ListFunctionsRequest:

organization_id: Optional[str]
"""
UUID of the Organziation the function belongs to.
UUID of the Organization the function belongs to.
"""

project_id: Optional[str]
Expand Down Expand Up @@ -1392,7 +1392,7 @@ class ListTokensRequest:

function_id: Optional[str]
"""
UUID of the function the token is assoicated with.
UUID of the function the token is associated with.
"""

namespace_id: Optional[str]
Expand Down Expand Up @@ -1502,7 +1502,7 @@ class UpdateFunctionRequest:

min_scale: Optional[int]
"""
Minumum number of instances to scale the function to.
Minimum number of instances to scale the function to.
"""

max_scale: Optional[int]
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 @@ -1289,7 +1289,7 @@ async def get_group(
) -> Group:
"""
Get a group.
Retrive information about a given group, specified by the `group_id` parameter. The group's full details, including `user_ids` and `application_ids` are returned in the response.
Retrieve information about a given group, specified by the `group_id` parameter. The group's full details, including `user_ids` and `application_ids` are returned in the response.
:param group_id: ID of the group.
:return: :class:`Group <Group>`

Expand Down Expand Up @@ -2249,7 +2249,7 @@ async def get_api_key(
) -> APIKey:
"""
Get an API key.
Retrive information about an API key, specified by the `access_key` parameter. The API key's details, including either the `user_id` or `application_id` of its bearer are returned in the response. Note that the string value for the `secret_key` is nullable, and therefore is not displayed in the response. The `secret_key` value is only displayed upon API key creation.
Retrieve information about an API key, specified by the `access_key` parameter. The API key's details, including either the `user_id` or `application_id` of its bearer are returned in the response. Note that the string value for the `secret_key` is nullable, and therefore is not displayed in the response. The `secret_key` value is only displayed upon API key creation.
:param access_key: Access key to search for.
:return: :class:`APIKey <APIKey>`

Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/inference/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ async def delete_deployment_acl_rule(
region: Optional[ScwRegion] = None,
) -> None:
"""
Delete an exising ACL.
Delete an existing ACL.
:param acl_id: ID of the ACL rule to delete.
:param region: Region to target. If none is passed will use default region from the config.

Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/instance/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ class Task:

zone: ScwZone
"""
Zone in which the task is excecuted.
Zone in which the task is executed.
"""

started_at: Optional[datetime]
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/interlink/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ async def create_link(
) -> Link:
"""
Create a link.
Create a link (InterLink session / logical InterLink resource) in a given PoP, specifying its various configuration details. Links can either be hosted (faciliated by partners' shared physical connections) or self-hosted (for users who have purchased a dedicated physical connection).
Create a link (InterLink session / logical InterLink resource) in a given PoP, specifying its various configuration details. Links can either be hosted (facilitated by partners' shared physical connections) or self-hosted (for users who have purchased a dedicated physical connection).
:param name: Name of the link.
:param pop_id: PoP (location) where the link will be created.
:param bandwidth_mbps: Desired bandwidth for the link. Must be compatible with available link bandwidths and remaining bandwidth capacity of the connection.
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/iot/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ async def list_devices(
:param order_by: Ordering of requested devices.
:param name: Name to filter for, only devices with this name will be returned.
:param hub_id: Hub ID to filter for, only devices attached to this Hub will be returned.
:param allow_insecure: Defines wheter to filter the allow_insecure flag.
:param allow_insecure: Defines whether to filter the allow_insecure flag.
:param status: Device status (enabled, disabled, etc.).
:return: :class:`ListDevicesResponse <ListDevicesResponse>`

Expand Down Expand Up @@ -687,7 +687,7 @@ async def list_devices_all(
:param order_by: Ordering of requested devices.
:param name: Name to filter for, only devices with this name will be returned.
:param hub_id: Hub ID to filter for, only devices attached to this Hub will be returned.
:param allow_insecure: Defines wheter to filter the allow_insecure flag.
:param allow_insecure: Defines whether to filter the allow_insecure flag.
:param status: Device status (enabled, disabled, etc.).
:return: :class:`List[Device] <List[Device]>`

Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/iot/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,7 @@ class ListDevicesRequest:

allow_insecure: Optional[bool]
"""
Defines wheter to filter the allow_insecure flag.
Defines whether to filter the allow_insecure flag.
"""

status: Optional[DeviceStatus]
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/mongodb/v1alpha1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class NodeTypeVolumeType:

min_size: int
"""
Mimimum size required for the volume.
Minimum size required for the volume.
"""

max_size: int
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/qaas/v1alpha1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ class Platform:

version: str
"""
Verison of the platform.
Version of the platform.
"""

name: str
Expand Down Expand Up @@ -408,7 +408,7 @@ class Platform:

price_per_hour: Optional[Money]
"""
Price to be payed per hour (excluding free tiers).
Price to be paid per hour (excluding free tiers).
"""

hardware: Optional[PlatformHardware]
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/rdb/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1958,7 +1958,7 @@ async def set_instance_settings(
) -> SetInstanceSettingsResponse:
"""
Set Database Instance advanced settings.
Update an advanced setting for a Database Instance. Settings added upon database engine initalization can only be defined once, and cannot, therefore, be updated.
Update an advanced setting for a Database Instance. Settings added upon database engine initialization can only be defined once, and cannot, therefore, be updated.
:param instance_id: UUID of the Database Instance where the settings must be set.
:param settings: Settings to define for the Database Instance.
:param region: Region to target. If none is passed will use default region from the config.
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/rdb/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ class Volume:
class NodeTypeVolumeConstraintSizes:
min_size: int
"""
[deprecated] Mimimum size required for the Volume.
[deprecated] Minimum size required for the Volume.
"""

max_size: int
Expand All @@ -629,7 +629,7 @@ class NodeTypeVolumeType:

min_size: int
"""
Mimimum size required for the Volume.
Minimum size required for the Volume.
"""

max_size: int
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/redis/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ async def set_cluster_settings(
) -> ClusterSettingsResponse:
"""
Set advanced settings.
Update an advanced setting for a Redis™ Database Instance (Redis™ cluster). Settings added upon database engine initalization can only be defined once, and cannot, therefore, be updated.
Update an advanced setting for a Redis™ Database Instance (Redis™ cluster). Settings added upon database engine initialization can only be defined once, and cannot, therefore, be updated.
:param cluster_id: UUID of the Database Instance where the settings must be set.
:param settings: Settings to define for the Database Instance.
:param zone: Zone to target. If none is passed will use default zone from the config.
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/registry/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class Namespace:

name: str
"""
Name of the namespace, unique in a region accross all organizations.
Name of the namespace, unique in a region across all organizations.
"""

description: str
Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/baremetal/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ class Offer:

price_per_hour: Optional[Money]
"""
Price of the offer for the next 60 minutes (a server order at 11h32 will be payed until 12h32).
Price of the offer for the next 60 minutes (a server order at 11h32 will be paid until 12h32).
"""

price_per_month: Optional[Money]
Expand Down
6 changes: 3 additions & 3 deletions scaleway/scaleway/dedibox/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ class OfferSANInfo:

ha: bool
"""
High availabilty offer.
High availability offer.
"""

device_type: OfferSANInfoType
Expand Down Expand Up @@ -933,12 +933,12 @@ class OS:

requires_valid_hostname: Optional[bool]
"""
If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criterias must be valid.
If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criteria must be valid.
"""

hostname_regex: Optional[str]
"""
If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criterias must be valid.
If both requires_valid_hostname & hostname_regex are set, it means that at least one of the criteria must be valid.
"""

released_at: Optional[datetime]
Expand Down
16 changes: 8 additions & 8 deletions scaleway/scaleway/function/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def list_functions(
:param page_size: Number of functions per page.
:param order_by: Order of the functions.
:param name: Name of the function.
:param organization_id: UUID of the Organziation the function belongs to.
:param organization_id: UUID of the Organization the function belongs to.
:param project_id: UUID of the Project the function belongs to.
:return: :class:`ListFunctionsResponse <ListFunctionsResponse>`

Expand Down Expand Up @@ -480,7 +480,7 @@ def list_functions_all(
:param page_size: Number of functions per page.
:param order_by: Order of the functions.
:param name: Name of the function.
:param organization_id: UUID of the Organziation the function belongs to.
:param organization_id: UUID of the Organization the function belongs to.
:param project_id: UUID of the Project the function belongs to.
:return: :class:`List[Function] <List[Function]>`

Expand Down Expand Up @@ -605,7 +605,7 @@ def create_function(
:param region: Region to target. If none is passed will use default region from the config.
:param name: Name of the function to create.
:param environment_variables: Environment variables of the function.
:param min_scale: Minumum number of instances to scale the function to.
:param min_scale: Minimum number of instances to scale the function to.
:param max_scale: Maximum number of instances to scale the function to.
:param runtime: Runtime to use with the function.
:param memory_limit: Memory limit of the function in MB.
Expand Down Expand Up @@ -685,7 +685,7 @@ def update_function(
:param function_id: UUID of the function to update.
:param region: Region to target. If none is passed will use default region from the config.
:param environment_variables: Environment variables of the function to update.
:param min_scale: Minumum number of instances to scale the function to.
:param min_scale: Minimum number of instances to scale the function to.
:param max_scale: Maximum number of instances to scale the function to.
:param runtime: Runtime to use with the function.
:param memory_limit: Memory limit of the function in MB.
Expand Down Expand Up @@ -1219,7 +1219,7 @@ def list_domains(
"""
List all domain name bindings.
List all domain name bindings in a specified region.
:param function_id: UUID of the function the domain is assoicated with.
:param function_id: UUID of the function the domain is associated with.
:param region: Region to target. If none is passed will use default region from the config.
:param page: Page number.
:param page_size: Number of domains per page.
Expand Down Expand Up @@ -1264,7 +1264,7 @@ def list_domains_all(
"""
List all domain name bindings.
List all domain name bindings in a specified region.
:param function_id: UUID of the function the domain is assoicated with.
:param function_id: UUID of the function the domain is associated with.
:param region: Region to target. If none is passed will use default region from the config.
:param page: Page number.
:param page_size: Number of domains per page.
Expand Down Expand Up @@ -1574,7 +1574,7 @@ def list_tokens(
:param page: Page number.
:param page_size: Number of tokens per page.
:param order_by: Sort order for the tokens.
:param function_id: UUID of the function the token is assoicated with.
:param function_id: UUID of the function the token is associated with.
:param namespace_id: UUID of the namespace the token is associated with.
:return: :class:`ListTokensResponse <ListTokensResponse>`

Expand Down Expand Up @@ -1619,7 +1619,7 @@ def list_tokens_all(
:param page: Page number.
:param page_size: Number of tokens per page.
:param order_by: Sort order for the tokens.
:param function_id: UUID of the function the token is assoicated with.
:param function_id: UUID of the function the token is associated with.
:param namespace_id: UUID of the namespace the token is associated with.
:return: :class:`List[Token] <List[Token]>`

Expand Down
Loading