service_dto

package
v1.9.4-beta Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 26, 2025 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AILogInfo

type AILogInfo struct {
	Id               string          `json:"id"`
	API              auto.Label      `json:"api" aolabel:"api"`
	Consumer         auto.Label      `json:"consumer" aolabel:"service"`
	IsSystemConsumer bool            `json:"is_system_consumer"`
	Status           int64           `json:"status"`
	Ip               string          `json:"ip"`
	Provider         auto.Label      `json:"provider" aolabel:"ai_provider"`
	Model            string          `json:"model"`
	LogTime          auto.TimeLabel  `json:"log_time"`
	Request          OriginAIRequest `json:"request"`
	Response         OriginAIRequest `json:"response"`
}

type AILogItem

type AILogItem struct {
	Id             string         `json:"id"`
	API            auto.Label     `json:"api" aolabel:"api"`
	Status         int64          `json:"status"`
	LogTime        auto.TimeLabel `json:"log_time"`
	Ip             string         `json:"ip"`
	Token          int64          `json:"token"`
	TokenPerSecond int64          `json:"token_per_second"`
	Consumer       auto.Label     `json:"consumer" aolabel:"service"`
	Provider       auto.Label     `json:"provider" aolabel:"ai_provider"`
	Model          string         `json:"model"`
}

type App

type App struct {
	Id          string         `json:"id"`
	Name        string         `json:"name"`
	Description string         `json:"description"`
	Team        auto.Label     `json:"team" aolabel:"team"`
	CreateTime  auto.TimeLabel `json:"create_time"`
	UpdateTime  auto.TimeLabel `json:"update_time"`
	AsApp       bool           `json:"as_app"`
}

type AppItem

type AppItem struct {
	Id                 string         `json:"id"`
	Name               string         `json:"name"`
	Team               auto.Label     `json:"team" aolabel:"team"`
	SubscribeNum       int64          `json:"subscribe_num"`
	SubscribeVerifyNum int64          `json:"subscribe_verify_num"`
	AuthNum            int64          `json:"auth_num"`
	Description        string         `json:"description"`
	CreateTime         auto.TimeLabel `json:"create_time"`
	UpdateTime         auto.TimeLabel `json:"update_time"`
	CanDelete          bool           `json:"can_delete"`
}

type CreateApp

type CreateApp struct {
	Id          string `json:"id"`
	Name        string `json:"name"`
	Description string `json:"description"`
}

type CreateService

type CreateService struct {
	Id           string   `json:"id"`
	Name         string   `json:"name"`
	Prefix       string   `json:"prefix"`
	Description  string   `json:"description"`
	ServiceType  string   `json:"service_type"`
	Tags         []string `json:"tags"`
	Catalogue    string   `json:"catalogue"`
	ApprovalType string   `json:"approval_type"`
	Kind         string   `json:"service_kind"`
	State        string   `json:"state"`
	Provider     *string  `json:"provider"`
	Model        *string  `json:"model"`
	AsApp        *bool    `json:"as_app"`
	AsServer     *bool    `json:"as_server"`
	ModelMapping string   `json:"model_mapping"`
	EnableMCP    bool     `json:"enable_mcp"`
}

type EditMemberRole

type EditMemberRole struct {
	Roles []string `json:"roles"`
}

type EditProjectMember

type EditProjectMember struct {
	Roles []string `json:"roles" aocheck:"role"`
}

type EditService

type EditService struct {
	Name         *string   `json:"name"`
	Description  *string   `json:"description"`
	ServiceType  *string   `json:"service_type"`
	Prefix       *string   `json:"prefix"`
	Catalogue    *string   `json:"catalogue"`
	Tags         *[]string `json:"tags"`
	Provider     *string   `json:"provider"`
	Model        *string   `json:"model"`
	ApprovalType *string   `json:"approval_type"`
	State        *string   `json:"state"`
	ModelMapping *string   `json:"model_mapping"`
	EnableMCP    *bool     `json:"enable_mcp"`
}

type ExportApp

type ExportApp struct {
	Id          string `json:"id"`
	Name        string `json:"name"`
	Description string `json:"description"`
	Team        string `json:"team"`
}

type ExportService

type ExportService struct {
	Id           string   `json:"id"`
	Name         string   `json:"name"`
	Prefix       string   `json:"prefix,omitempty"`
	Description  string   `json:"description"`
	Team         string   `json:"team"`
	ServiceType  string   `json:"service_type"`
	Catalogue    string   `json:"catalogue"`
	Tags         []string `json:"tags"`
	Doc          string   `json:"doc"`
	ModelMapping string   `json:"model_mapping"`
}

type MemberItem

type MemberItem struct {
	User      auto.Label   `json:"user" aolabel:"user"`
	Email     string       `json:"email"`
	Roles     []auto.Label `json:"roles" aolabel:"role"`
	CanDelete bool         `json:"can_delete"`
}

type OriginAIRequest

type OriginAIRequest struct {
	OriginRequest
	Token int64 `json:"token"`
}

type OriginRequest

type OriginRequest struct {
	Header string `json:"header"`
	Origin string `json:"origin"`
	Body   string `json:"body"`
}

type Overview

type Overview struct {
	Id               string     `json:"id"`
	Name             string     `json:"name"`
	Description      string     `json:"description"`
	EnableMCP        bool       `json:"enable_mcp"`
	ServiceKind      string     `json:"service_kind"`
	SubscriberNum    int64      `json:"subscriber_num"`
	InvokeNum        int64      `json:"invoke_num"`
	AvailableMonitor bool       `json:"available_monitor"`
	IsReleased       bool       `json:"is_released"`
	Catalogue        auto.Label `json:"catalogue" aolabel:"catalogue"`
	APINum           int64      `json:"api_num"`
}

