Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ async def reinstall_server(
) -> Server:
"""
Reinstall a server.
Reinstall an existing Apple silicon server (specified by its server ID) from a new image (OS). All the data on the disk is deleted and all configuration is reset to the defailt configuration values of the image (OS).
Reinstall an existing Apple silicon server (specified by its server ID) from a new image (OS). All the data on the disk is deleted and all configuration is reset to the default configuration values of the image (OS).
:param server_id: UUID of the server you want to reinstall.
:param zone: Zone to target. If none is passed will use default zone from the config.
:param os_id: Reinstall the server with the target OS, when no os_id provided the default OS for the server type is used.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class OS:

release_notes_url: str
"""
Url of the release notes for the OS image or softwares pre-installed.
Url of the release notes for the OS image or software pre-installed.
"""

description: str
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/baremetal/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1145,12 +1145,12 @@ class BMCAccess:

login: str
"""
The login to use for the BMC (Baseboard Management Controller) access authentification.
The login to use for the BMC (Baseboard Management Controller) access authentication.
"""

password: str
"""
The password to use for the BMC (Baseboard Management Controller) access authentification.
The password to use for the BMC (Baseboard Management Controller) access authentication.
"""

expires_at: Optional[datetime] = None
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/block/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ class ListSnapshotsResponse:

total_count: int
"""
Total number of snpashots in the project.
Total number of snapshots in the project.
"""


Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/block/v1alpha1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ class ListSnapshotsResponse:

total_count: int
"""
Total number of snpashots in the project.
Total number of snapshots in the project.
"""


Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/cockpit/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ class ListGrafanaProductDashboardsResponse:
@dataclass
class ListGrafanaUsersResponse:
"""
Ouptut returned when listing Grafana users.
Output returned when listing Grafana users.
"""

total_count: int
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/container/v1beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ async def create_cron(
"""
Create a new cron.
:param container_id: UUID of the container to invoke by the cron.
:param schedule: UNIX cron shedule.
:param schedule: UNIX cron schedule.
:param region: Region to target. If none is passed will use default region from the config.
:param args: Arguments to pass with the cron.
:param name: Name of the cron to create.
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/container/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ class Cron:

schedule: str
"""
UNIX cron shedule.
UNIX cron schedule.
"""

status: CronStatus
Expand Down Expand Up @@ -897,7 +897,7 @@ class CreateCronRequest:

schedule: str
"""
UNIX cron shedule.
UNIX cron schedule.
"""

region: Optional[ScwRegion] = None
Expand Down
8 changes: 4 additions & 4 deletions scaleway-async/scaleway_async/dedibox/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1867,7 +1867,7 @@ class Log:

member: Optional[RpnV2Member] = None
"""
RPN V2 member (if appliable).
RPN V2 member (if applicable).
"""

created_at: Optional[datetime] = None
Expand Down Expand Up @@ -2198,12 +2198,12 @@ class BMCAccess:

login: str
"""
The login to use for the BMC (Baseboard Management Controller) access authentification.
The login to use for the BMC (Baseboard Management Controller) access authentication.
"""

password: str
"""
The password to use for the BMC (Baseboard Management Controller) access authentification.
The password to use for the BMC (Baseboard Management Controller) access authentication.
"""

status: BMCAccessStatus
Expand Down Expand Up @@ -3521,7 +3521,7 @@ class Rescue:

protocol: RescueProtocol
"""
Protocol of the resuce.
Protocol of the rescue.
"""


Expand Down
6 changes: 3 additions & 3 deletions scaleway-async/scaleway_async/domain/v2beta1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ async def get_ssl_certificate(
) -> SSLCertificate:
"""
Get a DNS zone's TLS certificate.
Get the DNS zone's TLS certificate. If you do not have a certificate, the ouptut returns `no certificate found`.
Get the DNS zone's TLS certificate. If you do not have a certificate, the output returns `no certificate found`.
:param dns_zone:
:return: :class:`SSLCertificate <SSLCertificate>`

Expand Down Expand Up @@ -1148,7 +1148,7 @@ async def wait_for_ssl_certificate(
) -> SSLCertificate:
"""
Get a DNS zone's TLS certificate.
Get the DNS zone's TLS certificate. If you do not have a certificate, the ouptut returns `no certificate found`.
Get the DNS zone's TLS certificate. If you do not have a certificate, the output returns `no certificate found`.
:param dns_zone:
:return: :class:`SSLCertificate <SSLCertificate>`

Expand Down Expand Up @@ -2582,7 +2582,7 @@ async def get_domain_auth_code(
) -> GetDomainAuthCodeResponse:
"""
Get a domain's authorization code.
Retrieve the authorization code to tranfer an unlocked domain. The output returns an error if the domain is locked.
Retrieve the authorization code to transfer an unlocked domain. The output returns an error if the domain is locked.
Some TLDs may have a different procedure to retrieve the authorization code. In that case, the information displays in the message field.
:param domain:
:return: :class:`GetDomainAuthCodeResponse <GetDomainAuthCodeResponse>`
Expand Down
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 @@ -1406,7 +1406,7 @@ async def create_domain(
"""
Create a domain name binding.
Create a domain name binding for the function with the specified ID.
:param hostname: Hostame to create.
:param hostname: Hostname to create.
:param function_id: UUID of the function to associate the domain with.
:param region: Region to target. If none is passed will use default region from the config.
:return: :class:`Domain <Domain>`
Expand Down
4 changes: 2 additions & 2 deletions scaleway-async/scaleway_async/function/v1beta1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ class Domain:

