2022-12-14 07:26:51 +00:00
|
|
|
package request
|
|
|
|
|
|
|
|
import "github.com/1Panel-dev/1Panel/backend/app/dto"
|
|
|
|
|
|
|
|
type WebsiteSSLSearch struct {
|
|
|
|
dto.PageInfo
|
2023-07-13 06:17:18 +00:00
|
|
|
AcmeAccountID string `json:"acmeAccountID"`
|
2022-12-14 07:26:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type WebsiteSSLCreate struct {
|
|
|
|
PrimaryDomain string `json:"primaryDomain" validate:"required"`
|
|
|
|
OtherDomains string `json:"otherDomains"`
|
|
|
|
Provider string `json:"provider" validate:"required"`
|
|
|
|
AcmeAccountID uint `json:"acmeAccountId" validate:"required"`
|
|
|
|
DnsAccountID uint `json:"dnsAccountId"`
|
2023-01-04 03:44:43 +00:00
|
|
|
AutoRenew bool `json:"autoRenew" validate:"required"`
|
2022-12-14 07:26:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type WebsiteDNSReq struct {
|
|
|
|
Domains []string `json:"domains" validate:"required"`
|
|
|
|
AcmeAccountID uint `json:"acmeAccountId" validate:"required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type WebsiteSSLRenew struct {
|
|
|
|
SSLID uint `json:"SSLId" validate:"required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type WebsiteAcmeAccountCreate struct {
|
|
|
|
Email string `json:"email" validate:"required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type WebsiteDnsAccountCreate struct {
|
|
|
|
Name string `json:"name" validate:"required"`
|
|
|
|
Type string `json:"type" validate:"required"`
|
|
|
|
Authorization map[string]string `json:"authorization" validate:"required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type WebsiteDnsAccountUpdate struct {
|
|
|
|
ID uint `json:"id" validate:"required"`
|
|
|
|
Name string `json:"name" validate:"required"`
|
|
|
|
Type string `json:"type" validate:"required"`
|
|
|
|
Authorization map[string]string `json:"authorization" validate:"required"`
|
|
|
|
}
|
2022-12-22 02:30:32 +00:00
|
|
|
|
|
|
|
type WebsiteResourceReq struct {
|
|
|
|
ID uint `json:"id" validate:"required"`
|
|
|
|
}
|
2023-03-21 06:42:50 +00:00
|
|
|
|
|
|
|
type WebsiteSSLUpdate struct {
|
|
|
|
ID uint `json:"id" validate:"required"`
|
|
|
|
AutoRenew bool `json:"autoRenew" validate:"required"`
|
|
|
|
}
|