type QuickCreateAIService

type QuickCreateAIService struct {
	Provider string `json:"provider"`
	Model    string `json:"model"`
	Config   string `json:"config"`
	Team     string `json:"team"`
}

type RestLogInfo

type RestLogInfo struct {
	Id               string         `json:"id"`
	API              auto.Label     `json:"api" aolabel:"api"`
	Consumer         auto.Label     `json:"consumer" aolabel:"service"`
	IsSystemConsumer bool           `json:"is_system_consumer"`
	Status           int64          `json:"status"`
	Ip               string         `json:"ip"`
	ResponseTime     string         `json:"response_time"`
	Traffic          string         `json:"traffic"`
	LogTime          auto.TimeLabel `json:"log_time"`
	Request          OriginRequest  `json:"request"`
	Response         OriginRequest  `json:"response"`
}

type RestLogItem

type RestLogItem struct {
	Id           string         `json:"id"`
	API          auto.Label     `json:"api" aolabel:"api"`
	Status       int64          `json:"status"`
	LogTime      auto.TimeLabel `json:"log_time"`
	Ip           string         `json:"ip"`
	Consumer     auto.Label     `json:"consumer" aolabel:"service"`
	ResponseTime string         `json:"response_time"`
	Traffic      string         `json:"traffic"`
}

type SaveServiceDoc

type SaveServiceDoc struct {
	Doc string `json:"doc"`
}

type Service

type Service struct {
	Id           string         `json:"id"`
	Name         string         `json:"name"`
	Prefix       string         `json:"prefix,omitempty"`
	Description  string         `json:"description"`
	Team         auto.Label     `json:"team" aolabel:"team"`
	CreateTime   auto.TimeLabel `json:"create_time"`
	UpdateTime   auto.TimeLabel `json:"update_time"`
	ServiceType  string         `json:"service_type"`
	Catalogue    auto.Label     `json:"catalogue" aolabel:"catalogue"`
	Tags         []auto.Label   `json:"tags" aolabel:"tag"`
	Provider     *auto.Label    `json:"provider,omitempty" aolabel:"ai_provider"`
	ProviderType string         `json:"provider_type,omitempty"`
	Model        string         `json:"model,omitempty"`
	ApprovalType string         `json:"approval_type"`
	ServiceKind  string         `json:"service_kind"`
	State        string         `json:"state"`
	ModelMapping string         `json:"model_mapping"`
	AsServer     bool           `json:"as_server"`
	AsApp        bool           `json:"as_app"`
	EnableMCP    bool           `json:"enable_mcp"`
}

func ToService

func ToService(model *service.Service) *Service

type ServiceDoc

type ServiceDoc struct {
	Id         string         `json:"id"`
	Name       string         `json:"name"`
	Doc        string         `json:"doc"`
	Creator    auto.Label     `json:"creator" aolabel:"user"`
	CreateTime auto.TimeLabel `json:"create_time"`
	Updater    auto.Label     `json:"updater" aolabel:"user"`
	UpdateTime auto.TimeLabel `json:"update_time"`
}

type ServiceItem

type ServiceItem struct {
	Id          string         `json:"id"`
	Name        string         `json:"name"`
	Team        auto.Label     `json:"team" aolabel:"team"`
	ServiceKind string         `json:"service_kind"`
	ApiNum      int64          `json:"api_num"`
	Description string         `json:"description"`
	CreateTime  auto.TimeLabel `json:"create_time"`
	UpdateTime  auto.TimeLabel `json:"update_time"`
	Provider    *auto.Label    `json:"provider,omitempty" aolabel:"ai_provider"`
	State       string         `json:"state"`
	CanDelete   bool           `json:"can_delete"`
	EnableMCP   bool           `json:"enable_mcp"`
}

type ServiceState

type ServiceState string
const (
	ServiceStateNormal      ServiceState = "normal"
	ServiceStateDeploying   ServiceState = "deploying"
	ServiceStateDeployError ServiceState = "error"
)

func FromServiceState

func FromServiceState(s int) ServiceState

func (ServiceState) Int

func (s ServiceState) Int() int

func (ServiceState) String

func (s ServiceState) String() string

type SimpleAppItem

type SimpleAppItem struct {
	Id          string     `json:"id"`
	Name        string     `json:"name"`
	Team        auto.Label `json:"team" aolabel:"team"`
	Description string     `json:"description"`
}

type SimpleMemberItem

type SimpleMemberItem struct {
	Id   string `json:"id"`
	Name string `json:"name"`
}

type SimpleServiceItem

type SimpleServiceItem struct {
	Id          string     `json:"id"`
	Name        string     `json:"name"`
	Team        auto.Label `json:"team" aolabel:"team"`
	Description string     `json:"description"`
}

type SubscribeAppItem

type SubscribeAppItem struct {
	Id           string `json:"id"`
	Name         string `json:"name"`
	IsSubscribed bool   `json:"is_subscribed"`
}

type TeamMemberToAdd

type TeamMemberToAdd struct {
	Id         string     `json:"id,omitempty"`
	Name       string     `json:"name,omitempty"`
	Email      string     `json:"email,omitempty"`
	Department auto.Label `json:"department" aolabel:"department"`
}

type UpdateApp

type UpdateApp struct {
	Name        *string `json:"name"`
	Description *string `json:"description"`
}

type Users

type Users struct {
	Users []string `json:"users" aocheck:"user"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL