mirror of
https://github.com/rancher/norman.git
synced 2025-06-20 04:31:54 +00:00
122 lines
4.2 KiB
Go
122 lines
4.2 KiB
Go
|
package types
|
||
|
|
||
|
type Collection struct {
|
||
|
Type string `json:"type,omitempty"`
|
||
|
Links map[string]string `json:"links"`
|
||
|
CreateTypes map[string]string `json:"createTypes,omitempty"`
|
||
|
Actions map[string]string `json:"actions"`
|
||
|
Pagination *Pagination `json:"pagination,omitempty"`
|
||
|
Sort *Sort `json:"sort,omitempty"`
|
||
|
Filters map[string][]Condition `json:"filters,omitempty"`
|
||
|
ResourceType string `json:"resourceType"`
|
||
|
}
|
||
|
|
||
|
type GenericCollection struct {
|
||
|
Collection
|
||
|
Data []interface{} `json:"data"`
|
||
|
}
|
||
|
|
||
|
type ResourceCollection struct {
|
||
|
Collection
|
||
|
Data []Resource `json:"data,omitempty"`
|
||
|
}
|
||
|
|
||
|
type SortOrder string
|
||
|
|
||
|
type Sort struct {
|
||
|
Name string `json:"name,omitempty"`
|
||
|
Order SortOrder `json:"order,omitempty"`
|
||
|
Reverse string `json:"reverse,omitempty"`
|
||
|
Links map[string]string `json:"sortLinks,omitempty"`
|
||
|
}
|
||
|
|
||
|
type Condition struct {
|
||
|
Modifier string `json:"modifier,omitempty"`
|
||
|
Value interface{} `json:"value,omitempty"`
|
||
|
}
|
||
|
|
||
|
type Pagination struct {
|
||
|
Marker string `json:"marker,omitempty"`
|
||
|
First string `json:"first,omitempty"`
|
||
|
Previous string `json:"previous,omitempty"`
|
||
|
Next string `json:"next,omitempty"`
|
||
|
Limit *int64 `json:"limit,omitempty"`
|
||
|
Total *int64 `json:"total,omitempty"`
|
||
|
Partial bool `json:"partial,omitempty"`
|
||
|
}
|
||
|
|
||
|
type Resource struct {
|
||
|
ID string `json:"id,omitempty"`
|
||
|
Type string `json:"type,omitempty"`
|
||
|
Links map[string]string `json:"links"`
|
||
|
Actions map[string]string `json:"actions"`
|
||
|
}
|
||
|
|
||
|
type APIVersion struct {
|
||
|
Group string `json:"group,omitempty"`
|
||
|
Version string `json:"version,omitempty"`
|
||
|
Path string `json:"path,omitempty"`
|
||
|
SubContexts map[string]bool `json:"subContext,omitempty"`
|
||
|
}
|
||
|
|
||
|
type Schema struct {
|
||
|
ID string `json:"id,omitempty"`
|
||
|
CodeName string `json:"-"`
|
||
|
Type string `json:"type,omitempty"`
|
||
|
Links map[string]string `json:"links"`
|
||
|
Version APIVersion `json:"version"`
|
||
|
PluralName string `json:"pluralName,omitempty"`
|
||
|
ResourceMethods []string `json:"resourceMethods,omitempty"`
|
||
|
ResourceFields map[string]Field `json:"resourceFields,omitempty"`
|
||
|
ResourceActions map[string]Action `json:"resourceActions,omitempty"`
|
||
|
CollectionMethods []string `json:"collectionMethods,omitempty"`
|
||
|
CollectionFields map[string]Field `json:"collectionFields,omitempty"`
|
||
|
CollectionActions map[string]Action `json:"collectionActions,omitempty"`
|
||
|
CollectionFilters map[string]Filter `json:"collectionFilters,omitempty"`
|
||
|
|
||
|
InternalSchema *Schema `json:"-"`
|
||
|
Mapper Mapper `json:"-"`
|
||
|
ActionHandler ActionHandler `json:"-"`
|
||
|
LinkHandler RequestHandler `json:"-"`
|
||
|
ListHandler RequestHandler `json:"-"`
|
||
|
CreateHandler RequestHandler `json:"-"`
|
||
|
DeleteHandler RequestHandler `json:"-"`
|
||
|
UpdateHandler RequestHandler `json:"-"`
|
||
|
Formatter Formatter `json:"-"`
|
||
|
ErrorHandler ErrorHandler `json:"-"`
|
||
|
Validator Validator `json:"-"`
|
||
|
Store Store `json:"-"`
|
||
|
}
|
||
|
|
||
|
type Field struct {
|
||
|
Type string `json:"type,omitempty"`
|
||
|
Default interface{} `json:"default,omitempty"`
|
||
|
Nullable bool `json:"nullable,omitempty"`
|
||
|
Create bool `json:"create,omitempty"`
|
||
|
WriteOnly bool `json:"writeOnly,omitempty"`
|
||
|
Required bool `json:"required,omitempty"`
|
||
|
Update bool `json:"update,omitempty"`
|
||
|
MinLength *int64 `json:"minLength,omitempty"`
|
||
|
MaxLength *int64 `json:"maxLength,omitempty"`
|
||
|
Min *int64 `json:"min,omitempty"`
|
||
|
Max *int64 `json:"max,omitempty"`
|
||
|
Options []string `json:"options,omitempty"`
|
||
|
ValidChars string `json:"validChars,omitempty"`
|
||
|
InvalidChars string `json:"invalidChars,omitempty"`
|
||
|
Description string `json:"description,omitempty"`
|
||
|
CodeName string `json:"-"`
|
||
|
}
|
||
|
|
||
|
type Action struct {
|
||
|
Input string `json:"input,omitempty"`
|
||
|
Output string `json:"output,omitempty"`
|
||
|
}
|
||
|
|
||
|
type Filter struct {
|
||
|
Modifiers []string `json:"modifiers,omitempty"`
|
||
|
}
|
||
|
|
||
|
type ListOpts struct {
|
||
|
Filters map[string]interface{}
|
||
|
}
|