Documentation ¶
Index ¶
- Constants
- type Certificate
- type CertificateSearchResponse
- type CertificateStatusErrorInformation
- type Connector
- func (c *Connector) Authenticate(auth *endpoint.Authentication) (err error)
- func (c *Connector) GenerateRequest(config *endpoint.ZoneConfiguration, req *certificate.Request) (err error)
- func (c *Connector) GetType() endpoint.ConnectorType
- func (c *Connector) ImportCertificate(req *certificate.ImportRequest) (*certificate.ImportResponse, error)
- func (c *Connector) Ping() (err error)
- func (c *Connector) ReadPolicyConfiguration(zone string) (policy *endpoint.Policy, err error)
- func (c *Connector) ReadZoneConfiguration(zone string) (config *endpoint.ZoneConfiguration, err error)
- func (c *Connector) Register(email string) (err error)
- func (c *Connector) RenewCertificate(renewReq *certificate.RenewalRequest) (requestID string, err error)
- func (c *Connector) RequestCertificate(req *certificate.Request, zone string) (requestID string, err error)
- func (c *Connector) RetrieveCertificate(req *certificate.Request) (certificates *certificate.PEMCollection, err error)
- func (c *Connector) RevokeCertificate(revReq *certificate.RevocationRequest) (err error)
- func (c *Connector) SetBaseURL(url string) error
- func (c *Connector) SetZone(z string)
- type Expression
- type Field
- type Operand
- type Operator
- type Paging
- type SearchRequest
Constants ¶
const ( EQ Operator = "EQ" FIND = "FIND" GT = "GT" GTE = "GTE" IN = "IN" LT = "LT" LTE = "LTE" MATCH = "MATCH" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Certificate ¶
type CertificateSearchResponse ¶
type CertificateSearchResponse struct { Count int `json:"count"` Certificates []Certificate `json:"certificates"` }
func ParseCertificateSearchResponse ¶
func ParseCertificateSearchResponse(httpStatusCode int, body []byte) (searchResult *CertificateSearchResponse, err error)
type Connector ¶
type Connector struct {
// contains filtered or unexported fields
}
Connector contains the base data needed to communicate with the Venafi Cloud servers
func NewConnector ¶
NewConnector creates a new Venafi Cloud Connector object used to communicate with Venafi Cloud
func (*Connector) Authenticate ¶
func (c *Connector) Authenticate(auth *endpoint.Authentication) (err error)
Authenticate authenticates the user with Venafi Cloud using the provided API Key
func (*Connector) GenerateRequest ¶
func (c *Connector) GenerateRequest(config *endpoint.ZoneConfiguration, req *certificate.Request) (err error)
GenerateRequest generates a CertificateRequest based on the zone configuration, and returns the request along with the private key.
func (*Connector) GetType ¶
func (c *Connector) GetType() endpoint.ConnectorType
func (*Connector) ImportCertificate ¶
func (c *Connector) ImportCertificate(req *certificate.ImportRequest) (*certificate.ImportResponse, error)
func (*Connector) Ping ¶
Ping attempts to connect to the Venafi Cloud API and returns an errror if it cannot
func (*Connector) ReadPolicyConfiguration ¶
func (*Connector) ReadZoneConfiguration ¶
func (c *Connector) ReadZoneConfiguration(zone string) (config *endpoint.ZoneConfiguration, err error)
ReadZoneConfiguration reads the Zone information needed for generating and requesting a certificate from Venafi Cloud
func (*Connector) RenewCertificate ¶
func (c *Connector) RenewCertificate(renewReq *certificate.RenewalRequest) (requestID string, err error)
RenewCertificate attempts to renew the certificate
func (*Connector) RequestCertificate ¶
func (c *Connector) RequestCertificate(req *certificate.Request, zone string) (requestID string, err error)
RequestCertificate submits the CSR to the Venafi Cloud API for processing
func (*Connector) RetrieveCertificate ¶
func (c *Connector) RetrieveCertificate(req *certificate.Request) (certificates *certificate.PEMCollection, err error)
RetrieveCertificate retrieves the certificate for the specified ID
func (*Connector) RevokeCertificate ¶
func (c *Connector) RevokeCertificate(revReq *certificate.RevocationRequest) (err error)
RevokeCertificate attempts to revoke the certificate
func (*Connector) SetBaseURL ¶
SetBaseURL allows overriding the default URL used to communicate with Venafi Cloud
type Expression ¶
type Expression struct {
Operands []Operand `json:"operands,omitempty"`
}
type SearchRequest ¶
type SearchRequest struct { Expression *Expression `json:"expression"` Ordering *interface{} `json:"ordering,omitempty"` Paging *Paging `json:"paging,omitempty"` }