Documentation ¶
Index ¶
- Constants
- func ClosePlugins()
- func RegisterFactory(name string, f Factory)
- type AppHistory
- type Application
- type Auth
- type Cert
- type Configuration
- type Factory
- type Function
- type Index
- type License
- type Namespace
- type Node
- type Object
- type PKI
- type PKIStorage
- type Plugin
- type Property
- type Pubsub
- type QuotaCollector
- type Resource
- type Secret
- type Shadow
- type SyncLink
- type Task
Constants ¶
View Source
const ( QuotaNode = "maxNodeCount" QuotaBatch = "maxBatchCount" )
Variables ¶
This section is empty.
Functions ¶
func RegisterFactory ¶
RegisterFactory adds a supported plugin
Types ¶
type AppHistory ¶ added in v2.1.1
type AppHistory interface { CreateApplicationHis(app *v1.Application) (sql.Result, error) UpdateApplicationHis(app *v1.Application, oldVersion string) (sql.Result, error) DeleteApplicationHis(name, namespace, version string) (sql.Result, error) GetApplicationHis(name, namespace, version string) (*v1.Application, error) ListApplicationHis(namespace string, filter *models.Filter) ([]v1.Application, error) CreateApplicationHisWithTx(tx *sqlx.Tx, app *v1.Application) (sql.Result, error) UpdateApplicationHisWithTx(tx *sqlx.Tx, app *v1.Application, oldVersion string) (sql.Result, error) DeleteApplicationHisWithTx(tx *sqlx.Tx, name, namespace, version string) (sql.Result, error) CountApplicationHis(tx *sqlx.Tx, name, namespace string) (int, error) io.Closer }
type Application ¶
type Application interface { GetApplication(namespace, name, version string) (*v1.Application, error) CreateApplication(namespace string, application *v1.Application) (*v1.Application, error) UpdateApplication(namespace string, application *v1.Application) (*v1.Application, error) DeleteApplication(namespace, name string) error ListApplication(namespace string, listOptions *models.ListOptions) (*models.ApplicationList, error) }
type Auth ¶
type Auth interface { Authenticate(c *common.Context) error SignToken(meta []byte) ([]byte, error) VerifyToken(meta, sign []byte) bool io.Closer }
Auth interfaces of auth
type Cert ¶
type Cert struct { CertId string `db:"cert_id"` ParentId string `db:"parent_id"` Type string `db:"type"` CommonName string `db:"common_name"` Csr string `db:"csr"` // base64 Content string `db:"content"` // base64 PrivateKey string `db:"private_key"` // base64 Description string `db:"description"` NotBefore time.Time `db:"not_before"` NotAfter time.Time `db:"not_after"` }
type Configuration ¶
type Configuration interface { GetConfig(namespace, name, version string) (*v1.Configuration, error) CreateConfig(namespace string, configModel *v1.Configuration) (*v1.Configuration, error) UpdateConfig(namespace string, configurationModel *v1.Configuration) (*v1.Configuration, error) DeleteConfig(namespace, name string) error ListConfig(namespace string, listOptions *models.ListOptions) (*models.ConfigurationList, error) }
type Function ¶
type Function interface { List(userID string) ([]models.Function, error) ListFunctionVersions(userID, name string) ([]models.Function, error) Get(userID, name, version string) (*models.Function, error) io.Closer }
Function interface of Function
type Index ¶ added in v2.1.1
type Index interface { // index CreateIndex(namespace string, keyA, keyB common.Resource, valueA, valueB string) (sql.Result, error) ListIndex(namespace string, keyA, byKeyB common.Resource, valueB string) ([]string, error) DeleteIndex(namespace string, keyA, byKeyB common.Resource, valueB string) (sql.Result, error) CreateIndexTx(tx *sqlx.Tx, namespace string, keyA, keyB common.Resource, valueA, valueB string) (sql.Result, error) ListIndexTx(tx *sqlx.Tx, namespace string, keyA, byKeyB common.Resource, valueB string) ([]string, error) DeleteIndexTx(tx *sqlx.Tx, namespace string, keyA, byKeyB common.Resource, valueB string) (sql.Result, error) RefreshIndex(namespace string, keyA, keyB common.Resource, valueA string, valueBs []string) error io.Closer }
Index interface of Index
type License ¶
type License interface { ProtectCode() error CheckLicense() error GetQuota(namespace string) (map[string]int, error) GetDefaultQuotas(namespace string) (map[string]int, error) CreateQuota(namespace string, quotas map[string]int) error UpdateQuota(namespace, quotaName string, quota int) error AcquireQuota(namespace, quotaName string, number int) error ReleaseQuota(namespace, quotaName string, number int) error DeleteQuota(namespace, quotaName string) error DeleteQuotaByNamespace(namespace string) error io.Closer }
type Node ¶
type Node interface { GetNode(namespace, name string) (*v1.Node, error) CreateNode(namespace string, node *v1.Node) (*v1.Node, error) UpdateNode(namespace string, node *v1.Node) (*v1.Node, error) DeleteNode(namespace, name string) error ListNode(namespace string, listOptions *models.ListOptions) (*models.NodeList, error) }
type Object ¶
type Object interface { IsAccountEnabled() bool ListInternalBuckets(userID string) ([]models.Bucket, error) HeadInternalBucket(userID, bucket string) error CreateInternalBucket(userID, bucket, permission string) error ListInternalBucketObjects(userID, bucket string, params *models.ObjectParams) (*models.ListObjectsResult, error) PutInternalObject(userID, bucket, name string, b []byte) error PutInternalObjectFromURL(userID, bucket, name, url string) error GetInternalObject(userID, bucket, name string) (*models.Object, error) HeadInternalObject(userID, bucket, name string) (*models.ObjectMeta, error) DeleteInternalObject(userID, bucket, name string) error GenInternalObjectURL(userID, bucket, name string) (*models.ObjectURL, error) ListExternalBuckets(info models.ExternalObjectInfo) ([]models.Bucket, error) HeadExternalBucket(info models.ExternalObjectInfo, bucket string) error ListExternalBucketObjects(info models.ExternalObjectInfo, bucket string, params *models.ObjectParams) (*models.ListObjectsResult, error) GenExternalObjectURL(info models.ExternalObjectInfo, bucket, name string) (*models.ObjectURL, error) io.Closer }
Object Object TODO: userID doesn't belong to Object, should in the metedata
type PKI ¶
type PKI interface { // root cert GetRootCertId() string // info : 生成根证书的相关信息 parentId : 上一级根证书id,可为空 CreateRootCert(info *x509.CertificateRequest, parentId string) (string, error) GetRootCert(rootId string) ([]byte, error) DeleteRootCert(rootId string) error // server cert CreateServerCert(csr []byte, rootId string) (string, error) GetServerCert(certId string) ([]byte, error) DeleteServerCert(certId string) error // client cert CreateClientCert(csr []byte, rootId string) (string, error) GetClientCert(certId string) ([]byte, error) DeleteClientCert(certId string) error // close io.Closer }
type PKIStorage ¶
type Property ¶
type Property interface { GetProperty(name string) (*models.Property, error) CreateProperty(property *models.Property) error DeleteProperty(name string) error ListProperty(page *models.Filter) ([]models.Property, error) //Pagination CountProperty(name string) (int, error) UpdateProperty(property *models.Property) error GetPropertyValue(name string) (string, error) io.Closer }
type Resource ¶ added in v2.2.0
type Resource interface { Node Application Configuration Secret Namespace io.Closer }
type Secret ¶
type Secret interface { GetSecret(namespace, name, version string) (*v1.Secret, error) CreateSecret(namespace string, SecretModel *v1.Secret) (*v1.Secret, error) UpdateSecret(namespace string, SecretMapModel *v1.Secret) (*v1.Secret, error) DeleteSecret(namespace, name string) error ListSecret(namespace string, listOptions *models.ListOptions) (*models.SecretList, error) }
type Shadow ¶
type Shadow interface { Get(namespace, name string) (*models.Shadow, error) Create(shadow *models.Shadow) (*models.Shadow, error) Delete(namespace, name string) error UpdateDesire(shadow *models.Shadow) (*models.Shadow, error) UpdateReport(shadow *models.Shadow) (*models.Shadow, error) List(namespace string, nodeList *models.NodeList) (*models.ShadowList, error) io.Closer }
Shadow
type Task ¶ added in v2.1.1
type Task interface { CreateTask(task *models.Task) (sql.Result, error) UpdateTask(task *models.Task) (sql.Result, error) GetTask(traceId string) (*models.Task, error) DeleteTask(traceId string) (sql.Result, error) CountTask(task *models.Task) (int, error) GetTaskTx(tx *sqlx.Tx, traceId string) (*models.Task, error) CreateTaskTx(tx *sqlx.Tx, task *models.Task) (sql.Result, error) UpdateTaskTx(tx *sqlx.Tx, task *models.Task) (sql.Result, error) DeleteTaskTx(tx *sqlx.Tx, traceId string) (sql.Result, error) io.Closer }
Task interface of Task
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
default
|
|
client/clientset/versioned
This package has the automatically generated clientset.
|
This package has the automatically generated clientset. |
client/clientset/versioned/fake
This package has the automatically generated fake clientset.
|
This package has the automatically generated fake clientset. |
client/clientset/versioned/scheme
This package contains the scheme of the automatically generated clientset.
|
This package contains the scheme of the automatically generated clientset. |
client/clientset/versioned/typed/cloud/v1alpha1
This package has the automatically generated typed clients.
|
This package has the automatically generated typed clients. |
client/clientset/versioned/typed/cloud/v1alpha1/fake
Package fake has the automatically generated clients.
|
Package fake has the automatically generated clients. |
link
|
|
Click to show internal directories.
Click to hide internal directories.