requests

package
v2.2.27 Latest Latest
Warning

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

Go to latest
Published: Jul 28, 2024 License: AGPL-3.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 CertDeploy

type CertDeploy struct {
	ID        uint `form:"id" json:"id"`
	WebsiteID uint `form:"website_id" json:"website_id"`
}

func (*CertDeploy) Attributes

func (r *CertDeploy) Attributes(ctx http.Context) map[string]string

func (*CertDeploy) Authorize

func (r *CertDeploy) Authorize(ctx http.Context) error

func (*CertDeploy) Filters

func (r *CertDeploy) Filters(ctx http.Context) map[string]string

func (*CertDeploy) Messages

func (r *CertDeploy) Messages(ctx http.Context) map[string]string

func (*CertDeploy) PrepareForValidation

func (r *CertDeploy) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*CertDeploy) Rules

func (r *CertDeploy) Rules(ctx http.Context) map[string]string

type CertShowAndDestroy

type CertShowAndDestroy struct {
	ID uint `form:"id" json:"id"`
}

func (*CertShowAndDestroy) Attributes

func (r *CertShowAndDestroy) Attributes(ctx http.Context) map[string]string

func (*CertShowAndDestroy) Authorize

func (r *CertShowAndDestroy) Authorize(ctx http.Context) error

func (*CertShowAndDestroy) Filters

func (r *CertShowAndDestroy) Filters(ctx http.Context) map[string]string

func (*CertShowAndDestroy) Messages

func (r *CertShowAndDestroy) Messages(ctx http.Context) map[string]string

func (*CertShowAndDestroy) PrepareForValidation

func (r *CertShowAndDestroy) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*CertShowAndDestroy) Rules

func (r *CertShowAndDestroy) Rules(ctx http.Context) map[string]string

type CertStore

type CertStore struct {
	Type      string   `form:"type" json:"type"`
	Domains   []string `form:"domains" json:"domains"`
	AutoRenew bool     `form:"auto_renew" json:"auto_renew"`
	UserID    uint     `form:"user_id" json:"user_id"`
	DNSID     uint     `form:"dns_id" json:"dns_id"`
	WebsiteID uint     `form:"website_id" json:"website_id"`
}

func (*CertStore) Attributes

func (r *CertStore) Attributes(ctx http.Context) map[string]string

func (*CertStore) Authorize

func (r *CertStore) Authorize(ctx http.Context) error

func (*CertStore) Filters

func (r *CertStore) Filters(ctx http.Context) map[string]string

func (*CertStore) Messages

func (r *CertStore) Messages(ctx http.Context) map[string]string

func (*CertStore) PrepareForValidation

func (r *CertStore) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*CertStore) Rules

func (r *CertStore) Rules(ctx http.Context) map[string]string

type CertUpdate

type CertUpdate struct {
	ID        uint     `form:"id" json:"id"`
	Type      string   `form:"type" json:"type"`
	Domains   []string `form:"domains" json:"domains"`
	AutoRenew bool     `form:"auto_renew" json:"auto_renew"`
	UserID    uint     `form:"user_id" json:"user_id"`
	DNSID     uint     `form:"dns_id" json:"dns_id"`
	WebsiteID uint     `form:"website_id" json:"website_id"`
}

func (*CertUpdate) Attributes

func (r *CertUpdate) Attributes(ctx http.Context) map[string]string

func (*CertUpdate) Authorize

func (r *CertUpdate) Authorize(ctx http.Context) error

func (*CertUpdate) Filters

func (r *CertUpdate) Filters(ctx http.Context) map[string]string

func (*CertUpdate) Messages

func (r *CertUpdate) Messages(ctx http.Context) map[string]string

func (*CertUpdate) PrepareForValidation

func (r *CertUpdate) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*CertUpdate) Rules

func (r *CertUpdate) Rules(ctx http.Context) map[string]string

type DNSShowAndDestroy

type DNSShowAndDestroy struct {
	ID uint `form:"id" json:"id"`
}

func (*DNSShowAndDestroy) Attributes

func (r *DNSShowAndDestroy) Attributes(ctx http.Context) map[string]string

func (*DNSShowAndDestroy) Authorize

func (r *DNSShowAndDestroy) Authorize(ctx http.Context) error

func (*DNSShowAndDestroy) Filters

func (r *DNSShowAndDestroy) Filters(ctx http.Context) map[string]string

func (*DNSShowAndDestroy) Messages

func (r *DNSShowAndDestroy) Messages(ctx http.Context) map[string]string

func (*DNSShowAndDestroy) PrepareForValidation

func (r *DNSShowAndDestroy) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*DNSShowAndDestroy) Rules

func (r *DNSShowAndDestroy) Rules(ctx http.Context) map[string]string

type DNSStore

type DNSStore struct {
	Type string        `form:"type" json:"type"`
	Name string        `form:"name" json:"name"`
	Data acme.DNSParam `form:"data" json:"data"`
}

func (*DNSStore) Attributes

func (r *DNSStore) Attributes(ctx http.Context) map[string]string

func (*DNSStore) Authorize

func (r *DNSStore) Authorize(ctx http.Context) error

func (*DNSStore) Filters

func (r *DNSStore) Filters(ctx http.Context) map[string]string

func (*DNSStore) Messages

