Documentation ¶
Index ¶
- type RegisterEABOptions
- type RegisterOptions
- type Registrar
- func (r *Registrar) DeleteRegistration() error
- func (r *Registrar) QueryRegistration() (*Resource, error)
- func (r *Registrar) Register(options RegisterOptions) (*Resource, error)
- func (r *Registrar) RegisterWithExternalAccountBinding(options RegisterEABOptions) (*Resource, error)
- func (r *Registrar) ResolveAccountByKey() (*Resource, error)
- func (r *Registrar) UpdateRegistration(options RegisterOptions) (*Resource, error)
- type Resource
- type User
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RegisterEABOptions ¶
type RegisterOptions ¶
type RegisterOptions struct {
TermsOfServiceAgreed bool
}
type Registrar ¶
type Registrar struct {
// contains filtered or unexported fields
}
func (*Registrar) DeleteRegistration ¶
DeleteRegistration deletes the client's user registration from the ACME server.
func (*Registrar) QueryRegistration ¶
QueryRegistration runs a POST request on the client's registration and returns the result.
This is similar to the Register function, but acting on an existing registration link and resource.
func (*Registrar) Register ¶
func (r *Registrar) Register(options RegisterOptions) (*Resource, error)
Register the current account to the ACME server.
func (*Registrar) RegisterWithExternalAccountBinding ¶
func (r *Registrar) RegisterWithExternalAccountBinding(options RegisterEABOptions) (*Resource, error)
RegisterWithExternalAccountBinding Register the current account to the ACME server.
func (*Registrar) ResolveAccountByKey ¶
ResolveAccountByKey will attempt to look up an account using the given account key and return its registration resource.
func (*Registrar) UpdateRegistration ¶ added in v3.3.0
func (r *Registrar) UpdateRegistration(options RegisterOptions) (*Resource, error)
UpdateRegistration update the user registration on the ACME server.
type Resource ¶
type Resource struct { Body acme.Account `json:"body,omitempty"` URI string `json:"uri,omitempty"` }
Resource represents all important information about a registration of which the client needs to keep track itself. WARNING: will be remove in the future (acme.ExtendedAccount), https://github.com/go-acme/lego/issues/855.