diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2022-03-29 22:36:26 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-29 22:36:26 -0700 |
| commit | 8732cc24c8f64634aa4e14dbb9e400bf84640a2d (patch) | |
| tree | f6703a087be07ff9343c29ab3158d0626e4ed3d3 /weed/iamapi/iamapi_response.go | |
| parent | 683581c4127ab77a73e1bdcd143a9b3a6d642f78 (diff) | |
| parent | ed07e76f0e888451d00e4ee19f957ebdd8339acb (diff) | |
| download | seaweedfs-8732cc24c8f64634aa4e14dbb9e400bf84640a2d.tar.xz seaweedfs-8732cc24c8f64634aa4e14dbb9e400bf84640a2d.zip | |
Merge pull request #2849 from guo-sj/update_user
Add AWS IAM update user API and its test case
Diffstat (limited to 'weed/iamapi/iamapi_response.go')
| -rw-r--r-- | weed/iamapi/iamapi_response.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/weed/iamapi/iamapi_response.go b/weed/iamapi/iamapi_response.go index 77328b608..df9443f0d 100644 --- a/weed/iamapi/iamapi_response.go +++ b/weed/iamapi/iamapi_response.go @@ -66,6 +66,11 @@ type GetUserResponse struct { } `xml:"GetUserResult"` } +type UpdateUserResponse struct { + CommonResponse + XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ UpdateUserResponse"` +} + type CreateAccessKeyResponse struct { CommonResponse XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ CreateAccessKeyResponse"` |
