@@ -124,7 +124,7 @@ async def list_ssh_keys(
124124 :param organization_id: Filter by Organization ID.
125125 :param name: Name of group to find.
126126 :param project_id: Filter by Project ID.
127- :param disabled: Whether to include disabled SSH keys or not.
127+ :param disabled: Defines whether to include disabled SSH keys or not.
128128 :return: :class:`ListSSHKeysResponse <ListSSHKeysResponse>`
129129
130130 Usage:
@@ -171,7 +171,7 @@ async def list_ssh_keys_all(
171171 :param organization_id: Filter by Organization ID.
172172 :param name: Name of group to find.
173173 :param project_id: Filter by Project ID.
174- :param disabled: Whether to include disabled SSH keys or not.
174+ :param disabled: Defines whether to include disabled SSH keys or not.
175175 :return: :class:`List[ListSSHKeysResponse] <List[ListSSHKeysResponse]>`
176176
177177 Usage:
@@ -205,7 +205,7 @@ async def create_ssh_key(
205205 """
206206 Create an SSH key.
207207 Add a new SSH key to a Scaleway Project. You must specify the `name`, `public_key` and `project_id`.
208- :param name: The name of the SSH key. Max length is 1000.
208+ :param name: Name of the SSH key. Max length is 1000.
209209 :param public_key: SSH public key. Currently only the ssh-rsa, ssh-dss (DSA), ssh-ed25519 and ecdsa keys with NIST curves are supported. Max length is 65000.
210210 :param project_id: Project the resource is attributed to.
211211 :return: :class:`SSHKey <SSHKey>`
@@ -240,7 +240,7 @@ async def get_ssh_key(
240240 """
241241 Get an SSH key.
242242 Retrieve information about a given SSH key, specified by the `ssh_key_id` parameter. The SSH key's full details, including `id`, `name`, `public_key`, and `project_id` are returned in the response.
243- :param ssh_key_id: The ID of the SSH key.
243+ :param ssh_key_id: ID of the SSH key.
244244 :return: :class:`SSHKey <SSHKey>`
245245
246246 Usage:
@@ -481,7 +481,7 @@ async def list_applications(
481481 :param page: Page number. Value must be greater than 1.
482482 :param name: Name of the application to filter.
483483 :param organization_id: ID of the Organization to filter.
484- :param editable: Whether to filter out editable applications or not.
484+ :param editable: Defines whether to filter out editable applications or not.
485485 :param application_ids: Filter by list of IDs.
486486 :return: :class:`ListApplicationsResponse <ListApplicationsResponse>`
487487
@@ -528,7 +528,7 @@ async def list_applications_all(
528528 :param page: Page number. Value must be greater than 1.
529529 :param name: Name of the application to filter.
530530 :param organization_id: ID of the Organization to filter.
531- :param editable: Whether to filter out editable applications or not.
531+ :param editable: Defines whether to filter out editable applications or not.
532532 :param application_ids: Filter by list of IDs.
533533 :return: :class:`List[ListApplicationsResponse] <List[ListApplicationsResponse]>`
534534
@@ -1058,11 +1058,11 @@ async def list_policies(
10581058 :param page_size: Number of results per page. Value must be between 1 and 100.
10591059 :param page: Page number. Value must be greater than 1.
10601060 :param organization_id: ID of the Organization to filter.
1061- :param editable: Whether or not filter out editable policies.
1062- :param user_ids: Whether or not to filter by list of user IDs.
1063- :param group_ids: Whether or not to filter by list of group IDs.
1061+ :param editable: Defines whether or not filter out editable policies.
1062+ :param user_ids: Defines whether or not to filter by list of user IDs.
1063+ :param group_ids: Defines whether or not to filter by list of group IDs.
10641064 :param application_ids: Filter by a list of application IDs.
1065- :param no_principal: Whether or not the policy is attributed to a principal.
1065+ :param no_principal: Defines whether or not the policy is attributed to a principal.
10661066 :param policy_name: Name of the policy to fetch.
10671067 :return: :class:`ListPoliciesResponse <ListPoliciesResponse>`
10681068
@@ -1114,11 +1114,11 @@ async def list_policies_all(
11141114 :param page_size: Number of results per page. Value must be between 1 and 100.
11151115 :param page: Page number. Value must be greater than 1.
11161116 :param organization_id: ID of the Organization to filter.
1117- :param editable: Whether or not filter out editable policies.
1118- :param user_ids: Whether or not to filter by list of user IDs.
1119- :param group_ids: Whether or not to filter by list of group IDs.
1117+ :param editable: Defines whether or not filter out editable policies.
1118+ :param user_ids: Defines whether or not to filter by list of user IDs.
1119+ :param group_ids: Defines whether or not to filter by list of group IDs.
11201120 :param application_ids: Filter by a list of application IDs.
1121- :param no_principal: Whether or not the policy is attributed to a principal.
1121+ :param no_principal: Defines whether or not the policy is attributed to a principal.
11221122 :param policy_name: Name of the policy to fetch.
11231123 :return: :class:`List[ListPoliciesResponse] <List[ListPoliciesResponse]>`
11241124
@@ -1174,7 +1174,7 @@ async def create_policy(
11741174 :param application_id: ID of application attributed to the policy.
11751175
11761176 One-of ('principal'): at most one of 'user_id', 'group_id', 'application_id', 'no_principal' could be set.
1177- :param no_principal: Whether or not a policy is attributed to a principal.
1177+ :param no_principal: Defines whether or not a policy is attributed to a principal.
11781178
11791179 One-of ('principal'): at most one of 'user_id', 'group_id', 'application_id', 'no_principal' could be set.
11801180 :return: :class:`Policy <Policy>`
@@ -1259,7 +1259,7 @@ async def update_policy(
12591259 :param application_id: New ID of application attributed to the policy.
12601260
12611261 One-of ('principal'): at most one of 'user_id', 'group_id', 'application_id', 'no_principal' could be set.
1262- :param no_principal: Whether or not the policy is attributed to a principal.
1262+ :param no_principal: Defines whether or not the policy is attributed to a principal.
12631263
12641264 One-of ('principal'): at most one of 'user_id', 'group_id', 'application_id', 'no_principal' could be set.
12651265 :return: :class:`Policy <Policy>`
@@ -1550,8 +1550,8 @@ async def list_api_keys(
15501550 :param user_id: ID of user that bears the API key.
15511551
15521552 One-of ('bearer'): at most one of 'application_id', 'user_id' could be set.
1553- :param editable: Whether to filter out editable API keys or not.
1554- :param expired: Whether to filter out expired API keys or not.
1553+ :param editable: Defines whether to filter out editable API keys or not.
1554+ :param expired: Defines whether to filter out expired API keys or not.
15551555 :param access_key: Filter by access key.
15561556 :param description: Filter by description.
15571557 :param bearer_id: Filter by bearer ID.
@@ -1620,8 +1620,8 @@ async def list_api_keys_all(
16201620 :param user_id: ID of user that bears the API key.
16211621
16221622 One-of ('bearer'): at most one of 'application_id', 'user_id' could be set.
1623- :param editable: Whether to filter out editable API keys or not.
1624- :param expired: Whether to filter out expired API keys or not.
1623+ :param editable: Defines whether to filter out editable API keys or not.
1624+ :param expired: Defines whether to filter out expired API keys or not.
16251625 :param access_key: Filter by access key.
16261626 :param description: Filter by description.
16271627 :param bearer_id: Filter by bearer ID.
@@ -1673,8 +1673,8 @@ async def create_api_key(
16731673
16741674 One-of ('bearer'): at most one of 'application_id', 'user_id' could be set.
16751675 :param expires_at: Expiration date of the API key.
1676- :param default_project_id: The default Project ID to use with Object Storage.
1677- :param description: The description of the API key (max length is 200 characters).
1676+ :param default_project_id: Default Project ID to use with Object Storage.
1677+ :param description: Description of the API key (max length is 200 characters).
16781678 :return: :class:`APIKey <APIKey>`
16791679
16801680 Usage:
@@ -1739,8 +1739,8 @@ async def update_api_key(
17391739 Update an API key.
17401740 Update the parameters of an API key, including `default_project_id` and `description`.
17411741 :param access_key: Access key to update.
1742- :param default_project_id: The new default Project ID to set.
1743- :param description: The new description to update.
1742+ :param default_project_id: New default Project ID to set.
1743+ :param description: New description to update.
17441744 :return: :class:`APIKey <APIKey>`
17451745
17461746 Usage:
0 commit comments