certificates

package
v0.2.4 Latest Latest
Warning

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

Go to latest
Published: Mar 11, 2024 License: BSD-2-Clause Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client for certificates API

func (*Client) ConfigureCertificateAuthority

func (a *Client) ConfigureCertificateAuthority(params *ConfigureCertificateAuthorityParams, opts ...ClientOption) (*ConfigureCertificateAuthorityOK, error)

ConfigureCertificateAuthority configures existing certificate authority

Configure existing certificate authority

func (*Client) CreateCertificateAuthority

func (a *Client) CreateCertificateAuthority(params *CreateCertificateAuthorityParams, opts ...ClientOption) (*CreateCertificateAuthorityOK, error)

CreateCertificateAuthority creates a certificate authority

Creates a certificate authority. This is required to generate signed certificates by supporting CAs.

func (*Client) DeleteCaConfiguration

DeleteCaConfiguration deletes c a configuration file

Deletes CA configuration file

func (*Client) DownloadCSR

func (a *Client) DownloadCSR(params *DownloadCSRParams, opts ...ClientOption) (*DownloadCSROK, error)

DownloadCSR downloads available CSR s in tar gz format

Download available CSR(s) in tar.gz format

func (*Client) GenerateCertificates

GenerateCertificates generates certificate s for the selected resource s in a domain

Generate certificate(s) for the selected resource(s) in a domain. CA must be configured and CSR must be generated beforehand.

func (*Client) GeneratesCSRs

func (a *Client) GeneratesCSRs(params *GeneratesCSRsParams, opts ...ClientOption) (*GeneratesCSRsOK, *GeneratesCSRsAccepted, error)
GeneratesCSRs generates CSR s

Generate CSR(s) for the selected resource(s) in the domain.

*Warning:* _Avoid using wildcard certificates. Instead, use subdomain-specific certificates that are rotated often. A compromised wildcard certificate can lead to security repercussions_

func (*Client) GetCSRs added in v0.1.1

func (a *Client) GetCSRs(params *GetCSRsParams, opts ...ClientOption) (*GetCSRsOK, error)

GetCSRs gets available CSR s in json format

Get available CSR(s) in json format

func (*Client) GetCertificateAuthorities added in v0.1.1

func (a *Client) GetCertificateAuthorities(params *GetCertificateAuthoritiesParams, opts ...ClientOption) (*GetCertificateAuthoritiesOK, error)

GetCertificateAuthorities gets certificate authorities information

Get certificate authorities information

func (*Client) GetCertificateAuthorityByID added in v0.1.1

func (a *Client) GetCertificateAuthorityByID(params *GetCertificateAuthorityByIDParams, opts ...ClientOption) (*GetCertificateAuthorityByIDOK, error)

GetCertificateAuthorityByID gets certificate authority information

Get certificate authority information

func (*Client) GetCertificates added in v0.1.1

func (a *Client) GetCertificates(params *GetCertificatesParams, opts ...ClientOption) (*GetCertificatesOK, error)

GetCertificates gets latest generated certificate s in a domain

Get latest generated certificate(s) in a domain.

func (*Client) GetResourceCertificatesValidationResult added in v0.2.0

func (a *Client) GetResourceCertificatesValidationResult(params *GetResourceCertificatesValidationResultParams, opts ...ClientOption) (*GetResourceCertificatesValidationResultOK, error)

GetResourceCertificatesValidationResult gets the resource certificate validation result

Get the resource certificate validation result

func (*Client) ReplaceCertificates

ReplaceCertificates replaces certificate s for the selected resource s in a domain

Replace certificate(s) for the selected resource(s) in a domain

func (*Client) ReplaceResourceCertificates added in v0.2.0

ReplaceResourceCertificates replaces resource certificates

Replace resource certificates

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

func (*Client) UploadCertificates

func (a *Client) UploadCertificates(params *UploadCertificatesParams, opts ...ClientOption) (*UploadCertificatesOK, error)

UploadCertificates uploads certificates to the certificate store

Upload certificates to the certificate store

func (*Client) ValidateResourceCertificates added in v0.2.0

ValidateResourceCertificates validates resource certificates

Validate resource certificates

func (*Client) ViewCertificate

func (a *Client) ViewCertificate(params *ViewCertificateParams, opts ...ClientOption) (*ViewCertificateOK, error)

ViewCertificate views certificate of all the resources in a domain