func (r *DNSStore) Messages(ctx http.Context) map[string]string

func (*DNSStore) PrepareForValidation

func (r *DNSStore) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*DNSStore) Rules

func (r *DNSStore) Rules(ctx http.Context) map[string]string

type DNSUpdate

type DNSUpdate struct {
	ID   uint          `form:"id" json:"id"`
	Type string        `form:"type" json:"type"`
	Name string        `form:"name" json:"name"`
	Data acme.DNSParam `form:"data" json:"data"`
}

func (*DNSUpdate) Attributes

func (r *DNSUpdate) Attributes(ctx http.Context) map[string]string

func (*DNSUpdate) Authorize

func (r *DNSUpdate) Authorize(ctx http.Context) error

func (*DNSUpdate) Filters

func (r *DNSUpdate) Filters(ctx http.Context) map[string]string

func (*DNSUpdate) Messages

func (r *DNSUpdate) Messages(ctx http.Context) map[string]string

func (*DNSUpdate) PrepareForValidation

func (r *DNSUpdate) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*DNSUpdate) Rules

func (r *DNSUpdate) Rules(ctx http.Context) map[string]string

type Obtain

type Obtain struct {
	ID uint `form:"id" json:"id"`
}

func (*Obtain) Attributes

func (r *Obtain) Attributes(ctx http.Context) map[string]string

func (*Obtain) Authorize

func (r *Obtain) Authorize(ctx http.Context) error

func (*Obtain) Filters

func (r *Obtain) Filters(ctx http.Context) map[string]string

func (*Obtain) Messages

func (r *Obtain) Messages(ctx http.Context) map[string]string

func (*Obtain) PrepareForValidation

func (r *Obtain) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*Obtain) Rules

func (r *Obtain) Rules(ctx http.Context) map[string]string

type Renew

type Renew struct {
	ID uint `form:"id" json:"id"`
}

func (*Renew) Attributes

func (r *Renew) Attributes(ctx http.Context) map[string]string

func (*Renew) Authorize

func (r *Renew) Authorize(ctx http.Context) error

func (*Renew) Filters

func (r *Renew) Filters(ctx http.Context) map[string]string

func (*Renew) Messages

func (r *Renew) Messages(ctx http.Context) map[string]string

func (*Renew) PrepareForValidation

func (r *Renew) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*Renew) Rules

func (r *Renew) Rules(ctx http.Context) map[string]string

type UserShowAndDestroy

type UserShowAndDestroy struct {
	ID uint `form:"id" json:"id"`
}

func (*UserShowAndDestroy) Attributes

func (r *UserShowAndDestroy) Attributes(ctx http.Context) map[string]string

func (*UserShowAndDestroy) Authorize

func (r *UserShowAndDestroy) Authorize(ctx http.Context) error

func (*UserShowAndDestroy) Filters

func (r *UserShowAndDestroy) Filters(ctx http.Context) map[string]string

func (*UserShowAndDestroy) Messages

func (r *UserShowAndDestroy) Messages(ctx http.Context) map[string]string

func (*UserShowAndDestroy) PrepareForValidation

func (r *UserShowAndDestroy) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*UserShowAndDestroy) Rules

func (r *UserShowAndDestroy) Rules(ctx http.Context) map[string]string

type UserStore

type UserStore struct {
	CA          string `form:"ca" json:"ca"`
	Email       string `form:"email" json:"email"`
	Kid         string `form:"kid" json:"kid"`
	HmacEncoded string `form:"hmac_encoded" json:"hmac_encoded"`
	KeyType     string `form:"key_type" json:"key_type"`
}

func (*UserStore) Attributes

func (r *UserStore) Attributes(ctx http.Context) map[string]string

func (*UserStore) Authorize

func (r *UserStore) Authorize(ctx http.Context) error

func (*UserStore) Filters

func (r *UserStore) Filters(ctx http.Context) map[string]string

func (*UserStore) Messages

func (r *UserStore) Messages(ctx http.Context) map[string]string

func (*UserStore) PrepareForValidation

func (r *UserStore) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*UserStore) Rules

func (r *UserStore) Rules(ctx http.Context) map[string]string

type UserUpdate

type UserUpdate struct {
	ID          uint   `form:"id" json:"id"`
	CA          string `form:"ca" json:"ca"`
	Email       string `form:"email" json:"email"`
	Kid         string `form:"kid" json:"kid"`
	HmacEncoded string `form:"hmac_encoded" json:"hmac_encoded"`
	KeyType     string `form:"key_type" json:"key_type"`
}

func (*UserUpdate) Attributes

func (r *UserUpdate) Attributes(ctx http.Context) map[string]string

func (*UserUpdate) Authorize

func (r *UserUpdate) Authorize(ctx http.Context) error

func (*UserUpdate) Filters

func (r *UserUpdate) Filters(ctx http.Context) map[string]string

func (*UserUpdate) Messages

func (r *UserUpdate) Messages(ctx http.Context) map[string]string

func (*UserUpdate) PrepareForValidation

func (r *UserUpdate) PrepareForValidation(ctx http.Context, data validation.Data) error

func (*UserUpdate) Rules

func (r *UserUpdate) Rules(ctx http.Context) map[string]string

Jump to

Keyboard shortcuts

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