2021-03-29 07:01:44 +00:00
|
|
|
package iamapi
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/service/iam"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CommonResponse struct {
|
|
|
|
ResponseMetadata struct {
|
|
|
|
RequestId string `xml:"RequestId"`
|
|
|
|
} `xml:"ResponseMetadata"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ListUsersResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ ListUsersResponse"`
|
|
|
|
ListUsersResult struct {
|
|
|
|
Users []*iam.User `xml:"Users>member"`
|
|
|
|
IsTruncated bool `xml:"IsTruncated"`
|
|
|
|
} `xml:"ListUsersResult"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ListAccessKeysResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ ListAccessKeysResponse"`
|
|
|
|
ListAccessKeysResult struct {
|
|
|
|
AccessKeyMetadata []*iam.AccessKeyMetadata `xml:"AccessKeyMetadata>member"`
|
|
|
|
IsTruncated bool `xml:"IsTruncated"`
|
|
|
|
} `xml:"ListAccessKeysResult"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteAccessKeyResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ DeleteAccessKeyResponse"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreatePolicyResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ CreatePolicyResponse"`
|
|
|
|
CreatePolicyResult struct {
|
|
|
|
Policy iam.Policy `xml:"Policy"`
|
|
|
|
} `xml:"CreatePolicyResult"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreateUserResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ CreateUserResponse"`
|
|
|
|
CreateUserResult struct {
|
|
|
|
User iam.User `xml:"User"`
|
|
|
|
} `xml:"CreateUserResult"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteUserResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ DeleteUserResponse"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetUserResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ GetUserResponse"`
|
|
|
|
GetUserResult struct {
|
|
|
|
User iam.User `xml:"User"`
|
|
|
|
} `xml:"GetUserResult"`
|
|
|
|
}
|
|
|
|
|
2022-02-15 09:35:33 +00:00
|
|
|
type UpdateUserResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ UpdateUserResponse"`
|
|
|
|
}
|
|
|
|
|
2021-03-29 07:01:44 +00:00
|
|
|
type CreateAccessKeyResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ CreateAccessKeyResponse"`
|
|
|
|
CreateAccessKeyResult struct {
|
|
|
|
AccessKey iam.AccessKey `xml:"AccessKey"`
|
|
|
|
} `xml:"CreateAccessKeyResult"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type PutUserPolicyResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ PutUserPolicyResponse"`
|
|
|
|
}
|
|
|
|
|
2021-04-10 18:57:45 +00:00
|
|
|
type GetUserPolicyResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ GetUserPolicyResponse"`
|
|
|
|
GetUserPolicyResult struct {
|
|
|
|
UserName string `xml:"UserName"`
|
|
|
|
PolicyName string `xml:"PolicyName"`
|
|
|
|
PolicyDocument string `xml:"PolicyDocument"`
|
|
|
|
} `xml:"GetUserPolicyResult"`
|
|
|
|
}
|
|
|
|
|
2021-03-29 07:01:44 +00:00
|
|
|
type ErrorResponse struct {
|
|
|
|
CommonResponse
|
|
|
|
XMLName xml.Name `xml:"https://iam.amazonaws.com/doc/2010-05-08/ ErrorResponse"`
|
|
|
|
Error struct {
|
|
|
|
iam.ErrorDetails
|
|
|
|
Type string `xml:"Type"`
|
|
|
|
} `xml:"Error"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *CommonResponse) SetRequestId() {
|
|
|
|
r.ResponseMetadata.RequestId = fmt.Sprintf("%d", time.Now().UnixNano())
|
|
|
|
}
|