View detailed metadata about the certificate(s) of all the resources in a domain

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	DeleteCaConfiguration(params *DeleteCaConfigurationParams, opts ...ClientOption) (*DeleteCaConfigurationOK, *DeleteCaConfigurationNoContent, error)

	ConfigureCertificateAuthority(params *ConfigureCertificateAuthorityParams, opts ...ClientOption) (*ConfigureCertificateAuthorityOK, error)

	CreateCertificateAuthority(params *CreateCertificateAuthorityParams, opts ...ClientOption) (*CreateCertificateAuthorityOK, error)

	DownloadCSR(params *DownloadCSRParams, opts ...ClientOption) (*DownloadCSROK, error)

	GenerateCertificates(params *GenerateCertificatesParams, opts ...ClientOption) (*GenerateCertificatesOK, *GenerateCertificatesAccepted, error)

	GeneratesCSRs(params *GeneratesCSRsParams, opts ...ClientOption) (*GeneratesCSRsOK, *GeneratesCSRsAccepted, error)

	GetCSRs(params *GetCSRsParams, opts ...ClientOption) (*GetCSRsOK, error)

	GetCertificateAuthorities(params *GetCertificateAuthoritiesParams, opts ...ClientOption) (*GetCertificateAuthoritiesOK, error)

	GetCertificateAuthorityByID(params *GetCertificateAuthorityByIDParams, opts ...ClientOption) (*GetCertificateAuthorityByIDOK, error)

	GetCertificates(params *GetCertificatesParams, opts ...ClientOption) (*GetCertificatesOK, error)

	GetResourceCertificatesValidationResult(params *GetResourceCertificatesValidationResultParams, opts ...ClientOption) (*GetResourceCertificatesValidationResultOK, error)

	ReplaceCertificates(params *ReplaceCertificatesParams, opts ...ClientOption) (*ReplaceCertificatesOK, *ReplaceCertificatesAccepted, error)

	ReplaceResourceCertificates(params *ReplaceResourceCertificatesParams, opts ...ClientOption) (*ReplaceResourceCertificatesOK, *ReplaceResourceCertificatesAccepted, error)

	UploadCertificates(params *UploadCertificatesParams, opts ...ClientOption) (*UploadCertificatesOK, error)

	ValidateResourceCertificates(params *ValidateResourceCertificatesParams, opts ...ClientOption) (*ValidateResourceCertificatesOK, *ValidateResourceCertificatesCreated, error)

	ViewCertificate(params *ViewCertificateParams, opts ...ClientOption) (*ViewCertificateOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new certificates API client.

type ConfigureCertificateAuthorityBadRequest

type ConfigureCertificateAuthorityBadRequest struct {
	Payload *models.Error
}

ConfigureCertificateAuthorityBadRequest describes a response with status code 400, with default header values.

Bad request

func NewConfigureCertificateAuthorityBadRequest

func NewConfigureCertificateAuthorityBadRequest() *ConfigureCertificateAuthorityBadRequest

NewConfigureCertificateAuthorityBadRequest creates a ConfigureCertificateAuthorityBadRequest with default headers values

func (*ConfigureCertificateAuthorityBadRequest) Error

func (*ConfigureCertificateAuthorityBadRequest) GetPayload

func (*ConfigureCertificateAuthorityBadRequest) IsClientError

func (o *ConfigureCertificateAuthorityBadRequest) IsClientError() bool

IsClientError returns true when this configure certificate authority bad request response has a 4xx status code

func (*ConfigureCertificateAuthorityBadRequest) IsCode

IsCode returns true when this configure certificate authority bad request response a status code equal to that given

func (*ConfigureCertificateAuthorityBadRequest) IsRedirect

IsRedirect returns true when this configure certificate authority bad request response has a 3xx status code

func (*ConfigureCertificateAuthorityBadRequest) IsServerError

func (o *ConfigureCertificateAuthorityBadRequest) IsServerError() bool

IsServerError returns true when this configure certificate authority bad request response has a 5xx status code

func (*ConfigureCertificateAuthorityBadRequest) IsSuccess

IsSuccess returns true when this configure certificate authority bad request response has a 2xx status code

func (*ConfigureCertificateAuthorityBadRequest) String

type ConfigureCertificateAuthorityInternalServerError

type ConfigureCertificateAuthorityInternalServerError struct {
	Payload *models.Error
}

ConfigureCertificateAuthorityInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewConfigureCertificateAuthorityInternalServerError

func NewConfigureCertificateAuthorityInternalServerError() *ConfigureCertificateAuthorityInternalServerError

NewConfigureCertificateAuthorityInternalServerError creates a ConfigureCertificateAuthorityInternalServerError with default headers values

func (*ConfigureCertificateAuthorityInternalServerError) Error

func (*ConfigureCertificateAuthorityInternalServerError) GetPayload

func (*ConfigureCertificateAuthorityInternalServerError) IsClientError

IsClientError returns true when this configure certificate authority internal server error response has a 4xx status code

func (*ConfigureCertificateAuthorityInternalServerError) IsCode

IsCode returns true when this configure certificate authority internal server error response a status code equal to that given

func (*ConfigureCertificateAuthorityInternalServerError) IsRedirect

IsRedirect returns true when this configure certificate authority internal server error response has a 3xx status code

func (*ConfigureCertificateAuthorityInternalServerError) IsServerError

IsServerError returns true when this configure certificate authority internal server error response has a 5xx status code

func (*ConfigureCertificateAuthorityInternalServerError) IsSuccess

IsSuccess returns true when this configure certificate authority internal server error response has a 2xx status code

func (*ConfigureCertificateAuthorityInternalServerError) String

type ConfigureCertificateAuthorityNotFound

type ConfigureCertificateAuthorityNotFound struct {
	Payload *models.Error
}

ConfigureCertificateAuthorityNotFound describes a response with status code 404, with default header values.

Not Found

func NewConfigureCertificateAuthorityNotFound

func NewConfigureCertificateAuthorityNotFound() *ConfigureCertificateAuthorityNotFound

NewConfigureCertificateAuthorityNotFound creates a ConfigureCertificateAuthorityNotFound with default headers values

func (*ConfigureCertificateAuthorityNotFound) Error

func (*ConfigureCertificateAuthorityNotFound) GetPayload

func (*ConfigureCertificateAuthorityNotFound) IsClientError

func (o *ConfigureCertificateAuthorityNotFound) IsClientError() bool

IsClientError returns true when this configure certificate authority not found response has a 4xx status code

func (*ConfigureCertificateAuthorityNotFound) IsCode

IsCode returns true when this configure certificate authority not found response a status code equal to that given

func (*ConfigureCertificateAuthorityNotFound) IsRedirect

IsRedirect returns true when this configure certificate authority not found response has a 3xx status code

func (*ConfigureCertificateAuthorityNotFound) IsServerError

func (o *ConfigureCertificateAuthorityNotFound) IsServerError() bool

IsServerError returns true when this configure certificate authority not found response has a 5xx status code

func (*ConfigureCertificateAuthorityNotFound) IsSuccess

IsSuccess returns true when this configure certificate authority not found response has a 2xx status code

func (*ConfigureCertificateAuthorityNotFound) String

type ConfigureCertificateAuthorityOK

type ConfigureCertificateAuthorityOK struct {
	Payload interface{}
}

ConfigureCertificateAuthorityOK describes a response with status code 200, with default header values.

OK

func NewConfigureCertificateAuthorityOK

func NewConfigureCertificateAuthorityOK() *ConfigureCertificateAuthorityOK

NewConfigureCertificateAuthorityOK creates a ConfigureCertificateAuthorityOK with default headers values

func (*ConfigureCertificateAuthorityOK) Error

func (*ConfigureCertificateAuthorityOK) GetPayload

func (o *ConfigureCertificateAuthorityOK) GetPayload() interface{}

func (*ConfigureCertificateAuthorityOK) IsClientError

func (o *ConfigureCertificateAuthorityOK) IsClientError() bool

IsClientError returns true when this configure certificate authority o k response has a 4xx status code

func (*ConfigureCertificateAuthorityOK) IsCode

func (o *ConfigureCertificateAuthorityOK) IsCode(code int) bool

IsCode returns true when this configure certificate authority o k response a status code equal to that given

func (*ConfigureCertificateAuthorityOK) IsRedirect

func (o *ConfigureCertificateAuthorityOK) IsRedirect() bool

IsRedirect returns true when this configure certificate authority o k response has a 3xx status code

func (*ConfigureCertificateAuthorityOK) IsServerError

func (o *ConfigureCertificateAuthorityOK) IsServerError() bool

IsServerError returns true when this configure certificate authority o k response has a 5xx status code

func (*ConfigureCertificateAuthorityOK) IsSuccess

func (o *ConfigureCertificateAuthorityOK) IsSuccess() bool

IsSuccess returns true when this configure certificate authority o k response has a 2xx status code

func (*ConfigureCertificateAuthorityOK) String

type ConfigureCertificateAuthorityParams

type ConfigureCertificateAuthorityParams struct {

	/* CertificateAuthoritySpec.

	   certificateAuthoritySpec
	*/
	CertificateAuthoritySpec *models.CertificateAuthorityCreationSpec

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ConfigureCertificateAuthorityParams contains all the parameters to send to the API endpoint

for the configure certificate authority operation.

Typically these are written to a http.Request.

func NewConfigureCertificateAuthorityParams

func NewConfigureCertificateAuthorityParams() *ConfigureCertificateAuthorityParams

NewConfigureCertificateAuthorityParams creates a new ConfigureCertificateAuthorityParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewConfigureCertificateAuthorityParamsWithContext

func NewConfigureCertificateAuthorityParamsWithContext(ctx context.Context) *ConfigureCertificateAuthorityParams

NewConfigureCertificateAuthorityParamsWithContext creates a new ConfigureCertificateAuthorityParams object with the ability to set a context for a request.

func NewConfigureCertificateAuthorityParamsWithHTTPClient

func NewConfigureCertificateAuthorityParamsWithHTTPClient(client *http.Client) *ConfigureCertificateAuthorityParams

NewConfigureCertificateAuthorityParamsWithHTTPClient creates a new ConfigureCertificateAuthorityParams object with the ability to set a custom HTTPClient for a request.

func NewConfigureCertificateAuthorityParamsWithTimeout

func NewConfigureCertificateAuthorityParamsWithTimeout(timeout time.Duration) *ConfigureCertificateAuthorityParams

NewConfigureCertificateAuthorityParamsWithTimeout creates a new ConfigureCertificateAuthorityParams object with the ability to set a timeout on a request.

func (*ConfigureCertificateAuthorityParams) SetCertificateAuthoritySpec

func (o *ConfigureCertificateAuthorityParams) SetCertificateAuthoritySpec(certificateAuthoritySpec *models.CertificateAuthorityCreationSpec)

SetCertificateAuthoritySpec adds the certificateAuthoritySpec to the configure certificate authority params

func (*ConfigureCertificateAuthorityParams) SetContext

SetContext adds the context to the configure certificate authority params

func (*ConfigureCertificateAuthorityParams) SetDefaults

func (o *ConfigureCertificateAuthorityParams) SetDefaults()

SetDefaults hydrates default values in the configure certificate authority params (not the query body).

All values with no default are reset to their zero value.

func (*ConfigureCertificateAuthorityParams) SetHTTPClient

func (o *ConfigureCertificateAuthorityParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the configure certificate authority params

func (*ConfigureCertificateAuthorityParams) SetTimeout

func (o *ConfigureCertificateAuthorityParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the configure certificate authority params

func (*ConfigureCertificateAuthorityParams) WithCertificateAuthoritySpec

func (o *ConfigureCertificateAuthorityParams) WithCertificateAuthoritySpec(certificateAuthoritySpec *models.CertificateAuthorityCreationSpec) *ConfigureCertificateAuthorityParams

WithCertificateAuthoritySpec adds the certificateAuthoritySpec to the configure certificate authority params

func (*ConfigureCertificateAuthorityParams) WithContext

WithContext adds the context to the configure certificate authority params

func (*ConfigureCertificateAuthorityParams) WithDefaults

WithDefaults hydrates default values in the configure certificate authority params (not the query body).

All values with no default are reset to their zero value.

func (*ConfigureCertificateAuthorityParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the configure certificate authority params

func (*ConfigureCertificateAuthorityParams) WithTimeout

WithTimeout adds the timeout to the configure certificate authority params

func (*ConfigureCertificateAuthorityParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ConfigureCertificateAuthorityReader

type ConfigureCertificateAuthorityReader struct {
	// contains filtered or unexported fields
}

ConfigureCertificateAuthorityReader is a Reader for the ConfigureCertificateAuthority structure.

func (*ConfigureCertificateAuthorityReader) ReadResponse

func (o *ConfigureCertificateAuthorityReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type CreateCertificateAuthorityBadRequest

type CreateCertificateAuthorityBadRequest struct {
	Payload *models.Error
}

CreateCertificateAuthorityBadRequest describes a response with status code 400, with default header values.

Bad request

func NewCreateCertificateAuthorityBadRequest

func NewCreateCertificateAuthorityBadRequest() *CreateCertificateAuthorityBadRequest

NewCreateCertificateAuthorityBadRequest creates a CreateCertificateAuthorityBadRequest with default headers values

func (*CreateCertificateAuthorityBadRequest) Error

func (*CreateCertificateAuthorityBadRequest) GetPayload

func (*CreateCertificateAuthorityBadRequest) IsClientError

func (o *CreateCertificateAuthorityBadRequest) IsClientError() bool

IsClientError returns true when this create certificate authority bad request response has a 4xx status code

func (*CreateCertificateAuthorityBadRequest) IsCode

IsCode returns true when this create certificate authority bad request response a status code equal to that given

func (*CreateCertificateAuthorityBadRequest) IsRedirect

IsRedirect returns true when this create certificate authority bad request response has a 3xx status code

func (*CreateCertificateAuthorityBadRequest) IsServerError

func (o *CreateCertificateAuthorityBadRequest) IsServerError() bool

IsServerError returns true when this create certificate authority bad request response has a 5xx status code

func (*CreateCertificateAuthorityBadRequest) IsSuccess

IsSuccess returns true when this create certificate authority bad request response has a 2xx status code

func (*CreateCertificateAuthorityBadRequest) String

type CreateCertificateAuthorityInternalServerError

type CreateCertificateAuthorityInternalServerError struct {
	Payload *models.Error
}

CreateCertificateAuthorityInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewCreateCertificateAuthorityInternalServerError

func NewCreateCertificateAuthorityInternalServerError() *CreateCertificateAuthorityInternalServerError

NewCreateCertificateAuthorityInternalServerError creates a CreateCertificateAuthorityInternalServerError with default headers values

func (*CreateCertificateAuthorityInternalServerError) Error

func (*CreateCertificateAuthorityInternalServerError) GetPayload

func (*CreateCertificateAuthorityInternalServerError) IsClientError

IsClientError returns true when this create certificate authority internal server error response has a 4xx status code

func (*CreateCertificateAuthorityInternalServerError) IsCode

IsCode returns true when this create certificate authority internal server error response a status code equal to that given

func (*CreateCertificateAuthorityInternalServerError) IsRedirect

IsRedirect returns true when this create certificate authority internal server error response has a 3xx status code

func (*CreateCertificateAuthorityInternalServerError) IsServerError

IsServerError returns true when this create certificate authority internal server error response has a 5xx status code

func (*CreateCertificateAuthorityInternalServerError) IsSuccess

IsSuccess returns true when this create certificate authority internal server error response has a 2xx status code

func (*CreateCertificateAuthorityInternalServerError) String

type CreateCertificateAuthorityOK

type CreateCertificateAuthorityOK struct {
	Payload interface{}
}

CreateCertificateAuthorityOK describes a response with status code 200, with default header values.

OK

func NewCreateCertificateAuthorityOK

func NewCreateCertificateAuthorityOK() *CreateCertificateAuthorityOK

NewCreateCertificateAuthorityOK creates a CreateCertificateAuthorityOK with default headers values

func (*CreateCertificateAuthorityOK) Error

func (*CreateCertificateAuthorityOK) GetPayload

func (o *CreateCertificateAuthorityOK) GetPayload() interface{}

func (*CreateCertificateAuthorityOK) IsClientError

func (o *CreateCertificateAuthorityOK) IsClientError() bool

IsClientError returns true when this create certificate authority o k response has a 4xx status code

func (*CreateCertificateAuthorityOK) IsCode

func (o *CreateCertificateAuthorityOK) IsCode(code int) bool

IsCode returns true when this create certificate authority o k response a status code equal to that given

func (*CreateCertificateAuthorityOK) IsRedirect

func (o *CreateCertificateAuthorityOK) IsRedirect() bool

IsRedirect returns true when this create certificate authority o k response has a 3xx status code

func (*CreateCertificateAuthorityOK) IsServerError

func (o *CreateCertificateAuthorityOK) IsServerError() bool

IsServerError returns true when this create certificate authority o k response has a 5xx status code

func (*CreateCertificateAuthorityOK) IsSuccess

func (o *CreateCertificateAuthorityOK) IsSuccess() bool

IsSuccess returns true when this create certificate authority o k response has a 2xx status code

func (*CreateCertificateAuthorityOK) String

type CreateCertificateAuthorityParams

type CreateCertificateAuthorityParams struct {

	/* CertificateAuthorityCreationSpec.

	   certificateAuthorityCreationSpec
	*/
	CertificateAuthorityCreationSpec *models.CertificateAuthorityCreationSpec

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

CreateCertificateAuthorityParams contains all the parameters to send to the API endpoint

for the create certificate authority operation.

Typically these are written to a http.Request.

func NewCreateCertificateAuthorityParams

func NewCreateCertificateAuthorityParams() *CreateCertificateAuthorityParams

NewCreateCertificateAuthorityParams creates a new CreateCertificateAuthorityParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewCreateCertificateAuthorityParamsWithContext

func NewCreateCertificateAuthorityParamsWithContext(ctx context.Context) *CreateCertificateAuthorityParams

NewCreateCertificateAuthorityParamsWithContext creates a new CreateCertificateAuthorityParams object with the ability to set a context for a request.

func NewCreateCertificateAuthorityParamsWithHTTPClient

func NewCreateCertificateAuthorityParamsWithHTTPClient(client *http.Client) *CreateCertificateAuthorityParams

NewCreateCertificateAuthorityParamsWithHTTPClient creates a new CreateCertificateAuthorityParams object with the ability to set a custom HTTPClient for a request.

func NewCreateCertificateAuthorityParamsWithTimeout

func NewCreateCertificateAuthorityParamsWithTimeout(timeout time.Duration) *CreateCertificateAuthorityParams

NewCreateCertificateAuthorityParamsWithTimeout creates a new CreateCertificateAuthorityParams object with the ability to set a timeout on a request.

func (*CreateCertificateAuthorityParams) SetCertificateAuthorityCreationSpec

func (o *CreateCertificateAuthorityParams) SetCertificateAuthorityCreationSpec(certificateAuthorityCreationSpec *models.CertificateAuthorityCreationSpec)

SetCertificateAuthorityCreationSpec adds the certificateAuthorityCreationSpec to the create certificate authority params

func (*CreateCertificateAuthorityParams) SetContext

SetContext adds the context to the create certificate authority params

func (*CreateCertificateAuthorityParams) SetDefaults

func (o *CreateCertificateAuthorityParams) SetDefaults()

SetDefaults hydrates default values in the create certificate authority params (not the query body).

All values with no default are reset to their zero value.

func (*CreateCertificateAuthorityParams) SetHTTPClient

func (o *CreateCertificateAuthorityParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the create certificate authority params

func (*CreateCertificateAuthorityParams) SetTimeout

func (o *CreateCertificateAuthorityParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the create certificate authority params

func (*CreateCertificateAuthorityParams) WithCertificateAuthorityCreationSpec

func (o *CreateCertificateAuthorityParams) WithCertificateAuthorityCreationSpec(certificateAuthorityCreationSpec *models.CertificateAuthorityCreationSpec) *CreateCertificateAuthorityParams

WithCertificateAuthorityCreationSpec adds the certificateAuthorityCreationSpec to the create certificate authority params

func (*CreateCertificateAuthorityParams) WithContext

WithContext adds the context to the create certificate authority params

func (*CreateCertificateAuthorityParams) WithDefaults

WithDefaults hydrates default values in the create certificate authority params (not the query body).

All values with no default are reset to their zero value.

func (*CreateCertificateAuthorityParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create certificate authority params

func (*CreateCertificateAuthorityParams) WithTimeout

WithTimeout adds the timeout to the create certificate authority params

func (*CreateCertificateAuthorityParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateCertificateAuthorityReader

type CreateCertificateAuthorityReader struct {
	// contains filtered or unexported fields
}

CreateCertificateAuthorityReader is a Reader for the CreateCertificateAuthority structure.

func (*CreateCertificateAuthorityReader) ReadResponse

func (o *CreateCertificateAuthorityReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type DeleteCaConfigurationInternalServerError

type DeleteCaConfigurationInternalServerError struct {
	Payload *models.Error
}

DeleteCaConfigurationInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewDeleteCaConfigurationInternalServerError

func NewDeleteCaConfigurationInternalServerError() *DeleteCaConfigurationInternalServerError

NewDeleteCaConfigurationInternalServerError creates a DeleteCaConfigurationInternalServerError with default headers values

func (*DeleteCaConfigurationInternalServerError) Error

func (*DeleteCaConfigurationInternalServerError) GetPayload

func (*DeleteCaConfigurationInternalServerError) IsClientError

IsClientError returns true when this delete ca configuration internal server error response has a 4xx status code

func (*DeleteCaConfigurationInternalServerError) IsCode

IsCode returns true when this delete ca configuration internal server error response a status code equal to that given

func (*DeleteCaConfigurationInternalServerError) IsRedirect

IsRedirect returns true when this delete ca configuration internal server error response has a 3xx status code

func (*DeleteCaConfigurationInternalServerError) IsServerError

IsServerError returns true when this delete ca configuration internal server error response has a 5xx status code

func (*DeleteCaConfigurationInternalServerError) IsSuccess

IsSuccess returns true when this delete ca configuration internal server error response has a 2xx status code

func (*DeleteCaConfigurationInternalServerError) String

type DeleteCaConfigurationNoContent

type DeleteCaConfigurationNoContent struct {
	Payload interface{}
}

DeleteCaConfigurationNoContent describes a response with status code 204, with default header values.

No content

func NewDeleteCaConfigurationNoContent

func NewDeleteCaConfigurationNoContent() *DeleteCaConfigurationNoContent

NewDeleteCaConfigurationNoContent creates a DeleteCaConfigurationNoContent with default headers values

func (*DeleteCaConfigurationNoContent) Error

func (*DeleteCaConfigurationNoContent) GetPayload

func (o *DeleteCaConfigurationNoContent) GetPayload() interface{}

func (*DeleteCaConfigurationNoContent) IsClientError

func (o *DeleteCaConfigurationNoContent) IsClientError() bool

IsClientError returns true when this delete ca configuration no content response has a 4xx status code

func (*DeleteCaConfigurationNoContent) IsCode

func (o *DeleteCaConfigurationNoContent) IsCode(code int) bool

IsCode returns true when this delete ca configuration no content response a status code equal to that given

func (*DeleteCaConfigurationNoContent) IsRedirect

func (o *DeleteCaConfigurationNoContent) IsRedirect() bool

IsRedirect returns true when this delete ca configuration no content response has a 3xx status code

func (*DeleteCaConfigurationNoContent) IsServerError

func (o *DeleteCaConfigurationNoContent) IsServerError() bool

IsServerError returns true when this delete ca configuration no content response has a 5xx status code

func (*DeleteCaConfigurationNoContent) IsSuccess

func (o *DeleteCaConfigurationNoContent) IsSuccess() bool

IsSuccess returns true when this delete ca configuration no content response has a 2xx status code

func (*DeleteCaConfigurationNoContent) String

type DeleteCaConfigurationNotFound

type DeleteCaConfigurationNotFound struct {
	Payload *models.Error
}

DeleteCaConfigurationNotFound describes a response with status code 404, with default header values.

Not Found

func NewDeleteCaConfigurationNotFound

func NewDeleteCaConfigurationNotFound() *DeleteCaConfigurationNotFound

NewDeleteCaConfigurationNotFound creates a DeleteCaConfigurationNotFound with default headers values

func (*DeleteCaConfigurationNotFound) Error

func (*DeleteCaConfigurationNotFound) GetPayload

func (o *DeleteCaConfigurationNotFound) GetPayload() *models.Error

func (*DeleteCaConfigurationNotFound) IsClientError

func (o *DeleteCaConfigurationNotFound) IsClientError() bool

IsClientError returns true when this delete ca configuration not found response has a 4xx status code

func (*DeleteCaConfigurationNotFound) IsCode

func (o *DeleteCaConfigurationNotFound) IsCode(code int) bool

IsCode returns true when this delete ca configuration not found response a status code equal to that given

func (*DeleteCaConfigurationNotFound) IsRedirect

func (o *DeleteCaConfigurationNotFound) IsRedirect() bool

IsRedirect returns true when this delete ca configuration not found response has a 3xx status code

func (*DeleteCaConfigurationNotFound) IsServerError

func (o *DeleteCaConfigurationNotFound) IsServerError() bool

IsServerError returns true when this delete ca configuration not found response has a 5xx status code

func (*DeleteCaConfigurationNotFound) IsSuccess

func (o *DeleteCaConfigurationNotFound) IsSuccess() bool

IsSuccess returns true when this delete ca configuration not found response has a 2xx status code

func (*DeleteCaConfigurationNotFound) String

type DeleteCaConfigurationOK

type DeleteCaConfigurationOK struct {
	Payload interface{}
}

DeleteCaConfigurationOK describes a response with status code 200, with default header values.

OK

func NewDeleteCaConfigurationOK

func NewDeleteCaConfigurationOK() *DeleteCaConfigurationOK

NewDeleteCaConfigurationOK creates a DeleteCaConfigurationOK with default headers values

func (*DeleteCaConfigurationOK) Error

func (o *DeleteCaConfigurationOK) Error() string

func (*DeleteCaConfigurationOK) GetPayload

func (o *DeleteCaConfigurationOK) GetPayload() interface{}

func (*DeleteCaConfigurationOK) IsClientError

func (o *DeleteCaConfigurationOK) IsClientError() bool

IsClientError returns true when this delete ca configuration o k response has a 4xx status code

func (*DeleteCaConfigurationOK) IsCode

func (o *DeleteCaConfigurationOK) IsCode(code int) bool

IsCode returns true when this delete ca configuration o k response a status code equal to that given

func (*DeleteCaConfigurationOK) IsRedirect

func (o *DeleteCaConfigurationOK) IsRedirect() bool

IsRedirect returns true when this delete ca configuration o k response has a 3xx status code

func (*DeleteCaConfigurationOK) IsServerError

func (o *DeleteCaConfigurationOK) IsServerError() bool

IsServerError returns true when this delete ca configuration o k response has a 5xx status code

func (*DeleteCaConfigurationOK) IsSuccess

func (o *DeleteCaConfigurationOK) IsSuccess() bool

IsSuccess returns true when this delete ca configuration o k response has a 2xx status code

func (*DeleteCaConfigurationOK) String

func (o *DeleteCaConfigurationOK) String() string

type DeleteCaConfigurationParams

type DeleteCaConfigurationParams struct {

	/* CaType.

	   The CA type
	*/
	CaType string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DeleteCaConfigurationParams contains all the parameters to send to the API endpoint

for the delete ca configuration operation.

Typically these are written to a http.Request.

func NewDeleteCaConfigurationParams

func NewDeleteCaConfigurationParams() *DeleteCaConfigurationParams

NewDeleteCaConfigurationParams creates a new DeleteCaConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteCaConfigurationParamsWithContext

func NewDeleteCaConfigurationParamsWithContext(ctx context.Context) *DeleteCaConfigurationParams

NewDeleteCaConfigurationParamsWithContext creates a new DeleteCaConfigurationParams object with the ability to set a context for a request.

func NewDeleteCaConfigurationParamsWithHTTPClient

func NewDeleteCaConfigurationParamsWithHTTPClient(client *http.Client) *DeleteCaConfigurationParams

NewDeleteCaConfigurationParamsWithHTTPClient creates a new DeleteCaConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteCaConfigurationParamsWithTimeout

func NewDeleteCaConfigurationParamsWithTimeout(timeout time.Duration) *DeleteCaConfigurationParams

NewDeleteCaConfigurationParamsWithTimeout creates a new DeleteCaConfigurationParams object with the ability to set a timeout on a request.

func (*DeleteCaConfigurationParams) SetCaType

func (o *DeleteCaConfigurationParams) SetCaType(caType string)

SetCaType adds the caType to the delete ca configuration params

func (*DeleteCaConfigurationParams) SetContext

func (o *DeleteCaConfigurationParams) SetContext(ctx context.Context)

SetContext adds the context to the delete ca configuration params

func (*DeleteCaConfigurationParams) SetDefaults

func (o *DeleteCaConfigurationParams) SetDefaults()

SetDefaults hydrates default values in the delete ca configuration params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteCaConfigurationParams) SetHTTPClient

func (o *DeleteCaConfigurationParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the delete ca configuration params

func (*DeleteCaConfigurationParams) SetTimeout

func (o *DeleteCaConfigurationParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the delete ca configuration params

func (*DeleteCaConfigurationParams) WithCaType

WithCaType adds the caType to the delete ca configuration params

func (*DeleteCaConfigurationParams) WithContext

WithContext adds the context to the delete ca configuration params

func (*DeleteCaConfigurationParams) WithDefaults

WithDefaults hydrates default values in the delete ca configuration params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteCaConfigurationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete ca configuration params

func (*DeleteCaConfigurationParams) WithTimeout

WithTimeout adds the timeout to the delete ca configuration params

func (*DeleteCaConfigurationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteCaConfigurationReader

type DeleteCaConfigurationReader struct {
	// contains filtered or unexported fields
}

DeleteCaConfigurationReader is a Reader for the DeleteCaConfiguration structure.

func (*DeleteCaConfigurationReader) ReadResponse

func (o *DeleteCaConfigurationReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type DownloadCSRInternalServerError

type DownloadCSRInternalServerError struct {
	Payload *models.Error
}

DownloadCSRInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewDownloadCSRInternalServerError

func NewDownloadCSRInternalServerError() *DownloadCSRInternalServerError

NewDownloadCSRInternalServerError creates a DownloadCSRInternalServerError with default headers values

func (*DownloadCSRInternalServerError) Error

func (*DownloadCSRInternalServerError) GetPayload

func (o *DownloadCSRInternalServerError) GetPayload() *models.Error

func (*DownloadCSRInternalServerError) IsClientError

func (o *DownloadCSRInternalServerError) IsClientError() bool

IsClientError returns true when this download Csr internal server error response has a 4xx status code

func (*DownloadCSRInternalServerError) IsCode

func (o *DownloadCSRInternalServerError) IsCode(code int) bool

IsCode returns true when this download Csr internal server error response a status code equal to that given

func (*DownloadCSRInternalServerError) IsRedirect

func (o *DownloadCSRInternalServerError) IsRedirect() bool

IsRedirect returns true when this download Csr internal server error response has a 3xx status code

func (*DownloadCSRInternalServerError) IsServerError

func (o *DownloadCSRInternalServerError) IsServerError() bool

IsServerError returns true when this download Csr internal server error response has a 5xx status code

func (*DownloadCSRInternalServerError) IsSuccess

func (o *DownloadCSRInternalServerError) IsSuccess() bool

IsSuccess returns true when this download Csr internal server error response has a 2xx status code

func (*DownloadCSRInternalServerError) String

type DownloadCSRNotFound

type DownloadCSRNotFound struct {
	Payload *models.Error
}

DownloadCSRNotFound describes a response with status code 404, with default header values.

Not Found

func NewDownloadCSRNotFound

func NewDownloadCSRNotFound() *DownloadCSRNotFound

NewDownloadCSRNotFound creates a DownloadCSRNotFound with default headers values

func (*DownloadCSRNotFound) Error

func (o *DownloadCSRNotFound) Error() string

func (*DownloadCSRNotFound) GetPayload

func (o *DownloadCSRNotFound) GetPayload() *models.Error

func (*DownloadCSRNotFound) IsClientError

func (o *DownloadCSRNotFound) IsClientError() bool

IsClientError returns true when this download Csr not found response has a 4xx status code

func (*DownloadCSRNotFound) IsCode

func (o *DownloadCSRNotFound) IsCode(code int) bool

IsCode returns true when this download Csr not found response a status code equal to that given

func (*DownloadCSRNotFound) IsRedirect

func (o *DownloadCSRNotFound) IsRedirect() bool

IsRedirect returns true when this download Csr not found response has a 3xx status code

func (*DownloadCSRNotFound) IsServerError

func (o *DownloadCSRNotFound) IsServerError() bool

IsServerError returns true when this download Csr not found response has a 5xx status code

func (*DownloadCSRNotFound) IsSuccess

func (o *DownloadCSRNotFound) IsSuccess() bool

IsSuccess returns true when this download Csr not found response has a 2xx status code

func (*DownloadCSRNotFound) String

func (o *DownloadCSRNotFound) String() string

type DownloadCSROK

type DownloadCSROK struct {
	Payload strfmt.Base64
}

DownloadCSROK describes a response with status code 200, with default header values.

OK

func NewDownloadCSROK

func NewDownloadCSROK() *DownloadCSROK

NewDownloadCSROK creates a DownloadCSROK with default headers values

func (*DownloadCSROK) Error

func (o *DownloadCSROK) Error() string

func (*DownloadCSROK) GetPayload

func (o *DownloadCSROK) GetPayload() strfmt.Base64

func (*DownloadCSROK) IsClientError

func (o *DownloadCSROK) IsClientError() bool

IsClientError returns true when this download Csr o k response has a 4xx status code

func (*DownloadCSROK) IsCode

func (o *DownloadCSROK) IsCode(code int) bool

IsCode returns true when this download Csr o k response a status code equal to that given

func (*DownloadCSROK) IsRedirect

func (o *DownloadCSROK) IsRedirect() bool

IsRedirect returns true when this download Csr o k response has a 3xx status code

func (*DownloadCSROK) IsServerError

func (o *DownloadCSROK) IsServerError() bool

IsServerError returns true when this download Csr o k response has a 5xx status code

func (*DownloadCSROK) IsSuccess

func (o *DownloadCSROK) IsSuccess() bool

IsSuccess returns true when this download Csr o k response has a 2xx status code

func (*DownloadCSROK) String

func (o *DownloadCSROK) String() string

type DownloadCSRParams

type DownloadCSRParams struct {

	/* DomainName.

	   Domain ID or Name
	*/
	DomainName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DownloadCSRParams contains all the parameters to send to the API endpoint

for the download CSR operation.

Typically these are written to a http.Request.

func NewDownloadCSRParams

func NewDownloadCSRParams() *DownloadCSRParams

NewDownloadCSRParams creates a new DownloadCSRParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDownloadCSRParamsWithContext

func NewDownloadCSRParamsWithContext(ctx context.Context) *DownloadCSRParams

NewDownloadCSRParamsWithContext creates a new DownloadCSRParams object with the ability to set a context for a request.

func NewDownloadCSRParamsWithHTTPClient

func NewDownloadCSRParamsWithHTTPClient(client *http.Client) *DownloadCSRParams

NewDownloadCSRParamsWithHTTPClient creates a new DownloadCSRParams object with the ability to set a custom HTTPClient for a request.

func NewDownloadCSRParamsWithTimeout

func NewDownloadCSRParamsWithTimeout(timeout time.Duration) *DownloadCSRParams

NewDownloadCSRParamsWithTimeout creates a new DownloadCSRParams object with the ability to set a timeout on a request.

func (*DownloadCSRParams) SetContext

func (o *DownloadCSRParams) SetContext(ctx context.Context)

SetContext adds the context to the download CSR params

func (*DownloadCSRParams) SetDefaults

func (o *DownloadCSRParams) SetDefaults()

SetDefaults hydrates default values in the download CSR params (not the query body).

All values with no default are reset to their zero value.

func (*DownloadCSRParams) SetDomainName

func (o *DownloadCSRParams) SetDomainName(domainName string)

SetDomainName adds the domainName to the download CSR params

func (*DownloadCSRParams) SetHTTPClient

func (o *DownloadCSRParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the download CSR params

func (*DownloadCSRParams) SetTimeout

func (o *DownloadCSRParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the download CSR params

func (*DownloadCSRParams) WithContext

func (o *DownloadCSRParams) WithContext(ctx context.Context) *DownloadCSRParams

WithContext adds the context to the download CSR params

func (*DownloadCSRParams) WithDefaults

func (o *DownloadCSRParams) WithDefaults() *DownloadCSRParams

WithDefaults hydrates default values in the download CSR params (not the query body).

All values with no default are reset to their zero value.

func (*DownloadCSRParams) WithDomainName

func (o *DownloadCSRParams) WithDomainName(domainName string) *DownloadCSRParams

WithDomainName adds the domainName to the download CSR params

func (*DownloadCSRParams) WithHTTPClient

func (o *DownloadCSRParams) WithHTTPClient(client *http.Client) *DownloadCSRParams

WithHTTPClient adds the HTTPClient to the download CSR params

func (*DownloadCSRParams) WithTimeout

func (o *DownloadCSRParams) WithTimeout(timeout time.Duration) *DownloadCSRParams

WithTimeout adds the timeout to the download CSR params

func (*DownloadCSRParams) WriteToRequest

func (o *DownloadCSRParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type DownloadCSRReader

type DownloadCSRReader struct {
	// contains filtered or unexported fields
}

DownloadCSRReader is a Reader for the DownloadCSR structure.

func (*DownloadCSRReader) ReadResponse

func (o *DownloadCSRReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GenerateCertificatesAccepted

type GenerateCertificatesAccepted struct {
	Payload *models.Task
}

GenerateCertificatesAccepted describes a response with status code 202, with default header values.

Accepted

func NewGenerateCertificatesAccepted

func NewGenerateCertificatesAccepted() *GenerateCertificatesAccepted

NewGenerateCertificatesAccepted creates a GenerateCertificatesAccepted with default headers values

func (*GenerateCertificatesAccepted) Error

func (*GenerateCertificatesAccepted) GetPayload

func (o *GenerateCertificatesAccepted) GetPayload() *models.Task

func (*GenerateCertificatesAccepted) IsClientError

func (o *GenerateCertificatesAccepted) IsClientError() bool

IsClientError returns true when this generate certificates accepted response has a 4xx status code

func (*GenerateCertificatesAccepted) IsCode

func (o *GenerateCertificatesAccepted) IsCode(code int) bool

IsCode returns true when this generate certificates accepted response a status code equal to that given

func (*GenerateCertificatesAccepted) IsRedirect

func (o *GenerateCertificatesAccepted) IsRedirect() bool

IsRedirect returns true when this generate certificates accepted response has a 3xx status code

func (*GenerateCertificatesAccepted) IsServerError

func (o *GenerateCertificatesAccepted) IsServerError() bool

IsServerError returns true when this generate certificates accepted response has a 5xx status code

func (*GenerateCertificatesAccepted) IsSuccess

func (o *GenerateCertificatesAccepted) IsSuccess() bool

IsSuccess returns true when this generate certificates accepted response has a 2xx status code

func (*GenerateCertificatesAccepted) String

type GenerateCertificatesBadRequest

type GenerateCertificatesBadRequest struct {
	Payload *models.Error
}

GenerateCertificatesBadRequest describes a response with status code 400, with default header values.

Bad request

func NewGenerateCertificatesBadRequest

func NewGenerateCertificatesBadRequest() *GenerateCertificatesBadRequest

NewGenerateCertificatesBadRequest creates a GenerateCertificatesBadRequest with default headers values

func (*GenerateCertificatesBadRequest) Error

func (*GenerateCertificatesBadRequest) GetPayload

func (o *GenerateCertificatesBadRequest) GetPayload() *models.Error

func (*GenerateCertificatesBadRequest) IsClientError

func (o *GenerateCertificatesBadRequest) IsClientError() bool

IsClientError returns true when this generate certificates bad request response has a 4xx status code

func (*GenerateCertificatesBadRequest) IsCode

func (o *GenerateCertificatesBadRequest) IsCode(code int) bool

IsCode returns true when this generate certificates bad request response a status code equal to that given

func (*GenerateCertificatesBadRequest) IsRedirect

func (o *GenerateCertificatesBadRequest) IsRedirect() bool

IsRedirect returns true when this generate certificates bad request response has a 3xx status code

func (*GenerateCertificatesBadRequest) IsServerError

func (o *GenerateCertificatesBadRequest) IsServerError() bool

IsServerError returns true when this generate certificates bad request response has a 5xx status code

func (*GenerateCertificatesBadRequest) IsSuccess

func (o *GenerateCertificatesBadRequest) IsSuccess() bool

IsSuccess returns true when this generate certificates bad request response has a 2xx status code

func (*GenerateCertificatesBadRequest) String

type GenerateCertificatesConflict

type GenerateCertificatesConflict struct {
	Payload *models.Error
}

GenerateCertificatesConflict describes a response with status code 409, with default header values.

Conflict

func NewGenerateCertificatesConflict

func NewGenerateCertificatesConflict() *GenerateCertificatesConflict

NewGenerateCertificatesConflict creates a GenerateCertificatesConflict with default headers values

func (*GenerateCertificatesConflict) Error

func (*GenerateCertificatesConflict) GetPayload

func (o *GenerateCertificatesConflict) GetPayload() *models.Error

func (*GenerateCertificatesConflict) IsClientError

func (o *GenerateCertificatesConflict) IsClientError() bool

IsClientError returns true when this generate certificates conflict response has a 4xx status code

func (*GenerateCertificatesConflict) IsCode

func (o *GenerateCertificatesConflict) IsCode(code int) bool

IsCode returns true when this generate certificates conflict response a status code equal to that given

func (*GenerateCertificatesConflict) IsRedirect

func (o *GenerateCertificatesConflict) IsRedirect() bool

IsRedirect returns true when this generate certificates conflict response has a 3xx status code

func (*GenerateCertificatesConflict) IsServerError

func (o *GenerateCertificatesConflict) IsServerError() bool

IsServerError returns true when this generate certificates conflict response has a 5xx status code

func (*GenerateCertificatesConflict) IsSuccess

func (o *GenerateCertificatesConflict) IsSuccess() bool

IsSuccess returns true when this generate certificates conflict response has a 2xx status code

func (*GenerateCertificatesConflict) String

type GenerateCertificatesInternalServerError

type GenerateCertificatesInternalServerError struct {
	Payload *models.Error
}

GenerateCertificatesInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGenerateCertificatesInternalServerError

func NewGenerateCertificatesInternalServerError() *GenerateCertificatesInternalServerError

NewGenerateCertificatesInternalServerError creates a GenerateCertificatesInternalServerError with default headers values

func (*GenerateCertificatesInternalServerError) Error

func (*GenerateCertificatesInternalServerError) GetPayload

func (*GenerateCertificatesInternalServerError) IsClientError

func (o *GenerateCertificatesInternalServerError) IsClientError() bool

IsClientError returns true when this generate certificates internal server error response has a 4xx status code

func (*GenerateCertificatesInternalServerError) IsCode

IsCode returns true when this generate certificates internal server error response a status code equal to that given

func (*GenerateCertificatesInternalServerError) IsRedirect

IsRedirect returns true when this generate certificates internal server error response has a 3xx status code

func (*GenerateCertificatesInternalServerError) IsServerError

func (o *GenerateCertificatesInternalServerError) IsServerError() bool

IsServerError returns true when this generate certificates internal server error response has a 5xx status code

func (*GenerateCertificatesInternalServerError) IsSuccess

IsSuccess returns true when this generate certificates internal server error response has a 2xx status code

func (*GenerateCertificatesInternalServerError) String

type GenerateCertificatesNotFound

type GenerateCertificatesNotFound struct {
	Payload *models.Error
}

GenerateCertificatesNotFound describes a response with status code 404, with default header values.

Not Found

func NewGenerateCertificatesNotFound

func NewGenerateCertificatesNotFound() *GenerateCertificatesNotFound

NewGenerateCertificatesNotFound creates a GenerateCertificatesNotFound with default headers values

func (*GenerateCertificatesNotFound) Error

func (*GenerateCertificatesNotFound) GetPayload

func (o *GenerateCertificatesNotFound) GetPayload() *models.Error

func (*GenerateCertificatesNotFound) IsClientError

func (o *GenerateCertificatesNotFound) IsClientError() bool

IsClientError returns true when this generate certificates not found response has a 4xx status code

func (*GenerateCertificatesNotFound) IsCode

func (o *GenerateCertificatesNotFound) IsCode(code int) bool

IsCode returns true when this generate certificates not found response a status code equal to that given

func (*GenerateCertificatesNotFound) IsRedirect

func (o *GenerateCertificatesNotFound) IsRedirect() bool

IsRedirect returns true when this generate certificates not found response has a 3xx status code

func (*GenerateCertificatesNotFound) IsServerError

func (o *GenerateCertificatesNotFound) IsServerError() bool

IsServerError returns true when this generate certificates not found response has a 5xx status code

func (*GenerateCertificatesNotFound) IsSuccess

func (o *GenerateCertificatesNotFound) IsSuccess() bool

IsSuccess returns true when this generate certificates not found response has a 2xx status code

func (*GenerateCertificatesNotFound) String

type GenerateCertificatesOK

type GenerateCertificatesOK struct {
	Payload *models.Task
}

GenerateCertificatesOK describes a response with status code 200, with default header values.

OK

func NewGenerateCertificatesOK

func NewGenerateCertificatesOK() *GenerateCertificatesOK

NewGenerateCertificatesOK creates a GenerateCertificatesOK with default headers values

func (*GenerateCertificatesOK) Error

func (o *GenerateCertificatesOK) Error() string

func (*GenerateCertificatesOK) GetPayload

func (o *GenerateCertificatesOK) GetPayload() *models.Task

func (*GenerateCertificatesOK) IsClientError

func (o *GenerateCertificatesOK) IsClientError() bool

IsClientError returns true when this generate certificates o k response has a 4xx status code

func (*GenerateCertificatesOK) IsCode

func (o *GenerateCertificatesOK) IsCode(code int) bool

IsCode returns true when this generate certificates o k response a status code equal to that given

func (*GenerateCertificatesOK) IsRedirect

func (o *GenerateCertificatesOK) IsRedirect() bool

IsRedirect returns true when this generate certificates o k response has a 3xx status code

func (*GenerateCertificatesOK) IsServerError

func (o *GenerateCertificatesOK) IsServerError() bool

IsServerError returns true when this generate certificates o k response has a 5xx status code

func (*GenerateCertificatesOK) IsSuccess

func (o *GenerateCertificatesOK) IsSuccess() bool

IsSuccess returns true when this generate certificates o k response has a 2xx status code

func (*GenerateCertificatesOK) String

func (o *GenerateCertificatesOK) String() string

type GenerateCertificatesParams

type GenerateCertificatesParams struct {

	/* CertificateGenerationSpec.

	   certificateGenerationSpec
	*/
	CertificateGenerationSpec *models.CertificatesGenerationSpec

	/* DomainName.

	   Domain ID or Name
	*/
	DomainName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GenerateCertificatesParams contains all the parameters to send to the API endpoint

for the generate certificates operation.

Typically these are written to a http.Request.

func NewGenerateCertificatesParams

func NewGenerateCertificatesParams() *GenerateCertificatesParams

NewGenerateCertificatesParams creates a new GenerateCertificatesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGenerateCertificatesParamsWithContext

func NewGenerateCertificatesParamsWithContext(ctx context.Context) *GenerateCertificatesParams

NewGenerateCertificatesParamsWithContext creates a new GenerateCertificatesParams object with the ability to set a context for a request.

func NewGenerateCertificatesParamsWithHTTPClient

func NewGenerateCertificatesParamsWithHTTPClient(client *http.Client) *GenerateCertificatesParams

NewGenerateCertificatesParamsWithHTTPClient creates a new GenerateCertificatesParams object with the ability to set a custom HTTPClient for a request.

func NewGenerateCertificatesParamsWithTimeout

func NewGenerateCertificatesParamsWithTimeout(timeout time.Duration) *GenerateCertificatesParams

NewGenerateCertificatesParamsWithTimeout creates a new GenerateCertificatesParams object with the ability to set a timeout on a request.

func (*GenerateCertificatesParams) SetCertificateGenerationSpec

func (o *GenerateCertificatesParams) SetCertificateGenerationSpec(certificateGenerationSpec *models.CertificatesGenerationSpec)

SetCertificateGenerationSpec adds the certificateGenerationSpec to the generate certificates params

func (*GenerateCertificatesParams) SetContext

func (o *GenerateCertificatesParams) SetContext(ctx context.Context)

SetContext adds the context to the generate certificates params

func (*GenerateCertificatesParams) SetDefaults

func (o *GenerateCertificatesParams) SetDefaults()

SetDefaults hydrates default values in the generate certificates params (not the query body).

All values with no default are reset to their zero value.

func (*GenerateCertificatesParams) SetDomainName

func (o *GenerateCertificatesParams) SetDomainName(domainName string)

SetDomainName adds the domainName to the generate certificates params

func (*GenerateCertificatesParams) SetHTTPClient

func (o *GenerateCertificatesParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the generate certificates params

func (*GenerateCertificatesParams) SetTimeout

func (o *GenerateCertificatesParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the generate certificates params

func (*GenerateCertificatesParams) WithCertificateGenerationSpec

func (o *GenerateCertificatesParams) WithCertificateGenerationSpec(certificateGenerationSpec *models.CertificatesGenerationSpec) *GenerateCertificatesParams

WithCertificateGenerationSpec adds the certificateGenerationSpec to the generate certificates params

func (*GenerateCertificatesParams) WithContext

WithContext adds the context to the generate certificates params

func (*GenerateCertificatesParams) WithDefaults

WithDefaults hydrates default values in the generate certificates params (not the query body).

All values with no default are reset to their zero value.

func (*GenerateCertificatesParams) WithDomainName

func (o *GenerateCertificatesParams) WithDomainName(domainName string) *GenerateCertificatesParams

WithDomainName adds the domainName to the generate certificates params

func (*GenerateCertificatesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the generate certificates params

func (*GenerateCertificatesParams) WithTimeout

WithTimeout adds the timeout to the generate certificates params

func (*GenerateCertificatesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GenerateCertificatesReader

type GenerateCertificatesReader struct {
	// contains filtered or unexported fields
}

GenerateCertificatesReader is a Reader for the GenerateCertificates structure.

func (*GenerateCertificatesReader) ReadResponse

func (o *GenerateCertificatesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GeneratesCSRsAccepted

type GeneratesCSRsAccepted struct {
	Payload *models.Task
}

GeneratesCSRsAccepted describes a response with status code 202, with default header values.

Accepted

func NewGeneratesCSRsAccepted

func NewGeneratesCSRsAccepted() *GeneratesCSRsAccepted

NewGeneratesCSRsAccepted creates a GeneratesCSRsAccepted with default headers values

func (*GeneratesCSRsAccepted) Error

func (o *GeneratesCSRsAccepted) Error() string

func (*GeneratesCSRsAccepted) GetPayload

func (o *GeneratesCSRsAccepted) GetPayload() *models.Task

func (*GeneratesCSRsAccepted) IsClientError

func (o *GeneratesCSRsAccepted) IsClientError() bool

IsClientError returns true when this generates c s rs accepted response has a 4xx status code

func (*GeneratesCSRsAccepted) IsCode

func (o *GeneratesCSRsAccepted) IsCode(code int) bool

IsCode returns true when this generates c s rs accepted response a status code equal to that given

func (*GeneratesCSRsAccepted) IsRedirect

func (o *GeneratesCSRsAccepted) IsRedirect() bool

IsRedirect returns true when this generates c s rs accepted response has a 3xx status code

func (*GeneratesCSRsAccepted) IsServerError

func (o *GeneratesCSRsAccepted) IsServerError() bool

IsServerError returns true when this generates c s rs accepted response has a 5xx status code

func (*GeneratesCSRsAccepted) IsSuccess

func (o *GeneratesCSRsAccepted) IsSuccess() bool

IsSuccess returns true when this generates c s rs accepted response has a 2xx status code

func (*GeneratesCSRsAccepted) String

func (o *GeneratesCSRsAccepted) String() string

type GeneratesCSRsBadRequest

type GeneratesCSRsBadRequest struct {
	Payload *models.Error
}

GeneratesCSRsBadRequest describes a response with status code 400, with default header values.

Bad request

func NewGeneratesCSRsBadRequest

func NewGeneratesCSRsBadRequest() *GeneratesCSRsBadRequest

NewGeneratesCSRsBadRequest creates a GeneratesCSRsBadRequest with default headers values

func (*GeneratesCSRsBadRequest) Error

func (o *GeneratesCSRsBadRequest) Error() string

func (*GeneratesCSRsBadRequest) GetPayload

func (o *GeneratesCSRsBadRequest) GetPayload() *models.Error

func (*GeneratesCSRsBadRequest) IsClientError

func (o *GeneratesCSRsBadRequest) IsClientError() bool

IsClientError returns true when this generates c s rs bad request response has a 4xx status code

func (*GeneratesCSRsBadRequest) IsCode

func (o *GeneratesCSRsBadRequest) IsCode(code int) bool

IsCode returns true when this generates c s rs bad request response a status code equal to that given

func (*GeneratesCSRsBadRequest) IsRedirect

func (o *GeneratesCSRsBadRequest) IsRedirect() bool

IsRedirect returns true when this generates c s rs bad request response has a 3xx status code

func (*GeneratesCSRsBadRequest) IsServerError

func (o *GeneratesCSRsBadRequest) IsServerError() bool

IsServerError returns true when this generates c s rs bad request response has a 5xx status code

func (*GeneratesCSRsBadRequest) IsSuccess

func (o *GeneratesCSRsBadRequest) IsSuccess() bool

IsSuccess returns true when this generates c s rs bad request response has a 2xx status code

func (*GeneratesCSRsBadRequest) String

func (o *GeneratesCSRsBadRequest) String() string

type GeneratesCSRsConflict

type GeneratesCSRsConflict struct {
	Payload *models.Error
}

GeneratesCSRsConflict describes a response with status code 409, with default header values.

Conflict

func NewGeneratesCSRsConflict

func NewGeneratesCSRsConflict() *GeneratesCSRsConflict

NewGeneratesCSRsConflict creates a GeneratesCSRsConflict with default headers values

func (*GeneratesCSRsConflict) Error

func (o *GeneratesCSRsConflict) Error() string

func (*GeneratesCSRsConflict) GetPayload

func (o *GeneratesCSRsConflict) GetPayload() *models.Error

func (*GeneratesCSRsConflict) IsClientError

func (o *GeneratesCSRsConflict) IsClientError() bool

IsClientError returns true when this generates c s rs conflict response has a 4xx status code

func (*GeneratesCSRsConflict) IsCode

func (o *GeneratesCSRsConflict) IsCode(code int) bool

IsCode returns true when this generates c s rs conflict response a status code equal to that given

func (*GeneratesCSRsConflict) IsRedirect

func (o *GeneratesCSRsConflict) IsRedirect() bool

IsRedirect returns true when this generates c s rs conflict response has a 3xx status code

func (*GeneratesCSRsConflict) IsServerError

func (o *GeneratesCSRsConflict) IsServerError() bool

IsServerError returns true when this generates c s rs conflict response has a 5xx status code

func (*GeneratesCSRsConflict) IsSuccess

func (o *GeneratesCSRsConflict) IsSuccess() bool

IsSuccess returns true when this generates c s rs conflict response has a 2xx status code

func (*GeneratesCSRsConflict) String

func (o *GeneratesCSRsConflict) String() string

type GeneratesCSRsInternalServerError

type GeneratesCSRsInternalServerError struct {
	Payload *models.Error
}

GeneratesCSRsInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGeneratesCSRsInternalServerError

func NewGeneratesCSRsInternalServerError() *GeneratesCSRsInternalServerError

NewGeneratesCSRsInternalServerError creates a GeneratesCSRsInternalServerError with default headers values

func (*GeneratesCSRsInternalServerError) Error

func (*GeneratesCSRsInternalServerError) GetPayload

func (*GeneratesCSRsInternalServerError) IsClientError

func (o *GeneratesCSRsInternalServerError) IsClientError() bool

IsClientError returns true when this generates c s rs internal server error response has a 4xx status code

func (*GeneratesCSRsInternalServerError) IsCode

func (o *GeneratesCSRsInternalServerError) IsCode(code int) bool

IsCode returns true when this generates c s rs internal server error response a status code equal to that given

func (*GeneratesCSRsInternalServerError) IsRedirect

func (o *GeneratesCSRsInternalServerError) IsRedirect() bool

IsRedirect returns true when this generates c s rs internal server error response has a 3xx status code

func (*GeneratesCSRsInternalServerError) IsServerError

func (o *GeneratesCSRsInternalServerError) IsServerError() bool

IsServerError returns true when this generates c s rs internal server error response has a 5xx status code

func (*GeneratesCSRsInternalServerError) IsSuccess

func (o *GeneratesCSRsInternalServerError) IsSuccess() bool

IsSuccess returns true when this generates c s rs internal server error response has a 2xx status code

func (*GeneratesCSRsInternalServerError) String

type GeneratesCSRsNotFound

type GeneratesCSRsNotFound struct {
	Payload *models.Error
}

GeneratesCSRsNotFound describes a response with status code 404, with default header values.

Not Found

func NewGeneratesCSRsNotFound

func NewGeneratesCSRsNotFound() *GeneratesCSRsNotFound

NewGeneratesCSRsNotFound creates a GeneratesCSRsNotFound with default headers values

func (*GeneratesCSRsNotFound) Error

func (o *GeneratesCSRsNotFound) Error() string

func (*GeneratesCSRsNotFound) GetPayload

func (o *GeneratesCSRsNotFound) GetPayload() *models.Error

func (*GeneratesCSRsNotFound) IsClientError

func (o *GeneratesCSRsNotFound) IsClientError() bool

IsClientError returns true when this generates c s rs not found response has a 4xx status code

func (*GeneratesCSRsNotFound) IsCode

func (o *GeneratesCSRsNotFound) IsCode(code int) bool

IsCode returns true when this generates c s rs not found response a status code equal to that given

func (*GeneratesCSRsNotFound) IsRedirect

func (o *GeneratesCSRsNotFound) IsRedirect() bool

IsRedirect returns true when this generates c s rs not found response has a 3xx status code

func (*GeneratesCSRsNotFound) IsServerError

func (o *GeneratesCSRsNotFound) IsServerError() bool

IsServerError returns true when this generates c s rs not found response has a 5xx status code

func (*GeneratesCSRsNotFound) IsSuccess

func (o *GeneratesCSRsNotFound) IsSuccess() bool

IsSuccess returns true when this generates c s rs not found response has a 2xx status code

func (*GeneratesCSRsNotFound) String

func (o *GeneratesCSRsNotFound) String() string

type GeneratesCSRsOK

type GeneratesCSRsOK struct {
	Payload *models.Task
}

GeneratesCSRsOK describes a response with status code 200, with default header values.

OK

func NewGeneratesCSRsOK

func NewGeneratesCSRsOK() *GeneratesCSRsOK

NewGeneratesCSRsOK creates a GeneratesCSRsOK with default headers values

func (*GeneratesCSRsOK) Error

func (o *GeneratesCSRsOK) Error() string

func (*GeneratesCSRsOK) GetPayload

func (o *GeneratesCSRsOK) GetPayload() *models.Task

func (*GeneratesCSRsOK) IsClientError

func (o *GeneratesCSRsOK) IsClientError() bool

IsClientError returns true when this generates c s rs o k response has a 4xx status code

func (*GeneratesCSRsOK) IsCode

func (o *GeneratesCSRsOK) IsCode(code int) bool

IsCode returns true when this generates c s rs o k response a status code equal to that given

func (*GeneratesCSRsOK) IsRedirect

func (o *GeneratesCSRsOK) IsRedirect() bool

IsRedirect returns true when this generates c s rs o k response has a 3xx status code

func (*GeneratesCSRsOK) IsServerError

func (o *GeneratesCSRsOK) IsServerError() bool

IsServerError returns true when this generates c s rs o k response has a 5xx status code

func (*GeneratesCSRsOK) IsSuccess

func (o *GeneratesCSRsOK) IsSuccess() bool

IsSuccess returns true when this generates c s rs o k response has a 2xx status code

func (*GeneratesCSRsOK) String

func (o *GeneratesCSRsOK) String() string

type GeneratesCSRsParams

type GeneratesCSRsParams struct {

	/* CSRSGenerationSpec.

	   csrsGenerationSpec
	*/
	CSRSGenerationSpec *models.CSRSGenerationSpec

	/* DomainName.

	   Domain ID or Name
	*/
	DomainName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GeneratesCSRsParams contains all the parameters to send to the API endpoint

for the generates c s rs operation.

Typically these are written to a http.Request.

func NewGeneratesCSRsParams

func NewGeneratesCSRsParams() *GeneratesCSRsParams

NewGeneratesCSRsParams creates a new GeneratesCSRsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGeneratesCSRsParamsWithContext

func NewGeneratesCSRsParamsWithContext(ctx context.Context) *GeneratesCSRsParams

NewGeneratesCSRsParamsWithContext creates a new GeneratesCSRsParams object with the ability to set a context for a request.

func NewGeneratesCSRsParamsWithHTTPClient

func NewGeneratesCSRsParamsWithHTTPClient(client *http.Client) *GeneratesCSRsParams

NewGeneratesCSRsParamsWithHTTPClient creates a new GeneratesCSRsParams object with the ability to set a custom HTTPClient for a request.

func NewGeneratesCSRsParamsWithTimeout

func NewGeneratesCSRsParamsWithTimeout(timeout time.Duration) *GeneratesCSRsParams

NewGeneratesCSRsParamsWithTimeout creates a new GeneratesCSRsParams object with the ability to set a timeout on a request.

func (*GeneratesCSRsParams) SetCSRSGenerationSpec

func (o *GeneratesCSRsParams) SetCSRSGenerationSpec(cSRSGenerationSpec *models.CSRSGenerationSpec)

SetCSRSGenerationSpec adds the csrsGenerationSpec to the generates c s rs params

func (*GeneratesCSRsParams) SetContext

func (o *GeneratesCSRsParams) SetContext(ctx context.Context)

SetContext adds the context to the generates c s rs params

func (*GeneratesCSRsParams) SetDefaults

func (o *GeneratesCSRsParams) SetDefaults()

SetDefaults hydrates default values in the generates c s rs params (not the query body).

All values with no default are reset to their zero value.

func (*GeneratesCSRsParams) SetDomainName

func (o *GeneratesCSRsParams) SetDomainName(domainName string)

SetDomainName adds the domainName to the generates c s rs params

func (*GeneratesCSRsParams) SetHTTPClient

func (o *GeneratesCSRsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the generates c s rs params

func (*GeneratesCSRsParams) SetTimeout

func (o *GeneratesCSRsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the generates c s rs params

func (*GeneratesCSRsParams) WithCSRSGenerationSpec

func (o *GeneratesCSRsParams) WithCSRSGenerationSpec(cSRSGenerationSpec *models.CSRSGenerationSpec) *GeneratesCSRsParams

WithCSRSGenerationSpec adds the cSRSGenerationSpec to the generates c s rs params

func (*GeneratesCSRsParams) WithContext

WithContext adds the context to the generates c s rs params

func (*GeneratesCSRsParams) WithDefaults

func (o *GeneratesCSRsParams) WithDefaults() *GeneratesCSRsParams

WithDefaults hydrates default values in the generates c s rs params (not the query body).

All values with no default are reset to their zero value.

func (*GeneratesCSRsParams) WithDomainName

func (o *GeneratesCSRsParams) WithDomainName(domainName string) *GeneratesCSRsParams

WithDomainName adds the domainName to the generates c s rs params

func (*GeneratesCSRsParams) WithHTTPClient

func (o *GeneratesCSRsParams) WithHTTPClient(client *http.Client) *GeneratesCSRsParams

WithHTTPClient adds the HTTPClient to the generates c s rs params

func (*GeneratesCSRsParams) WithTimeout

func (o *GeneratesCSRsParams) WithTimeout(timeout time.Duration) *GeneratesCSRsParams

WithTimeout adds the timeout to the generates c s rs params

func (*GeneratesCSRsParams) WriteToRequest

func (o *GeneratesCSRsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GeneratesCSRsReader

type GeneratesCSRsReader struct {
	// contains filtered or unexported fields
}

GeneratesCSRsReader is a Reader for the GeneratesCSRs structure.

func (*GeneratesCSRsReader) ReadResponse

func (o *GeneratesCSRsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetCSRsInternalServerError added in v0.1.1

type GetCSRsInternalServerError struct {
	Payload *models.Error
}

GetCSRsInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGetCSRsInternalServerError added in v0.1.1

func NewGetCSRsInternalServerError() *GetCSRsInternalServerError

NewGetCSRsInternalServerError creates a GetCSRsInternalServerError with default headers values

func (*GetCSRsInternalServerError) Error added in v0.1.1

func (*GetCSRsInternalServerError) GetPayload added in v0.1.1

func (o *GetCSRsInternalServerError) GetPayload() *models.Error

func (*GetCSRsInternalServerError) IsClientError added in v0.1.1

func (o *GetCSRsInternalServerError) IsClientError() bool

IsClientError returns true when this get c s rs internal server error response has a 4xx status code

func (*GetCSRsInternalServerError) IsCode added in v0.1.1

func (o *GetCSRsInternalServerError) IsCode(code int) bool

IsCode returns true when this get c s rs internal server error response a status code equal to that given

func (*GetCSRsInternalServerError) IsRedirect added in v0.1.1

func (o *GetCSRsInternalServerError) IsRedirect() bool

IsRedirect returns true when this get c s rs internal server error response has a 3xx status code

func (*GetCSRsInternalServerError) IsServerError added in v0.1.1

func (o *GetCSRsInternalServerError) IsServerError() bool

IsServerError returns true when this get c s rs internal server error response has a 5xx status code

func (*GetCSRsInternalServerError) IsSuccess added in v0.1.1

func (o *GetCSRsInternalServerError) IsSuccess() bool

IsSuccess returns true when this get c s rs internal server error response has a 2xx status code

func (*GetCSRsInternalServerError) String added in v0.1.1

func (o *GetCSRsInternalServerError) String() string

type GetCSRsNotFound added in v0.1.1

type GetCSRsNotFound struct {
	Payload *models.Error
}

GetCSRsNotFound describes a response with status code 404, with default header values.

Not Found

func NewGetCSRsNotFound added in v0.1.1

func NewGetCSRsNotFound() *GetCSRsNotFound

NewGetCSRsNotFound creates a GetCSRsNotFound with default headers values

func (*GetCSRsNotFound) Error added in v0.1.1

func (o *GetCSRsNotFound) Error() string

func (*GetCSRsNotFound) GetPayload added in v0.1.1

func (o *GetCSRsNotFound) GetPayload() *models.Error

func (*GetCSRsNotFound) IsClientError added in v0.1.1

func (o *GetCSRsNotFound) IsClientError() bool

IsClientError returns true when this get c s rs not found response has a 4xx status code

func (*GetCSRsNotFound) IsCode added in v0.1.1

func (o *GetCSRsNotFound) IsCode(code int) bool

IsCode returns true when this get c s rs not found response a status code equal to that given

func (*GetCSRsNotFound) IsRedirect added in v0.1.1

func (o *GetCSRsNotFound) IsRedirect() bool

IsRedirect returns true when this get c s rs not found response has a 3xx status code

func (*GetCSRsNotFound) IsServerError added in v0.1.1

func (o *GetCSRsNotFound) IsServerError() bool

IsServerError returns true when this get c s rs not found response has a 5xx status code

func (*GetCSRsNotFound) IsSuccess added in v0.1.1

func (o *GetCSRsNotFound) IsSuccess() bool

IsSuccess returns true when this get c s rs not found response has a 2xx status code

func (*GetCSRsNotFound) String added in v0.1.1

func (o *GetCSRsNotFound) String() string

type GetCSRsOK added in v0.1.1

type GetCSRsOK struct {
	Payload *models.PageOfCSR
}

GetCSRsOK describes a response with status code 200, with default header values.

OK

func NewGetCSRsOK added in v0.1.1

func NewGetCSRsOK() *GetCSRsOK

NewGetCSRsOK creates a GetCSRsOK with default headers values

func (*GetCSRsOK) Error added in v0.1.1

func (o *GetCSRsOK) Error() string

func (*GetCSRsOK) GetPayload added in v0.1.1

func (o *GetCSRsOK) GetPayload() *models.PageOfCSR

func (*GetCSRsOK) IsClientError added in v0.1.1

func (o *GetCSRsOK) IsClientError() bool

IsClientError returns true when this get c s rs o k response has a 4xx status code

func (*GetCSRsOK) IsCode added in v0.1.1

func (o *GetCSRsOK) IsCode(code int) bool

IsCode returns true when this get c s rs o k response a status code equal to that given

func (*GetCSRsOK) IsRedirect added in v0.1.1

func (o *GetCSRsOK) IsRedirect() bool

IsRedirect returns true when this get c s rs o k response has a 3xx status code

func (*GetCSRsOK) IsServerError added in v0.1.1

func (o *GetCSRsOK) IsServerError() bool

IsServerError returns true when this get c s rs o k response has a 5xx status code

func (*GetCSRsOK) IsSuccess added in v0.1.1

func (o *GetCSRsOK) IsSuccess() bool

IsSuccess returns true when this get c s rs o k response has a 2xx status code

func (*GetCSRsOK) String added in v0.1.1

func (o *GetCSRsOK) String() string

type GetCSRsParams added in v0.1.1

type GetCSRsParams struct {

	/* DomainName.

	   Domain ID or Name
	*/
	DomainName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetCSRsParams contains all the parameters to send to the API endpoint

for the get c s rs operation.

Typically these are written to a http.Request.

func NewGetCSRsParams added in v0.1.1

func NewGetCSRsParams() *GetCSRsParams

NewGetCSRsParams creates a new GetCSRsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetCSRsParamsWithContext added in v0.1.1

func NewGetCSRsParamsWithContext(ctx context.Context) *GetCSRsParams

NewGetCSRsParamsWithContext creates a new GetCSRsParams object with the ability to set a context for a request.

func NewGetCSRsParamsWithHTTPClient added in v0.1.1

func NewGetCSRsParamsWithHTTPClient(client *http.Client) *GetCSRsParams

NewGetCSRsParamsWithHTTPClient creates a new GetCSRsParams object with the ability to set a custom HTTPClient for a request.

func NewGetCSRsParamsWithTimeout added in v0.1.1

func NewGetCSRsParamsWithTimeout(timeout time.Duration) *GetCSRsParams

NewGetCSRsParamsWithTimeout creates a new GetCSRsParams object with the ability to set a timeout on a request.

func (*GetCSRsParams) SetContext added in v0.1.1

func (o *GetCSRsParams) SetContext(ctx context.Context)

SetContext adds the context to the get c s rs params

func (*GetCSRsParams) SetDefaults added in v0.1.1

func (o *GetCSRsParams) SetDefaults()

SetDefaults hydrates default values in the get c s rs params (not the query body).

All values with no default are reset to their zero value.

func (*GetCSRsParams) SetDomainName added in v0.1.1

func (o *GetCSRsParams) SetDomainName(domainName string)

SetDomainName adds the domainName to the get c s rs params

func (*GetCSRsParams) SetHTTPClient added in v0.1.1

func (o *GetCSRsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get c s rs params

func (*GetCSRsParams) SetTimeout added in v0.1.1

func (o *GetCSRsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get c s rs params

func (*GetCSRsParams) WithContext added in v0.1.1

func (o *GetCSRsParams) WithContext(ctx context.Context) *GetCSRsParams

WithContext adds the context to the get c s rs params

func (*GetCSRsParams) WithDefaults added in v0.1.1

func (o *GetCSRsParams) WithDefaults() *GetCSRsParams

WithDefaults hydrates default values in the get c s rs params (not the query body).

All values with no default are reset to their zero value.

func (*GetCSRsParams) WithDomainName added in v0.1.1

func (o *GetCSRsParams) WithDomainName(domainName string) *GetCSRsParams

WithDomainName adds the domainName to the get c s rs params

func (*GetCSRsParams) WithHTTPClient added in v0.1.1

func (o *GetCSRsParams) WithHTTPClient(client *http.Client) *GetCSRsParams

WithHTTPClient adds the HTTPClient to the get c s rs params

func (*GetCSRsParams) WithTimeout added in v0.1.1

func (o *GetCSRsParams) WithTimeout(timeout time.Duration) *GetCSRsParams

WithTimeout adds the timeout to the get c s rs params

func (*GetCSRsParams) WriteToRequest added in v0.1.1

func (o *GetCSRsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetCSRsReader added in v0.1.1

type GetCSRsReader struct {
	// contains filtered or unexported fields
}

GetCSRsReader is a Reader for the GetCSRs structure.

func (*GetCSRsReader) ReadResponse added in v0.1.1

func (o *GetCSRsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetCertificateAuthoritiesBadRequest added in v0.1.1

type GetCertificateAuthoritiesBadRequest struct {
	Payload *models.Error
}

GetCertificateAuthoritiesBadRequest describes a response with status code 400, with default header values.

Bad request

func NewGetCertificateAuthoritiesBadRequest added in v0.1.1

func NewGetCertificateAuthoritiesBadRequest() *GetCertificateAuthoritiesBadRequest

NewGetCertificateAuthoritiesBadRequest creates a GetCertificateAuthoritiesBadRequest with default headers values

func (*GetCertificateAuthoritiesBadRequest) Error added in v0.1.1

func (*GetCertificateAuthoritiesBadRequest) GetPayload added in v0.1.1

func (*GetCertificateAuthoritiesBadRequest) IsClientError added in v0.1.1

func (o *GetCertificateAuthoritiesBadRequest) IsClientError() bool

IsClientError returns true when this get certificate authorities bad request response has a 4xx status code

func (*GetCertificateAuthoritiesBadRequest) IsCode added in v0.1.1

IsCode returns true when this get certificate authorities bad request response a status code equal to that given

func (*GetCertificateAuthoritiesBadRequest) IsRedirect added in v0.1.1

func (o *GetCertificateAuthoritiesBadRequest) IsRedirect() bool

IsRedirect returns true when this get certificate authorities bad request response has a 3xx status code

func (*GetCertificateAuthoritiesBadRequest) IsServerError added in v0.1.1

func (o *GetCertificateAuthoritiesBadRequest) IsServerError() bool

IsServerError returns true when this get certificate authorities bad request response has a 5xx status code

func (*GetCertificateAuthoritiesBadRequest) IsSuccess added in v0.1.1

IsSuccess returns true when this get certificate authorities bad request response has a 2xx status code

func (*GetCertificateAuthoritiesBadRequest) String added in v0.1.1

type GetCertificateAuthoritiesInternalServerError added in v0.1.1

type GetCertificateAuthoritiesInternalServerError struct {
	Payload *models.Error
}

GetCertificateAuthoritiesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewGetCertificateAuthoritiesInternalServerError added in v0.1.1

func NewGetCertificateAuthoritiesInternalServerError() *GetCertificateAuthoritiesInternalServerError

NewGetCertificateAuthoritiesInternalServerError creates a GetCertificateAuthoritiesInternalServerError with default headers values

func (*GetCertificateAuthoritiesInternalServerError) Error added in v0.1.1

func (*GetCertificateAuthoritiesInternalServerError) GetPayload added in v0.1.1

func (*GetCertificateAuthoritiesInternalServerError) IsClientError added in v0.1.1

IsClientError returns true when this get certificate authorities internal server error response has a 4xx status code

func (*GetCertificateAuthoritiesInternalServerError) IsCode added in v0.1.1

IsCode returns true when this get certificate authorities internal server error response a status code equal to that given

func (*GetCertificateAuthoritiesInternalServerError) IsRedirect added in v0.1.1

IsRedirect returns true when this get certificate authorities internal server error response has a 3xx status code

func (*GetCertificateAuthoritiesInternalServerError) IsServerError added in v0.1.1

IsServerError returns true when this get certificate authorities internal server error response has a 5xx status code

func (*GetCertificateAuthoritiesInternalServerError) IsSuccess added in v0.1.1

IsSuccess returns true when this get certificate authorities internal server error response has a 2xx status code

func (*GetCertificateAuthoritiesInternalServerError) String added in v0.1.1

type GetCertificateAuthoritiesOK added in v0.1.1

type GetCertificateAuthoritiesOK struct {
	Payload *models.PageOfCertificateAuthority
}

GetCertificateAuthoritiesOK describes a response with status code 200, with default header values.

OK

func NewGetCertificateAuthoritiesOK added in v0.1.1

func NewGetCertificateAuthoritiesOK() *GetCertificateAuthoritiesOK

NewGetCertificateAuthoritiesOK creates a GetCertificateAuthoritiesOK with default headers values

func (*GetCertificateAuthoritiesOK) Error added in v0.1.1

func (*GetCertificateAuthoritiesOK) GetPayload added in v0.1.1

func (*GetCertificateAuthoritiesOK) IsClientError added in v0.1.1

func (o *GetCertificateAuthoritiesOK) IsClientError() bool

IsClientError returns true when this get certificate authorities o k response has a 4xx status code

func (*GetCertificateAuthoritiesOK) IsCode added in v0.1.1

func (o *GetCertificateAuthoritiesOK) IsCode(code int) bool

IsCode returns true when this get certificate authorities o k response a status code equal to that given

func (*GetCertificateAuthoritiesOK) IsRedirect added in v0.1.1

func (o *GetCertificateAuthoritiesOK) IsRedirect() bool

IsRedirect returns true when this get certificate authorities o k response has a 3xx status code

func (*GetCertificateAuthoritiesOK) IsServerError added in v0.1.1

func (o *GetCertificateAuthoritiesOK) IsServerError() bool

IsServerError returns true when this get certificate authorities o k response has a 5xx status code

func (*GetCertificateAuthoritiesOK) IsSuccess added in v0.1.1

func (o *GetCertificateAuthoritiesOK) IsSuccess() bool

IsSuccess returns true when this get certificate authorities o k response has a 2xx status code

func (*GetCertificateAuthoritiesOK) String added in v0.1.1

func (o *GetCertificateAuthoritiesOK) String() string

type GetCertificateAuthoritiesParams added in v0.1.1

type GetCertificateAuthoritiesParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetCertificateAuthoritiesParams contains all the parameters to send to the API endpoint

for the get certificate authorities operation.

Typically these are written to a http.Request.

func NewGetCertificateAuthoritiesParams added in v0.1.1

func NewGetCertificateAuthoritiesParams() *GetCertificateAuthoritiesParams

NewGetCertificateAuthoritiesParams creates a new GetCertificateAuthoritiesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetCertificateAuthoritiesParamsWithContext added in v0.1.1

func NewGetCertificateAuthoritiesParamsWithContext(ctx context.Context) *GetCertificateAuthoritiesParams

NewGetCertificateAuthoritiesParamsWithContext creates a new GetCertificateAuthoritiesParams object with the ability to set a context for a request.

func NewGetCertificateAuthoritiesParamsWithHTTPClient added in v0.1.1

func NewGetCertificateAuthoritiesParamsWithHTTPClient(client *http.Client) *GetCertificateAuthoritiesParams

NewGetCertificateAuthoritiesParamsWithHTTPClient creates a new GetCertificateAuthoritiesParams object with the ability to set a custom HTTPClient for a request.

func NewGetCertificateAuthoritiesParamsWithTimeout added in v0.1.1

func NewGetCertificateAuthoritiesParamsWithTimeout(timeout time.Duration) *GetCertificateAuthoritiesParams

NewGetCertificateAuthoritiesParamsWithTimeout creates a new GetCertificateAuthoritiesParams object with the ability to set a timeout on a request.

func (*GetCertificateAuthoritiesParams) SetContext added in v0.1.1

func (o *GetCertificateAuthoritiesParams) SetContext(ctx context.Context)

SetContext adds the context to the get certificate authorities params

func (*GetCertificateAuthoritiesParams) SetDefaults added in v0.1.1

func (o *GetCertificateAuthoritiesParams) SetDefaults()

SetDefaults hydrates default values in the get certificate authorities params (not the query body).

All values with no default are reset to their zero value.

func (*GetCertificateAuthoritiesParams) SetHTTPClient added in v0.1.1

func (o *GetCertificateAuthoritiesParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get certificate authorities params

func (*GetCertificateAuthoritiesParams) SetTimeout added in v0.1.1

func (o *GetCertificateAuthoritiesParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get certificate authorities params

func (*GetCertificateAuthoritiesParams) WithContext added in v0.1.1

WithContext adds the context to the get certificate authorities params

func (*GetCertificateAuthoritiesParams) WithDefaults added in v0.1.1

WithDefaults hydrates default values in the get certificate authorities params (not the query body).

All values with no default are reset to their zero value.

func (*GetCertificateAuthoritiesParams) WithHTTPClient added in v0.1.1

WithHTTPClient adds the HTTPClient to the get certificate authorities params

func (*GetCertificateAuthoritiesParams) WithTimeout added in v0.1.1

WithTimeout adds the timeout to the get certificate authorities params

func (*GetCertificateAuthoritiesParams) WriteToRequest added in v0.1.1

WriteToRequest writes these params to a swagger request

type GetCertificateAuthoritiesReader added in v0.1.1

type GetCertificateAuthoritiesReader struct {
	// contains filtered or unexported fields
}

GetCertificateAuthoritiesReader is a Reader for the GetCertificateAuthorities structure.

func (*GetCertificateAuthoritiesReader) ReadResponse added in v0.1.1

func (o *GetCertificateAuthoritiesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetCertificateAuthorityByIDInternalServerError added in v0.1.1

type GetCertificateAuthorityByIDInternalServerError struct {
	Payload *models.Error
}

GetCertificateAuthorityByIDInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewGetCertificateAuthorityByIDInternalServerError added in v0.1.1

func NewGetCertificateAuthorityByIDInternalServerError() *GetCertificateAuthorityByIDInternalServerError

NewGetCertificateAuthorityByIDInternalServerError creates a GetCertificateAuthorityByIDInternalServerError with default headers values

func (*GetCertificateAuthorityByIDInternalServerError) Error added in v0.1.1

func (*GetCertificateAuthorityByIDInternalServerError) GetPayload added in v0.1.1

func (*GetCertificateAuthorityByIDInternalServerError) IsClientError added in v0.1.1

IsClientError returns true when this get certificate authority by Id internal server error response has a 4xx status code

func (*GetCertificateAuthorityByIDInternalServerError) IsCode added in v0.1.1

IsCode returns true when this get certificate authority by Id internal server error response a status code equal to that given

func (*GetCertificateAuthorityByIDInternalServerError) IsRedirect added in v0.1.1

IsRedirect returns true when this get certificate authority by Id internal server error response has a 3xx status code

func (*GetCertificateAuthorityByIDInternalServerError) IsServerError added in v0.1.1

IsServerError returns true when this get certificate authority by Id internal server error response has a 5xx status code

func (*GetCertificateAuthorityByIDInternalServerError) IsSuccess added in v0.1.1

IsSuccess returns true when this get certificate authority by Id internal server error response has a 2xx status code

func (*GetCertificateAuthorityByIDInternalServerError) String added in v0.1.1

type GetCertificateAuthorityByIDNotFound added in v0.1.1

type GetCertificateAuthorityByIDNotFound struct {
	Payload *models.Error
}

GetCertificateAuthorityByIDNotFound describes a response with status code 404, with default header values.

Not Found

func NewGetCertificateAuthorityByIDNotFound added in v0.1.1

func NewGetCertificateAuthorityByIDNotFound() *GetCertificateAuthorityByIDNotFound

NewGetCertificateAuthorityByIDNotFound creates a GetCertificateAuthorityByIDNotFound with default headers values

func (*GetCertificateAuthorityByIDNotFound) Error added in v0.1.1

func (*GetCertificateAuthorityByIDNotFound) GetPayload added in v0.1.1

func (*GetCertificateAuthorityByIDNotFound) IsClientError added in v0.1.1

func (o *GetCertificateAuthorityByIDNotFound) IsClientError() bool

IsClientError returns true when this get certificate authority by Id not found response has a 4xx status code

func (*GetCertificateAuthorityByIDNotFound) IsCode added in v0.1.1

IsCode returns true when this get certificate authority by Id not found response a status code equal to that given

func (*GetCertificateAuthorityByIDNotFound) IsRedirect added in v0.1.1

func (o *GetCertificateAuthorityByIDNotFound) IsRedirect() bool

IsRedirect returns true when this get certificate authority by Id not found response has a 3xx status code

func (*GetCertificateAuthorityByIDNotFound) IsServerError added in v0.1.1

func (o *GetCertificateAuthorityByIDNotFound) IsServerError() bool

IsServerError returns true when this get certificate authority by Id not found response has a 5xx status code

func (*GetCertificateAuthorityByIDNotFound) IsSuccess added in v0.1.1

IsSuccess returns true when this get certificate authority by Id not found response has a 2xx status code

func (*GetCertificateAuthorityByIDNotFound) String added in v0.1.1

type GetCertificateAuthorityByIDOK added in v0.1.1

type GetCertificateAuthorityByIDOK struct {
	Payload *models.CertificateAuthority
}

GetCertificateAuthorityByIDOK describes a response with status code 200, with default header values.

OK

func NewGetCertificateAuthorityByIDOK added in v0.1.1

func NewGetCertificateAuthorityByIDOK() *GetCertificateAuthorityByIDOK

NewGetCertificateAuthorityByIDOK creates a GetCertificateAuthorityByIDOK with default headers values

func (*GetCertificateAuthorityByIDOK) Error added in v0.1.1

func (*GetCertificateAuthorityByIDOK) GetPayload added in v0.1.1

func (*GetCertificateAuthorityByIDOK) IsClientError added in v0.1.1

func (o *GetCertificateAuthorityByIDOK) IsClientError() bool

IsClientError returns true when this get certificate authority by Id o k response has a 4xx status code

func (*GetCertificateAuthorityByIDOK) IsCode added in v0.1.1

func (o *GetCertificateAuthorityByIDOK) IsCode(code int) bool

IsCode returns true when this get certificate authority by Id o k response a status code equal to that given

func (*GetCertificateAuthorityByIDOK) IsRedirect added in v0.1.1

func (o *GetCertificateAuthorityByIDOK) IsRedirect() bool

IsRedirect returns true when this get certificate authority by Id o k response has a 3xx status code

func (*GetCertificateAuthorityByIDOK) IsServerError added in v0.1.1

func (o *GetCertificateAuthorityByIDOK) IsServerError() bool

IsServerError returns true when this get certificate authority by Id o k response has a 5xx status code

func (*GetCertificateAuthorityByIDOK) IsSuccess added in v0.1.1

func (o *GetCertificateAuthorityByIDOK) IsSuccess() bool

IsSuccess returns true when this get certificate authority by Id o k response has a 2xx status code

func (*GetCertificateAuthorityByIDOK) String added in v0.1.1

type GetCertificateAuthorityByIDParams added in v0.1.1

type GetCertificateAuthorityByIDParams struct {

	/* ID.

	   CA type
	*/
	ID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetCertificateAuthorityByIDParams contains all the parameters to send to the API endpoint

for the get certificate authority by Id operation.

Typically these are written to a http.Request.

func NewGetCertificateAuthorityByIDParams added in v0.1.1

func NewGetCertificateAuthorityByIDParams() *GetCertificateAuthorityByIDParams

NewGetCertificateAuthorityByIDParams creates a new GetCertificateAuthorityByIDParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetCertificateAuthorityByIDParamsWithContext added in v0.1.1

func NewGetCertificateAuthorityByIDParamsWithContext(ctx context.Context) *GetCertificateAuthorityByIDParams

NewGetCertificateAuthorityByIDParamsWithContext creates a new GetCertificateAuthorityByIDParams object with the ability to set a context for a request.

func NewGetCertificateAuthorityByIDParamsWithHTTPClient added in v0.1.1

func NewGetCertificateAuthorityByIDParamsWithHTTPClient(client *http.Client) *GetCertificateAuthorityByIDParams

NewGetCertificateAuthorityByIDParamsWithHTTPClient creates a new GetCertificateAuthorityByIDParams object with the ability to set a custom HTTPClient for a request.

func NewGetCertificateAuthorityByIDParamsWithTimeout added in v0.1.1

func NewGetCertificateAuthorityByIDParamsWithTimeout(timeout time.Duration) *GetCertificateAuthorityByIDParams

NewGetCertificateAuthorityByIDParamsWithTimeout creates a new GetCertificateAuthorityByIDParams object with the ability to set a timeout on a request.

func (*GetCertificateAuthorityByIDParams) SetContext added in v0.1.1

SetContext adds the context to the get certificate authority by Id params

func (*GetCertificateAuthorityByIDParams) SetDefaults added in v0.1.1

func (o *GetCertificateAuthorityByIDParams) SetDefaults()

SetDefaults hydrates default values in the get certificate authority by Id params (not the query body).

All values with no default are reset to their zero value.

func (*GetCertificateAuthorityByIDParams) SetHTTPClient added in v0.1.1

func (o *GetCertificateAuthorityByIDParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get certificate authority by Id params

func (*GetCertificateAuthorityByIDParams) SetID added in v0.1.1

SetID adds the id to the get certificate authority by Id params

func (*GetCertificateAuthorityByIDParams) SetTimeout added in v0.1.1

func (o *GetCertificateAuthorityByIDParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get certificate authority by Id params

func (*GetCertificateAuthorityByIDParams) WithContext added in v0.1.1

WithContext adds the context to the get certificate authority by Id params

func (*GetCertificateAuthorityByIDParams) WithDefaults added in v0.1.1

WithDefaults hydrates default values in the get certificate authority by Id params (not the query body).

All values with no default are reset to their zero value.

func (*GetCertificateAuthorityByIDParams) WithHTTPClient added in v0.1.1

WithHTTPClient adds the HTTPClient to the get certificate authority by Id params

func (*GetCertificateAuthorityByIDParams) WithID added in v0.1.1

WithID adds the id to the get certificate authority by Id params

func (*GetCertificateAuthorityByIDParams) WithTimeout added in v0.1.1

WithTimeout adds the timeout to the get certificate authority by Id params

func (*GetCertificateAuthorityByIDParams) WriteToRequest added in v0.1.1

WriteToRequest writes these params to a swagger request

type GetCertificateAuthorityByIDReader added in v0.1.1

type GetCertificateAuthorityByIDReader struct {
	// contains filtered or unexported fields
}

GetCertificateAuthorityByIDReader is a Reader for the GetCertificateAuthorityByID structure.

func (*GetCertificateAuthorityByIDReader) ReadResponse added in v0.1.1

func (o *GetCertificateAuthorityByIDReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetCertificatesInternalServerError added in v0.1.1

type GetCertificatesInternalServerError struct {
	Payload *models.Error
}

GetCertificatesInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGetCertificatesInternalServerError added in v0.1.1

func NewGetCertificatesInternalServerError() *GetCertificatesInternalServerError

NewGetCertificatesInternalServerError creates a GetCertificatesInternalServerError with default headers values

func (*GetCertificatesInternalServerError) Error added in v0.1.1

func (*GetCertificatesInternalServerError) GetPayload added in v0.1.1

func (*GetCertificatesInternalServerError) IsClientError added in v0.1.1

func (o *GetCertificatesInternalServerError) IsClientError() bool

IsClientError returns true when this get certificates internal server error response has a 4xx status code

func (*GetCertificatesInternalServerError) IsCode added in v0.1.1

IsCode returns true when this get certificates internal server error response a status code equal to that given

func (*GetCertificatesInternalServerError) IsRedirect added in v0.1.1

func (o *GetCertificatesInternalServerError) IsRedirect() bool

IsRedirect returns true when this get certificates internal server error response has a 3xx status code

func (*GetCertificatesInternalServerError) IsServerError added in v0.1.1

func (o *GetCertificatesInternalServerError) IsServerError() bool

IsServerError returns true when this get certificates internal server error response has a 5xx status code

func (*GetCertificatesInternalServerError) IsSuccess added in v0.1.1

IsSuccess returns true when this get certificates internal server error response has a 2xx status code

func (*GetCertificatesInternalServerError) String added in v0.1.1

type GetCertificatesNotFound added in v0.1.1

type GetCertificatesNotFound struct {
	Payload *models.Error
}

GetCertificatesNotFound describes a response with status code 404, with default header values.

Not Found

func NewGetCertificatesNotFound added in v0.1.1

func NewGetCertificatesNotFound() *GetCertificatesNotFound

NewGetCertificatesNotFound creates a GetCertificatesNotFound with default headers values

func (*GetCertificatesNotFound) Error added in v0.1.1

func (o *GetCertificatesNotFound) Error() string

func (*GetCertificatesNotFound) GetPayload added in v0.1.1

func (o *GetCertificatesNotFound) GetPayload() *models.Error

func (*GetCertificatesNotFound) IsClientError added in v0.1.1

func (o *GetCertificatesNotFound) IsClientError() bool

IsClientError returns true when this get certificates not found response has a 4xx status code

func (*GetCertificatesNotFound) IsCode added in v0.1.1

func (o *GetCertificatesNotFound) IsCode(code int) bool

IsCode returns true when this get certificates not found response a status code equal to that given

func (*GetCertificatesNotFound) IsRedirect added in v0.1.1

func (o *GetCertificatesNotFound) IsRedirect() bool

IsRedirect returns true when this get certificates not found response has a 3xx status code

func (*GetCertificatesNotFound) IsServerError added in v0.1.1

func (o *GetCertificatesNotFound) IsServerError() bool

IsServerError returns true when this get certificates not found response has a 5xx status code

func (*GetCertificatesNotFound) IsSuccess added in v0.1.1

func (o *GetCertificatesNotFound) IsSuccess() bool

IsSuccess returns true when this get certificates not found response has a 2xx status code

func (*GetCertificatesNotFound) String added in v0.1.1

func (o *GetCertificatesNotFound) String() string

type GetCertificatesOK added in v0.1.1

type GetCertificatesOK struct {
	Payload *models.PageOfCertificate
}

GetCertificatesOK describes a response with status code 200, with default header values.

OK

func NewGetCertificatesOK added in v0.1.1

func NewGetCertificatesOK() *GetCertificatesOK

NewGetCertificatesOK creates a GetCertificatesOK with default headers values

func (*GetCertificatesOK) Error added in v0.1.1

func (o *GetCertificatesOK) Error() string

func (*GetCertificatesOK) GetPayload added in v0.1.1

func (o *GetCertificatesOK) GetPayload() *models.PageOfCertificate

func (*GetCertificatesOK) IsClientError added in v0.1.1

func (o *GetCertificatesOK) IsClientError() bool

IsClientError returns true when this get certificates o k response has a 4xx status code

func (*GetCertificatesOK) IsCode added in v0.1.1

func (o *GetCertificatesOK) IsCode(code int) bool

IsCode returns true when this get certificates o k response a status code equal to that given

func (*GetCertificatesOK) IsRedirect added in v0.1.1

func (o *GetCertificatesOK) IsRedirect() bool

IsRedirect returns true when this get certificates o k response has a 3xx status code

func (*GetCertificatesOK) IsServerError added in v0.1.1

func (o *GetCertificatesOK) IsServerError() bool

IsServerError returns true when this get certificates o k response has a 5xx status code

func (*GetCertificatesOK) IsSuccess added in v0.1.1

func (o *GetCertificatesOK) IsSuccess() bool

IsSuccess returns true when this get certificates o k response has a 2xx status code

func (*GetCertificatesOK) String added in v0.1.1

func (o *GetCertificatesOK) String() string

type GetCertificatesParams added in v0.1.1

type GetCertificatesParams struct {

	/* DomainName.

	   Domain ID or Name
	*/
	DomainName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetCertificatesParams contains all the parameters to send to the API endpoint

for the get certificates operation.

Typically these are written to a http.Request.

func NewGetCertificatesParams added in v0.1.1

func NewGetCertificatesParams() *GetCertificatesParams

NewGetCertificatesParams creates a new GetCertificatesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetCertificatesParamsWithContext added in v0.1.1

func NewGetCertificatesParamsWithContext(ctx context.Context) *GetCertificatesParams

NewGetCertificatesParamsWithContext creates a new GetCertificatesParams object with the ability to set a context for a request.

func NewGetCertificatesParamsWithHTTPClient added in v0.1.1

func NewGetCertificatesParamsWithHTTPClient(client *http.Client) *GetCertificatesParams

NewGetCertificatesParamsWithHTTPClient creates a new GetCertificatesParams object with the ability to set a custom HTTPClient for a request.

func NewGetCertificatesParamsWithTimeout added in v0.1.1

func NewGetCertificatesParamsWithTimeout(timeout time.Duration) *GetCertificatesParams

NewGetCertificatesParamsWithTimeout creates a new GetCertificatesParams object with the ability to set a timeout on a request.

func (*GetCertificatesParams) SetContext added in v0.1.1

func (o *GetCertificatesParams) SetContext(ctx context.Context)

SetContext adds the context to the get certificates params

func (*GetCertificatesParams) SetDefaults added in v0.1.1

func (o *GetCertificatesParams) SetDefaults()

SetDefaults hydrates default values in the get certificates params (not the query body).

All values with no default are reset to their zero value.

func (*GetCertificatesParams) SetDomainName added in v0.1.1

func (o *GetCertificatesParams) SetDomainName(domainName string)

SetDomainName adds the domainName to the get certificates params

func (*GetCertificatesParams) SetHTTPClient added in v0.1.1

func (o *GetCertificatesParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get certificates params

func (*GetCertificatesParams) SetTimeout added in v0.1.1

func (o *GetCertificatesParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get certificates params

func (*GetCertificatesParams) WithContext added in v0.1.1

WithContext adds the context to the get certificates params

func (*GetCertificatesParams) WithDefaults added in v0.1.1

func (o *GetCertificatesParams) WithDefaults() *GetCertificatesParams

WithDefaults hydrates default values in the get certificates params (not the query body).

All values with no default are reset to their zero value.

func (*GetCertificatesParams) WithDomainName added in v0.1.1

func (o *GetCertificatesParams) WithDomainName(domainName string) *GetCertificatesParams

WithDomainName adds the domainName to the get certificates params

func (*GetCertificatesParams) WithHTTPClient added in v0.1.1

func (o *GetCertificatesParams) WithHTTPClient(client *http.Client) *GetCertificatesParams

WithHTTPClient adds the HTTPClient to the get certificates params

func (*GetCertificatesParams) WithTimeout added in v0.1.1

func (o *GetCertificatesParams) WithTimeout(timeout time.Duration) *GetCertificatesParams

WithTimeout adds the timeout to the get certificates params

func (*GetCertificatesParams) WriteToRequest added in v0.1.1

func (o *GetCertificatesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetCertificatesReader added in v0.1.1

type GetCertificatesReader struct {
	// contains filtered or unexported fields
}

GetCertificatesReader is a Reader for the GetCertificates structure.

func (*GetCertificatesReader) ReadResponse added in v0.1.1

func (o *GetCertificatesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetResourceCertificatesValidationResultInternalServerError added in v0.2.0

type GetResourceCertificatesValidationResultInternalServerError struct {
	Payload *models.Error
}

GetResourceCertificatesValidationResultInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGetResourceCertificatesValidationResultInternalServerError added in v0.2.0

func NewGetResourceCertificatesValidationResultInternalServerError() *GetResourceCertificatesValidationResultInternalServerError

NewGetResourceCertificatesValidationResultInternalServerError creates a GetResourceCertificatesValidationResultInternalServerError with default headers values

func (*GetResourceCertificatesValidationResultInternalServerError) Error added in v0.2.0

func (*GetResourceCertificatesValidationResultInternalServerError) GetPayload added in v0.2.0

func (*GetResourceCertificatesValidationResultInternalServerError) IsClientError added in v0.2.0

IsClientError returns true when this get resource certificates validation result internal server error response has a 4xx status code

func (*GetResourceCertificatesValidationResultInternalServerError) IsCode added in v0.2.0

IsCode returns true when this get resource certificates validation result internal server error response a status code equal to that given

func (*GetResourceCertificatesValidationResultInternalServerError) IsRedirect added in v0.2.0

IsRedirect returns true when this get resource certificates validation result internal server error response has a 3xx status code

func (*GetResourceCertificatesValidationResultInternalServerError) IsServerError added in v0.2.0

IsServerError returns true when this get resource certificates validation result internal server error response has a 5xx status code

func (*GetResourceCertificatesValidationResultInternalServerError) IsSuccess added in v0.2.0

IsSuccess returns true when this get resource certificates validation result internal server error response has a 2xx status code

func (*GetResourceCertificatesValidationResultInternalServerError) String added in v0.2.0

type GetResourceCertificatesValidationResultNotFound added in v0.2.0

type GetResourceCertificatesValidationResultNotFound struct {
	Payload *models.Error
}

GetResourceCertificatesValidationResultNotFound describes a response with status code 404, with default header values.

Not Found

func NewGetResourceCertificatesValidationResultNotFound added in v0.2.0

func NewGetResourceCertificatesValidationResultNotFound() *GetResourceCertificatesValidationResultNotFound

NewGetResourceCertificatesValidationResultNotFound creates a GetResourceCertificatesValidationResultNotFound with default headers values

func (*GetResourceCertificatesValidationResultNotFound) Error added in v0.2.0

func (*GetResourceCertificatesValidationResultNotFound) GetPayload added in v0.2.0

func (*GetResourceCertificatesValidationResultNotFound) IsClientError added in v0.2.0

IsClientError returns true when this get resource certificates validation result not found response has a 4xx status code

func (*GetResourceCertificatesValidationResultNotFound) IsCode added in v0.2.0

IsCode returns true when this get resource certificates validation result not found response a status code equal to that given

func (*GetResourceCertificatesValidationResultNotFound) IsRedirect added in v0.2.0

IsRedirect returns true when this get resource certificates validation result not found response has a 3xx status code

func (*GetResourceCertificatesValidationResultNotFound) IsServerError added in v0.2.0

IsServerError returns true when this get resource certificates validation result not found response has a 5xx status code

func (*GetResourceCertificatesValidationResultNotFound) IsSuccess added in v0.2.0

IsSuccess returns true when this get resource certificates validation result not found response has a 2xx status code

func (*GetResourceCertificatesValidationResultNotFound) String added in v0.2.0

type GetResourceCertificatesValidationResultOK added in v0.2.0

type GetResourceCertificatesValidationResultOK struct {
	Payload *models.CertificateValidationTask
}

GetResourceCertificatesValidationResultOK describes a response with status code 200, with default header values.

OK

func NewGetResourceCertificatesValidationResultOK added in v0.2.0

func NewGetResourceCertificatesValidationResultOK() *GetResourceCertificatesValidationResultOK

NewGetResourceCertificatesValidationResultOK creates a GetResourceCertificatesValidationResultOK with default headers values

func (*GetResourceCertificatesValidationResultOK) Error added in v0.2.0

func (*GetResourceCertificatesValidationResultOK) GetPayload added in v0.2.0

func (*GetResourceCertificatesValidationResultOK) IsClientError added in v0.2.0

IsClientError returns true when this get resource certificates validation result o k response has a 4xx status code

func (*GetResourceCertificatesValidationResultOK) IsCode added in v0.2.0

IsCode returns true when this get resource certificates validation result o k response a status code equal to that given

func (*GetResourceCertificatesValidationResultOK) IsRedirect added in v0.2.0

IsRedirect returns true when this get resource certificates validation result o k response has a 3xx status code

func (*GetResourceCertificatesValidationResultOK) IsServerError added in v0.2.0

IsServerError returns true when this get resource certificates validation result o k response has a 5xx status code

func (*GetResourceCertificatesValidationResultOK) IsSuccess added in v0.2.0

IsSuccess returns true when this get resource certificates validation result o k response has a 2xx status code

func (*GetResourceCertificatesValidationResultOK) String added in v0.2.0

type GetResourceCertificatesValidationResultParams added in v0.2.0

type GetResourceCertificatesValidationResultParams struct {

	/* ID.

	   Domain ID
	*/
	ID string

	/* ValidationID.

	   Validation ID
	*/
	ValidationID string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetResourceCertificatesValidationResultParams contains all the parameters to send to the API endpoint

for the get resource certificates validation result operation.

Typically these are written to a http.Request.

func NewGetResourceCertificatesValidationResultParams added in v0.2.0

func NewGetResourceCertificatesValidationResultParams() *GetResourceCertificatesValidationResultParams

NewGetResourceCertificatesValidationResultParams creates a new GetResourceCertificatesValidationResultParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetResourceCertificatesValidationResultParamsWithContext added in v0.2.0

func NewGetResourceCertificatesValidationResultParamsWithContext(ctx context.Context) *GetResourceCertificatesValidationResultParams

NewGetResourceCertificatesValidationResultParamsWithContext creates a new GetResourceCertificatesValidationResultParams object with the ability to set a context for a request.

func NewGetResourceCertificatesValidationResultParamsWithHTTPClient added in v0.2.0

func NewGetResourceCertificatesValidationResultParamsWithHTTPClient(client *http.Client) *GetResourceCertificatesValidationResultParams

NewGetResourceCertificatesValidationResultParamsWithHTTPClient creates a new GetResourceCertificatesValidationResultParams object with the ability to set a custom HTTPClient for a request.

func NewGetResourceCertificatesValidationResultParamsWithTimeout added in v0.2.0

func NewGetResourceCertificatesValidationResultParamsWithTimeout(timeout time.Duration) *GetResourceCertificatesValidationResultParams

NewGetResourceCertificatesValidationResultParamsWithTimeout creates a new GetResourceCertificatesValidationResultParams object with the ability to set a timeout on a request.

func (*GetResourceCertificatesValidationResultParams) SetContext added in v0.2.0

SetContext adds the context to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) SetDefaults added in v0.2.0

SetDefaults hydrates default values in the get resource certificates validation result params (not the query body).

All values with no default are reset to their zero value.

func (*GetResourceCertificatesValidationResultParams) SetHTTPClient added in v0.2.0

func (o *GetResourceCertificatesValidationResultParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) SetID added in v0.2.0

SetID adds the id to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) SetTimeout added in v0.2.0

SetTimeout adds the timeout to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) SetValidationID added in v0.2.0

func (o *GetResourceCertificatesValidationResultParams) SetValidationID(validationID string)

SetValidationID adds the validationId to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) WithContext added in v0.2.0

WithContext adds the context to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) WithDefaults added in v0.2.0

WithDefaults hydrates default values in the get resource certificates validation result params (not the query body).

All values with no default are reset to their zero value.

func (*GetResourceCertificatesValidationResultParams) WithHTTPClient added in v0.2.0

WithHTTPClient adds the HTTPClient to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) WithID added in v0.2.0

WithID adds the id to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) WithTimeout added in v0.2.0

WithTimeout adds the timeout to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) WithValidationID added in v0.2.0

WithValidationID adds the validationID to the get resource certificates validation result params

func (*GetResourceCertificatesValidationResultParams) WriteToRequest added in v0.2.0

WriteToRequest writes these params to a swagger request

type GetResourceCertificatesValidationResultReader added in v0.2.0

type GetResourceCertificatesValidationResultReader struct {
	// contains filtered or unexported fields
}

GetResourceCertificatesValidationResultReader is a Reader for the GetResourceCertificatesValidationResult structure.

func (*GetResourceCertificatesValidationResultReader) ReadResponse added in v0.2.0

func (o *GetResourceCertificatesValidationResultReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type ReplaceCertificatesAccepted

type ReplaceCertificatesAccepted struct {
	Payload *models.Task
}

ReplaceCertificatesAccepted describes a response with status code 202, with default header values.

Accepted

func NewReplaceCertificatesAccepted

func NewReplaceCertificatesAccepted() *ReplaceCertificatesAccepted

NewReplaceCertificatesAccepted creates a ReplaceCertificatesAccepted with default headers values

func (*ReplaceCertificatesAccepted) Error

func (*ReplaceCertificatesAccepted) GetPayload

func (o *ReplaceCertificatesAccepted) GetPayload() *models.Task

func (*ReplaceCertificatesAccepted) IsClientError

func (o *ReplaceCertificatesAccepted) IsClientError() bool

IsClientError returns true when this replace certificates accepted response has a 4xx status code

func (*ReplaceCertificatesAccepted) IsCode

func (o *ReplaceCertificatesAccepted) IsCode(code int) bool

IsCode returns true when this replace certificates accepted response a status code equal to that given

func (*ReplaceCertificatesAccepted) IsRedirect

func (o *ReplaceCertificatesAccepted) IsRedirect() bool

IsRedirect returns true when this replace certificates accepted response has a 3xx status code

func (*ReplaceCertificatesAccepted) IsServerError

func (o *ReplaceCertificatesAccepted) IsServerError() bool

IsServerError returns true when this replace certificates accepted response has a 5xx status code

func (*ReplaceCertificatesAccepted) IsSuccess

func (o *ReplaceCertificatesAccepted) IsSuccess() bool

IsSuccess returns true when this replace certificates accepted response has a 2xx status code

func (*ReplaceCertificatesAccepted) String

func (o *ReplaceCertificatesAccepted) String() string

type ReplaceCertificatesBadRequest

type ReplaceCertificatesBadRequest struct {
	Payload *models.Error
}

ReplaceCertificatesBadRequest describes a response with status code 400, with default header values.

Bad request

func NewReplaceCertificatesBadRequest

func NewReplaceCertificatesBadRequest() *ReplaceCertificatesBadRequest

NewReplaceCertificatesBadRequest creates a ReplaceCertificatesBadRequest with default headers values

func (*ReplaceCertificatesBadRequest) Error

func (*ReplaceCertificatesBadRequest) GetPayload

func (o *ReplaceCertificatesBadRequest) GetPayload() *models.Error

func (*ReplaceCertificatesBadRequest) IsClientError

func (o *ReplaceCertificatesBadRequest) IsClientError() bool

IsClientError returns true when this replace certificates bad request response has a 4xx status code

func (*ReplaceCertificatesBadRequest) IsCode

func (o *ReplaceCertificatesBadRequest) IsCode(code int) bool

IsCode returns true when this replace certificates bad request response a status code equal to that given

func (*ReplaceCertificatesBadRequest) IsRedirect

func (o *ReplaceCertificatesBadRequest) IsRedirect() bool

IsRedirect returns true when this replace certificates bad request response has a 3xx status code

func (*ReplaceCertificatesBadRequest) IsServerError

func (o *ReplaceCertificatesBadRequest) IsServerError() bool

IsServerError returns true when this replace certificates bad request response has a 5xx status code

func (*ReplaceCertificatesBadRequest) IsSuccess

func (o *ReplaceCertificatesBadRequest) IsSuccess() bool

IsSuccess returns true when this replace certificates bad request response has a 2xx status code

func (*ReplaceCertificatesBadRequest) String

type ReplaceCertificatesConflict

type ReplaceCertificatesConflict struct {
	Payload *models.Error
}

ReplaceCertificatesConflict describes a response with status code 409, with default header values.

Conflict

func NewReplaceCertificatesConflict

func NewReplaceCertificatesConflict() *ReplaceCertificatesConflict

NewReplaceCertificatesConflict creates a ReplaceCertificatesConflict with default headers values

func (*ReplaceCertificatesConflict) Error

func (*ReplaceCertificatesConflict) GetPayload

func (o *ReplaceCertificatesConflict) GetPayload() *models.Error

func (*ReplaceCertificatesConflict) IsClientError

func (o *ReplaceCertificatesConflict) IsClientError() bool

IsClientError returns true when this replace certificates conflict response has a 4xx status code

func (*ReplaceCertificatesConflict) IsCode

func (o *ReplaceCertificatesConflict) IsCode(code int) bool

IsCode returns true when this replace certificates conflict response a status code equal to that given

func (*ReplaceCertificatesConflict) IsRedirect

func (o *ReplaceCertificatesConflict) IsRedirect() bool

IsRedirect returns true when this replace certificates conflict response has a 3xx status code

func (*ReplaceCertificatesConflict) IsServerError

func (o *ReplaceCertificatesConflict) IsServerError() bool

IsServerError returns true when this replace certificates conflict response has a 5xx status code

func (*ReplaceCertificatesConflict) IsSuccess

func (o *ReplaceCertificatesConflict) IsSuccess() bool

IsSuccess returns true when this replace certificates conflict response has a 2xx status code

func (*ReplaceCertificatesConflict) String

func (o *ReplaceCertificatesConflict) String() string

type ReplaceCertificatesForbidden

type ReplaceCertificatesForbidden struct {
	Payload *models.Error
}

ReplaceCertificatesForbidden describes a response with status code 403, with default header values.

Forbidden

func NewReplaceCertificatesForbidden

func NewReplaceCertificatesForbidden() *ReplaceCertificatesForbidden

NewReplaceCertificatesForbidden creates a ReplaceCertificatesForbidden with default headers values

func (*ReplaceCertificatesForbidden) Error

func (*ReplaceCertificatesForbidden) GetPayload

func (o *ReplaceCertificatesForbidden) GetPayload() *models.Error

func (*ReplaceCertificatesForbidden) IsClientError

func (o *ReplaceCertificatesForbidden) IsClientError() bool

IsClientError returns true when this replace certificates forbidden response has a 4xx status code

func (*ReplaceCertificatesForbidden) IsCode

func (o *ReplaceCertificatesForbidden) IsCode(code int) bool

IsCode returns true when this replace certificates forbidden response a status code equal to that given

func (*ReplaceCertificatesForbidden) IsRedirect

func (o *ReplaceCertificatesForbidden) IsRedirect() bool

IsRedirect returns true when this replace certificates forbidden response has a 3xx status code

func (*ReplaceCertificatesForbidden) IsServerError

func (o *ReplaceCertificatesForbidden) IsServerError() bool

IsServerError returns true when this replace certificates forbidden response has a 5xx status code

func (*ReplaceCertificatesForbidden) IsSuccess

func (o *ReplaceCertificatesForbidden) IsSuccess() bool

IsSuccess returns true when this replace certificates forbidden response has a 2xx status code

func (*ReplaceCertificatesForbidden) String

type ReplaceCertificatesInternalServerError

type ReplaceCertificatesInternalServerError struct {
	Payload *models.Error
}

ReplaceCertificatesInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewReplaceCertificatesInternalServerError

func NewReplaceCertificatesInternalServerError() *ReplaceCertificatesInternalServerError

NewReplaceCertificatesInternalServerError creates a ReplaceCertificatesInternalServerError with default headers values

func (*ReplaceCertificatesInternalServerError) Error

func (*ReplaceCertificatesInternalServerError) GetPayload

func (*ReplaceCertificatesInternalServerError) IsClientError

func (o *ReplaceCertificatesInternalServerError) IsClientError() bool

IsClientError returns true when this replace certificates internal server error response has a 4xx status code

func (*ReplaceCertificatesInternalServerError) IsCode

IsCode returns true when this replace certificates internal server error response a status code equal to that given

func (*ReplaceCertificatesInternalServerError) IsRedirect

IsRedirect returns true when this replace certificates internal server error response has a 3xx status code

func (*ReplaceCertificatesInternalServerError) IsServerError

func (o *ReplaceCertificatesInternalServerError) IsServerError() bool

IsServerError returns true when this replace certificates internal server error response has a 5xx status code

func (*ReplaceCertificatesInternalServerError) IsSuccess

IsSuccess returns true when this replace certificates internal server error response has a 2xx status code

func (*ReplaceCertificatesInternalServerError) String

type ReplaceCertificatesNotFound

type ReplaceCertificatesNotFound struct {
	Payload *models.Error
}

ReplaceCertificatesNotFound describes a response with status code 404, with default header values.

Not Found

func NewReplaceCertificatesNotFound

func NewReplaceCertificatesNotFound() *ReplaceCertificatesNotFound

NewReplaceCertificatesNotFound creates a ReplaceCertificatesNotFound with default headers values

func (*ReplaceCertificatesNotFound) Error

func (*ReplaceCertificatesNotFound) GetPayload

func (o *ReplaceCertificatesNotFound) GetPayload() *models.Error

func (*ReplaceCertificatesNotFound) IsClientError

func (o *ReplaceCertificatesNotFound) IsClientError() bool

IsClientError returns true when this replace certificates not found response has a 4xx status code

func (*ReplaceCertificatesNotFound) IsCode

func (o *ReplaceCertificatesNotFound) IsCode(code int) bool

IsCode returns true when this replace certificates not found response a status code equal to that given

func (*ReplaceCertificatesNotFound) IsRedirect

func (o *ReplaceCertificatesNotFound) IsRedirect() bool

IsRedirect returns true when this replace certificates not found response has a 3xx status code

func (*ReplaceCertificatesNotFound) IsServerError

func (o *ReplaceCertificatesNotFound) IsServerError() bool

IsServerError returns true when this replace certificates not found response has a 5xx status code

func (*ReplaceCertificatesNotFound) IsSuccess

func (o *ReplaceCertificatesNotFound) IsSuccess() bool

IsSuccess returns true when this replace certificates not found response has a 2xx status code

func (*ReplaceCertificatesNotFound) String

func (o *ReplaceCertificatesNotFound) String() string

type ReplaceCertificatesOK

type ReplaceCertificatesOK struct {
	Payload *models.Task
}

ReplaceCertificatesOK describes a response with status code 200, with default header values.

OK

func NewReplaceCertificatesOK

func NewReplaceCertificatesOK() *ReplaceCertificatesOK

NewReplaceCertificatesOK creates a ReplaceCertificatesOK with default headers values

func (*ReplaceCertificatesOK) Error

func (o *ReplaceCertificatesOK) Error() string

func (*ReplaceCertificatesOK) GetPayload

func (o *ReplaceCertificatesOK) GetPayload() *models.Task

func (*ReplaceCertificatesOK) IsClientError

func (o *ReplaceCertificatesOK) IsClientError() bool

IsClientError returns true when this replace certificates o k response has a 4xx status code

func (*ReplaceCertificatesOK) IsCode

func (o *ReplaceCertificatesOK) IsCode(code int) bool

IsCode returns true when this replace certificates o k response a status code equal to that given

func (*ReplaceCertificatesOK) IsRedirect

func (o *ReplaceCertificatesOK) IsRedirect() bool

IsRedirect returns true when this replace certificates o k response has a 3xx status code

func (*ReplaceCertificatesOK) IsServerError

func (o *ReplaceCertificatesOK) IsServerError() bool

IsServerError returns true when this replace certificates o k response has a 5xx status code

func (*ReplaceCertificatesOK) IsSuccess

func (o *ReplaceCertificatesOK) IsSuccess() bool

IsSuccess returns true when this replace certificates o k response has a 2xx status code

func (*ReplaceCertificatesOK) String

func (o *ReplaceCertificatesOK) String() string

type ReplaceCertificatesParams

type ReplaceCertificatesParams struct {

	/* CertificateOperationSpec.

	   certificateOperationSpec
	*/
	CertificateOperationSpec *models.CertificateOperationSpec

	/* DomainName.

	   Domain ID or Name
	*/
	DomainName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ReplaceCertificatesParams contains all the parameters to send to the API endpoint

for the replace certificates operation.

Typically these are written to a http.Request.

func NewReplaceCertificatesParams

func NewReplaceCertificatesParams() *ReplaceCertificatesParams

NewReplaceCertificatesParams creates a new ReplaceCertificatesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewReplaceCertificatesParamsWithContext

func NewReplaceCertificatesParamsWithContext(ctx context.Context) *ReplaceCertificatesParams

NewReplaceCertificatesParamsWithContext creates a new ReplaceCertificatesParams object with the ability to set a context for a request.

func NewReplaceCertificatesParamsWithHTTPClient

func NewReplaceCertificatesParamsWithHTTPClient(client *http.Client) *ReplaceCertificatesParams

NewReplaceCertificatesParamsWithHTTPClient creates a new ReplaceCertificatesParams object with the ability to set a custom HTTPClient for a request.

func NewReplaceCertificatesParamsWithTimeout

func NewReplaceCertificatesParamsWithTimeout(timeout time.Duration) *ReplaceCertificatesParams

NewReplaceCertificatesParamsWithTimeout creates a new ReplaceCertificatesParams object with the ability to set a timeout on a request.

func (*ReplaceCertificatesParams) SetCertificateOperationSpec

func (o *ReplaceCertificatesParams) SetCertificateOperationSpec(certificateOperationSpec *models.CertificateOperationSpec)

SetCertificateOperationSpec adds the certificateOperationSpec to the replace certificates params

func (*ReplaceCertificatesParams) SetContext

func (o *ReplaceCertificatesParams) SetContext(ctx context.Context)

SetContext adds the context to the replace certificates params

func (*ReplaceCertificatesParams) SetDefaults

func (o *ReplaceCertificatesParams) SetDefaults()

SetDefaults hydrates default values in the replace certificates params (not the query body).

All values with no default are reset to their zero value.

func (*ReplaceCertificatesParams) SetDomainName

func (o *ReplaceCertificatesParams) SetDomainName(domainName string)

SetDomainName adds the domainName to the replace certificates params

func (*ReplaceCertificatesParams) SetHTTPClient

func (o *ReplaceCertificatesParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the replace certificates params

func (*ReplaceCertificatesParams) SetTimeout

func (o *ReplaceCertificatesParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the replace certificates params

func (*ReplaceCertificatesParams) WithCertificateOperationSpec

func (o *ReplaceCertificatesParams) WithCertificateOperationSpec(certificateOperationSpec *models.CertificateOperationSpec) *ReplaceCertificatesParams

WithCertificateOperationSpec adds the certificateOperationSpec to the replace certificates params

func (*ReplaceCertificatesParams) WithContext

WithContext adds the context to the replace certificates params

func (*ReplaceCertificatesParams) WithDefaults

WithDefaults hydrates default values in the replace certificates params (not the query body).

All values with no default are reset to their zero value.

func (*ReplaceCertificatesParams) WithDomainName

func (o *ReplaceCertificatesParams) WithDomainName(domainName string) *ReplaceCertificatesParams

WithDomainName adds the domainName to the replace certificates params

func (*ReplaceCertificatesParams) WithHTTPClient

func (o *ReplaceCertificatesParams) WithHTTPClient(client *http.Client) *ReplaceCertificatesParams

WithHTTPClient adds the HTTPClient to the replace certificates params

func (*ReplaceCertificatesParams) WithTimeout

WithTimeout adds the timeout to the replace certificates params

func (*ReplaceCertificatesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ReplaceCertificatesReader

type ReplaceCertificatesReader struct {
	// contains filtered or unexported fields
}

ReplaceCertificatesReader is a Reader for the ReplaceCertificates structure.

func (*ReplaceCertificatesReader) ReadResponse

func (o *ReplaceCertificatesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type ReplaceResourceCertificatesAccepted added in v0.2.1

type ReplaceResourceCertificatesAccepted struct {
	Payload *models.Task
}

ReplaceResourceCertificatesAccepted describes a response with status code 202, with default header values.

Accepted

func NewReplaceResourceCertificatesAccepted added in v0.2.1

func NewReplaceResourceCertificatesAccepted() *ReplaceResourceCertificatesAccepted

NewReplaceResourceCertificatesAccepted creates a ReplaceResourceCertificatesAccepted with default headers values

func (*ReplaceResourceCertificatesAccepted) Error added in v0.2.1

func (*ReplaceResourceCertificatesAccepted) GetPayload added in v0.2.1

func (*ReplaceResourceCertificatesAccepted) IsClientError added in v0.2.1

func (o *ReplaceResourceCertificatesAccepted) IsClientError() bool

IsClientError returns true when this replace resource certificates accepted response has a 4xx status code

func (*ReplaceResourceCertificatesAccepted) IsCode added in v0.2.1

IsCode returns true when this replace resource certificates accepted response a status code equal to that given

func (*ReplaceResourceCertificatesAccepted) IsRedirect added in v0.2.1

func (o *ReplaceResourceCertificatesAccepted) IsRedirect() bool

IsRedirect returns true when this replace resource certificates accepted response has a 3xx status code

func (*ReplaceResourceCertificatesAccepted) IsServerError added in v0.2.1

func (o *ReplaceResourceCertificatesAccepted) IsServerError() bool

IsServerError returns true when this replace resource certificates accepted response has a 5xx status code

func (*ReplaceResourceCertificatesAccepted) IsSuccess added in v0.2.1

IsSuccess returns true when this replace resource certificates accepted response has a 2xx status code

func (*ReplaceResourceCertificatesAccepted) String added in v0.2.1

type ReplaceResourceCertificatesInternalServerError added in v0.2.0

type ReplaceResourceCertificatesInternalServerError struct {
	Payload *models.Error
}

ReplaceResourceCertificatesInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewReplaceResourceCertificatesInternalServerError added in v0.2.0

func NewReplaceResourceCertificatesInternalServerError() *ReplaceResourceCertificatesInternalServerError

NewReplaceResourceCertificatesInternalServerError creates a ReplaceResourceCertificatesInternalServerError with default headers values

func (*ReplaceResourceCertificatesInternalServerError) Error added in v0.2.0

func (*ReplaceResourceCertificatesInternalServerError) GetPayload added in v0.2.0

func (*ReplaceResourceCertificatesInternalServerError) IsClientError added in v0.2.0

IsClientError returns true when this replace resource certificates internal server error response has a 4xx status code

func (*ReplaceResourceCertificatesInternalServerError) IsCode added in v0.2.0

IsCode returns true when this replace resource certificates internal server error response a status code equal to that given

func (*ReplaceResourceCertificatesInternalServerError) IsRedirect added in v0.2.0

IsRedirect returns true when this replace resource certificates internal server error response has a 3xx status code

func (*ReplaceResourceCertificatesInternalServerError) IsServerError added in v0.2.0

IsServerError returns true when this replace resource certificates internal server error response has a 5xx status code

func (*ReplaceResourceCertificatesInternalServerError) IsSuccess added in v0.2.0

IsSuccess returns true when this replace resource certificates internal server error response has a 2xx status code

func (*ReplaceResourceCertificatesInternalServerError) String added in v0.2.0

type ReplaceResourceCertificatesNotFound added in v0.2.0

type ReplaceResourceCertificatesNotFound struct {
	Payload *models.Error
}

ReplaceResourceCertificatesNotFound describes a response with status code 404, with default header values.

Not Found

func NewReplaceResourceCertificatesNotFound added in v0.2.0

func NewReplaceResourceCertificatesNotFound() *ReplaceResourceCertificatesNotFound

NewReplaceResourceCertificatesNotFound creates a ReplaceResourceCertificatesNotFound with default headers values

func (*ReplaceResourceCertificatesNotFound) Error added in v0.2.0

func (*ReplaceResourceCertificatesNotFound) GetPayload added in v0.2.0

func (*ReplaceResourceCertificatesNotFound) IsClientError added in v0.2.0

func (o *ReplaceResourceCertificatesNotFound) IsClientError() bool

IsClientError returns true when this replace resource certificates not found response has a 4xx status code

func (*ReplaceResourceCertificatesNotFound) IsCode added in v0.2.0

IsCode returns true when this replace resource certificates not found response a status code equal to that given

func (*ReplaceResourceCertificatesNotFound) IsRedirect added in v0.2.0

func (o *ReplaceResourceCertificatesNotFound) IsRedirect() bool

IsRedirect returns true when this replace resource certificates not found response has a 3xx status code

func (*ReplaceResourceCertificatesNotFound) IsServerError added in v0.2.0

func (o *ReplaceResourceCertificatesNotFound) IsServerError() bool

IsServerError returns true when this replace resource certificates not found response has a 5xx status code

func (*ReplaceResourceCertificatesNotFound) IsSuccess added in v0.2.0

IsSuccess returns true when this replace resource certificates not found response has a 2xx status code

func (*ReplaceResourceCertificatesNotFound) String added in v0.2.0

type ReplaceResourceCertificatesOK added in v0.2.0

type ReplaceResourceCertificatesOK struct {
	Payload *models.Task
}

ReplaceResourceCertificatesOK describes a response with status code 200, with default header values.

OK

func NewReplaceResourceCertificatesOK added in v0.2.0

func NewReplaceResourceCertificatesOK() *ReplaceResourceCertificatesOK

NewReplaceResourceCertificatesOK creates a ReplaceResourceCertificatesOK with default headers values

func (*ReplaceResourceCertificatesOK) Error added in v0.2.0

func (*ReplaceResourceCertificatesOK) GetPayload added in v0.2.0

func (o *ReplaceResourceCertificatesOK) GetPayload() *models.Task

func (*ReplaceResourceCertificatesOK) IsClientError added in v0.2.0

func (o *ReplaceResourceCertificatesOK) IsClientError() bool

IsClientError returns true when this replace resource certificates o k response has a 4xx status code

func (*ReplaceResourceCertificatesOK) IsCode added in v0.2.0

func (o *ReplaceResourceCertificatesOK) IsCode(code int) bool

IsCode returns true when this replace resource certificates o k response a status code equal to that given

func (*ReplaceResourceCertificatesOK) IsRedirect added in v0.2.0

func (o *ReplaceResourceCertificatesOK) IsRedirect() bool

IsRedirect returns true when this replace resource certificates o k response has a 3xx status code

func (*ReplaceResourceCertificatesOK) IsServerError added in v0.2.0

func (o *ReplaceResourceCertificatesOK) IsServerError() bool

IsServerError returns true when this replace resource certificates o k response has a 5xx status code

func (*ReplaceResourceCertificatesOK) IsSuccess added in v0.2.0

func (o *ReplaceResourceCertificatesOK) IsSuccess() bool

IsSuccess returns true when this replace resource certificates o k response has a 2xx status code

func (*ReplaceResourceCertificatesOK) String added in v0.2.0

type ReplaceResourceCertificatesParams added in v0.2.0

type ReplaceResourceCertificatesParams struct {

	/* ID.

	   Domain ID
	*/
	ID string

	/* ResourceCertificateSpecs.

	   resourceCertificateSpecs
	*/
	ResourceCertificateSpecs []*models.ResourceCertificateSpec

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ReplaceResourceCertificatesParams contains all the parameters to send to the API endpoint

for the replace resource certificates operation.

Typically these are written to a http.Request.

func NewReplaceResourceCertificatesParams added in v0.2.0

func NewReplaceResourceCertificatesParams() *ReplaceResourceCertificatesParams

NewReplaceResourceCertificatesParams creates a new ReplaceResourceCertificatesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewReplaceResourceCertificatesParamsWithContext added in v0.2.0

func NewReplaceResourceCertificatesParamsWithContext(ctx context.Context) *ReplaceResourceCertificatesParams

NewReplaceResourceCertificatesParamsWithContext creates a new ReplaceResourceCertificatesParams object with the ability to set a context for a request.

func NewReplaceResourceCertificatesParamsWithHTTPClient added in v0.2.0

func NewReplaceResourceCertificatesParamsWithHTTPClient(client *http.Client) *ReplaceResourceCertificatesParams

NewReplaceResourceCertificatesParamsWithHTTPClient creates a new ReplaceResourceCertificatesParams object with the ability to set a custom HTTPClient for a request.

func NewReplaceResourceCertificatesParamsWithTimeout added in v0.2.0

func NewReplaceResourceCertificatesParamsWithTimeout(timeout time.Duration) *ReplaceResourceCertificatesParams

NewReplaceResourceCertificatesParamsWithTimeout creates a new ReplaceResourceCertificatesParams object with the ability to set a timeout on a request.

func (*ReplaceResourceCertificatesParams) SetContext added in v0.2.0

SetContext adds the context to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) SetDefaults added in v0.2.0

func (o *ReplaceResourceCertificatesParams) SetDefaults()

SetDefaults hydrates default values in the replace resource certificates params (not the query body).

All values with no default are reset to their zero value.

func (*ReplaceResourceCertificatesParams) SetHTTPClient added in v0.2.0

func (o *ReplaceResourceCertificatesParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) SetID added in v0.2.0

SetID adds the id to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) SetResourceCertificateSpecs added in v0.2.0

func (o *ReplaceResourceCertificatesParams) SetResourceCertificateSpecs(resourceCertificateSpecs []*models.ResourceCertificateSpec)

SetResourceCertificateSpecs adds the resourceCertificateSpecs to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) SetTimeout added in v0.2.0

func (o *ReplaceResourceCertificatesParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) WithContext added in v0.2.0

WithContext adds the context to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) WithDefaults added in v0.2.0

WithDefaults hydrates default values in the replace resource certificates params (not the query body).

All values with no default are reset to their zero value.

func (*ReplaceResourceCertificatesParams) WithHTTPClient added in v0.2.0

WithHTTPClient adds the HTTPClient to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) WithID added in v0.2.0

WithID adds the id to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) WithResourceCertificateSpecs added in v0.2.0

func (o *ReplaceResourceCertificatesParams) WithResourceCertificateSpecs(resourceCertificateSpecs []*models.ResourceCertificateSpec) *ReplaceResourceCertificatesParams

WithResourceCertificateSpecs adds the resourceCertificateSpecs to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) WithTimeout added in v0.2.0

WithTimeout adds the timeout to the replace resource certificates params

func (*ReplaceResourceCertificatesParams) WriteToRequest added in v0.2.0

WriteToRequest writes these params to a swagger request

type ReplaceResourceCertificatesReader added in v0.2.0

type ReplaceResourceCertificatesReader struct {
	// contains filtered or unexported fields
}

ReplaceResourceCertificatesReader is a Reader for the ReplaceResourceCertificates structure.

func (*ReplaceResourceCertificatesReader) ReadResponse added in v0.2.0

func (o *ReplaceResourceCertificatesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type UploadCertificatesBadRequest

type UploadCertificatesBadRequest struct {
	Payload *models.Error
}

UploadCertificatesBadRequest describes a response with status code 400, with default header values.

Bad request.

func NewUploadCertificatesBadRequest

func NewUploadCertificatesBadRequest() *UploadCertificatesBadRequest

NewUploadCertificatesBadRequest creates a UploadCertificatesBadRequest with default headers values

func (*UploadCertificatesBadRequest) Error

func (*UploadCertificatesBadRequest) GetPayload

func (o *UploadCertificatesBadRequest) GetPayload() *models.Error

func (*UploadCertificatesBadRequest) IsClientError

func (o *UploadCertificatesBadRequest) IsClientError() bool

IsClientError returns true when this upload certificates bad request response has a 4xx status code

func (*UploadCertificatesBadRequest) IsCode

func (o *UploadCertificatesBadRequest) IsCode(code int) bool

IsCode returns true when this upload certificates bad request response a status code equal to that given

func (*UploadCertificatesBadRequest) IsRedirect

func (o *UploadCertificatesBadRequest) IsRedirect() bool

IsRedirect returns true when this upload certificates bad request response has a 3xx status code

func (*UploadCertificatesBadRequest) IsServerError

func (o *UploadCertificatesBadRequest) IsServerError() bool

IsServerError returns true when this upload certificates bad request response has a 5xx status code

func (*UploadCertificatesBadRequest) IsSuccess

func (o *UploadCertificatesBadRequest) IsSuccess() bool

IsSuccess returns true when this upload certificates bad request response has a 2xx status code

func (*UploadCertificatesBadRequest) String

type UploadCertificatesInternalServerError

type UploadCertificatesInternalServerError struct {
	Payload *models.Error
}

UploadCertificatesInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewUploadCertificatesInternalServerError

func NewUploadCertificatesInternalServerError() *UploadCertificatesInternalServerError

NewUploadCertificatesInternalServerError creates a UploadCertificatesInternalServerError with default headers values

func (*UploadCertificatesInternalServerError) Error

func (*UploadCertificatesInternalServerError) GetPayload

func (*UploadCertificatesInternalServerError) IsClientError

func (o *UploadCertificatesInternalServerError) IsClientError() bool

IsClientError returns true when this upload certificates internal server error response has a 4xx status code

func (*UploadCertificatesInternalServerError) IsCode

IsCode returns true when this upload certificates internal server error response a status code equal to that given

func (*UploadCertificatesInternalServerError) IsRedirect

IsRedirect returns true when this upload certificates internal server error response has a 3xx status code

func (*UploadCertificatesInternalServerError) IsServerError

func (o *UploadCertificatesInternalServerError) IsServerError() bool

IsServerError returns true when this upload certificates internal server error response has a 5xx status code

func (*UploadCertificatesInternalServerError) IsSuccess

IsSuccess returns true when this upload certificates internal server error response has a 2xx status code

func (*UploadCertificatesInternalServerError) String

type UploadCertificatesNotFound

type UploadCertificatesNotFound struct {
	Payload *models.Error
}

UploadCertificatesNotFound describes a response with status code 404, with default header values.

Not Found

func NewUploadCertificatesNotFound

func NewUploadCertificatesNotFound() *UploadCertificatesNotFound

NewUploadCertificatesNotFound creates a UploadCertificatesNotFound with default headers values

func (*UploadCertificatesNotFound) Error

func (*UploadCertificatesNotFound) GetPayload

func (o *UploadCertificatesNotFound) GetPayload() *models.Error

func (*UploadCertificatesNotFound) IsClientError

func (o *UploadCertificatesNotFound) IsClientError() bool

IsClientError returns true when this upload certificates not found response has a 4xx status code

func (*UploadCertificatesNotFound) IsCode

func (o *UploadCertificatesNotFound) IsCode(code int) bool

IsCode returns true when this upload certificates not found response a status code equal to that given

func (*UploadCertificatesNotFound) IsRedirect

func (o *UploadCertificatesNotFound) IsRedirect() bool

IsRedirect returns true when this upload certificates not found response has a 3xx status code

func (*UploadCertificatesNotFound) IsServerError

func (o *UploadCertificatesNotFound) IsServerError() bool

IsServerError returns true when this upload certificates not found response has a 5xx status code

func (*UploadCertificatesNotFound) IsSuccess

func (o *UploadCertificatesNotFound) IsSuccess() bool

IsSuccess returns true when this upload certificates not found response has a 2xx status code

func (*UploadCertificatesNotFound) String

func (o *UploadCertificatesNotFound) String() string

type UploadCertificatesOK

type UploadCertificatesOK struct {
	Payload interface{}
}

UploadCertificatesOK describes a response with status code 200, with default header values.

OK

func NewUploadCertificatesOK

func NewUploadCertificatesOK() *UploadCertificatesOK

NewUploadCertificatesOK creates a UploadCertificatesOK with default headers values

func (*UploadCertificatesOK) Error

func (o *UploadCertificatesOK) Error() string

func (*UploadCertificatesOK) GetPayload

func (o *UploadCertificatesOK) GetPayload() interface{}

func (*UploadCertificatesOK) IsClientError

func (o *UploadCertificatesOK) IsClientError() bool

IsClientError returns true when this upload certificates o k response has a 4xx status code

func (*UploadCertificatesOK) IsCode

func (o *UploadCertificatesOK) IsCode(code int) bool

IsCode returns true when this upload certificates o k response a status code equal to that given

func (*UploadCertificatesOK) IsRedirect

func (o *UploadCertificatesOK) IsRedirect() bool

IsRedirect returns true when this upload certificates o k response has a 3xx status code

func (*UploadCertificatesOK) IsServerError

func (o *UploadCertificatesOK) IsServerError() bool

IsServerError returns true when this upload certificates o k response has a 5xx status code

func (*UploadCertificatesOK) IsSuccess

func (o *UploadCertificatesOK) IsSuccess() bool

IsSuccess returns true when this upload certificates o k response has a 2xx status code

func (*UploadCertificatesOK) String

func (o *UploadCertificatesOK) String() string

type UploadCertificatesParams

type UploadCertificatesParams struct {

	/* DomainName.

	   Domain ID or Name
	*/
	DomainName string

	/* File.

	   file
	*/
	File runtime.NamedReadCloser

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

UploadCertificatesParams contains all the parameters to send to the API endpoint

for the upload certificates operation.

Typically these are written to a http.Request.

func NewUploadCertificatesParams

func NewUploadCertificatesParams() *UploadCertificatesParams

NewUploadCertificatesParams creates a new UploadCertificatesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewUploadCertificatesParamsWithContext

func NewUploadCertificatesParamsWithContext(ctx context.Context) *UploadCertificatesParams

NewUploadCertificatesParamsWithContext creates a new UploadCertificatesParams object with the ability to set a context for a request.

func NewUploadCertificatesParamsWithHTTPClient

func NewUploadCertificatesParamsWithHTTPClient(client *http.Client) *UploadCertificatesParams

NewUploadCertificatesParamsWithHTTPClient creates a new UploadCertificatesParams object with the ability to set a custom HTTPClient for a request.

func NewUploadCertificatesParamsWithTimeout

func NewUploadCertificatesParamsWithTimeout(timeout time.Duration) *UploadCertificatesParams

NewUploadCertificatesParamsWithTimeout creates a new UploadCertificatesParams object with the ability to set a timeout on a request.

func (*UploadCertificatesParams) SetContext

func (o *UploadCertificatesParams) SetContext(ctx context.Context)

SetContext adds the context to the upload certificates params

func (*UploadCertificatesParams) SetDefaults

func (o *UploadCertificatesParams) SetDefaults()

SetDefaults hydrates default values in the upload certificates params (not the query body).

All values with no default are reset to their zero value.

func (*UploadCertificatesParams) SetDomainName

func (o *UploadCertificatesParams) SetDomainName(domainName string)

SetDomainName adds the domainName to the upload certificates params

func (*UploadCertificatesParams) SetFile

SetFile adds the file to the upload certificates params

func (*UploadCertificatesParams) SetHTTPClient

func (o *UploadCertificatesParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the upload certificates params

func (*UploadCertificatesParams) SetTimeout

func (o *UploadCertificatesParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the upload certificates params

func (*UploadCertificatesParams) WithContext

WithContext adds the context to the upload certificates params

func (*UploadCertificatesParams) WithDefaults

WithDefaults hydrates default values in the upload certificates params (not the query body).

All values with no default are reset to their zero value.

func (*UploadCertificatesParams) WithDomainName

func (o *UploadCertificatesParams) WithDomainName(domainName string) *UploadCertificatesParams

WithDomainName adds the domainName to the upload certificates params

func (*UploadCertificatesParams) WithFile

WithFile adds the file to the upload certificates params

func (*UploadCertificatesParams) WithHTTPClient

func (o *UploadCertificatesParams) WithHTTPClient(client *http.Client) *UploadCertificatesParams

WithHTTPClient adds the HTTPClient to the upload certificates params

func (*UploadCertificatesParams) WithTimeout

WithTimeout adds the timeout to the upload certificates params

func (*UploadCertificatesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UploadCertificatesReader

type UploadCertificatesReader struct {
	// contains filtered or unexported fields
}

UploadCertificatesReader is a Reader for the UploadCertificates structure.

func (*UploadCertificatesReader) ReadResponse

func (o *UploadCertificatesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type ValidateResourceCertificatesCreated added in v0.2.0

type ValidateResourceCertificatesCreated struct {
	Payload *models.CertificateValidationTask
}

ValidateResourceCertificatesCreated describes a response with status code 201, with default header values.

Created

func NewValidateResourceCertificatesCreated added in v0.2.0

func NewValidateResourceCertificatesCreated() *ValidateResourceCertificatesCreated

NewValidateResourceCertificatesCreated creates a ValidateResourceCertificatesCreated with default headers values

func (*ValidateResourceCertificatesCreated) Error added in v0.2.0

func (*ValidateResourceCertificatesCreated) GetPayload added in v0.2.0

func (*ValidateResourceCertificatesCreated) IsClientError added in v0.2.0

func (o *ValidateResourceCertificatesCreated) IsClientError() bool

IsClientError returns true when this validate resource certificates created response has a 4xx status code

func (*ValidateResourceCertificatesCreated) IsCode added in v0.2.0

IsCode returns true when this validate resource certificates created response a status code equal to that given

func (*ValidateResourceCertificatesCreated) IsRedirect added in v0.2.0

func (o *ValidateResourceCertificatesCreated) IsRedirect() bool

IsRedirect returns true when this validate resource certificates created response has a 3xx status code

func (*ValidateResourceCertificatesCreated) IsServerError added in v0.2.0

func (o *ValidateResourceCertificatesCreated) IsServerError() bool

IsServerError returns true when this validate resource certificates created response has a 5xx status code

func (*ValidateResourceCertificatesCreated) IsSuccess added in v0.2.0

IsSuccess returns true when this validate resource certificates created response has a 2xx status code

func (*ValidateResourceCertificatesCreated) String added in v0.2.0

type ValidateResourceCertificatesInternalServerError added in v0.2.0

type ValidateResourceCertificatesInternalServerError struct {
	Payload *models.Error
}

ValidateResourceCertificatesInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewValidateResourceCertificatesInternalServerError added in v0.2.0

func NewValidateResourceCertificatesInternalServerError() *ValidateResourceCertificatesInternalServerError

NewValidateResourceCertificatesInternalServerError creates a ValidateResourceCertificatesInternalServerError with default headers values

func (*ValidateResourceCertificatesInternalServerError) Error added in v0.2.0

func (*ValidateResourceCertificatesInternalServerError) GetPayload added in v0.2.0

func (*ValidateResourceCertificatesInternalServerError) IsClientError added in v0.2.0

IsClientError returns true when this validate resource certificates internal server error response has a 4xx status code

func (*ValidateResourceCertificatesInternalServerError) IsCode added in v0.2.0

IsCode returns true when this validate resource certificates internal server error response a status code equal to that given

func (*ValidateResourceCertificatesInternalServerError) IsRedirect added in v0.2.0

IsRedirect returns true when this validate resource certificates internal server error response has a 3xx status code

func (*ValidateResourceCertificatesInternalServerError) IsServerError added in v0.2.0

IsServerError returns true when this validate resource certificates internal server error response has a 5xx status code

func (*ValidateResourceCertificatesInternalServerError) IsSuccess added in v0.2.0

IsSuccess returns true when this validate resource certificates internal server error response has a 2xx status code

func (*ValidateResourceCertificatesInternalServerError) String added in v0.2.0

type ValidateResourceCertificatesNotFound added in v0.2.0

type ValidateResourceCertificatesNotFound struct {
	Payload *models.Error
}

ValidateResourceCertificatesNotFound describes a response with status code 404, with default header values.

Not Found

func NewValidateResourceCertificatesNotFound added in v0.2.0

func NewValidateResourceCertificatesNotFound() *ValidateResourceCertificatesNotFound

NewValidateResourceCertificatesNotFound creates a ValidateResourceCertificatesNotFound with default headers values

func (*ValidateResourceCertificatesNotFound) Error added in v0.2.0

func (*ValidateResourceCertificatesNotFound) GetPayload added in v0.2.0

func (*ValidateResourceCertificatesNotFound) IsClientError added in v0.2.0

func (o *ValidateResourceCertificatesNotFound) IsClientError() bool

IsClientError returns true when this validate resource certificates not found response has a 4xx status code

func (*ValidateResourceCertificatesNotFound) IsCode added in v0.2.0

IsCode returns true when this validate resource certificates not found response a status code equal to that given

func (*ValidateResourceCertificatesNotFound) IsRedirect added in v0.2.0

IsRedirect returns true when this validate resource certificates not found response has a 3xx status code

func (*ValidateResourceCertificatesNotFound) IsServerError added in v0.2.0

func (o *ValidateResourceCertificatesNotFound) IsServerError() bool

IsServerError returns true when this validate resource certificates not found response has a 5xx status code

func (*ValidateResourceCertificatesNotFound) IsSuccess added in v0.2.0

IsSuccess returns true when this validate resource certificates not found response has a 2xx status code

func (*ValidateResourceCertificatesNotFound) String added in v0.2.0

type ValidateResourceCertificatesOK added in v0.2.0

type ValidateResourceCertificatesOK struct {
	Payload *models.CertificateValidationTask
}

ValidateResourceCertificatesOK describes a response with status code 200, with default header values.

OK

func NewValidateResourceCertificatesOK added in v0.2.0

func NewValidateResourceCertificatesOK() *ValidateResourceCertificatesOK

NewValidateResourceCertificatesOK creates a ValidateResourceCertificatesOK with default headers values

func (*ValidateResourceCertificatesOK) Error added in v0.2.0

func (*ValidateResourceCertificatesOK) GetPayload added in v0.2.0

func (*ValidateResourceCertificatesOK) IsClientError added in v0.2.0

func (o *ValidateResourceCertificatesOK) IsClientError() bool

IsClientError returns true when this validate resource certificates o k response has a 4xx status code

func (*ValidateResourceCertificatesOK) IsCode added in v0.2.0

func (o *ValidateResourceCertificatesOK) IsCode(code int) bool

IsCode returns true when this validate resource certificates o k response a status code equal to that given

func (*ValidateResourceCertificatesOK) IsRedirect added in v0.2.0

func (o *ValidateResourceCertificatesOK) IsRedirect() bool

IsRedirect returns true when this validate resource certificates o k response has a 3xx status code

func (*ValidateResourceCertificatesOK) IsServerError added in v0.2.0

func (o *ValidateResourceCertificatesOK) IsServerError() bool

IsServerError returns true when this validate resource certificates o k response has a 5xx status code

func (*ValidateResourceCertificatesOK) IsSuccess added in v0.2.0

func (o *ValidateResourceCertificatesOK) IsSuccess() bool

IsSuccess returns true when this validate resource certificates o k response has a 2xx status code

func (*ValidateResourceCertificatesOK) String added in v0.2.0

type ValidateResourceCertificatesParams added in v0.2.0

type ValidateResourceCertificatesParams struct {

	/* ID.

	   Domain ID
	*/
	ID string

	/* ResourceCertificateSpecs.

	   resourceCertificateSpecs
	*/
	ResourceCertificateSpecs []*models.ResourceCertificateSpec

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ValidateResourceCertificatesParams contains all the parameters to send to the API endpoint

for the validate resource certificates operation.

Typically these are written to a http.Request.

func NewValidateResourceCertificatesParams added in v0.2.0

func NewValidateResourceCertificatesParams() *ValidateResourceCertificatesParams

NewValidateResourceCertificatesParams creates a new ValidateResourceCertificatesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewValidateResourceCertificatesParamsWithContext added in v0.2.0

func NewValidateResourceCertificatesParamsWithContext(ctx context.Context) *ValidateResourceCertificatesParams

NewValidateResourceCertificatesParamsWithContext creates a new ValidateResourceCertificatesParams object with the ability to set a context for a request.

func NewValidateResourceCertificatesParamsWithHTTPClient added in v0.2.0

func NewValidateResourceCertificatesParamsWithHTTPClient(client *http.Client) *ValidateResourceCertificatesParams

NewValidateResourceCertificatesParamsWithHTTPClient creates a new ValidateResourceCertificatesParams object with the ability to set a custom HTTPClient for a request.

func NewValidateResourceCertificatesParamsWithTimeout added in v0.2.0

func NewValidateResourceCertificatesParamsWithTimeout(timeout time.Duration) *ValidateResourceCertificatesParams

NewValidateResourceCertificatesParamsWithTimeout creates a new ValidateResourceCertificatesParams object with the ability to set a timeout on a request.

func (*ValidateResourceCertificatesParams) SetContext added in v0.2.0

SetContext adds the context to the validate resource certificates params

func (*ValidateResourceCertificatesParams) SetDefaults added in v0.2.0

func (o *ValidateResourceCertificatesParams) SetDefaults()

SetDefaults hydrates default values in the validate resource certificates params (not the query body).

All values with no default are reset to their zero value.

func (*ValidateResourceCertificatesParams) SetHTTPClient added in v0.2.0

func (o *ValidateResourceCertificatesParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the validate resource certificates params

func (*ValidateResourceCertificatesParams) SetID added in v0.2.0

SetID adds the id to the validate resource certificates params

func (*ValidateResourceCertificatesParams) SetResourceCertificateSpecs added in v0.2.0

func (o *ValidateResourceCertificatesParams) SetResourceCertificateSpecs(resourceCertificateSpecs []*models.ResourceCertificateSpec)

SetResourceCertificateSpecs adds the resourceCertificateSpecs to the validate resource certificates params

func (*ValidateResourceCertificatesParams) SetTimeout added in v0.2.0

func (o *ValidateResourceCertificatesParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the validate resource certificates params

func (*ValidateResourceCertificatesParams) WithContext added in v0.2.0

WithContext adds the context to the validate resource certificates params

func (*ValidateResourceCertificatesParams) WithDefaults added in v0.2.0

WithDefaults hydrates default values in the validate resource certificates params (not the query body).

All values with no default are reset to their zero value.

func (*ValidateResourceCertificatesParams) WithHTTPClient added in v0.2.0

WithHTTPClient adds the HTTPClient to the validate resource certificates params

func (*ValidateResourceCertificatesParams) WithID added in v0.2.0

WithID adds the id to the validate resource certificates params

func (*ValidateResourceCertificatesParams) WithResourceCertificateSpecs added in v0.2.0

func (o *ValidateResourceCertificatesParams) WithResourceCertificateSpecs(resourceCertificateSpecs []*models.ResourceCertificateSpec) *ValidateResourceCertificatesParams

WithResourceCertificateSpecs adds the resourceCertificateSpecs to the validate resource certificates params

func (*ValidateResourceCertificatesParams) WithTimeout added in v0.2.0

WithTimeout adds the timeout to the validate resource certificates params

func (*ValidateResourceCertificatesParams) WriteToRequest added in v0.2.0

WriteToRequest writes these params to a swagger request

type ValidateResourceCertificatesReader added in v0.2.0

type ValidateResourceCertificatesReader struct {
	// contains filtered or unexported fields
}

ValidateResourceCertificatesReader is a Reader for the ValidateResourceCertificates structure.

func (*ValidateResourceCertificatesReader) ReadResponse added in v0.2.0

func (o *ValidateResourceCertificatesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type ViewCertificateInternalServerError

type ViewCertificateInternalServerError struct {
	Payload *models.Error
}

ViewCertificateInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewViewCertificateInternalServerError

func NewViewCertificateInternalServerError() *ViewCertificateInternalServerError

NewViewCertificateInternalServerError creates a ViewCertificateInternalServerError with default headers values

func (*ViewCertificateInternalServerError) Error

func (*ViewCertificateInternalServerError) GetPayload

func (*ViewCertificateInternalServerError) IsClientError

func (o *ViewCertificateInternalServerError) IsClientError() bool

IsClientError returns true when this view certificate internal server error response has a 4xx status code

func (*ViewCertificateInternalServerError) IsCode

IsCode returns true when this view certificate internal server error response a status code equal to that given

func (*ViewCertificateInternalServerError) IsRedirect

func (o *ViewCertificateInternalServerError) IsRedirect() bool

IsRedirect returns true when this view certificate internal server error response has a 3xx status code

func (*ViewCertificateInternalServerError) IsServerError

func (o *ViewCertificateInternalServerError) IsServerError() bool

IsServerError returns true when this view certificate internal server error response has a 5xx status code

func (*ViewCertificateInternalServerError) IsSuccess

IsSuccess returns true when this view certificate internal server error response has a 2xx status code

func (*ViewCertificateInternalServerError) String

type ViewCertificateNotFound

type ViewCertificateNotFound struct {
	Payload *models.Error
}

ViewCertificateNotFound describes a response with status code 404, with default header values.

Not Found

func NewViewCertificateNotFound

func NewViewCertificateNotFound() *ViewCertificateNotFound

NewViewCertificateNotFound creates a ViewCertificateNotFound with default headers values

func (*ViewCertificateNotFound) Error

func (o *ViewCertificateNotFound) Error() string

func (*ViewCertificateNotFound) GetPayload

func (o *ViewCertificateNotFound) GetPayload() *models.Error

func (*ViewCertificateNotFound) IsClientError

func (o *ViewCertificateNotFound) IsClientError() bool

IsClientError returns true when this view certificate not found response has a 4xx status code

func (*ViewCertificateNotFound) IsCode

func (o *ViewCertificateNotFound) IsCode(code int) bool

IsCode returns true when this view certificate not found response a status code equal to that given

func (*ViewCertificateNotFound) IsRedirect

func (o *ViewCertificateNotFound) IsRedirect() bool

IsRedirect returns true when this view certificate not found response has a 3xx status code

func (*ViewCertificateNotFound) IsServerError

func (o *ViewCertificateNotFound) IsServerError() bool

IsServerError returns true when this view certificate not found response has a 5xx status code

func (*ViewCertificateNotFound) IsSuccess

func (o *ViewCertificateNotFound) IsSuccess() bool

IsSuccess returns true when this view certificate not found response has a 2xx status code

func (*ViewCertificateNotFound) String

func (o *ViewCertificateNotFound) String() string

type ViewCertificateOK

type ViewCertificateOK struct {
	Payload *models.PageOfCertificate
}

ViewCertificateOK describes a response with status code 200, with default header values.

OK

func NewViewCertificateOK

func NewViewCertificateOK() *ViewCertificateOK

NewViewCertificateOK creates a ViewCertificateOK with default headers values

func (*ViewCertificateOK) Error

func (o *ViewCertificateOK) Error() string

func (*ViewCertificateOK) GetPayload

func (o *ViewCertificateOK) GetPayload() *models.PageOfCertificate

func (*ViewCertificateOK) IsClientError

func (o *ViewCertificateOK) IsClientError() bool

IsClientError returns true when this view certificate o k response has a 4xx status code

func (*ViewCertificateOK) IsCode

func (o *ViewCertificateOK) IsCode(code int) bool

IsCode returns true when this view certificate o k response a status code equal to that given

func (*ViewCertificateOK) IsRedirect

func (o *ViewCertificateOK) IsRedirect() bool

IsRedirect returns true when this view certificate o k response has a 3xx status code

func (*ViewCertificateOK) IsServerError

func (o *ViewCertificateOK) IsServerError() bool

IsServerError returns true when this view certificate o k response has a 5xx status code

func (*ViewCertificateOK) IsSuccess

func (o *ViewCertificateOK) IsSuccess() bool

IsSuccess returns true when this view certificate o k response has a 2xx status code

func (*ViewCertificateOK) String

func (o *ViewCertificateOK) String() string

type ViewCertificateParams

type ViewCertificateParams struct {

	/* DomainName.

	   Domain ID or Name
	*/
	DomainName string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ViewCertificateParams contains all the parameters to send to the API endpoint

for the view certificate operation.

Typically these are written to a http.Request.

func NewViewCertificateParams

func NewViewCertificateParams() *ViewCertificateParams

NewViewCertificateParams creates a new ViewCertificateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewViewCertificateParamsWithContext

func NewViewCertificateParamsWithContext(ctx context.Context) *ViewCertificateParams

NewViewCertificateParamsWithContext creates a new ViewCertificateParams object with the ability to set a context for a request.

func NewViewCertificateParamsWithHTTPClient

func NewViewCertificateParamsWithHTTPClient(client *http.Client) *ViewCertificateParams

NewViewCertificateParamsWithHTTPClient creates a new ViewCertificateParams object with the ability to set a custom HTTPClient for a request.

func NewViewCertificateParamsWithTimeout

func NewViewCertificateParamsWithTimeout(timeout time.Duration) *ViewCertificateParams

NewViewCertificateParamsWithTimeout creates a new ViewCertificateParams object with the ability to set a timeout on a request.

func (*ViewCertificateParams) SetContext

func (o *ViewCertificateParams) SetContext(ctx context.Context)

SetContext adds the context to the view certificate params

func (*ViewCertificateParams) SetDefaults

func (o *ViewCertificateParams) SetDefaults()

SetDefaults hydrates default values in the view certificate params (not the query body).

All values with no default are reset to their zero value.

func (*ViewCertificateParams) SetDomainName

func (o *ViewCertificateParams) SetDomainName(domainName string)

SetDomainName adds the domainName to the view certificate params

func (*ViewCertificateParams) SetHTTPClient

func (o *ViewCertificateParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the view certificate params

func (*ViewCertificateParams) SetTimeout

func (o *ViewCertificateParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the view certificate params

func (*ViewCertificateParams) WithContext

WithContext adds the context to the view certificate params

func (*ViewCertificateParams) WithDefaults

func (o *ViewCertificateParams) WithDefaults() *ViewCertificateParams

WithDefaults hydrates default values in the view certificate params (not the query body).

All values with no default are reset to their zero value.

func (*ViewCertificateParams) WithDomainName

func (o *ViewCertificateParams) WithDomainName(domainName string) *ViewCertificateParams

WithDomainName adds the domainName to the view certificate params

func (*ViewCertificateParams) WithHTTPClient

func (o *ViewCertificateParams) WithHTTPClient(client *http.Client) *ViewCertificateParams

WithHTTPClient adds the HTTPClient to the view certificate params

func (*ViewCertificateParams) WithTimeout

func (o *ViewCertificateParams) WithTimeout(timeout time.Duration) *ViewCertificateParams

WithTimeout adds the timeout to the view certificate params

func (*ViewCertificateParams) WriteToRequest

func (o *ViewCertificateParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type ViewCertificateReader

type ViewCertificateReader struct {
	// contains filtered or unexported fields
}

ViewCertificateReader is a Reader for the ViewCertificate structure.

func (*ViewCertificateReader) ReadResponse

func (o *ViewCertificateReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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