Documentation ¶
Index ¶
Constants ¶
View Source
const ( RespTypEve = "event" RespTypMsg = "message" RespTypMeta = "metadata" RespEveSucc = "Success" RespEveFail = "Failed" CheckRunningOperation bindings.OperationKind = "checkRunning" CheckStatusOperation bindings.OperationKind = "checkStatus" CheckRoleOperation bindings.OperationKind = "checkRole" GetRoleOperation bindings.OperationKind = "getRole" GetLagOperation bindings.OperationKind = "getLag" ExecOperation bindings.OperationKind = "exec" QueryOperation bindings.OperationKind = "query" CloseOperation bindings.OperationKind = "close" // actions for cluster accounts management ListUsersOp bindings.OperationKind = "listUsers" CreateUserOp bindings.OperationKind = "createUser" DeleteUserOp bindings.OperationKind = "deleteUser" DescribeUserOp bindings.OperationKind = "describeUser" GrantUserRoleOp bindings.OperationKind = "grantUserRole" RevokeUserRoleOp bindings.OperationKind = "revokeUserRole" ListSystemAccountsOp bindings.OperationKind = "listSystemAccounts" OperationNotImplemented = "NotImplemented" OperationInvalid = "Invalid" OperationSuccess = "Success" OperationFailed = "Failed" HTTPRequestPrefx string = "curl -X POST -H 'Content-Type: application/json' http://localhost:%d/v1.0/bindings/%s" )
View Source
const (
UnsupportedOps errorReason = "unsupported operation"
)
Variables ¶
This section is empty.
Functions ¶
func IsUnSupportedError ¶ added in v0.6.0
IsUnSupportedError checks if the error is unsupported operation error
Types ¶
type SQLChannelError ¶ added in v0.6.0
type SQLChannelError struct {
Reason errorReason
}
SQLChannelError is the error for sqlchannel, it implements error interface
func (SQLChannelError) Error ¶ added in v0.6.0
func (e SQLChannelError) Error() string
type SQLChannelMeta ¶
type SQLChannelMeta struct { Operation string `json:"operation,omitempty"` StartTime time.Time `json:"startTime,omitempty"` EndTime time.Time `json:"endTime,omitempty"` Extra string `json:"extra,omitempty"` }
SQLChannelMeta is the metadata for sqlchannel
type SQLChannelRequest ¶
type SQLChannelRequest struct { Operation string `json:"operation"` Metadata map[string]interface{} `json:"metadata,omitempty"` }
SQLChannelRequest is the request for sqlchannel
type SQLChannelResponse ¶
type SQLChannelResponse struct { Event string `json:"event,omitempty"` Message string `json:"message,omitempty"` Metadata SQLChannelMeta `json:"metadata,omitempty"` }
SQLChannelResponse is the response for sqlchannel
type UserInfo ¶
type UserInfo struct { UserName string `json:"userName"` Password string `json:"password,omitempty"` Expired string `json:"expired,omitempty"` ExpireAt time.Duration `json:"expireAt,omitempty"` RoleName string `json:"roleName,omitempty"` }
UserInfo is the user information for account management
Click to show internal directories.
Click to hide internal directories.