You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.0 KiB
26 lines
1.0 KiB
package iamapi
|
|
|
|
// This file re-exports IAM response types from the shared weed/iam package
|
|
// for backwards compatibility with existing code.
|
|
|
|
import (
|
|
iamlib "github.com/seaweedfs/seaweedfs/weed/iam"
|
|
)
|
|
|
|
// Type aliases for IAM response types from shared package
|
|
type (
|
|
CommonResponse = iamlib.CommonResponse
|
|
ListUsersResponse = iamlib.ListUsersResponse
|
|
ListAccessKeysResponse = iamlib.ListAccessKeysResponse
|
|
DeleteAccessKeyResponse = iamlib.DeleteAccessKeyResponse
|
|
CreatePolicyResponse = iamlib.CreatePolicyResponse
|
|
CreateUserResponse = iamlib.CreateUserResponse
|
|
DeleteUserResponse = iamlib.DeleteUserResponse
|
|
GetUserResponse = iamlib.GetUserResponse
|
|
UpdateUserResponse = iamlib.UpdateUserResponse
|
|
CreateAccessKeyResponse = iamlib.CreateAccessKeyResponse
|
|
PutUserPolicyResponse = iamlib.PutUserPolicyResponse
|
|
DeleteUserPolicyResponse = iamlib.DeleteUserPolicyResponse
|
|
GetUserPolicyResponse = iamlib.GetUserPolicyResponse
|
|
ErrorResponse = iamlib.ErrorResponse
|
|
)
|