Skip to content

Commit c76ff71

Browse files
authored
docs(iam): remove beta mentions (#2487)
1 parent 50c5f73 commit c76ff71

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

api/iam/v1alpha1/iam_sdk.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1545,7 +1545,7 @@ type CreateUserRequest struct {
15451545
// Tags: tags associated with the user.
15461546
Tags []string `json:"tags"`
15471547

1548-
// Member: details of IAM member. Private Beta feature.
1548+
// Member: details of IAM member.
15491549
// Precisely one of Email, Member must be set.
15501550
Member *CreateUserRequestMember `json:"member,omitempty"`
15511551
}
@@ -2800,7 +2800,7 @@ func (s *API) CreateUser(req *CreateUserRequest, opts ...scw.RequestOption) (*Us
28002800
return &resp, nil
28012801
}
28022802

2803-
// UpdateUserUsername: Update an user's username. Private Beta feature.
2803+
// UpdateUserUsername: Update an user's username.
28042804
func (s *API) UpdateUserUsername(req *UpdateUserUsernameRequest, opts ...scw.RequestOption) (*User, error) {
28052805
var err error
28062806

@@ -2827,7 +2827,7 @@ func (s *API) UpdateUserUsername(req *UpdateUserUsernameRequest, opts ...scw.Req
28272827
return &resp, nil
28282828
}
28292829

2830-
// UpdateUserPassword: Update an user's password. Private Beta feature.
2830+
// UpdateUserPassword: Update an user's password.
28312831
func (s *API) UpdateUserPassword(req *UpdateUserPasswordRequest, opts ...scw.RequestOption) (*User, error) {
28322832
var err error
28332833

@@ -2854,7 +2854,7 @@ func (s *API) UpdateUserPassword(req *UpdateUserPasswordRequest, opts ...scw.Req
28542854
return &resp, nil
28552855
}
28562856

2857-
// CreateUserMFAOTP: Create a MFA OTP. Private Beta feature.
2857+
// CreateUserMFAOTP: Create a MFA OTP.
28582858
func (s *API) CreateUserMFAOTP(req *CreateUserMFAOTPRequest, opts ...scw.RequestOption) (*MFAOTP, error) {
28592859
var err error
28602860

@@ -2881,7 +2881,7 @@ func (s *API) CreateUserMFAOTP(req *CreateUserMFAOTPRequest, opts ...scw.Request
28812881
return &resp, nil
28822882
}
28832883

2884-
// ValidateUserMFAOTP: Validate a MFA OTP. Private Beta feature.
2884+
// ValidateUserMFAOTP: Validate a MFA OTP.
28852885
func (s *API) ValidateUserMFAOTP(req *ValidateUserMFAOTPRequest, opts ...scw.RequestOption) (*ValidateUserMFAOTPResponse, error) {
28862886
var err error
28872887

@@ -2908,7 +2908,7 @@ func (s *API) ValidateUserMFAOTP(req *ValidateUserMFAOTPRequest, opts ...scw.Req
29082908
return &resp, nil
29092909
}
29102910

2911-
// DeleteUserMFAOTP: Delete a MFA OTP. Private Beta feature.
2911+
// DeleteUserMFAOTP: Delete a MFA OTP.
29122912
func (s *API) DeleteUserMFAOTP(req *DeleteUserMFAOTPRequest, opts ...scw.RequestOption) error {
29132913
var err error
29142914

@@ -2933,7 +2933,7 @@ func (s *API) DeleteUserMFAOTP(req *DeleteUserMFAOTPRequest, opts ...scw.Request
29332933
return nil
29342934
}
29352935

2936-
// LockUser: Lock a member. A locked member cannot log in or use API keys until the locked status is removed. Private Beta feature.
2936+
// LockUser: Lock a member. A locked member cannot log in or use API keys until the locked status is removed.
29372937
func (s *API) LockUser(req *LockUserRequest, opts ...scw.RequestOption) (*User, error) {
29382938
var err error
29392939

@@ -2960,7 +2960,7 @@ func (s *API) LockUser(req *LockUserRequest, opts ...scw.RequestOption) (*User,
29602960
return &resp, nil
29612961
}
29622962

2963-
// UnlockUser: Unlock a member. Private Beta feature.
2963+
// UnlockUser: Unlock a member.
29642964
func (s *API) UnlockUser(req *UnlockUserRequest, opts ...scw.RequestOption) (*User, error) {
29652965
var err error
29662966

@@ -2987,7 +2987,7 @@ func (s *API) UnlockUser(req *UnlockUserRequest, opts ...scw.RequestOption) (*Us
29872987
return &resp, nil
29882988
}
29892989

2990-
// ListGracePeriods: List the grace periods of a member. Private Beta feature.
2990+
// ListGracePeriods: List the grace periods of a member.
29912991
func (s *API) ListGracePeriods(req *ListGracePeriodsRequest, opts ...scw.RequestOption) (*ListGracePeriodsResponse, error) {
29922992
var err error
29932993

0 commit comments

Comments
 (0)