status: DomainStatus
"""
State of the doamin.
State of the domain.
"""

error_message: Optional[str] = None
Expand Down Expand Up @@ -773,7 +773,7 @@ class CreateCronRequest:
class CreateDomainRequest:
hostname: str
"""
Hostame to create.
Hostname to create.
"""

function_id: str
Expand Down
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/iam/v1alpha1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1877,7 +1877,7 @@ async def get_policy(
) -> Policy:
"""
Get an existing policy.
Retrieve information about a policy, speficified by the `policy_id` parameter. The policy's full details, including `id`, `name`, `organization_id`, `nb_rules` and `nb_scopes`, `nb_permission_sets` are returned in the response.
Retrieve information about a policy, specified by the `policy_id` parameter. The policy's full details, including `id`, `name`, `organization_id`, `nb_rules` and `nb_scopes`, `nb_permission_sets` are returned in the response.
:param policy_id: Id of policy to search.
:return: :class:`Policy <Policy>`

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 @@ -415,7 +415,7 @@ class Hub:

enable_device_auto_provisioning: bool
"""
When an unknown device connects to your hub using a valid certificate chain, it will be automatically provisioned inside your Hub. The Hub uses the common name of the device certifcate to find out if a device with the same name already exists. This setting can only be enabled on a hub with a custom certificate authority.
When an unknown device connects to your hub using a valid certificate chain, it will be automatically provisioned inside your Hub. The Hub uses the common name of the device certificate to find out if a device with the same name already exists. This setting can only be enabled on a hub with a custom certificate authority.
"""

has_custom_ca: bool
Expand Down
30 changes: 15 additions & 15 deletions scaleway-async/scaleway_async/ipam/v1/api.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was automatically generated. DO NOT EDIT.
# If you have any remark or suggestion do not hesitate to open an issue.

from typing import List, Optional
from typing import Optional

from scaleway_core.api import API
from scaleway_core.bridge import (
Expand Down Expand Up @@ -53,7 +53,7 @@ async def book_ip(
region: Optional[ScwRegion] = None,
project_id: Optional[str] = None,
address: Optional[str] = None,
tags: Optional[List[str]] = None,
tags: Optional[list[str]] = None,
resource: Optional[CustomResource] = None,
) -> IP:
"""
Expand Down Expand Up @@ -138,7 +138,7 @@ async def release_ip_set(
self,
*,
region: Optional[ScwRegion] = None,
ip_ids: Optional[List[str]] = None,
ip_ids: Optional[list[str]] = None,
) -> None:
"""
:param region: Region to target. If none is passed will use default region from the config.
Expand Down Expand Up @@ -207,8 +207,8 @@ async def update_ip(
*,
ip_id: str,
region: Optional[ScwRegion] = None,
tags: Optional[List[str]] = None,
reverses: Optional[List[Reverse]] = None,
tags: Optional[list[str]] = None,
reverses: Optional[list[Reverse]] = None,
) -> IP:
"""
Update an IP.
Expand Down Expand Up @@ -264,14 +264,14 @@ async def list_i_ps(
attached: Optional[bool] = None,
resource_name: Optional[str] = None,
resource_id: Optional[str] = None,
resource_ids: Optional[List[str]] = None,
resource_ids: Optional[list[str]] = None,
resource_type: Optional[ResourceType] = None,
resource_types: Optional[List[ResourceType]] = None,
resource_types: Optional[list[ResourceType]] = None,
mac_address: Optional[str] = None,
tags: Optional[List[str]] = None,
tags: Optional[list[str]] = None,
organization_id: Optional[str] = None,
is_ipv6: Optional[bool] = None,
ip_ids: Optional[List[str]] = None,
ip_ids: Optional[list[str]] = None,
source_vpc_id: Optional[str] = None,
) -> ListIPsResponse:
"""
Expand Down Expand Up @@ -364,16 +364,16 @@ async def list_i_ps_all(
attached: Optional[bool] = None,
resource_name: Optional[str] = None,
resource_id: Optional[str] = None,
resource_ids: Optional[List[str]] = None,
resource_ids: Optional[list[str]] = None,
resource_type: Optional[ResourceType] = None,
resource_types: Optional[List[ResourceType]] = None,
resource_types: Optional[list[ResourceType]] = None,
mac_address: Optional[str] = None,
tags: Optional[List[str]] = None,
tags: Optional[list[str]] = None,
organization_id: Optional[str] = None,
is_ipv6: Optional[bool] = None,
ip_ids: Optional[List[str]] = None,
ip_ids: Optional[list[str]] = None,
source_vpc_id: Optional[str] = None,
) -> List[IP]:
) -> list[IP]:
"""
List existing IPs.
List existing IPs in the specified region using various filters. For example, you can filter for IPs within a specified Private Network, or for public IPs within a specified Project. By default, the IPs returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field.
Expand Down Expand Up @@ -402,7 +402,7 @@ async def list_i_ps_all(
:param ip_ids: IP IDs to filter for. Only IPs with these UUIDs will be returned.
:param source_vpc_id:
One-Of ('source'): at most one of 'zonal', 'private_network_id', 'subnet_id', 'source_vpc_id' could be set.
:return: :class:`List[IP] <List[IP]>`
:return: :class:`list[IP] <list[IP]>`

Usage:
::
Expand Down
Loading
Loading