Documentation ¶
Index ¶
- type ConsoleAPI
- func (o *ConsoleAPI) AddMiddlewareFor(method, path string, builder middleware.Builder)
- func (o *ConsoleAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator
- func (o *ConsoleAPI) Authorizer() runtime.Authorizer
- func (o *ConsoleAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer
- func (o *ConsoleAPI) Context() *middleware.Context
- func (o *ConsoleAPI) DefaultConsumes() string
- func (o *ConsoleAPI) DefaultProduces() string
- func (o *ConsoleAPI) Formats() strfmt.Registry
- func (o *ConsoleAPI) HandlerFor(method, path string) (http.Handler, bool)
- func (o *ConsoleAPI) Init()
- func (o *ConsoleAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer
- func (o *ConsoleAPI) RegisterConsumer(mediaType string, consumer runtime.Consumer)
- func (o *ConsoleAPI) RegisterFormat(name string, format strfmt.Format, validator strfmt.Validator)
- func (o *ConsoleAPI) RegisterProducer(mediaType string, producer runtime.Producer)
- func (o *ConsoleAPI) Serve(builder middleware.Builder) http.Handler
- func (o *ConsoleAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error)
- func (o *ConsoleAPI) SetDefaultConsumes(mediaType string)
- func (o *ConsoleAPI) SetDefaultProduces(mediaType string)
- func (o *ConsoleAPI) SetSpec(spec *loads.Document)
- func (o *ConsoleAPI) Validate() error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConsoleAPI ¶
type ConsoleAPI struct { Middleware func(middleware.Builder) http.Handler // BasicAuthenticator generates a runtime.Authenticator from the supplied basic auth function. // It has a default implementation in the security package, however you can replace it for your particular usage. BasicAuthenticator func(security.UserPassAuthentication) runtime.Authenticator // APIKeyAuthenticator generates a runtime.Authenticator from the supplied token auth function. // It has a default implementation in the security package, however you can replace it for your particular usage. APIKeyAuthenticator func(string, string, security.TokenAuthentication) runtime.Authenticator // BearerAuthenticator generates a runtime.Authenticator from the supplied bearer token auth function. // It has a default implementation in the security package, however you can replace it for your particular usage. BearerAuthenticator func(string, security.ScopedTokenAuthentication) runtime.Authenticator // JSONConsumer registers a consumer for the following mime types: // - application/json JSONConsumer runtime.Consumer // BinProducer registers a producer for the following mime types: // - application/octet-stream BinProducer runtime.Producer // JSONProducer registers a producer for the following mime types: // - application/json JSONProducer runtime.Producer // KeyAuth registers a function that takes an access token and a collection of required scopes and returns a principal // it performs authentication based on an oauth2 bearer token provided in the request KeyAuth func(string, []string) (*models.Principal, error) // APIAuthorizer provides access control (ACL/RBAC/ABAC) by providing access to the request and authenticated principal APIAuthorizer runtime.Authorizer // AdminAPIAddGroupHandler sets the operation handler for the add group operation AdminAPIAddGroupHandler admin_api.AddGroupHandler // AdminAPIAddNotificationEndpointHandler sets the operation handler for the add notification endpoint operation AdminAPIAddNotificationEndpointHandler admin_api.AddNotificationEndpointHandler // AdminAPIAddPolicyHandler sets the operation handler for the add policy operation AdminAPIAddPolicyHandler admin_api.AddPolicyHandler // AdminAPIAddUserHandler sets the operation handler for the add user operation AdminAPIAddUserHandler admin_api.AddUserHandler // AdminAPIAdminInfoHandler sets the operation handler for the admin info operation AdminAPIAdminInfoHandler admin_api.AdminInfoHandler // AdminAPIArnListHandler sets the operation handler for the arn list operation AdminAPIArnListHandler admin_api.ArnListHandler // UserAPIBucketInfoHandler sets the operation handler for the bucket info operation UserAPIBucketInfoHandler user_api.BucketInfoHandler // UserAPIBucketSetPolicyHandler sets the operation handler for the bucket set policy operation UserAPIBucketSetPolicyHandler user_api.BucketSetPolicyHandler // AdminAPIBulkUpdateUsersGroupsHandler sets the operation handler for the bulk update users groups operation AdminAPIBulkUpdateUsersGroupsHandler admin_api.BulkUpdateUsersGroupsHandler // AdminAPIConfigInfoHandler sets the operation handler for the config info operation AdminAPIConfigInfoHandler admin_api.ConfigInfoHandler // UserAPICreateBucketEventHandler sets the operation handler for the create bucket event operation UserAPICreateBucketEventHandler user_api.CreateBucketEventHandler // UserAPICreateServiceAccountHandler sets the operation handler for the create service account operation UserAPICreateServiceAccountHandler user_api.CreateServiceAccountHandler // AdminAPICreateTenantHandler sets the operation handler for the create tenant operation AdminAPICreateTenantHandler admin_api.CreateTenantHandler // UserAPIDeleteBucketHandler sets the operation handler for the delete bucket operation UserAPIDeleteBucketHandler user_api.DeleteBucketHandler // UserAPIDeleteBucketEventHandler sets the operation handler for the delete bucket event operation UserAPIDeleteBucketEventHandler user_api.DeleteBucketEventHandler // UserAPIDeleteServiceAccountHandler sets the operation handler for the delete service account operation UserAPIDeleteServiceAccountHandler user_api.DeleteServiceAccountHandler // AdminAPIDeleteTenantHandler sets the operation handler for the delete tenant operation AdminAPIDeleteTenantHandler admin_api.DeleteTenantHandler // AdminAPIGetMaxAllocatableMemHandler sets the operation handler for the get max allocatable mem operation AdminAPIGetMaxAllocatableMemHandler admin_api.GetMaxAllocatableMemHandler // AdminAPIGetResourceQuotaHandler sets the operation handler for the get resource quota operation AdminAPIGetResourceQuotaHandler admin_api.GetResourceQuotaHandler // AdminAPIGetTenantUsageHandler sets the operation handler for the get tenant usage operation AdminAPIGetTenantUsageHandler admin_api.GetTenantUsageHandler // AdminAPIGetUserInfoHandler sets the operation handler for the get user info operation AdminAPIGetUserInfoHandler admin_api.GetUserInfoHandler // AdminAPIGroupInfoHandler sets the operation handler for the group info operation AdminAPIGroupInfoHandler admin_api.GroupInfoHandler // AdminAPIListAllTenantsHandler sets the operation handler for the list all tenants operation AdminAPIListAllTenantsHandler admin_api.ListAllTenantsHandler // UserAPIListBucketEventsHandler sets the operation handler for the list bucket events operation UserAPIListBucketEventsHandler user_api.ListBucketEventsHandler // UserAPIListBucketsHandler sets the operation handler for the list buckets operation UserAPIListBucketsHandler user_api.ListBucketsHandler // AdminAPIListConfigHandler sets the operation handler for the list config operation AdminAPIListConfigHandler admin_api.ListConfigHandler // AdminAPIListGroupsHandler sets the operation handler for the list groups operation AdminAPIListGroupsHandler admin_api.ListGroupsHandler // AdminAPIListPoliciesHandler sets the operation handler for the list policies operation AdminAPIListPoliciesHandler admin_api.ListPoliciesHandler // AdminAPIListTenantsHandler sets the operation handler for the list tenants operation AdminAPIListTenantsHandler admin_api.ListTenantsHandler // UserAPIListUserServiceAccountsHandler sets the operation handler for the list user service accounts operation UserAPIListUserServiceAccountsHandler user_api.ListUserServiceAccountsHandler // AdminAPIListUsersHandler sets the operation handler for the list users operation AdminAPIListUsersHandler admin_api.ListUsersHandler // UserAPILoginHandler sets the operation handler for the login operation UserAPILoginHandler user_api.LoginHandler // UserAPILoginDetailHandler sets the operation handler for the login detail operation UserAPILoginDetailHandler user_api.LoginDetailHandler // UserAPILoginOauth2AuthHandler sets the operation handler for the login oauth2 auth operation UserAPILoginOauth2AuthHandler user_api.LoginOauth2AuthHandler // UserAPILoginOperatorHandler sets the operation handler for the login operator operation UserAPILoginOperatorHandler user_api.LoginOperatorHandler // UserAPILogoutHandler sets the operation handler for the logout operation UserAPILogoutHandler user_api.LogoutHandler // UserAPIMakeBucketHandler sets the operation handler for the make bucket operation UserAPIMakeBucketHandler user_api.MakeBucketHandler // AdminAPINotificationEndpointListHandler sets the operation handler for the notification endpoint list operation AdminAPINotificationEndpointListHandler admin_api.NotificationEndpointListHandler // AdminAPIPolicyInfoHandler sets the operation handler for the policy info operation AdminAPIPolicyInfoHandler admin_api.PolicyInfoHandler // AdminAPIProfilingStartHandler sets the operation handler for the profiling start operation AdminAPIProfilingStartHandler admin_api.ProfilingStartHandler // AdminAPIProfilingStopHandler sets the operation handler for the profiling stop operation AdminAPIProfilingStopHandler admin_api.ProfilingStopHandler // AdminAPIRemoveGroupHandler sets the operation handler for the remove group operation AdminAPIRemoveGroupHandler admin_api.RemoveGroupHandler // AdminAPIRemovePolicyHandler sets the operation handler for the remove policy operation AdminAPIRemovePolicyHandler admin_api.RemovePolicyHandler // AdminAPIRemoveUserHandler sets the operation handler for the remove user operation AdminAPIRemoveUserHandler admin_api.RemoveUserHandler // AdminAPIRestartServiceHandler sets the operation handler for the restart service operation AdminAPIRestartServiceHandler admin_api.RestartServiceHandler // UserAPISessionCheckHandler sets the operation handler for the session check operation UserAPISessionCheckHandler user_api.SessionCheckHandler // AdminAPISetConfigHandler sets the operation handler for the set config operation AdminAPISetConfigHandler admin_api.SetConfigHandler // AdminAPISetPolicyHandler sets the operation handler for the set policy operation AdminAPISetPolicyHandler admin_api.SetPolicyHandler // AdminAPITenantAddZoneHandler sets the operation handler for the tenant add zone operation AdminAPITenantAddZoneHandler admin_api.TenantAddZoneHandler // AdminAPITenantInfoHandler sets the operation handler for the tenant info operation AdminAPITenantInfoHandler admin_api.TenantInfoHandler // AdminAPITenantUpdateCertificateHandler sets the operation handler for the tenant update certificate operation AdminAPITenantUpdateCertificateHandler admin_api.TenantUpdateCertificateHandler // AdminAPITenantUpdateEncryptionHandler sets the operation handler for the tenant update encryption operation AdminAPITenantUpdateEncryptionHandler admin_api.TenantUpdateEncryptionHandler // AdminAPITenantUpdateZonesHandler sets the operation handler for the tenant update zones operation AdminAPITenantUpdateZonesHandler admin_api.TenantUpdateZonesHandler // AdminAPIUpdateGroupHandler sets the operation handler for the update group operation AdminAPIUpdateGroupHandler admin_api.UpdateGroupHandler // AdminAPIUpdateTenantHandler sets the operation handler for the update tenant operation AdminAPIUpdateTenantHandler admin_api.UpdateTenantHandler // AdminAPIUpdateUserGroupsHandler sets the operation handler for the update user groups operation AdminAPIUpdateUserGroupsHandler admin_api.UpdateUserGroupsHandler // AdminAPIUpdateUserInfoHandler sets the operation handler for the update user info operation AdminAPIUpdateUserInfoHandler admin_api.UpdateUserInfoHandler // ServeError is called when an error is received, there is a default handler // but you can set your own with this ServeError func(http.ResponseWriter, *http.Request, error) // PreServerShutdown is called before the HTTP(S) server is shutdown // This allows for custom functions to get executed before the HTTP(S) server stops accepting traffic PreServerShutdown func() // ServerShutdown is called when the HTTP(S) server is shut down and done // handling all active connections and does not accept connections any more ServerShutdown func() // Custom command line argument groups with their descriptions CommandLineOptionsGroups []swag.CommandLineOptionsGroup // User defined logger function. Logger func(string, ...interface{}) // contains filtered or unexported fields }
ConsoleAPI the console API
func NewConsoleAPI ¶
func NewConsoleAPI(spec *loads.Document) *ConsoleAPI
NewConsoleAPI creates a new Console instance
func (*ConsoleAPI) AddMiddlewareFor ¶
func (o *ConsoleAPI) AddMiddlewareFor(method, path string, builder middleware.Builder)
AddMiddlewareFor adds a http middleware to existing handler
func (*ConsoleAPI) AuthenticatorsFor ¶
func (o *ConsoleAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator
AuthenticatorsFor gets the authenticators for the specified security schemes
func (*ConsoleAPI) Authorizer ¶
func (o *ConsoleAPI) Authorizer() runtime.Authorizer
Authorizer returns the registered authorizer
func (*ConsoleAPI) ConsumersFor ¶
func (o *ConsoleAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer
ConsumersFor gets the consumers for the specified media types. MIME type parameters are ignored here.
func (*ConsoleAPI) Context ¶
func (o *ConsoleAPI) Context() *middleware.Context
Context returns the middleware context for the console API
func (*ConsoleAPI) DefaultConsumes ¶
func (o *ConsoleAPI) DefaultConsumes() string
DefaultConsumes returns the default consumes media type
func (*ConsoleAPI) DefaultProduces ¶
func (o *ConsoleAPI) DefaultProduces() string
DefaultProduces returns the default produces media type
func (*ConsoleAPI) Formats ¶
func (o *ConsoleAPI) Formats() strfmt.Registry
Formats returns the registered string formats
func (*ConsoleAPI) HandlerFor ¶
func (o *ConsoleAPI) HandlerFor(method, path string) (http.Handler, bool)
HandlerFor gets a http.Handler for the provided operation method and path
func (*ConsoleAPI) Init ¶
func (o *ConsoleAPI) Init()
Init allows you to just initialize the handler cache, you can then recompose the middleware as you see fit
func (*ConsoleAPI) ProducersFor ¶
func (o *ConsoleAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer
ProducersFor gets the producers for the specified media types. MIME type parameters are ignored here.
func (*ConsoleAPI) RegisterConsumer ¶
func (o *ConsoleAPI) RegisterConsumer(mediaType string, consumer runtime.Consumer)
RegisterConsumer allows you to add (or override) a consumer for a media type.
func (*ConsoleAPI) RegisterFormat ¶
RegisterFormat registers a custom format validator
func (*ConsoleAPI) RegisterProducer ¶
func (o *ConsoleAPI) RegisterProducer(mediaType string, producer runtime.Producer)
RegisterProducer allows you to add (or override) a producer for a media type.
func (*ConsoleAPI) Serve ¶
func (o *ConsoleAPI) Serve(builder middleware.Builder) http.Handler
Serve creates a http handler to serve the API over HTTP can be used directly in http.ListenAndServe(":8000", api.Serve(nil))
func (*ConsoleAPI) ServeErrorFor ¶
func (o *ConsoleAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error)
ServeErrorFor gets a error handler for a given operation id
func (*ConsoleAPI) SetDefaultConsumes ¶
func (o *ConsoleAPI) SetDefaultConsumes(mediaType string)
SetDefaultConsumes returns the default consumes media type
func (*ConsoleAPI) SetDefaultProduces ¶
func (o *ConsoleAPI) SetDefaultProduces(mediaType string)
SetDefaultProduces sets the default produces media type
func (*ConsoleAPI) SetSpec ¶
func (o *ConsoleAPI) SetSpec(spec *loads.Document)
SetSpec sets a spec that will be served for the clients.
func (*ConsoleAPI) Validate ¶
func (o *ConsoleAPI) Validate() error
Validate validates the registrations in the ConsoleAPI