diff --git a/packages/clients/src/api/iam/v1alpha1/api.gen.ts b/packages/clients/src/api/iam/v1alpha1/api.gen.ts index 99879359e..108ec7086 100644 --- a/packages/clients/src/api/iam/v1alpha1/api.gen.ts +++ b/packages/clients/src/api/iam/v1alpha1/api.gen.ts @@ -351,7 +351,8 @@ export class API extends ParentAPI { ) /** - * Update an user's password. + * Update an user's password. Private Beta feature.. Update an user's + * password. Private Beta feature. * * @param request - The request {@link UpdateUserPasswordRequest} * @returns A Promise of User @@ -370,8 +371,8 @@ export class API extends ParentAPI { ) /** - * Lock a user. Lock a user. Note that a locked user cannot log in or use API - * keys until the locked status is removed. + * Lock a member. Lock a member. A locked member cannot log in or use API keys + * until the locked status is removed. Private Beta feature. * * @param request - The request {@link LockUserRequest} * @returns A Promise of User @@ -388,7 +389,7 @@ export class API extends ParentAPI { ) /** - * Unlock a user. + * Unlock a member. Unlock a member. Private Beta feature. * * @param request - The request {@link UnlockUserRequest} * @returns A Promise of User @@ -405,7 +406,8 @@ export class API extends ParentAPI { ) /** - * List grace periods of a user. List the grace periods of a user. + * List grace periods of a member. List the grace periods of a member. Private + * Beta feature. * * @param request - The request {@link ListGracePeriodsRequest} * @returns A Promise of ListGracePeriodsResponse @@ -1016,9 +1018,9 @@ export class API extends ParentAPI { /** * Create an API key. Create an API key. You must specify the `application_id` * or the `user_id` and the description. You can also specify the - * `default_project_id` which is the Project ID of your preferred Project, to + * `default_project_id`, which is the Project ID of your preferred Project, to * use with Object Storage. The `access_key` and `secret_key` values are - * returned in the response. Note that he secret key is only showed once. Make + * returned in the response. Note that the secret key is only shown once. Make * sure that you copy and store both keys somewhere safe. * * @param request - The request {@link CreateAPIKeyRequest} diff --git a/packages/clients/src/api/iam/v1alpha1/types.gen.ts b/packages/clients/src/api/iam/v1alpha1/types.gen.ts index 0b6edca60..9d7d78179 100644 --- a/packages/clients/src/api/iam/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/iam/v1alpha1/types.gen.ts @@ -596,7 +596,7 @@ export type CreateUserRequest = { /** Tags associated with the user. */ tags?: string[] /** - * A new IAM Member to create. + * Details of IAM member. Private Beta feature. * * One-of ('type'): at most one of 'email', 'member' could be set. */ @@ -1126,6 +1126,6 @@ export type UpdateUserRequest = { userId: string /** New tags for the user (maximum of 10 tags). */ tags?: string[] - /** New email for the user (only available on Members). */ + /** IAM member email. */ email?: string }