Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
Root = kit.NewRouter(httptransport.Group("/account_access_key"))
)
Functions ¶
This section is empty.
Types ¶
type CreateAccountAccessKey ¶
type CreateAccountAccessKey struct { httpx.MethodPost access_key.CreateAccountAccessKeyReq `in:"body"` }
CreateAccountAccessKey create account access key
type DeleteAccountAccessKeyByName ¶
type DeleteAccountAccessKeyByName struct { httpx.MethodDelete Name string `in:"path" name:"name"` }
DeleteAccountAccessKeyByName delete access key by name under current account
func (*DeleteAccountAccessKeyByName) Output ¶
func (r *DeleteAccountAccessKeyByName) Output(ctx context.Context) (interface{}, error)
func (*DeleteAccountAccessKeyByName) Path ¶
func (r *DeleteAccountAccessKeyByName) Path() string
type GetAccessKeyByName ¶ added in v1.4.6
func (*GetAccessKeyByName) Output ¶ added in v1.4.6
func (r *GetAccessKeyByName) Output(ctx context.Context) (interface{}, error)
func (*GetAccessKeyByName) Path ¶ added in v1.4.6
func (r *GetAccessKeyByName) Path() string
type ListAccessGroupMetas ¶ added in v1.4.6
func (*ListAccessGroupMetas) Output ¶ added in v1.4.6
func (r *ListAccessGroupMetas) Output(_ context.Context) (interface{}, error)
func (*ListAccessGroupMetas) Path ¶ added in v1.4.6
func (r *ListAccessGroupMetas) Path() string
type ListAccountAccessKey ¶
type ListAccountAccessKey struct { httpx.MethodGet access_key.ListReq }
ListAccountAccessKey get api access key list under current account
func (*ListAccountAccessKey) Output ¶
func (r *ListAccountAccessKey) Output(ctx context.Context) (interface{}, error)
func (*ListAccountAccessKey) Path ¶
func (r *ListAccountAccessKey) Path() string
type UpdateAccountAccessKeyByName ¶ added in v1.4.6
type UpdateAccountAccessKeyByName struct { httpx.MethodPut `summary:"Update current account access key by name"` Name string `in:"path" name:"name"` access_key.UpdateReq `in:"body"` }
func (*UpdateAccountAccessKeyByName) Output ¶ added in v1.4.6
func (r *UpdateAccountAccessKeyByName) Output(ctx context.Context) (interface{}, error)
func (*UpdateAccountAccessKeyByName) Path ¶ added in v1.4.6
func (r *UpdateAccountAccessKeyByName) Path() string
Click to show internal directories.
Click to hide internal directories.