ejbca

package
v0.1.5 Latest Latest
Warning

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

Go to latest
Published: Aug 9, 2023 License: Apache-2.0 Imports: 24 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	V1CaApi *V1CaApiService

	V1CaManagementApi *V1CaManagementApiService

	V1CertificateApi *V1CertificateApiService

	V1ConfigdumpApi *V1ConfigdumpApiService

	V1CryptotokenApi *V1CryptotokenApiService

	V1EndentityApi *V1EndentityApiService

	V1SshApi *V1SshApiService

	V2CertificateApi *V2CertificateApiService

	V2EndentityApi *V2EndentityApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the EJBCA REST Interface API v1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) (*APIClient, error)

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AddEndEntityRestRequest

type AddEndEntityRestRequest struct {
	// Username
	Username *string `json:"username,omitempty"`
	// Password
	Password *string `json:"password,omitempty"`
	// Subject Distinguished Name
	SubjectDn *string `json:"subject_dn,omitempty"`
	// Subject Alternative Name (SAN)
	SubjectAltName *string `json:"subject_alt_name,omitempty"`
	// Email
	Email         *string                                   `json:"email,omitempty"`
	ExtensionData []ExtendedInformationRestRequestComponent `json:"extension_data,omitempty"`
	// Certificate Authority (CA) name
	CaName *string `json:"ca_name,omitempty"`
	// Certificate profile name
	CertificateProfileName *string `json:"certificate_profile_name,omitempty"`
	// End Entity profile name
	EndEntityProfileName *string `json:"end_entity_profile_name,omitempty"`
	// Token type property
	Token *string `json:"token,omitempty"`
	// Account Binding ID
	AccountBindingId     *string `json:"account_binding_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

AddEndEntityRestRequest struct for AddEndEntityRestRequest

func NewAddEndEntityRestRequest

func NewAddEndEntityRestRequest() *AddEndEntityRestRequest

NewAddEndEntityRestRequest instantiates a new AddEndEntityRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAddEndEntityRestRequestWithDefaults

func NewAddEndEntityRestRequestWithDefaults() *AddEndEntityRestRequest

NewAddEndEntityRestRequestWithDefaults instantiates a new AddEndEntityRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AddEndEntityRestRequest) GetAccountBindingId

func (o *AddEndEntityRestRequest) GetAccountBindingId() string

GetAccountBindingId returns the AccountBindingId field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetAccountBindingIdOk

func (o *AddEndEntityRestRequest) GetAccountBindingIdOk() (*string, bool)

GetAccountBindingIdOk returns a tuple with the AccountBindingId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetCaName

func (o *AddEndEntityRestRequest) GetCaName() string

GetCaName returns the CaName field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetCaNameOk

func (o *AddEndEntityRestRequest) GetCaNameOk() (*string, bool)

GetCaNameOk returns a tuple with the CaName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetCertificateProfileName

func (o *AddEndEntityRestRequest) GetCertificateProfileName() string

GetCertificateProfileName returns the CertificateProfileName field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetCertificateProfileNameOk

func (o *AddEndEntityRestRequest) GetCertificateProfileNameOk() (*string, bool)

GetCertificateProfileNameOk returns a tuple with the CertificateProfileName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetEmail

func (o *AddEndEntityRestRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetEmailOk

func (o *AddEndEntityRestRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetEndEntityProfileName

func (o *AddEndEntityRestRequest) GetEndEntityProfileName() string

GetEndEntityProfileName returns the EndEntityProfileName field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetEndEntityProfileNameOk

func (o *AddEndEntityRestRequest) GetEndEntityProfileNameOk() (*string, bool)

GetEndEntityProfileNameOk returns a tuple with the EndEntityProfileName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetExtensionData

GetExtensionData returns the ExtensionData field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetExtensionDataOk

GetExtensionDataOk returns a tuple with the ExtensionData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetPassword

func (o *AddEndEntityRestRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetPasswordOk

func (o *AddEndEntityRestRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetSubjectAltName

func (o *AddEndEntityRestRequest) GetSubjectAltName() string

GetSubjectAltName returns the SubjectAltName field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetSubjectAltNameOk

func (o *AddEndEntityRestRequest) GetSubjectAltNameOk() (*string, bool)

GetSubjectAltNameOk returns a tuple with the SubjectAltName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetSubjectDn

func (o *AddEndEntityRestRequest) GetSubjectDn() string

GetSubjectDn returns the SubjectDn field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetSubjectDnOk

func (o *AddEndEntityRestRequest) GetSubjectDnOk() (*string, bool)

GetSubjectDnOk returns a tuple with the SubjectDn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetToken

func (o *AddEndEntityRestRequest) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetTokenOk

func (o *AddEndEntityRestRequest) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) GetUsername

func (o *AddEndEntityRestRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*AddEndEntityRestRequest) GetUsernameOk

func (o *AddEndEntityRestRequest) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddEndEntityRestRequest) HasAccountBindingId

func (o *AddEndEntityRestRequest) HasAccountBindingId() bool

HasAccountBindingId returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasCaName

func (o *AddEndEntityRestRequest) HasCaName() bool

HasCaName returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasCertificateProfileName

func (o *AddEndEntityRestRequest) HasCertificateProfileName() bool

HasCertificateProfileName returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasEmail

func (o *AddEndEntityRestRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasEndEntityProfileName

func (o *AddEndEntityRestRequest) HasEndEntityProfileName() bool

HasEndEntityProfileName returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasExtensionData

func (o *AddEndEntityRestRequest) HasExtensionData() bool

HasExtensionData returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasPassword

func (o *AddEndEntityRestRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasSubjectAltName

func (o *AddEndEntityRestRequest) HasSubjectAltName() bool

HasSubjectAltName returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasSubjectDn

func (o *AddEndEntityRestRequest) HasSubjectDn() bool

HasSubjectDn returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasToken

func (o *AddEndEntityRestRequest) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*AddEndEntityRestRequest) HasUsername

func (o *AddEndEntityRestRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AddEndEntityRestRequest) MarshalJSON

func (o AddEndEntityRestRequest) MarshalJSON() ([]byte, error)

func (*AddEndEntityRestRequest) SetAccountBindingId

func (o *AddEndEntityRestRequest) SetAccountBindingId(v string)

SetAccountBindingId gets a reference to the given string and assigns it to the AccountBindingId field.

func (*AddEndEntityRestRequest) SetCaName

func (o *AddEndEntityRestRequest) SetCaName(v string)

SetCaName gets a reference to the given string and assigns it to the CaName field.

func (*AddEndEntityRestRequest) SetCertificateProfileName

func (o *AddEndEntityRestRequest) SetCertificateProfileName(v string)

SetCertificateProfileName gets a reference to the given string and assigns it to the CertificateProfileName field.

func (*AddEndEntityRestRequest) SetEmail

func (o *AddEndEntityRestRequest) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*AddEndEntityRestRequest) SetEndEntityProfileName

func (o *AddEndEntityRestRequest) SetEndEntityProfileName(v string)

SetEndEntityProfileName gets a reference to the given string and assigns it to the EndEntityProfileName field.

func (*AddEndEntityRestRequest) SetExtensionData

SetExtensionData gets a reference to the given []ExtendedInformationRestRequestComponent and assigns it to the ExtensionData field.

func (*AddEndEntityRestRequest) SetPassword

func (o *AddEndEntityRestRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*AddEndEntityRestRequest) SetSubjectAltName

func (o *AddEndEntityRestRequest) SetSubjectAltName(v string)

SetSubjectAltName gets a reference to the given string and assigns it to the SubjectAltName field.

func (*AddEndEntityRestRequest) SetSubjectDn

func (o *AddEndEntityRestRequest) SetSubjectDn(v string)

SetSubjectDn gets a reference to the given string and assigns it to the SubjectDn field.

func (*AddEndEntityRestRequest) SetToken

func (o *AddEndEntityRestRequest) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*AddEndEntityRestRequest) SetUsername

func (o *AddEndEntityRestRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (AddEndEntityRestRequest) ToMap

func (o AddEndEntityRestRequest) ToMap() (map[string]interface{}, error)

func (*AddEndEntityRestRequest) UnmarshalJSON

func (o *AddEndEntityRestRequest) UnmarshalJSON(bytes []byte) (err error)

type ApiActivate1Request

type ApiActivate1Request struct {
	ApiService *V1CryptotokenApiService
	// contains filtered or unexported fields
}

func (ApiActivate1Request) CryptoTokenActivationRestRequest

func (r ApiActivate1Request) CryptoTokenActivationRestRequest(cryptoTokenActivationRestRequest CryptoTokenActivationRestRequest) ApiActivate1Request

activation code

func (ApiActivate1Request) Execute

func (r ApiActivate1Request) Execute() (*http.Response, error)

type ApiActivateRequest

type ApiActivateRequest struct {
	ApiService *V1CaManagementApiService
	// contains filtered or unexported fields
}

func (ApiActivateRequest) Execute

func (r ApiActivateRequest) Execute() (*http.Response, error)

type ApiAddRequest

type ApiAddRequest struct {
	ApiService *V1EndentityApiService
	// contains filtered or unexported fields
}

func (ApiAddRequest) AddEndEntityRestRequest

func (r ApiAddRequest) AddEndEntityRestRequest(addEndEntityRestRequest AddEndEntityRestRequest) ApiAddRequest

request

func (ApiAddRequest) Execute

func (r ApiAddRequest) Execute() (*http.Response, error)

type ApiCertificateRequestRequest

type ApiCertificateRequestRequest struct {
	ApiService *V1CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateRequestRequest) CertificateRequestRestRequest

func (r ApiCertificateRequestRequest) CertificateRequestRestRequest(certificateRequestRestRequest CertificateRequestRestRequest) ApiCertificateRequestRequest

func (ApiCertificateRequestRequest) Execute

type ApiCreateCrlRequest

type ApiCreateCrlRequest struct {
	ApiService *V1CaApiService
	// contains filtered or unexported fields
}

func (ApiCreateCrlRequest) Deltacrl

func (r ApiCreateCrlRequest) Deltacrl(deltacrl bool) ApiCreateCrlRequest

true to also create the deltaCRL, false to only create the base CRL

func (ApiCreateCrlRequest) Execute

type ApiDeactivate1Request

type ApiDeactivate1Request struct {
	ApiService *V1CryptotokenApiService
	// contains filtered or unexported fields
}

func (ApiDeactivate1Request) Execute

func (r ApiDeactivate1Request) Execute() (*http.Response, error)

type ApiDeactivateRequest

type ApiDeactivateRequest struct {
	ApiService *V1CaManagementApiService
	// contains filtered or unexported fields
}

func (ApiDeactivateRequest) Execute

func (r ApiDeactivateRequest) Execute() (*http.Response, error)

type ApiDeleteRequest

type ApiDeleteRequest struct {
	ApiService *V1EndentityApiService
	// contains filtered or unexported fields
}

func (ApiDeleteRequest) Execute

func (r ApiDeleteRequest) Execute() (*http.Response, error)

type ApiEnrollKeystoreRequest

type ApiEnrollKeystoreRequest struct {
	ApiService *V1CertificateApiService
	// contains filtered or unexported fields
}

func (ApiEnrollKeystoreRequest) Execute

func (ApiEnrollKeystoreRequest) KeyStoreRestRequest

func (r ApiEnrollKeystoreRequest) KeyStoreRestRequest(keyStoreRestRequest KeyStoreRestRequest) ApiEnrollKeystoreRequest

type ApiEnrollPkcs10CertificateRequest

type ApiEnrollPkcs10CertificateRequest struct {
	ApiService *V1CertificateApiService
	// contains filtered or unexported fields
}

func (ApiEnrollPkcs10CertificateRequest) EnrollCertificateRestRequest

func (r ApiEnrollPkcs10CertificateRequest) EnrollCertificateRestRequest(enrollCertificateRestRequest EnrollCertificateRestRequest) ApiEnrollPkcs10CertificateRequest

func (ApiEnrollPkcs10CertificateRequest) Execute

type ApiFinalizeEnrollmentRequest

type ApiFinalizeEnrollmentRequest struct {
	ApiService *V1CertificateApiService
	// contains filtered or unexported fields
}

func (ApiFinalizeEnrollmentRequest) Execute

func (ApiFinalizeEnrollmentRequest) FinalizeRestRequest

func (r ApiFinalizeEnrollmentRequest) FinalizeRestRequest(finalizeRestRequest FinalizeRestRequest) ApiFinalizeEnrollmentRequest

responseFormat must be one of 'P12', 'BCFKS', 'JKS', 'DER'

type ApiGenerateKeysRequest

type ApiGenerateKeysRequest struct {
	ApiService *V1CryptotokenApiService
	// contains filtered or unexported fields
}

func (ApiGenerateKeysRequest) CryptoTokenKeyGenerationRestRequest

func (r ApiGenerateKeysRequest) CryptoTokenKeyGenerationRestRequest(cryptoTokenKeyGenerationRestRequest CryptoTokenKeyGenerationRestRequest) ApiGenerateKeysRequest

func (ApiGenerateKeysRequest) Execute

func (r ApiGenerateKeysRequest) Execute() (*http.Response, error)

type ApiGetAuthorizedEndEntityProfilesRequest

type ApiGetAuthorizedEndEntityProfilesRequest struct {
	ApiService *V2EndentityApiService
	// contains filtered or unexported fields
}

func (ApiGetAuthorizedEndEntityProfilesRequest) Execute

type ApiGetCertificateAsPemRequest

type ApiGetCertificateAsPemRequest struct {
	ApiService *V1CaApiService
	// contains filtered or unexported fields
}

func (ApiGetCertificateAsPemRequest) Execute

type ApiGetCertificateProfileInfoRequest

type ApiGetCertificateProfileInfoRequest struct {
	ApiService *V2CertificateApiService
	// contains filtered or unexported fields
}

func (ApiGetCertificateProfileInfoRequest) Execute

type ApiGetCertificatesAboutToExpireRequest

type ApiGetCertificatesAboutToExpireRequest struct {
	ApiService *V1CertificateApiService
	// contains filtered or unexported fields
}

func (ApiGetCertificatesAboutToExpireRequest) Days

Request certificates expiring within this number of days

func (ApiGetCertificatesAboutToExpireRequest) Execute

func (ApiGetCertificatesAboutToExpireRequest) MaxNumberOfResults

Maximum number of certificates to display. If result exceeds this value. Modify 'offset' to retrieve more results

func (ApiGetCertificatesAboutToExpireRequest) Offset

Next offset to display results of, if maxNumberOfResults is exceeded. Starts from 0.

type ApiGetJsonConfigdumpForTypeAndSettingRequest

type ApiGetJsonConfigdumpForTypeAndSettingRequest struct {
	ApiService *V1ConfigdumpApiService
	// contains filtered or unexported fields
}

func (ApiGetJsonConfigdumpForTypeAndSettingRequest) Defaults

Also include fields having the default value.

func (ApiGetJsonConfigdumpForTypeAndSettingRequest) Execute

func (ApiGetJsonConfigdumpForTypeAndSettingRequest) Ignoreerrors

Print a warning instead of aborting and throwing an exception on errors.

type ApiGetJsonConfigdumpForTypeRequest

type ApiGetJsonConfigdumpForTypeRequest struct {
	ApiService *V1ConfigdumpApiService
	// contains filtered or unexported fields
}

func (ApiGetJsonConfigdumpForTypeRequest) Defaults

Also include fields having the default value.

func (ApiGetJsonConfigdumpForTypeRequest) Execute

func (ApiGetJsonConfigdumpForTypeRequest) Externalcas

Enables export of external CAs (i.e. CAs where there's only a certificate and nothing else)

func (ApiGetJsonConfigdumpForTypeRequest) Ignoreerrors

Print a warning instead of aborting and throwing an exception on errors.

type ApiGetJsonConfigdumpRequest

type ApiGetJsonConfigdumpRequest struct {
	ApiService *V1ConfigdumpApiService
	// contains filtered or unexported fields
}

func (ApiGetJsonConfigdumpRequest) Defaults

Also include fields having the default value.

func (ApiGetJsonConfigdumpRequest) Exclude

Names of items/types to exclude in the export, separated by semicolon. Type and name is separated by a colon, and wildcards \"\\*\" are allowed. Both are case-insensitive. E.g. exclude=\"\\*:Example CA;cryptotoken:Example\\*;systemconfiguration:\\*\". Supported types are: ACMECONFIG/acme-config, CA/certification-authorities, CRYPTOTOKEN/crypto-tokens, PUBLISHER/publishers, APPROVALPROFILE/approval-profiles, CERTPROFILE/certificate-profiles, EEPROFILE/end-entity-profiles, SERVICE/services, ROLE/admin-roles, KEYBINDING/internal-key-bindings, ADMINPREFS/admin-preferences, OCSPCONFIG/ocsp-configuration, PEERCONNECTOR/peer-connectors, SCEPCONFIG/scep-config, CMPCONFIG/cmp-config, ESTCONFIG/est-config, VALIDATOR/validators, CTLOG/ct-logs, EXTENDEDKEYUSAGE/extended-key-usage, CERTEXTENSION/custom-certificate-extensions, OAUTHKEY/trusted-oauth-providers, AVAILABLEPROTOCOLS/available-protocols

func (ApiGetJsonConfigdumpRequest) Execute

func (ApiGetJsonConfigdumpRequest) Externalcas

Enables export of external CAs (i.e. CAs where there's only a certificate and nothing else)

func (ApiGetJsonConfigdumpRequest) Ignoreerrors

func (r ApiGetJsonConfigdumpRequest) Ignoreerrors(ignoreerrors bool) ApiGetJsonConfigdumpRequest

Print a warning instead of aborting and throwing an exception on errors.

func (ApiGetJsonConfigdumpRequest) Include

Names of items/types to include in the export. The syntax is identical to that of exclude. For items of types that aren't listed, everything is included.

type ApiGetLatestCrlRequest

type ApiGetLatestCrlRequest struct {
	ApiService *V1CaApiService
	// contains filtered or unexported fields
}

func (ApiGetLatestCrlRequest) CrlPartitionIndex

func (r ApiGetLatestCrlRequest) CrlPartitionIndex(crlPartitionIndex int32) ApiGetLatestCrlRequest

the CRL partition index

func (ApiGetLatestCrlRequest) DeltaCrl

func (r ApiGetLatestCrlRequest) DeltaCrl(deltaCrl bool) ApiGetLatestCrlRequest

true to get the latest deltaCRL, false to get the latest complete CRL

func (ApiGetLatestCrlRequest) Execute

type ApiGetZipExportRequest

type ApiGetZipExportRequest struct {
	ApiService *V1ConfigdumpApiService
	// contains filtered or unexported fields
}

func (ApiGetZipExportRequest) Defaults

func (r ApiGetZipExportRequest) Defaults(defaults bool) ApiGetZipExportRequest

Also include fields having the default value.

func (ApiGetZipExportRequest) Exclude

Names of items/types to exclude in the export, separated by semicolon. Type and name is separated by a colon, and wildcards \"\\*\" are allowed. Both are case-insensitive. E.g. exclude=\"\\*:Example CA;cryptotoken:Example\\*;systemconfiguration:\\*\". Supported types are: ACMECONFIG/acme-config, CA/certification-authorities, CRYPTOTOKEN/crypto-tokens, PUBLISHER/publishers, APPROVALPROFILE/approval-profiles, CERTPROFILE/certificate-profiles, EEPROFILE/end-entity-profiles, SERVICE/services, ROLE/admin-roles, KEYBINDING/internal-key-bindings, ADMINPREFS/admin-preferences, OCSPCONFIG/ocsp-configuration, PEERCONNECTOR/peer-connectors, SCEPCONFIG/scep-config, CMPCONFIG/cmp-config, ESTCONFIG/est-config, VALIDATOR/validators, CTLOG/ct-logs, EXTENDEDKEYUSAGE/extended-key-usage, CERTEXTENSION/custom-certificate-extensions, OAUTHKEY/trusted-oauth-providers, AVAILABLEPROTOCOLS/available-protocols

func (ApiGetZipExportRequest) Execute

func (r ApiGetZipExportRequest) Execute() ([]string, *http.Response, error)

func (ApiGetZipExportRequest) Externalcas

func (r ApiGetZipExportRequest) Externalcas(externalcas bool) ApiGetZipExportRequest

Enables export of external CAs (i.e. CAs where there's only a certificate and nothing else)

func (ApiGetZipExportRequest) Ignoreerrors

func (r ApiGetZipExportRequest) Ignoreerrors(ignoreerrors bool) ApiGetZipExportRequest

Print a warning instead of aborting and throwing an exception on errors.

func (ApiGetZipExportRequest) Include

Names of items/types to include in the export. The syntax is identical to that of exclude. For items of types that aren't listed, everything is included.

type ApiImportCrlRequest

type ApiImportCrlRequest struct {
	ApiService *V1CaApiService
	// contains filtered or unexported fields
}

func (ApiImportCrlRequest) CrlFile

func (r ApiImportCrlRequest) CrlFile(crlFile *os.File) ApiImportCrlRequest

CRL file in DER format

func (ApiImportCrlRequest) CrlPartitionIndex

func (r ApiImportCrlRequest) CrlPartitionIndex(crlPartitionIndex int32) ApiImportCrlRequest

CRL partition index

func (ApiImportCrlRequest) Execute

func (r ApiImportCrlRequest) Execute() (*http.Response, error)

type ApiListCasRequest

type ApiListCasRequest struct {
	ApiService *V1CaApiService
	// contains filtered or unexported fields
}

func (ApiListCasRequest) Execute

type ApiPostJsonImportRequest

type ApiPostJsonImportRequest struct {
	ApiService *V1ConfigdumpApiService
	// contains filtered or unexported fields
}

func (ApiPostJsonImportRequest) Body

JSON data in configdump format

func (ApiPostJsonImportRequest) Continue_

Continue on errors. Default is to abort.

func (ApiPostJsonImportRequest) Execute

func (ApiPostJsonImportRequest) Ignoreerrors

func (r ApiPostJsonImportRequest) Ignoreerrors(ignoreerrors bool) ApiPostJsonImportRequest

Add to warnings instead of aborting on errors.

func (ApiPostJsonImportRequest) Initialize

func (r ApiPostJsonImportRequest) Initialize(initialize bool) ApiPostJsonImportRequest

Generate initial certificate for CAs on import

func (ApiPostJsonImportRequest) Overwrite

How to handle already existing configuration. Options are abort,skip,yes

func (ApiPostJsonImportRequest) Resolve

How to resolve missing references. Options are abort,skip,default

type ApiPostZipImportRequest

type ApiPostZipImportRequest struct {
	ApiService *V1ConfigdumpApiService
	// contains filtered or unexported fields
}

func (ApiPostZipImportRequest) Continue_

func (r ApiPostZipImportRequest) Continue_(continue_ bool) ApiPostZipImportRequest

Continue on errors. Default is to abort.

func (ApiPostZipImportRequest) Execute

func (ApiPostZipImportRequest) Ignoreerrors

func (r ApiPostZipImportRequest) Ignoreerrors(ignoreerrors bool) ApiPostZipImportRequest

Add to warnings instead of aborting on errors.

func (ApiPostZipImportRequest) Initialize

func (r ApiPostZipImportRequest) Initialize(initialize bool) ApiPostZipImportRequest

Generate initial certificate for CAs on import

func (ApiPostZipImportRequest) Overwrite

How to handle already existing configuration. Options are abort,skip,yes

func (ApiPostZipImportRequest) Resolve

How to resolve missing references. Options are abort,skip,default

func (ApiPostZipImportRequest) Zipfile

A zipfile containing directories of YAML files.

type ApiProfileRequest

type ApiProfileRequest struct {
	ApiService *V2EndentityApiService
	// contains filtered or unexported fields
}

func (ApiProfileRequest) Execute

type ApiPubkeyRequest

type ApiPubkeyRequest struct {
	ApiService *V1SshApiService
	// contains filtered or unexported fields
}

func (ApiPubkeyRequest) Execute

type ApiRemoveKeysRequest

type ApiRemoveKeysRequest struct {
	ApiService *V1CryptotokenApiService
	// contains filtered or unexported fields
}

func (ApiRemoveKeysRequest) Execute

func (r ApiRemoveKeysRequest) Execute() (*http.Response, error)

type ApiRevocationStatusRequest

type ApiRevocationStatusRequest struct {
	ApiService *V1CertificateApiService
	// contains filtered or unexported fields
}

func (ApiRevocationStatusRequest) Execute

type ApiRevokeCertificateRequest

type ApiRevokeCertificateRequest struct {
	ApiService *V1CertificateApiService
	// contains filtered or unexported fields
}

func (ApiRevokeCertificateRequest) Date

ISO 8601 Date string, eg. '2018-06-15T14:07:09Z'

func (ApiRevokeCertificateRequest) Execute

func (ApiRevokeCertificateRequest) Reason

Must be valid RFC5280 reason. One of NOT_REVOKED, UNSPECIFIED ,KEY_COMPROMISE, CA_COMPROMISE, AFFILIATION_CHANGED, SUPERSEDED, CESSATION_OF_OPERATION, CERTIFICATE_HOLD, REMOVE_FROM_CRL, PRIVILEGES_WITHDRAWN, AA_COMPROMISE

type ApiRevokeRequest

type ApiRevokeRequest struct {
	ApiService *V1EndentityApiService
	// contains filtered or unexported fields
}

func (ApiRevokeRequest) EndEntityRevocationRestRequest

func (r ApiRevokeRequest) EndEntityRevocationRestRequest(endEntityRevocationRestRequest EndEntityRevocationRestRequest) ApiRevokeRequest

request

func (ApiRevokeRequest) Execute

func (r ApiRevokeRequest) Execute() (*http.Response, error)

type ApiSearchCertificates1Request

type ApiSearchCertificates1Request struct {
	ApiService *V2CertificateApiService
	// contains filtered or unexported fields
}

func (ApiSearchCertificates1Request) Execute

func (ApiSearchCertificates1Request) SearchCertificatesRestRequestV2

func (r ApiSearchCertificates1Request) SearchCertificatesRestRequestV2(searchCertificatesRestRequestV2 SearchCertificatesRestRequestV2) ApiSearchCertificates1Request

Collection of search criterias and pagination information.

type ApiSearchCertificatesRequest

type ApiSearchCertificatesRequest struct {
	ApiService *V1CertificateApiService
	// contains filtered or unexported fields
}

func (ApiSearchCertificatesRequest) Execute

func (ApiSearchCertificatesRequest) SearchCertificatesRestRequest

func (r ApiSearchCertificatesRequest) SearchCertificatesRestRequest(searchCertificatesRestRequest SearchCertificatesRestRequest) ApiSearchCertificatesRequest

Maximum number of results and collection of search criterias.

type ApiSearchRequest

type ApiSearchRequest struct {
	ApiService *V1EndentityApiService
	// contains filtered or unexported fields
}

func (ApiSearchRequest) Execute

func (ApiSearchRequest) SearchEndEntitiesRestRequest

func (r ApiSearchRequest) SearchEndEntitiesRestRequest(searchEndEntitiesRestRequest SearchEndEntitiesRestRequest) ApiSearchRequest

Maximum number of results and collection of search criterias.

type ApiSetstatusRequest

type ApiSetstatusRequest struct {
	ApiService *V1EndentityApiService
	// contains filtered or unexported fields
}

func (ApiSetstatusRequest) Execute

func (r ApiSetstatusRequest) Execute() (*http.Response, error)

func (ApiSetstatusRequest) SetEndEntityStatusRestRequest

func (r ApiSetstatusRequest) SetEndEntityStatusRestRequest(setEndEntityStatusRestRequest SetEndEntityStatusRestRequest) ApiSetstatusRequest

request

type ApiSortedSearchRequest

type ApiSortedSearchRequest struct {
	ApiService *V2EndentityApiService
	// contains filtered or unexported fields
}

func (ApiSortedSearchRequest) Execute

func (ApiSortedSearchRequest) SearchEndEntitiesRestRequestV2

func (r ApiSortedSearchRequest) SearchEndEntitiesRestRequestV2(searchEndEntitiesRestRequestV2 SearchEndEntitiesRestRequestV2) ApiSortedSearchRequest

Maximum number of results and collection of search criterias.

type ApiStatus1Request

type ApiStatus1Request struct {
	ApiService *V1CaApiService
	// contains filtered or unexported fields
}

func (ApiStatus1Request) Execute

type ApiStatus2Request

type ApiStatus2Request struct {
	ApiService *V1CertificateApiService
	// contains filtered or unexported fields
}

func (ApiStatus2Request) Execute

type ApiStatus3Request

type ApiStatus3Request struct {
	ApiService *V2CertificateApiService
	// contains filtered or unexported fields
}

func (ApiStatus3Request) Execute

type ApiStatus4Request

type ApiStatus4Request struct {
	ApiService *V1ConfigdumpApiService
	// contains filtered or unexported fields
}

func (ApiStatus4Request) Execute

type ApiStatus5Request

type ApiStatus5Request struct {
	ApiService *V1CryptotokenApiService
	// contains filtered or unexported fields
}

func (ApiStatus5Request) Execute

type ApiStatus6Request

type ApiStatus6Request struct {
	ApiService *V1EndentityApiService
	// contains filtered or unexported fields
}

func (ApiStatus6Request) Execute

type ApiStatus7Request

type ApiStatus7Request struct {
	ApiService *V2EndentityApiService
	// contains filtered or unexported fields
}

func (ApiStatus7Request) Execute

type ApiStatus8Request

type ApiStatus8Request struct {
	ApiService *V1SshApiService
	// contains filtered or unexported fields
}

func (ApiStatus8Request) Execute

type ApiStatusRequest

type ApiStatusRequest struct {
	ApiService *V1CaManagementApiService
	// contains filtered or unexported fields
}

func (ApiStatusRequest) Execute

type AuthorizedEEPsRestResponse

type AuthorizedEEPsRestResponse struct {
	EndEntitieProfiles   []EndEntityProfileRestResponse `json:"end_entitie_profiles,omitempty"`
	AdditionalProperties map[string]interface{}
}

AuthorizedEEPsRestResponse struct for AuthorizedEEPsRestResponse

func NewAuthorizedEEPsRestResponse

func NewAuthorizedEEPsRestResponse() *AuthorizedEEPsRestResponse

NewAuthorizedEEPsRestResponse instantiates a new AuthorizedEEPsRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthorizedEEPsRestResponseWithDefaults

func NewAuthorizedEEPsRestResponseWithDefaults() *AuthorizedEEPsRestResponse

NewAuthorizedEEPsRestResponseWithDefaults instantiates a new AuthorizedEEPsRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthorizedEEPsRestResponse) GetEndEntitieProfiles

func (o *AuthorizedEEPsRestResponse) GetEndEntitieProfiles() []EndEntityProfileRestResponse

GetEndEntitieProfiles returns the EndEntitieProfiles field value if set, zero value otherwise.

func (*AuthorizedEEPsRestResponse) GetEndEntitieProfilesOk

func (o *AuthorizedEEPsRestResponse) GetEndEntitieProfilesOk() ([]EndEntityProfileRestResponse, bool)

GetEndEntitieProfilesOk returns a tuple with the EndEntitieProfiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthorizedEEPsRestResponse) HasEndEntitieProfiles

func (o *AuthorizedEEPsRestResponse) HasEndEntitieProfiles() bool

HasEndEntitieProfiles returns a boolean if a field has been set.

func (AuthorizedEEPsRestResponse) MarshalJSON

func (o AuthorizedEEPsRestResponse) MarshalJSON() ([]byte, error)

func (*AuthorizedEEPsRestResponse) SetEndEntitieProfiles

func (o *AuthorizedEEPsRestResponse) SetEndEntitieProfiles(v []EndEntityProfileRestResponse)

SetEndEntitieProfiles gets a reference to the given []EndEntityProfileRestResponse and assigns it to the EndEntitieProfiles field.

func (AuthorizedEEPsRestResponse) ToMap

func (o AuthorizedEEPsRestResponse) ToMap() (map[string]interface{}, error)

func (*AuthorizedEEPsRestResponse) UnmarshalJSON

func (o *AuthorizedEEPsRestResponse) UnmarshalJSON(bytes []byte) (err error)

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type CaInfoRestResponse

type CaInfoRestResponse struct {
	// CA identifier
	Id *int32 `json:"id,omitempty"`
	// Certificate Authority (CA) name
	Name *string `json:"name,omitempty"`
	// Subject Distinguished Name
	SubjectDn *string `json:"subject_dn,omitempty"`
	// Issuer Distinguished Name
	IssuerDn *string `json:"issuer_dn,omitempty"`
	// Expiration date
	ExpirationDate       *time.Time `json:"expiration_date,omitempty"`
	AdditionalProperties map[string]interface{}
}

CaInfoRestResponse struct for CaInfoRestResponse

func NewCaInfoRestResponse

func NewCaInfoRestResponse() *CaInfoRestResponse

NewCaInfoRestResponse instantiates a new CaInfoRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCaInfoRestResponseWithDefaults

func NewCaInfoRestResponseWithDefaults() *CaInfoRestResponse

NewCaInfoRestResponseWithDefaults instantiates a new CaInfoRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CaInfoRestResponse) GetExpirationDate

func (o *CaInfoRestResponse) GetExpirationDate() time.Time

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*CaInfoRestResponse) GetExpirationDateOk

func (o *CaInfoRestResponse) GetExpirationDateOk() (*time.Time, bool)

GetExpirationDateOk returns a tuple with the ExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CaInfoRestResponse) GetId

func (o *CaInfoRestResponse) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*CaInfoRestResponse) GetIdOk

func (o *CaInfoRestResponse) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CaInfoRestResponse) GetIssuerDn

func (o *CaInfoRestResponse) GetIssuerDn() string

GetIssuerDn returns the IssuerDn field value if set, zero value otherwise.

func (*CaInfoRestResponse) GetIssuerDnOk

func (o *CaInfoRestResponse) GetIssuerDnOk() (*string, bool)

GetIssuerDnOk returns a tuple with the IssuerDn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CaInfoRestResponse) GetName

func (o *CaInfoRestResponse) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*CaInfoRestResponse) GetNameOk

func (o *CaInfoRestResponse) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CaInfoRestResponse) GetSubjectDn

func (o *CaInfoRestResponse) GetSubjectDn() string

GetSubjectDn returns the SubjectDn field value if set, zero value otherwise.

func (*CaInfoRestResponse) GetSubjectDnOk

func (o *CaInfoRestResponse) GetSubjectDnOk() (*string, bool)

GetSubjectDnOk returns a tuple with the SubjectDn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CaInfoRestResponse) HasExpirationDate

func (o *CaInfoRestResponse) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*CaInfoRestResponse) HasId

func (o *CaInfoRestResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*CaInfoRestResponse) HasIssuerDn

func (o *CaInfoRestResponse) HasIssuerDn() bool

HasIssuerDn returns a boolean if a field has been set.

func (*CaInfoRestResponse) HasName

func (o *CaInfoRestResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*CaInfoRestResponse) HasSubjectDn

func (o *CaInfoRestResponse) HasSubjectDn() bool

HasSubjectDn returns a boolean if a field has been set.

func (CaInfoRestResponse) MarshalJSON

func (o CaInfoRestResponse) MarshalJSON() ([]byte, error)

func (*CaInfoRestResponse) SetExpirationDate

func (o *CaInfoRestResponse) SetExpirationDate(v time.Time)

SetExpirationDate gets a reference to the given time.Time and assigns it to the ExpirationDate field.

func (*CaInfoRestResponse) SetId

func (o *CaInfoRestResponse) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*CaInfoRestResponse) SetIssuerDn

func (o *CaInfoRestResponse) SetIssuerDn(v string)

SetIssuerDn gets a reference to the given string and assigns it to the IssuerDn field.

func (*CaInfoRestResponse) SetName

func (o *CaInfoRestResponse) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*CaInfoRestResponse) SetSubjectDn

func (o *CaInfoRestResponse) SetSubjectDn(v string)

SetSubjectDn gets a reference to the given string and assigns it to the SubjectDn field.

func (CaInfoRestResponse) ToMap

func (o CaInfoRestResponse) ToMap() (map[string]interface{}, error)

func (*CaInfoRestResponse) UnmarshalJSON

func (o *CaInfoRestResponse) UnmarshalJSON(bytes []byte) (err error)

type CaInfosRestResponse

type CaInfosRestResponse struct {
	CertificateAuthorities []CaInfoRestResponse `json:"certificate_authorities,omitempty"`
	AdditionalProperties   map[string]interface{}
}

CaInfosRestResponse struct for CaInfosRestResponse

func NewCaInfosRestResponse

func NewCaInfosRestResponse() *CaInfosRestResponse

NewCaInfosRestResponse instantiates a new CaInfosRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCaInfosRestResponseWithDefaults

func NewCaInfosRestResponseWithDefaults() *CaInfosRestResponse

NewCaInfosRestResponseWithDefaults instantiates a new CaInfosRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CaInfosRestResponse) GetCertificateAuthorities

func (o *CaInfosRestResponse) GetCertificateAuthorities() []CaInfoRestResponse

GetCertificateAuthorities returns the CertificateAuthorities field value if set, zero value otherwise.

func (*CaInfosRestResponse) GetCertificateAuthoritiesOk

func (o *CaInfosRestResponse) GetCertificateAuthoritiesOk() ([]CaInfoRestResponse, bool)

GetCertificateAuthoritiesOk returns a tuple with the CertificateAuthorities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CaInfosRestResponse) HasCertificateAuthorities

func (o *CaInfosRestResponse) HasCertificateAuthorities() bool

HasCertificateAuthorities returns a boolean if a field has been set.

func (CaInfosRestResponse) MarshalJSON

func (o CaInfosRestResponse) MarshalJSON() ([]byte, error)

func (*CaInfosRestResponse) SetCertificateAuthorities

func (o *CaInfosRestResponse) SetCertificateAuthorities(v []CaInfoRestResponse)

SetCertificateAuthorities gets a reference to the given []CaInfoRestResponse and assigns it to the CertificateAuthorities field.

func (CaInfosRestResponse) ToMap

func (o CaInfosRestResponse) ToMap() (map[string]interface{}, error)

func (*CaInfosRestResponse) UnmarshalJSON

func (o *CaInfosRestResponse) UnmarshalJSON(bytes []byte) (err error)

type CertificateProfileInfoRestResponseV2

type CertificateProfileInfoRestResponseV2 struct {
	AvailableKeyAlgs     []string `json:"available_key_algs,omitempty"`
	AvailableBitLenghts  []int32  `json:"available_bit_lenghts,omitempty"`
	AvailableEcdsaCurves []string `json:"available_ecdsa_curves,omitempty"`
	AvailableCas         []string `json:"available_cas,omitempty"`
	AdditionalProperties map[string]interface{}
}

CertificateProfileInfoRestResponseV2 struct for CertificateProfileInfoRestResponseV2

func NewCertificateProfileInfoRestResponseV2

func NewCertificateProfileInfoRestResponseV2() *CertificateProfileInfoRestResponseV2

NewCertificateProfileInfoRestResponseV2 instantiates a new CertificateProfileInfoRestResponseV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificateProfileInfoRestResponseV2WithDefaults

func NewCertificateProfileInfoRestResponseV2WithDefaults() *CertificateProfileInfoRestResponseV2

NewCertificateProfileInfoRestResponseV2WithDefaults instantiates a new CertificateProfileInfoRestResponseV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificateProfileInfoRestResponseV2) GetAvailableBitLenghts

func (o *CertificateProfileInfoRestResponseV2) GetAvailableBitLenghts() []int32

GetAvailableBitLenghts returns the AvailableBitLenghts field value if set, zero value otherwise.

func (*CertificateProfileInfoRestResponseV2) GetAvailableBitLenghtsOk

func (o *CertificateProfileInfoRestResponseV2) GetAvailableBitLenghtsOk() ([]int32, bool)

GetAvailableBitLenghtsOk returns a tuple with the AvailableBitLenghts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateProfileInfoRestResponseV2) GetAvailableCas

func (o *CertificateProfileInfoRestResponseV2) GetAvailableCas() []string

GetAvailableCas returns the AvailableCas field value if set, zero value otherwise.

func (*CertificateProfileInfoRestResponseV2) GetAvailableCasOk

func (o *CertificateProfileInfoRestResponseV2) GetAvailableCasOk() ([]string, bool)

GetAvailableCasOk returns a tuple with the AvailableCas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateProfileInfoRestResponseV2) GetAvailableEcdsaCurves

func (o *CertificateProfileInfoRestResponseV2) GetAvailableEcdsaCurves() []string

GetAvailableEcdsaCurves returns the AvailableEcdsaCurves field value if set, zero value otherwise.

func (*CertificateProfileInfoRestResponseV2) GetAvailableEcdsaCurvesOk

func (o *CertificateProfileInfoRestResponseV2) GetAvailableEcdsaCurvesOk() ([]string, bool)

GetAvailableEcdsaCurvesOk returns a tuple with the AvailableEcdsaCurves field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateProfileInfoRestResponseV2) GetAvailableKeyAlgs

func (o *CertificateProfileInfoRestResponseV2) GetAvailableKeyAlgs() []string

GetAvailableKeyAlgs returns the AvailableKeyAlgs field value if set, zero value otherwise.

func (*CertificateProfileInfoRestResponseV2) GetAvailableKeyAlgsOk

func (o *CertificateProfileInfoRestResponseV2) GetAvailableKeyAlgsOk() ([]string, bool)

GetAvailableKeyAlgsOk returns a tuple with the AvailableKeyAlgs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateProfileInfoRestResponseV2) HasAvailableBitLenghts

func (o *CertificateProfileInfoRestResponseV2) HasAvailableBitLenghts() bool

HasAvailableBitLenghts returns a boolean if a field has been set.

func (*CertificateProfileInfoRestResponseV2) HasAvailableCas

func (o *CertificateProfileInfoRestResponseV2) HasAvailableCas() bool

HasAvailableCas returns a boolean if a field has been set.

func (*CertificateProfileInfoRestResponseV2) HasAvailableEcdsaCurves

func (o *CertificateProfileInfoRestResponseV2) HasAvailableEcdsaCurves() bool

HasAvailableEcdsaCurves returns a boolean if a field has been set.

func (*CertificateProfileInfoRestResponseV2) HasAvailableKeyAlgs

func (o *CertificateProfileInfoRestResponseV2) HasAvailableKeyAlgs() bool

HasAvailableKeyAlgs returns a boolean if a field has been set.

func (CertificateProfileInfoRestResponseV2) MarshalJSON

func (o CertificateProfileInfoRestResponseV2) MarshalJSON() ([]byte, error)

func (*CertificateProfileInfoRestResponseV2) SetAvailableBitLenghts

func (o *CertificateProfileInfoRestResponseV2) SetAvailableBitLenghts(v []int32)

SetAvailableBitLenghts gets a reference to the given []int32 and assigns it to the AvailableBitLenghts field.

func (*CertificateProfileInfoRestResponseV2) SetAvailableCas

func (o *CertificateProfileInfoRestResponseV2) SetAvailableCas(v []string)

SetAvailableCas gets a reference to the given []string and assigns it to the AvailableCas field.

func (*CertificateProfileInfoRestResponseV2) SetAvailableEcdsaCurves

func (o *CertificateProfileInfoRestResponseV2) SetAvailableEcdsaCurves(v []string)

SetAvailableEcdsaCurves gets a reference to the given []string and assigns it to the AvailableEcdsaCurves field.

func (*CertificateProfileInfoRestResponseV2) SetAvailableKeyAlgs

func (o *CertificateProfileInfoRestResponseV2) SetAvailableKeyAlgs(v []string)

SetAvailableKeyAlgs gets a reference to the given []string and assigns it to the AvailableKeyAlgs field.

func (CertificateProfileInfoRestResponseV2) ToMap

func (o CertificateProfileInfoRestResponseV2) ToMap() (map[string]interface{}, error)

func (*CertificateProfileInfoRestResponseV2) UnmarshalJSON

func (o *CertificateProfileInfoRestResponseV2) UnmarshalJSON(bytes []byte) (err error)

type CertificateRequestRestRequest

type CertificateRequestRestRequest struct {
	// Certificate request
	CertificateRequest *string `json:"certificate_request,omitempty"`
	// Username
	Username *string `json:"username,omitempty"`
	// Password
	Password     *string `json:"password,omitempty"`
	IncludeChain *bool   `json:"include_chain,omitempty"`
	// Certificate Authority (CA) name
	CertificateAuthorityName *string `json:"certificate_authority_name,omitempty"`
	AdditionalProperties     map[string]interface{}
}

CertificateRequestRestRequest struct for CertificateRequestRestRequest

func NewCertificateRequestRestRequest

func NewCertificateRequestRestRequest() *CertificateRequestRestRequest

NewCertificateRequestRestRequest instantiates a new CertificateRequestRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificateRequestRestRequestWithDefaults

func NewCertificateRequestRestRequestWithDefaults() *CertificateRequestRestRequest

NewCertificateRequestRestRequestWithDefaults instantiates a new CertificateRequestRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificateRequestRestRequest) GetCertificateAuthorityName

func (o *CertificateRequestRestRequest) GetCertificateAuthorityName() string

GetCertificateAuthorityName returns the CertificateAuthorityName field value if set, zero value otherwise.

func (*CertificateRequestRestRequest) GetCertificateAuthorityNameOk

func (o *CertificateRequestRestRequest) GetCertificateAuthorityNameOk() (*string, bool)

GetCertificateAuthorityNameOk returns a tuple with the CertificateAuthorityName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRequestRestRequest) GetCertificateRequest

func (o *CertificateRequestRestRequest) GetCertificateRequest() string

GetCertificateRequest returns the CertificateRequest field value if set, zero value otherwise.

func (*CertificateRequestRestRequest) GetCertificateRequestOk

func (o *CertificateRequestRestRequest) GetCertificateRequestOk() (*string, bool)

GetCertificateRequestOk returns a tuple with the CertificateRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRequestRestRequest) GetIncludeChain

func (o *CertificateRequestRestRequest) GetIncludeChain() bool

GetIncludeChain returns the IncludeChain field value if set, zero value otherwise.

func (*CertificateRequestRestRequest) GetIncludeChainOk

func (o *CertificateRequestRestRequest) GetIncludeChainOk() (*bool, bool)

GetIncludeChainOk returns a tuple with the IncludeChain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRequestRestRequest) GetPassword

func (o *CertificateRequestRestRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*CertificateRequestRestRequest) GetPasswordOk

func (o *CertificateRequestRestRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRequestRestRequest) GetUsername

func (o *CertificateRequestRestRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*CertificateRequestRestRequest) GetUsernameOk

func (o *CertificateRequestRestRequest) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRequestRestRequest) HasCertificateAuthorityName

func (o *CertificateRequestRestRequest) HasCertificateAuthorityName() bool

HasCertificateAuthorityName returns a boolean if a field has been set.

func (*CertificateRequestRestRequest) HasCertificateRequest

func (o *CertificateRequestRestRequest) HasCertificateRequest() bool

HasCertificateRequest returns a boolean if a field has been set.

func (*CertificateRequestRestRequest) HasIncludeChain

func (o *CertificateRequestRestRequest) HasIncludeChain() bool

HasIncludeChain returns a boolean if a field has been set.

func (*CertificateRequestRestRequest) HasPassword

func (o *CertificateRequestRestRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*CertificateRequestRestRequest) HasUsername

func (o *CertificateRequestRestRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (CertificateRequestRestRequest) MarshalJSON

func (o CertificateRequestRestRequest) MarshalJSON() ([]byte, error)

func (*CertificateRequestRestRequest) SetCertificateAuthorityName

func (o *CertificateRequestRestRequest) SetCertificateAuthorityName(v string)

SetCertificateAuthorityName gets a reference to the given string and assigns it to the CertificateAuthorityName field.

func (*CertificateRequestRestRequest) SetCertificateRequest

func (o *CertificateRequestRestRequest) SetCertificateRequest(v string)

SetCertificateRequest gets a reference to the given string and assigns it to the CertificateRequest field.

func (*CertificateRequestRestRequest) SetIncludeChain

func (o *CertificateRequestRestRequest) SetIncludeChain(v bool)

SetIncludeChain gets a reference to the given bool and assigns it to the IncludeChain field.

func (*CertificateRequestRestRequest) SetPassword

func (o *CertificateRequestRestRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*CertificateRequestRestRequest) SetUsername

func (o *CertificateRequestRestRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (CertificateRequestRestRequest) ToMap

func (o CertificateRequestRestRequest) ToMap() (map[string]interface{}, error)

func (*CertificateRequestRestRequest) UnmarshalJSON

func (o *CertificateRequestRestRequest) UnmarshalJSON(bytes []byte) (err error)

type CertificateRestResponse

type CertificateRestResponse struct {
	// Certificate
	Certificate *string `json:"certificate,omitempty"`
	// Hex Serial Number
	SerialNumber *string `json:"serial_number,omitempty"`
	// Response format
	ResponseFormat *string `json:"response_format,omitempty"`
	// Certificate chain
	CertificateChain []string `json:"certificate_chain,omitempty"`
	// Certificate profile name
	CertificateProfile *string `json:"certificate_profile,omitempty"`
	// End Entity profile name
	EndEntityProfile     *string `json:"end_entity_profile,omitempty"`
	AdditionalProperties map[string]interface{}
}

CertificateRestResponse struct for CertificateRestResponse

func NewCertificateRestResponse

func NewCertificateRestResponse() *CertificateRestResponse

NewCertificateRestResponse instantiates a new CertificateRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificateRestResponseWithDefaults

func NewCertificateRestResponseWithDefaults() *CertificateRestResponse

NewCertificateRestResponseWithDefaults instantiates a new CertificateRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificateRestResponse) GetCertificate

func (o *CertificateRestResponse) GetCertificate() string

GetCertificate returns the Certificate field value if set, zero value otherwise.

func (*CertificateRestResponse) GetCertificateChain

func (o *CertificateRestResponse) GetCertificateChain() []string

GetCertificateChain returns the CertificateChain field value if set, zero value otherwise.

func (*CertificateRestResponse) GetCertificateChainOk

func (o *CertificateRestResponse) GetCertificateChainOk() ([]string, bool)

GetCertificateChainOk returns a tuple with the CertificateChain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponse) GetCertificateOk

func (o *CertificateRestResponse) GetCertificateOk() (*string, bool)

GetCertificateOk returns a tuple with the Certificate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponse) GetCertificateProfile

func (o *CertificateRestResponse) GetCertificateProfile() string

GetCertificateProfile returns the CertificateProfile field value if set, zero value otherwise.

func (*CertificateRestResponse) GetCertificateProfileOk

func (o *CertificateRestResponse) GetCertificateProfileOk() (*string, bool)

GetCertificateProfileOk returns a tuple with the CertificateProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponse) GetEndEntityProfile

func (o *CertificateRestResponse) GetEndEntityProfile() string

GetEndEntityProfile returns the EndEntityProfile field value if set, zero value otherwise.

func (*CertificateRestResponse) GetEndEntityProfileOk

func (o *CertificateRestResponse) GetEndEntityProfileOk() (*string, bool)

GetEndEntityProfileOk returns a tuple with the EndEntityProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponse) GetResponseFormat

func (o *CertificateRestResponse) GetResponseFormat() string

GetResponseFormat returns the ResponseFormat field value if set, zero value otherwise.

func (*CertificateRestResponse) GetResponseFormatOk

func (o *CertificateRestResponse) GetResponseFormatOk() (*string, bool)

GetResponseFormatOk returns a tuple with the ResponseFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponse) GetSerialNumber

func (o *CertificateRestResponse) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*CertificateRestResponse) GetSerialNumberOk

func (o *CertificateRestResponse) GetSerialNumberOk() (*string, bool)

GetSerialNumberOk returns a tuple with the SerialNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponse) HasCertificate

func (o *CertificateRestResponse) HasCertificate() bool

HasCertificate returns a boolean if a field has been set.

func (*CertificateRestResponse) HasCertificateChain

func (o *CertificateRestResponse) HasCertificateChain() bool

HasCertificateChain returns a boolean if a field has been set.

func (*CertificateRestResponse) HasCertificateProfile

func (o *CertificateRestResponse) HasCertificateProfile() bool

HasCertificateProfile returns a boolean if a field has been set.

func (*CertificateRestResponse) HasEndEntityProfile

func (o *CertificateRestResponse) HasEndEntityProfile() bool

HasEndEntityProfile returns a boolean if a field has been set.

func (*CertificateRestResponse) HasResponseFormat

func (o *CertificateRestResponse) HasResponseFormat() bool

HasResponseFormat returns a boolean if a field has been set.

func (*CertificateRestResponse) HasSerialNumber

func (o *CertificateRestResponse) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (CertificateRestResponse) MarshalJSON

func (o CertificateRestResponse) MarshalJSON() ([]byte, error)

func (*CertificateRestResponse) SetCertificate

func (o *CertificateRestResponse) SetCertificate(v string)

SetCertificate gets a reference to the given string and assigns it to the Certificate field.

func (*CertificateRestResponse) SetCertificateChain

func (o *CertificateRestResponse) SetCertificateChain(v []string)

SetCertificateChain gets a reference to the given []string and assigns it to the CertificateChain field.

func (*CertificateRestResponse) SetCertificateProfile

func (o *CertificateRestResponse) SetCertificateProfile(v string)

SetCertificateProfile gets a reference to the given string and assigns it to the CertificateProfile field.

func (*CertificateRestResponse) SetEndEntityProfile

func (o *CertificateRestResponse) SetEndEntityProfile(v string)

SetEndEntityProfile gets a reference to the given string and assigns it to the EndEntityProfile field.

func (*CertificateRestResponse) SetResponseFormat

func (o *CertificateRestResponse) SetResponseFormat(v string)

SetResponseFormat gets a reference to the given string and assigns it to the ResponseFormat field.

func (*CertificateRestResponse) SetSerialNumber

func (o *CertificateRestResponse) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (CertificateRestResponse) ToMap

func (o CertificateRestResponse) ToMap() (map[string]interface{}, error)

func (*CertificateRestResponse) UnmarshalJSON

func (o *CertificateRestResponse) UnmarshalJSON(bytes []byte) (err error)

type CertificateRestResponseV2

type CertificateRestResponseV2 struct {
	// Certificate fingerprint
	Fingerprint *string `json:"fingerprint,omitempty"`
	// Certificate Authority fingerprint
	CAFingerprint *string `json:"cAFingerprint,omitempty"`
	// Certificate Profile Identifier
	CertificateProfileId *int32 `json:"certificateProfileId,omitempty"`
	// End Entity Profile Identifier
	EndEntityProfileId *int32 `json:"endEntityProfileId,omitempty"`
	// Date after which certificate should be considered expired
	ExpireDate *int64 `json:"expireDate,omitempty"`
	// Issuer Distinguished Name
	IssuerDN *string `json:"issuerDN,omitempty"`
	// Date at which certificate became valid
	NotBefore *int64 `json:"notBefore,omitempty"`
	// Revocation date
	RevocationDate *int64 `json:"revocationDate,omitempty"`
	// Revocation reson
	RevocationReason *int32 `json:"revocationReason,omitempty"`
	// Hex Serial Number
	SerialNumber *string `json:"serialNumber,omitempty"`
	// Certificate status
	Status *int32 `json:"status,omitempty"`
	// Subject Alternative Name (SAN)
	SubjectAltName *string `json:"subjectAltName,omitempty"`
	// Subject Distinguished Name
	SubjectDN *string `json:"subjectDN,omitempty"`
	// Subject Key Identifier
	SubjectKeyId *string `json:"subjectKeyId,omitempty"`
	Tag          *string `json:"tag,omitempty"`
	Type         *int32  `json:"type,omitempty"`
	// Update time
	UdpateTime *int64 `json:"udpateTime,omitempty"`
	// Username
	Username *string `json:"username,omitempty"`
	// Base64 encoded certificate
	Base64Cert *string `json:"base64Cert,omitempty"`
	// Certificate request
	CertificateRequest *string `json:"certificateRequest,omitempty"`
	// CRL partition index
	CrlPartitionIndex    *int32 `json:"crlPartitionIndex,omitempty"`
	AdditionalProperties map[string]interface{}
}

CertificateRestResponseV2 struct for CertificateRestResponseV2

func NewCertificateRestResponseV2

func NewCertificateRestResponseV2() *CertificateRestResponseV2

NewCertificateRestResponseV2 instantiates a new CertificateRestResponseV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificateRestResponseV2WithDefaults

func NewCertificateRestResponseV2WithDefaults() *CertificateRestResponseV2

NewCertificateRestResponseV2WithDefaults instantiates a new CertificateRestResponseV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificateRestResponseV2) GetBase64Cert

func (o *CertificateRestResponseV2) GetBase64Cert() string

GetBase64Cert returns the Base64Cert field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetBase64CertOk

func (o *CertificateRestResponseV2) GetBase64CertOk() (*string, bool)

GetBase64CertOk returns a tuple with the Base64Cert field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetCAFingerprint

func (o *CertificateRestResponseV2) GetCAFingerprint() string

GetCAFingerprint returns the CAFingerprint field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetCAFingerprintOk

func (o *CertificateRestResponseV2) GetCAFingerprintOk() (*string, bool)

GetCAFingerprintOk returns a tuple with the CAFingerprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetCertificateProfileId

func (o *CertificateRestResponseV2) GetCertificateProfileId() int32

GetCertificateProfileId returns the CertificateProfileId field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetCertificateProfileIdOk

func (o *CertificateRestResponseV2) GetCertificateProfileIdOk() (*int32, bool)

GetCertificateProfileIdOk returns a tuple with the CertificateProfileId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetCertificateRequest

func (o *CertificateRestResponseV2) GetCertificateRequest() string

GetCertificateRequest returns the CertificateRequest field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetCertificateRequestOk

func (o *CertificateRestResponseV2) GetCertificateRequestOk() (*string, bool)

GetCertificateRequestOk returns a tuple with the CertificateRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetCrlPartitionIndex

func (o *CertificateRestResponseV2) GetCrlPartitionIndex() int32

GetCrlPartitionIndex returns the CrlPartitionIndex field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetCrlPartitionIndexOk

func (o *CertificateRestResponseV2) GetCrlPartitionIndexOk() (*int32, bool)

GetCrlPartitionIndexOk returns a tuple with the CrlPartitionIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetEndEntityProfileId

func (o *CertificateRestResponseV2) GetEndEntityProfileId() int32

GetEndEntityProfileId returns the EndEntityProfileId field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetEndEntityProfileIdOk

func (o *CertificateRestResponseV2) GetEndEntityProfileIdOk() (*int32, bool)

GetEndEntityProfileIdOk returns a tuple with the EndEntityProfileId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetExpireDate

func (o *CertificateRestResponseV2) GetExpireDate() int64

GetExpireDate returns the ExpireDate field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetExpireDateOk

func (o *CertificateRestResponseV2) GetExpireDateOk() (*int64, bool)

GetExpireDateOk returns a tuple with the ExpireDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetFingerprint

func (o *CertificateRestResponseV2) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetFingerprintOk

func (o *CertificateRestResponseV2) GetFingerprintOk() (*string, bool)

GetFingerprintOk returns a tuple with the Fingerprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetIssuerDN

func (o *CertificateRestResponseV2) GetIssuerDN() string

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetIssuerDNOk

func (o *CertificateRestResponseV2) GetIssuerDNOk() (*string, bool)

GetIssuerDNOk returns a tuple with the IssuerDN field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetNotBefore

func (o *CertificateRestResponseV2) GetNotBefore() int64

GetNotBefore returns the NotBefore field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetNotBeforeOk

func (o *CertificateRestResponseV2) GetNotBeforeOk() (*int64, bool)

GetNotBeforeOk returns a tuple with the NotBefore field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetRevocationDate

func (o *CertificateRestResponseV2) GetRevocationDate() int64

GetRevocationDate returns the RevocationDate field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetRevocationDateOk

func (o *CertificateRestResponseV2) GetRevocationDateOk() (*int64, bool)

GetRevocationDateOk returns a tuple with the RevocationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetRevocationReason

func (o *CertificateRestResponseV2) GetRevocationReason() int32

GetRevocationReason returns the RevocationReason field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetRevocationReasonOk

func (o *CertificateRestResponseV2) GetRevocationReasonOk() (*int32, bool)

GetRevocationReasonOk returns a tuple with the RevocationReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetSerialNumber

func (o *CertificateRestResponseV2) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetSerialNumberOk

func (o *CertificateRestResponseV2) GetSerialNumberOk() (*string, bool)

GetSerialNumberOk returns a tuple with the SerialNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetStatus

func (o *CertificateRestResponseV2) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetStatusOk

func (o *CertificateRestResponseV2) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetSubjectAltName

func (o *CertificateRestResponseV2) GetSubjectAltName() string

GetSubjectAltName returns the SubjectAltName field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetSubjectAltNameOk

func (o *CertificateRestResponseV2) GetSubjectAltNameOk() (*string, bool)

GetSubjectAltNameOk returns a tuple with the SubjectAltName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetSubjectDN

func (o *CertificateRestResponseV2) GetSubjectDN() string

GetSubjectDN returns the SubjectDN field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetSubjectDNOk

func (o *CertificateRestResponseV2) GetSubjectDNOk() (*string, bool)

GetSubjectDNOk returns a tuple with the SubjectDN field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetSubjectKeyId

func (o *CertificateRestResponseV2) GetSubjectKeyId() string

GetSubjectKeyId returns the SubjectKeyId field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetSubjectKeyIdOk

func (o *CertificateRestResponseV2) GetSubjectKeyIdOk() (*string, bool)

GetSubjectKeyIdOk returns a tuple with the SubjectKeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetTag

func (o *CertificateRestResponseV2) GetTag() string

GetTag returns the Tag field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetTagOk

func (o *CertificateRestResponseV2) GetTagOk() (*string, bool)

GetTagOk returns a tuple with the Tag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetType

func (o *CertificateRestResponseV2) GetType() int32

GetType returns the Type field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetTypeOk

func (o *CertificateRestResponseV2) GetTypeOk() (*int32, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetUdpateTime

func (o *CertificateRestResponseV2) GetUdpateTime() int64

GetUdpateTime returns the UdpateTime field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetUdpateTimeOk

func (o *CertificateRestResponseV2) GetUdpateTimeOk() (*int64, bool)

GetUdpateTimeOk returns a tuple with the UdpateTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) GetUsername

func (o *CertificateRestResponseV2) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*CertificateRestResponseV2) GetUsernameOk

func (o *CertificateRestResponseV2) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificateRestResponseV2) HasBase64Cert

func (o *CertificateRestResponseV2) HasBase64Cert() bool

HasBase64Cert returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasCAFingerprint

func (o *CertificateRestResponseV2) HasCAFingerprint() bool

HasCAFingerprint returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasCertificateProfileId

func (o *CertificateRestResponseV2) HasCertificateProfileId() bool

HasCertificateProfileId returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasCertificateRequest

func (o *CertificateRestResponseV2) HasCertificateRequest() bool

HasCertificateRequest returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasCrlPartitionIndex

func (o *CertificateRestResponseV2) HasCrlPartitionIndex() bool

HasCrlPartitionIndex returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasEndEntityProfileId

func (o *CertificateRestResponseV2) HasEndEntityProfileId() bool

HasEndEntityProfileId returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasExpireDate

func (o *CertificateRestResponseV2) HasExpireDate() bool

HasExpireDate returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasFingerprint

func (o *CertificateRestResponseV2) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasIssuerDN

func (o *CertificateRestResponseV2) HasIssuerDN() bool

HasIssuerDN returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasNotBefore

func (o *CertificateRestResponseV2) HasNotBefore() bool

HasNotBefore returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasRevocationDate

func (o *CertificateRestResponseV2) HasRevocationDate() bool

HasRevocationDate returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasRevocationReason

func (o *CertificateRestResponseV2) HasRevocationReason() bool

HasRevocationReason returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasSerialNumber

func (o *CertificateRestResponseV2) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasStatus

func (o *CertificateRestResponseV2) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasSubjectAltName

func (o *CertificateRestResponseV2) HasSubjectAltName() bool

HasSubjectAltName returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasSubjectDN

func (o *CertificateRestResponseV2) HasSubjectDN() bool

HasSubjectDN returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasSubjectKeyId

func (o *CertificateRestResponseV2) HasSubjectKeyId() bool

HasSubjectKeyId returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasTag

func (o *CertificateRestResponseV2) HasTag() bool

HasTag returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasType

func (o *CertificateRestResponseV2) HasType() bool

HasType returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasUdpateTime

func (o *CertificateRestResponseV2) HasUdpateTime() bool

HasUdpateTime returns a boolean if a field has been set.

func (*CertificateRestResponseV2) HasUsername

func (o *CertificateRestResponseV2) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (CertificateRestResponseV2) MarshalJSON

func (o CertificateRestResponseV2) MarshalJSON() ([]byte, error)

func (*CertificateRestResponseV2) SetBase64Cert

func (o *CertificateRestResponseV2) SetBase64Cert(v string)

SetBase64Cert gets a reference to the given string and assigns it to the Base64Cert field.

func (*CertificateRestResponseV2) SetCAFingerprint

func (o *CertificateRestResponseV2) SetCAFingerprint(v string)

SetCAFingerprint gets a reference to the given string and assigns it to the CAFingerprint field.

func (*CertificateRestResponseV2) SetCertificateProfileId

func (o *CertificateRestResponseV2) SetCertificateProfileId(v int32)

SetCertificateProfileId gets a reference to the given int32 and assigns it to the CertificateProfileId field.

func (*CertificateRestResponseV2) SetCertificateRequest

func (o *CertificateRestResponseV2) SetCertificateRequest(v string)

SetCertificateRequest gets a reference to the given string and assigns it to the CertificateRequest field.

func (*CertificateRestResponseV2) SetCrlPartitionIndex

func (o *CertificateRestResponseV2) SetCrlPartitionIndex(v int32)

SetCrlPartitionIndex gets a reference to the given int32 and assigns it to the CrlPartitionIndex field.

func (*CertificateRestResponseV2) SetEndEntityProfileId

func (o *CertificateRestResponseV2) SetEndEntityProfileId(v int32)

SetEndEntityProfileId gets a reference to the given int32 and assigns it to the EndEntityProfileId field.

func (*CertificateRestResponseV2) SetExpireDate

func (o *CertificateRestResponseV2) SetExpireDate(v int64)

SetExpireDate gets a reference to the given int64 and assigns it to the ExpireDate field.

func (*CertificateRestResponseV2) SetFingerprint

func (o *CertificateRestResponseV2) SetFingerprint(v string)

SetFingerprint gets a reference to the given string and assigns it to the Fingerprint field.

func (*CertificateRestResponseV2) SetIssuerDN

func (o *CertificateRestResponseV2) SetIssuerDN(v string)

SetIssuerDN gets a reference to the given string and assigns it to the IssuerDN field.

func (*CertificateRestResponseV2) SetNotBefore

func (o *CertificateRestResponseV2) SetNotBefore(v int64)

SetNotBefore gets a reference to the given int64 and assigns it to the NotBefore field.

func (*CertificateRestResponseV2) SetRevocationDate

func (o *CertificateRestResponseV2) SetRevocationDate(v int64)

SetRevocationDate gets a reference to the given int64 and assigns it to the RevocationDate field.

func (*CertificateRestResponseV2) SetRevocationReason

func (o *CertificateRestResponseV2) SetRevocationReason(v int32)

SetRevocationReason gets a reference to the given int32 and assigns it to the RevocationReason field.

func (*CertificateRestResponseV2) SetSerialNumber

func (o *CertificateRestResponseV2) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*CertificateRestResponseV2) SetStatus

func (o *CertificateRestResponseV2) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*CertificateRestResponseV2) SetSubjectAltName

func (o *CertificateRestResponseV2) SetSubjectAltName(v string)

SetSubjectAltName gets a reference to the given string and assigns it to the SubjectAltName field.

func (*CertificateRestResponseV2) SetSubjectDN

func (o *CertificateRestResponseV2) SetSubjectDN(v string)

SetSubjectDN gets a reference to the given string and assigns it to the SubjectDN field.

func (*CertificateRestResponseV2) SetSubjectKeyId

func (o *CertificateRestResponseV2) SetSubjectKeyId(v string)

SetSubjectKeyId gets a reference to the given string and assigns it to the SubjectKeyId field.

func (*CertificateRestResponseV2) SetTag

func (o *CertificateRestResponseV2) SetTag(v string)

SetTag gets a reference to the given string and assigns it to the Tag field.

func (*CertificateRestResponseV2) SetType

func (o *CertificateRestResponseV2) SetType(v int32)

SetType gets a reference to the given int32 and assigns it to the Type field.

func (*CertificateRestResponseV2) SetUdpateTime

func (o *CertificateRestResponseV2) SetUdpateTime(v int64)

SetUdpateTime gets a reference to the given int64 and assigns it to the UdpateTime field.

func (*CertificateRestResponseV2) SetUsername

func (o *CertificateRestResponseV2) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (CertificateRestResponseV2) ToMap

func (o CertificateRestResponseV2) ToMap() (map[string]interface{}, error)

func (*CertificateRestResponseV2) UnmarshalJSON

func (o *CertificateRestResponseV2) UnmarshalJSON(bytes []byte) (err error)

type CertificatesRestResponse

type CertificatesRestResponse struct {
	Certificates         []CertificateRestResponse `json:"certificates,omitempty"`
	AdditionalProperties map[string]interface{}
}

CertificatesRestResponse struct for CertificatesRestResponse

func NewCertificatesRestResponse

func NewCertificatesRestResponse() *CertificatesRestResponse

NewCertificatesRestResponse instantiates a new CertificatesRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCertificatesRestResponseWithDefaults

func NewCertificatesRestResponseWithDefaults() *CertificatesRestResponse

NewCertificatesRestResponseWithDefaults instantiates a new CertificatesRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CertificatesRestResponse) GetCertificates

func (o *CertificatesRestResponse) GetCertificates() []CertificateRestResponse

GetCertificates returns the Certificates field value if set, zero value otherwise.

func (*CertificatesRestResponse) GetCertificatesOk

func (o *CertificatesRestResponse) GetCertificatesOk() ([]CertificateRestResponse, bool)

GetCertificatesOk returns a tuple with the Certificates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CertificatesRestResponse) HasCertificates

func (o *CertificatesRestResponse) HasCertificates() bool

HasCertificates returns a boolean if a field has been set.

func (CertificatesRestResponse) MarshalJSON

func (o CertificatesRestResponse) MarshalJSON() ([]byte, error)

func (*CertificatesRestResponse) SetCertificates

func (o *CertificatesRestResponse) SetCertificates(v []CertificateRestResponse)

SetCertificates gets a reference to the given []CertificateRestResponse and assigns it to the Certificates field.

func (CertificatesRestResponse) ToMap

func (o CertificatesRestResponse) ToMap() (map[string]interface{}, error)

func (*CertificatesRestResponse) UnmarshalJSON

func (o *CertificatesRestResponse) UnmarshalJSON(bytes []byte) (err error)

type ConfigdumpResults

type ConfigdumpResults struct {
	Success              *bool    `json:"success,omitempty"`
	Errors               []string `json:"errors,omitempty"`
	Warnings             []string `json:"warnings,omitempty"`
	AdditionalProperties map[string]interface{}
}

ConfigdumpResults struct for ConfigdumpResults

func NewConfigdumpResults

func NewConfigdumpResults() *ConfigdumpResults

NewConfigdumpResults instantiates a new ConfigdumpResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewConfigdumpResultsWithDefaults

func NewConfigdumpResultsWithDefaults() *ConfigdumpResults

NewConfigdumpResultsWithDefaults instantiates a new ConfigdumpResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ConfigdumpResults) GetErrors

func (o *ConfigdumpResults) GetErrors() []string

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ConfigdumpResults) GetErrorsOk

func (o *ConfigdumpResults) GetErrorsOk() ([]string, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConfigdumpResults) GetSuccess

func (o *ConfigdumpResults) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ConfigdumpResults) GetSuccessOk

func (o *ConfigdumpResults) GetSuccessOk() (*bool, bool)

GetSuccessOk returns a tuple with the Success field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConfigdumpResults) GetWarnings

func (o *ConfigdumpResults) GetWarnings() []string

GetWarnings returns the Warnings field value if set, zero value otherwise.

func (*ConfigdumpResults) GetWarningsOk

func (o *ConfigdumpResults) GetWarningsOk() ([]string, bool)

GetWarningsOk returns a tuple with the Warnings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ConfigdumpResults) HasErrors

func (o *ConfigdumpResults) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ConfigdumpResults) HasSuccess

func (o *ConfigdumpResults) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (*ConfigdumpResults) HasWarnings

func (o *ConfigdumpResults) HasWarnings() bool

HasWarnings returns a boolean if a field has been set.

func (ConfigdumpResults) MarshalJSON

func (o ConfigdumpResults) MarshalJSON() ([]byte, error)

func (*ConfigdumpResults) SetErrors

func (o *ConfigdumpResults) SetErrors(v []string)

SetErrors gets a reference to the given []string and assigns it to the Errors field.

func (*ConfigdumpResults) SetSuccess

func (o *ConfigdumpResults) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (*ConfigdumpResults) SetWarnings

func (o *ConfigdumpResults) SetWarnings(v []string)

SetWarnings gets a reference to the given []string and assigns it to the Warnings field.

func (ConfigdumpResults) ToMap

func (o ConfigdumpResults) ToMap() (map[string]interface{}, error)

func (*ConfigdumpResults) UnmarshalJSON

func (o *ConfigdumpResults) UnmarshalJSON(bytes []byte) (err error)

type Configuration

type Configuration struct {
	Host                     string            `json:"host,omitempty"`
	DefaultHeader            map[string]string `json:"defaultHeader,omitempty"`
	UserAgent                string            `json:"userAgent,omitempty"`
	Debug                    bool              `json:"debug,omitempty"`
	ClientCertificatePath    string            `json:"clientCertificatePath,omitempty"`
	ClientCertificateKeyPath string            `json:"clientCertificateKeyPath,omitempty"`
	CaCertificatePath        string            `json:"caCertificatePath,omitempty"`
	HTTPClient               *http.Client
	// contains filtered or unexported fields
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) SetCaCertificates added in v0.1.5

func (c *Configuration) SetCaCertificates(caCertificates []*x509.Certificate)

func (*Configuration) SetClientCertificate added in v0.1.3

func (c *Configuration) SetClientCertificate(clientCertificate *tls.Certificate)

type CreateCrlRestResponse

type CreateCrlRestResponse struct {
	// Issuer Distinguished Name
	IssuerDn *string `json:"issuer_dn,omitempty"`
	// Latest base CRL version
	LatestCrlVersion *int32 `json:"latest_crl_version,omitempty"`
	// Latest delta CRL version
	LatestDeltaCrlVersion           *int32            `json:"latest_delta_crl_version,omitempty"`
	LatestPartitionCrlVersions      *map[string]int32 `json:"latest_partition_crl_versions,omitempty"`
	LatestPartitionDeltaCrlVersions *map[string]int32 `json:"latest_partition_delta_crl_versions,omitempty"`
	AllSuccess                      *bool             `json:"all_success,omitempty"`
	AdditionalProperties            map[string]interface{}
}

CreateCrlRestResponse struct for CreateCrlRestResponse

func NewCreateCrlRestResponse

func NewCreateCrlRestResponse() *CreateCrlRestResponse

NewCreateCrlRestResponse instantiates a new CreateCrlRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCreateCrlRestResponseWithDefaults

func NewCreateCrlRestResponseWithDefaults() *CreateCrlRestResponse

NewCreateCrlRestResponseWithDefaults instantiates a new CreateCrlRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CreateCrlRestResponse) GetAllSuccess

func (o *CreateCrlRestResponse) GetAllSuccess() bool

GetAllSuccess returns the AllSuccess field value if set, zero value otherwise.

func (*CreateCrlRestResponse) GetAllSuccessOk

func (o *CreateCrlRestResponse) GetAllSuccessOk() (*bool, bool)

GetAllSuccessOk returns a tuple with the AllSuccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCrlRestResponse) GetIssuerDn

func (o *CreateCrlRestResponse) GetIssuerDn() string

GetIssuerDn returns the IssuerDn field value if set, zero value otherwise.

func (*CreateCrlRestResponse) GetIssuerDnOk

func (o *CreateCrlRestResponse) GetIssuerDnOk() (*string, bool)

GetIssuerDnOk returns a tuple with the IssuerDn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCrlRestResponse) GetLatestCrlVersion

func (o *CreateCrlRestResponse) GetLatestCrlVersion() int32

GetLatestCrlVersion returns the LatestCrlVersion field value if set, zero value otherwise.

func (*CreateCrlRestResponse) GetLatestCrlVersionOk

func (o *CreateCrlRestResponse) GetLatestCrlVersionOk() (*int32, bool)

GetLatestCrlVersionOk returns a tuple with the LatestCrlVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCrlRestResponse) GetLatestDeltaCrlVersion

func (o *CreateCrlRestResponse) GetLatestDeltaCrlVersion() int32

GetLatestDeltaCrlVersion returns the LatestDeltaCrlVersion field value if set, zero value otherwise.

func (*CreateCrlRestResponse) GetLatestDeltaCrlVersionOk

func (o *CreateCrlRestResponse) GetLatestDeltaCrlVersionOk() (*int32, bool)

GetLatestDeltaCrlVersionOk returns a tuple with the LatestDeltaCrlVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCrlRestResponse) GetLatestPartitionCrlVersions

func (o *CreateCrlRestResponse) GetLatestPartitionCrlVersions() map[string]int32

GetLatestPartitionCrlVersions returns the LatestPartitionCrlVersions field value if set, zero value otherwise.

func (*CreateCrlRestResponse) GetLatestPartitionCrlVersionsOk

func (o *CreateCrlRestResponse) GetLatestPartitionCrlVersionsOk() (*map[string]int32, bool)

GetLatestPartitionCrlVersionsOk returns a tuple with the LatestPartitionCrlVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCrlRestResponse) GetLatestPartitionDeltaCrlVersions

func (o *CreateCrlRestResponse) GetLatestPartitionDeltaCrlVersions() map[string]int32

GetLatestPartitionDeltaCrlVersions returns the LatestPartitionDeltaCrlVersions field value if set, zero value otherwise.

func (*CreateCrlRestResponse) GetLatestPartitionDeltaCrlVersionsOk

func (o *CreateCrlRestResponse) GetLatestPartitionDeltaCrlVersionsOk() (*map[string]int32, bool)

GetLatestPartitionDeltaCrlVersionsOk returns a tuple with the LatestPartitionDeltaCrlVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCrlRestResponse) HasAllSuccess

func (o *CreateCrlRestResponse) HasAllSuccess() bool

HasAllSuccess returns a boolean if a field has been set.

func (*CreateCrlRestResponse) HasIssuerDn

func (o *CreateCrlRestResponse) HasIssuerDn() bool

HasIssuerDn returns a boolean if a field has been set.

func (*CreateCrlRestResponse) HasLatestCrlVersion

func (o *CreateCrlRestResponse) HasLatestCrlVersion() bool

HasLatestCrlVersion returns a boolean if a field has been set.

func (*CreateCrlRestResponse) HasLatestDeltaCrlVersion

func (o *CreateCrlRestResponse) HasLatestDeltaCrlVersion() bool

HasLatestDeltaCrlVersion returns a boolean if a field has been set.

func (*CreateCrlRestResponse) HasLatestPartitionCrlVersions

func (o *CreateCrlRestResponse) HasLatestPartitionCrlVersions() bool

HasLatestPartitionCrlVersions returns a boolean if a field has been set.

func (*CreateCrlRestResponse) HasLatestPartitionDeltaCrlVersions

func (o *CreateCrlRestResponse) HasLatestPartitionDeltaCrlVersions() bool

HasLatestPartitionDeltaCrlVersions returns a boolean if a field has been set.

func (CreateCrlRestResponse) MarshalJSON

func (o CreateCrlRestResponse) MarshalJSON() ([]byte, error)

func (*CreateCrlRestResponse) SetAllSuccess

func (o *CreateCrlRestResponse) SetAllSuccess(v bool)

SetAllSuccess gets a reference to the given bool and assigns it to the AllSuccess field.

func (*CreateCrlRestResponse) SetIssuerDn

func (o *CreateCrlRestResponse) SetIssuerDn(v string)

SetIssuerDn gets a reference to the given string and assigns it to the IssuerDn field.

func (*CreateCrlRestResponse) SetLatestCrlVersion

func (o *CreateCrlRestResponse) SetLatestCrlVersion(v int32)

SetLatestCrlVersion gets a reference to the given int32 and assigns it to the LatestCrlVersion field.

func (*CreateCrlRestResponse) SetLatestDeltaCrlVersion

func (o *CreateCrlRestResponse) SetLatestDeltaCrlVersion(v int32)

SetLatestDeltaCrlVersion gets a reference to the given int32 and assigns it to the LatestDeltaCrlVersion field.

func (*CreateCrlRestResponse) SetLatestPartitionCrlVersions

func (o *CreateCrlRestResponse) SetLatestPartitionCrlVersions(v map[string]int32)

SetLatestPartitionCrlVersions gets a reference to the given map[string]int32 and assigns it to the LatestPartitionCrlVersions field.

func (*CreateCrlRestResponse) SetLatestPartitionDeltaCrlVersions

func (o *CreateCrlRestResponse) SetLatestPartitionDeltaCrlVersions(v map[string]int32)

SetLatestPartitionDeltaCrlVersions gets a reference to the given map[string]int32 and assigns it to the LatestPartitionDeltaCrlVersions field.

func (CreateCrlRestResponse) ToMap

func (o CreateCrlRestResponse) ToMap() (map[string]interface{}, error)

func (*CreateCrlRestResponse) UnmarshalJSON

func (o *CreateCrlRestResponse) UnmarshalJSON(bytes []byte) (err error)

type CrlRestResponse

type CrlRestResponse struct {
	// Certificate Revokation List (CRL)
	Crl *string `json:"crl,omitempty"`
	// Response format
	ResponseFormat       *string `json:"response_format,omitempty"`
	AdditionalProperties map[string]interface{}
}

CrlRestResponse struct for CrlRestResponse

func NewCrlRestResponse

func NewCrlRestResponse() *CrlRestResponse

NewCrlRestResponse instantiates a new CrlRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCrlRestResponseWithDefaults

func NewCrlRestResponseWithDefaults() *CrlRestResponse

NewCrlRestResponseWithDefaults instantiates a new CrlRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CrlRestResponse) GetCrl

func (o *CrlRestResponse) GetCrl() string

GetCrl returns the Crl field value if set, zero value otherwise.

func (*CrlRestResponse) GetCrlOk

func (o *CrlRestResponse) GetCrlOk() (*string, bool)

GetCrlOk returns a tuple with the Crl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CrlRestResponse) GetResponseFormat

func (o *CrlRestResponse) GetResponseFormat() string

GetResponseFormat returns the ResponseFormat field value if set, zero value otherwise.

func (*CrlRestResponse) GetResponseFormatOk

func (o *CrlRestResponse) GetResponseFormatOk() (*string, bool)

GetResponseFormatOk returns a tuple with the ResponseFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CrlRestResponse) HasCrl

func (o *CrlRestResponse) HasCrl() bool

HasCrl returns a boolean if a field has been set.

func (*CrlRestResponse) HasResponseFormat

func (o *CrlRestResponse) HasResponseFormat() bool

HasResponseFormat returns a boolean if a field has been set.

func (CrlRestResponse) MarshalJSON

func (o CrlRestResponse) MarshalJSON() ([]byte, error)

func (*CrlRestResponse) SetCrl

func (o *CrlRestResponse) SetCrl(v string)

SetCrl gets a reference to the given string and assigns it to the Crl field.

func (*CrlRestResponse) SetResponseFormat

func (o *CrlRestResponse) SetResponseFormat(v string)

SetResponseFormat gets a reference to the given string and assigns it to the ResponseFormat field.

func (CrlRestResponse) ToMap

func (o CrlRestResponse) ToMap() (map[string]interface{}, error)

func (*CrlRestResponse) UnmarshalJSON

func (o *CrlRestResponse) UnmarshalJSON(bytes []byte) (err error)

type CryptoTokenActivationRestRequest

type CryptoTokenActivationRestRequest struct {
	// Activation Code
	ActivationCode       *string `json:"activation_code,omitempty"`
	AdditionalProperties map[string]interface{}
}

CryptoTokenActivationRestRequest struct for CryptoTokenActivationRestRequest

func NewCryptoTokenActivationRestRequest

func NewCryptoTokenActivationRestRequest() *CryptoTokenActivationRestRequest

NewCryptoTokenActivationRestRequest instantiates a new CryptoTokenActivationRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCryptoTokenActivationRestRequestWithDefaults

func NewCryptoTokenActivationRestRequestWithDefaults() *CryptoTokenActivationRestRequest

NewCryptoTokenActivationRestRequestWithDefaults instantiates a new CryptoTokenActivationRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CryptoTokenActivationRestRequest) GetActivationCode

func (o *CryptoTokenActivationRestRequest) GetActivationCode() string

GetActivationCode returns the ActivationCode field value if set, zero value otherwise.

func (*CryptoTokenActivationRestRequest) GetActivationCodeOk

func (o *CryptoTokenActivationRestRequest) GetActivationCodeOk() (*string, bool)

GetActivationCodeOk returns a tuple with the ActivationCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CryptoTokenActivationRestRequest) HasActivationCode

func (o *CryptoTokenActivationRestRequest) HasActivationCode() bool

HasActivationCode returns a boolean if a field has been set.

func (CryptoTokenActivationRestRequest) MarshalJSON

func (o CryptoTokenActivationRestRequest) MarshalJSON() ([]byte, error)

func (*CryptoTokenActivationRestRequest) SetActivationCode

func (o *CryptoTokenActivationRestRequest) SetActivationCode(v string)

SetActivationCode gets a reference to the given string and assigns it to the ActivationCode field.

func (CryptoTokenActivationRestRequest) ToMap

func (o CryptoTokenActivationRestRequest) ToMap() (map[string]interface{}, error)

func (*CryptoTokenActivationRestRequest) UnmarshalJSON

func (o *CryptoTokenActivationRestRequest) UnmarshalJSON(bytes []byte) (err error)

type CryptoTokenKeyGenerationRestRequest

type CryptoTokenKeyGenerationRestRequest struct {
	// Key pair alias
	KeyPairAlias *string `json:"key_pair_alias,omitempty"`
	// Key algorithm
	KeyAlg *string `json:"key_alg,omitempty"`
	// Key specification
	KeySpec              *string `json:"key_spec,omitempty"`
	AdditionalProperties map[string]interface{}
}

CryptoTokenKeyGenerationRestRequest struct for CryptoTokenKeyGenerationRestRequest

func NewCryptoTokenKeyGenerationRestRequest

func NewCryptoTokenKeyGenerationRestRequest() *CryptoTokenKeyGenerationRestRequest

NewCryptoTokenKeyGenerationRestRequest instantiates a new CryptoTokenKeyGenerationRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCryptoTokenKeyGenerationRestRequestWithDefaults

func NewCryptoTokenKeyGenerationRestRequestWithDefaults() *CryptoTokenKeyGenerationRestRequest

NewCryptoTokenKeyGenerationRestRequestWithDefaults instantiates a new CryptoTokenKeyGenerationRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CryptoTokenKeyGenerationRestRequest) GetKeyAlg

GetKeyAlg returns the KeyAlg field value if set, zero value otherwise.

func (*CryptoTokenKeyGenerationRestRequest) GetKeyAlgOk

func (o *CryptoTokenKeyGenerationRestRequest) GetKeyAlgOk() (*string, bool)

GetKeyAlgOk returns a tuple with the KeyAlg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CryptoTokenKeyGenerationRestRequest) GetKeyPairAlias

func (o *CryptoTokenKeyGenerationRestRequest) GetKeyPairAlias() string

GetKeyPairAlias returns the KeyPairAlias field value if set, zero value otherwise.

func (*CryptoTokenKeyGenerationRestRequest) GetKeyPairAliasOk

func (o *CryptoTokenKeyGenerationRestRequest) GetKeyPairAliasOk() (*string, bool)

GetKeyPairAliasOk returns a tuple with the KeyPairAlias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CryptoTokenKeyGenerationRestRequest) GetKeySpec

GetKeySpec returns the KeySpec field value if set, zero value otherwise.

func (*CryptoTokenKeyGenerationRestRequest) GetKeySpecOk

func (o *CryptoTokenKeyGenerationRestRequest) GetKeySpecOk() (*string, bool)

GetKeySpecOk returns a tuple with the KeySpec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CryptoTokenKeyGenerationRestRequest) HasKeyAlg

HasKeyAlg returns a boolean if a field has been set.

func (*CryptoTokenKeyGenerationRestRequest) HasKeyPairAlias

func (o *CryptoTokenKeyGenerationRestRequest) HasKeyPairAlias() bool

HasKeyPairAlias returns a boolean if a field has been set.

func (*CryptoTokenKeyGenerationRestRequest) HasKeySpec

func (o *CryptoTokenKeyGenerationRestRequest) HasKeySpec() bool

HasKeySpec returns a boolean if a field has been set.

func (CryptoTokenKeyGenerationRestRequest) MarshalJSON

func (o CryptoTokenKeyGenerationRestRequest) MarshalJSON() ([]byte, error)

func (*CryptoTokenKeyGenerationRestRequest) SetKeyAlg

SetKeyAlg gets a reference to the given string and assigns it to the KeyAlg field.

func (*CryptoTokenKeyGenerationRestRequest) SetKeyPairAlias

func (o *CryptoTokenKeyGenerationRestRequest) SetKeyPairAlias(v string)

SetKeyPairAlias gets a reference to the given string and assigns it to the KeyPairAlias field.

func (*CryptoTokenKeyGenerationRestRequest) SetKeySpec

SetKeySpec gets a reference to the given string and assigns it to the KeySpec field.

func (CryptoTokenKeyGenerationRestRequest) ToMap

func (o CryptoTokenKeyGenerationRestRequest) ToMap() (map[string]interface{}, error)

func (*CryptoTokenKeyGenerationRestRequest) UnmarshalJSON

func (o *CryptoTokenKeyGenerationRestRequest) UnmarshalJSON(bytes []byte) (err error)

type EndEntityProfileResponse

type EndEntityProfileResponse struct {
	// End Entity profile name
	EndEntityProfileName *string `json:"end_entity_profile_name,omitempty"`
	// List of Subject DN Attributes
	SubjectDistinguishedNameFields []string `json:"subject_distinguished_name_fields,omitempty"`
	// List of Subject Alternative Name fields
	SubjectAlternativeNameFields []string `json:"subject_alternative_name_fields,omitempty"`
	// List of available Certificate Profiles
	AvailableCertificateProfiles []string `json:"available_certificate_profiles,omitempty"`
	// List of available Certificate Authorities (CAs)
	AvailableCas         []string `json:"available_cas,omitempty"`
	AdditionalProperties map[string]interface{}
}

EndEntityProfileResponse struct for EndEntityProfileResponse

func NewEndEntityProfileResponse

func NewEndEntityProfileResponse() *EndEntityProfileResponse

NewEndEntityProfileResponse instantiates a new EndEntityProfileResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEndEntityProfileResponseWithDefaults

func NewEndEntityProfileResponseWithDefaults() *EndEntityProfileResponse

NewEndEntityProfileResponseWithDefaults instantiates a new EndEntityProfileResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EndEntityProfileResponse) GetAvailableCas

func (o *EndEntityProfileResponse) GetAvailableCas() []string

GetAvailableCas returns the AvailableCas field value if set, zero value otherwise.

func (*EndEntityProfileResponse) GetAvailableCasOk

func (o *EndEntityProfileResponse) GetAvailableCasOk() ([]string, bool)

GetAvailableCasOk returns a tuple with the AvailableCas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityProfileResponse) GetAvailableCertificateProfiles

func (o *EndEntityProfileResponse) GetAvailableCertificateProfiles() []string

GetAvailableCertificateProfiles returns the AvailableCertificateProfiles field value if set, zero value otherwise.

func (*EndEntityProfileResponse) GetAvailableCertificateProfilesOk

func (o *EndEntityProfileResponse) GetAvailableCertificateProfilesOk() ([]string, bool)

GetAvailableCertificateProfilesOk returns a tuple with the AvailableCertificateProfiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityProfileResponse) GetEndEntityProfileName

func (o *EndEntityProfileResponse) GetEndEntityProfileName() string

GetEndEntityProfileName returns the EndEntityProfileName field value if set, zero value otherwise.

func (*EndEntityProfileResponse) GetEndEntityProfileNameOk

func (o *EndEntityProfileResponse) GetEndEntityProfileNameOk() (*string, bool)

GetEndEntityProfileNameOk returns a tuple with the EndEntityProfileName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityProfileResponse) GetSubjectAlternativeNameFields

func (o *EndEntityProfileResponse) GetSubjectAlternativeNameFields() []string

GetSubjectAlternativeNameFields returns the SubjectAlternativeNameFields field value if set, zero value otherwise.

func (*EndEntityProfileResponse) GetSubjectAlternativeNameFieldsOk

func (o *EndEntityProfileResponse) GetSubjectAlternativeNameFieldsOk() ([]string, bool)

GetSubjectAlternativeNameFieldsOk returns a tuple with the SubjectAlternativeNameFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityProfileResponse) GetSubjectDistinguishedNameFields

func (o *EndEntityProfileResponse) GetSubjectDistinguishedNameFields() []string

GetSubjectDistinguishedNameFields returns the SubjectDistinguishedNameFields field value if set, zero value otherwise.

func (*EndEntityProfileResponse) GetSubjectDistinguishedNameFieldsOk

func (o *EndEntityProfileResponse) GetSubjectDistinguishedNameFieldsOk() ([]string, bool)

GetSubjectDistinguishedNameFieldsOk returns a tuple with the SubjectDistinguishedNameFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityProfileResponse) HasAvailableCas

func (o *EndEntityProfileResponse) HasAvailableCas() bool

HasAvailableCas returns a boolean if a field has been set.

func (*EndEntityProfileResponse) HasAvailableCertificateProfiles

func (o *EndEntityProfileResponse) HasAvailableCertificateProfiles() bool

HasAvailableCertificateProfiles returns a boolean if a field has been set.

func (*EndEntityProfileResponse) HasEndEntityProfileName

func (o *EndEntityProfileResponse) HasEndEntityProfileName() bool

HasEndEntityProfileName returns a boolean if a field has been set.

func (*EndEntityProfileResponse) HasSubjectAlternativeNameFields

func (o *EndEntityProfileResponse) HasSubjectAlternativeNameFields() bool

HasSubjectAlternativeNameFields returns a boolean if a field has been set.

func (*EndEntityProfileResponse) HasSubjectDistinguishedNameFields

func (o *EndEntityProfileResponse) HasSubjectDistinguishedNameFields() bool

HasSubjectDistinguishedNameFields returns a boolean if a field has been set.

func (EndEntityProfileResponse) MarshalJSON

func (o EndEntityProfileResponse) MarshalJSON() ([]byte, error)

func (*EndEntityProfileResponse) SetAvailableCas

func (o *EndEntityProfileResponse) SetAvailableCas(v []string)

SetAvailableCas gets a reference to the given []string and assigns it to the AvailableCas field.

func (*EndEntityProfileResponse) SetAvailableCertificateProfiles

func (o *EndEntityProfileResponse) SetAvailableCertificateProfiles(v []string)

SetAvailableCertificateProfiles gets a reference to the given []string and assigns it to the AvailableCertificateProfiles field.

func (*EndEntityProfileResponse) SetEndEntityProfileName

func (o *EndEntityProfileResponse) SetEndEntityProfileName(v string)

SetEndEntityProfileName gets a reference to the given string and assigns it to the EndEntityProfileName field.

func (*EndEntityProfileResponse) SetSubjectAlternativeNameFields

func (o *EndEntityProfileResponse) SetSubjectAlternativeNameFields(v []string)

SetSubjectAlternativeNameFields gets a reference to the given []string and assigns it to the SubjectAlternativeNameFields field.

func (*EndEntityProfileResponse) SetSubjectDistinguishedNameFields

func (o *EndEntityProfileResponse) SetSubjectDistinguishedNameFields(v []string)

SetSubjectDistinguishedNameFields gets a reference to the given []string and assigns it to the SubjectDistinguishedNameFields field.

func (EndEntityProfileResponse) ToMap

func (o EndEntityProfileResponse) ToMap() (map[string]interface{}, error)

func (*EndEntityProfileResponse) UnmarshalJSON

func (o *EndEntityProfileResponse) UnmarshalJSON(bytes []byte) (err error)

type EndEntityProfileRestResponse

type EndEntityProfileRestResponse struct {
	// End Entity profile name
	Name *string `json:"name,omitempty"`
	// End Entity profile ID
	Id *int64 `json:"id,omitempty"`
	// Description
	Description          *string `json:"description,omitempty"`
	AdditionalProperties map[string]interface{}
}

EndEntityProfileRestResponse struct for EndEntityProfileRestResponse

func NewEndEntityProfileRestResponse

func NewEndEntityProfileRestResponse() *EndEntityProfileRestResponse

NewEndEntityProfileRestResponse instantiates a new EndEntityProfileRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEndEntityProfileRestResponseWithDefaults

func NewEndEntityProfileRestResponseWithDefaults() *EndEntityProfileRestResponse

NewEndEntityProfileRestResponseWithDefaults instantiates a new EndEntityProfileRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EndEntityProfileRestResponse) GetDescription

func (o *EndEntityProfileRestResponse) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*EndEntityProfileRestResponse) GetDescriptionOk

func (o *EndEntityProfileRestResponse) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityProfileRestResponse) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*EndEntityProfileRestResponse) GetIdOk

func (o *EndEntityProfileRestResponse) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityProfileRestResponse) GetName

func (o *EndEntityProfileRestResponse) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*EndEntityProfileRestResponse) GetNameOk

func (o *EndEntityProfileRestResponse) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityProfileRestResponse) HasDescription

func (o *EndEntityProfileRestResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EndEntityProfileRestResponse) HasId

HasId returns a boolean if a field has been set.

func (*EndEntityProfileRestResponse) HasName

func (o *EndEntityProfileRestResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (EndEntityProfileRestResponse) MarshalJSON

func (o EndEntityProfileRestResponse) MarshalJSON() ([]byte, error)

func (*EndEntityProfileRestResponse) SetDescription

func (o *EndEntityProfileRestResponse) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*EndEntityProfileRestResponse) SetId

func (o *EndEntityProfileRestResponse) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*EndEntityProfileRestResponse) SetName

func (o *EndEntityProfileRestResponse) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (EndEntityProfileRestResponse) ToMap

func (o EndEntityProfileRestResponse) ToMap() (map[string]interface{}, error)

func (*EndEntityProfileRestResponse) UnmarshalJSON

func (o *EndEntityProfileRestResponse) UnmarshalJSON(bytes []byte) (err error)

type EndEntityRestResponse

type EndEntityRestResponse struct {
	// Username
	Username *string `json:"username,omitempty"`
	// Subject Distinguished Name
	Dn *string `json:"dn,omitempty"`
	// Subject Alternative Name (SAN)
	SubjectAltName *string `json:"subject_alt_name,omitempty"`
	// Email
	Email *string `json:"email,omitempty"`
	// End Entity status
	Status *string `json:"status,omitempty"`
	// Token type
	Token *string `json:"token,omitempty"`
	// Extended Information
	ExtensionData        []ExtendedInformationRestResponseComponent `json:"extension_data,omitempty"`
	AdditionalProperties map[string]interface{}
}

EndEntityRestResponse struct for EndEntityRestResponse

func NewEndEntityRestResponse

func NewEndEntityRestResponse() *EndEntityRestResponse

NewEndEntityRestResponse instantiates a new EndEntityRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEndEntityRestResponseWithDefaults

func NewEndEntityRestResponseWithDefaults() *EndEntityRestResponse

NewEndEntityRestResponseWithDefaults instantiates a new EndEntityRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EndEntityRestResponse) GetDn

func (o *EndEntityRestResponse) GetDn() string

GetDn returns the Dn field value if set, zero value otherwise.

func (*EndEntityRestResponse) GetDnOk

func (o *EndEntityRestResponse) GetDnOk() (*string, bool)

GetDnOk returns a tuple with the Dn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityRestResponse) GetEmail

func (o *EndEntityRestResponse) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*EndEntityRestResponse) GetEmailOk

func (o *EndEntityRestResponse) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityRestResponse) GetExtensionData

GetExtensionData returns the ExtensionData field value if set, zero value otherwise.

func (*EndEntityRestResponse) GetExtensionDataOk

GetExtensionDataOk returns a tuple with the ExtensionData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityRestResponse) GetStatus

func (o *EndEntityRestResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*EndEntityRestResponse) GetStatusOk

func (o *EndEntityRestResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityRestResponse) GetSubjectAltName

func (o *EndEntityRestResponse) GetSubjectAltName() string

GetSubjectAltName returns the SubjectAltName field value if set, zero value otherwise.

func (*EndEntityRestResponse) GetSubjectAltNameOk

func (o *EndEntityRestResponse) GetSubjectAltNameOk() (*string, bool)

GetSubjectAltNameOk returns a tuple with the SubjectAltName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityRestResponse) GetToken

func (o *EndEntityRestResponse) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*EndEntityRestResponse) GetTokenOk

func (o *EndEntityRestResponse) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityRestResponse) GetUsername

func (o *EndEntityRestResponse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*EndEntityRestResponse) GetUsernameOk

func (o *EndEntityRestResponse) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityRestResponse) HasDn

func (o *EndEntityRestResponse) HasDn() bool

HasDn returns a boolean if a field has been set.

func (*EndEntityRestResponse) HasEmail

func (o *EndEntityRestResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*EndEntityRestResponse) HasExtensionData

func (o *EndEntityRestResponse) HasExtensionData() bool

HasExtensionData returns a boolean if a field has been set.

func (*EndEntityRestResponse) HasStatus

func (o *EndEntityRestResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*EndEntityRestResponse) HasSubjectAltName

func (o *EndEntityRestResponse) HasSubjectAltName() bool

HasSubjectAltName returns a boolean if a field has been set.

func (*EndEntityRestResponse) HasToken

func (o *EndEntityRestResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*EndEntityRestResponse) HasUsername

func (o *EndEntityRestResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (EndEntityRestResponse) MarshalJSON

func (o EndEntityRestResponse) MarshalJSON() ([]byte, error)

func (*EndEntityRestResponse) SetDn

func (o *EndEntityRestResponse) SetDn(v string)

SetDn gets a reference to the given string and assigns it to the Dn field.

func (*EndEntityRestResponse) SetEmail

func (o *EndEntityRestResponse) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*EndEntityRestResponse) SetExtensionData

SetExtensionData gets a reference to the given []ExtendedInformationRestResponseComponent and assigns it to the ExtensionData field.

func (*EndEntityRestResponse) SetStatus

func (o *EndEntityRestResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*EndEntityRestResponse) SetSubjectAltName

func (o *EndEntityRestResponse) SetSubjectAltName(v string)

SetSubjectAltName gets a reference to the given string and assigns it to the SubjectAltName field.

func (*EndEntityRestResponse) SetToken

func (o *EndEntityRestResponse) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*EndEntityRestResponse) SetUsername

func (o *EndEntityRestResponse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (EndEntityRestResponse) ToMap

func (o EndEntityRestResponse) ToMap() (map[string]interface{}, error)

func (*EndEntityRestResponse) UnmarshalJSON

func (o *EndEntityRestResponse) UnmarshalJSON(bytes []byte) (err error)

type EndEntityRevocationRestRequest

type EndEntityRevocationRestRequest struct {
	// Reason code
	ReasonCode *int32 `json:"reason_code,omitempty"`
	// Delete
	Delete               *bool `json:"delete,omitempty"`
	AdditionalProperties map[string]interface{}
}

EndEntityRevocationRestRequest End Entity revocation request. Available reason codes: 0 - Unspecified, 1 - Key Compromise, 2 - CA Compromise, 3 - Affiliation Changed, 4 - Superseded, 5 - Cessation of Operation, 6 - Certificate Hold, 8 - Remove from CRL, 9 - Privileges Withdrawn, 10 - AA Compromise

func NewEndEntityRevocationRestRequest

func NewEndEntityRevocationRestRequest() *EndEntityRevocationRestRequest

NewEndEntityRevocationRestRequest instantiates a new EndEntityRevocationRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEndEntityRevocationRestRequestWithDefaults

func NewEndEntityRevocationRestRequestWithDefaults() *EndEntityRevocationRestRequest

NewEndEntityRevocationRestRequestWithDefaults instantiates a new EndEntityRevocationRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EndEntityRevocationRestRequest) GetDelete

func (o *EndEntityRevocationRestRequest) GetDelete() bool

GetDelete returns the Delete field value if set, zero value otherwise.

func (*EndEntityRevocationRestRequest) GetDeleteOk

func (o *EndEntityRevocationRestRequest) GetDeleteOk() (*bool, bool)

GetDeleteOk returns a tuple with the Delete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityRevocationRestRequest) GetReasonCode

func (o *EndEntityRevocationRestRequest) GetReasonCode() int32

GetReasonCode returns the ReasonCode field value if set, zero value otherwise.

func (*EndEntityRevocationRestRequest) GetReasonCodeOk

func (o *EndEntityRevocationRestRequest) GetReasonCodeOk() (*int32, bool)

GetReasonCodeOk returns a tuple with the ReasonCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EndEntityRevocationRestRequest) HasDelete

func (o *EndEntityRevocationRestRequest) HasDelete() bool

HasDelete returns a boolean if a field has been set.

func (*EndEntityRevocationRestRequest) HasReasonCode

func (o *EndEntityRevocationRestRequest) HasReasonCode() bool

HasReasonCode returns a boolean if a field has been set.

func (EndEntityRevocationRestRequest) MarshalJSON

func (o EndEntityRevocationRestRequest) MarshalJSON() ([]byte, error)

func (*EndEntityRevocationRestRequest) SetDelete

func (o *EndEntityRevocationRestRequest) SetDelete(v bool)

SetDelete gets a reference to the given bool and assigns it to the Delete field.

func (*EndEntityRevocationRestRequest) SetReasonCode

func (o *EndEntityRevocationRestRequest) SetReasonCode(v int32)

SetReasonCode gets a reference to the given int32 and assigns it to the ReasonCode field.

func (EndEntityRevocationRestRequest) ToMap

func (o EndEntityRevocationRestRequest) ToMap() (map[string]interface{}, error)

func (*EndEntityRevocationRestRequest) UnmarshalJSON

func (o *EndEntityRevocationRestRequest) UnmarshalJSON(bytes []byte) (err error)

type EnrollCertificateRestRequest

type EnrollCertificateRestRequest struct {
	// Certificate request
	CertificateRequest *string `json:"certificate_request,omitempty"`
	// Certificate profile name
	CertificateProfileName *string `json:"certificate_profile_name,omitempty"`
	// End Entity profile name
	EndEntityProfileName *string `json:"end_entity_profile_name,omitempty"`
	// Certificate Authority (CA) name
	CertificateAuthorityName *string `json:"certificate_authority_name,omitempty"`
	// Username
	Username *string `json:"username,omitempty"`
	// Password
	Password *string `json:"password,omitempty"`
	// Account Binding ID
	AccountBindingId *string `json:"account_binding_id,omitempty"`
	IncludeChain     *bool   `json:"include_chain,omitempty"`
	// Email
	Email                *string `json:"email,omitempty"`
	AdditionalProperties map[string]interface{}
}

EnrollCertificateRestRequest struct for EnrollCertificateRestRequest

func NewEnrollCertificateRestRequest

func NewEnrollCertificateRestRequest() *EnrollCertificateRestRequest

NewEnrollCertificateRestRequest instantiates a new EnrollCertificateRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEnrollCertificateRestRequestWithDefaults

func NewEnrollCertificateRestRequestWithDefaults() *EnrollCertificateRestRequest

NewEnrollCertificateRestRequestWithDefaults instantiates a new EnrollCertificateRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EnrollCertificateRestRequest) GetAccountBindingId

func (o *EnrollCertificateRestRequest) GetAccountBindingId() string

GetAccountBindingId returns the AccountBindingId field value if set, zero value otherwise.

func (*EnrollCertificateRestRequest) GetAccountBindingIdOk

func (o *EnrollCertificateRestRequest) GetAccountBindingIdOk() (*string, bool)

GetAccountBindingIdOk returns a tuple with the AccountBindingId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrollCertificateRestRequest) GetCertificateAuthorityName

func (o *EnrollCertificateRestRequest) GetCertificateAuthorityName() string

GetCertificateAuthorityName returns the CertificateAuthorityName field value if set, zero value otherwise.

func (*EnrollCertificateRestRequest) GetCertificateAuthorityNameOk

func (o *EnrollCertificateRestRequest) GetCertificateAuthorityNameOk() (*string, bool)

GetCertificateAuthorityNameOk returns a tuple with the CertificateAuthorityName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrollCertificateRestRequest) GetCertificateProfileName

func (o *EnrollCertificateRestRequest) GetCertificateProfileName() string

GetCertificateProfileName returns the CertificateProfileName field value if set, zero value otherwise.

func (*EnrollCertificateRestRequest) GetCertificateProfileNameOk

func (o *EnrollCertificateRestRequest) GetCertificateProfileNameOk() (*string, bool)

GetCertificateProfileNameOk returns a tuple with the CertificateProfileName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrollCertificateRestRequest) GetCertificateRequest

func (o *EnrollCertificateRestRequest) GetCertificateRequest() string

GetCertificateRequest returns the CertificateRequest field value if set, zero value otherwise.

func (*EnrollCertificateRestRequest) GetCertificateRequestOk

func (o *EnrollCertificateRestRequest) GetCertificateRequestOk() (*string, bool)

GetCertificateRequestOk returns a tuple with the CertificateRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrollCertificateRestRequest) GetEmail

func (o *EnrollCertificateRestRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*EnrollCertificateRestRequest) GetEmailOk

func (o *EnrollCertificateRestRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrollCertificateRestRequest) GetEndEntityProfileName

func (o *EnrollCertificateRestRequest) GetEndEntityProfileName() string

GetEndEntityProfileName returns the EndEntityProfileName field value if set, zero value otherwise.

func (*EnrollCertificateRestRequest) GetEndEntityProfileNameOk

func (o *EnrollCertificateRestRequest) GetEndEntityProfileNameOk() (*string, bool)

GetEndEntityProfileNameOk returns a tuple with the EndEntityProfileName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrollCertificateRestRequest) GetIncludeChain

func (o *EnrollCertificateRestRequest) GetIncludeChain() bool

GetIncludeChain returns the IncludeChain field value if set, zero value otherwise.

func (*EnrollCertificateRestRequest) GetIncludeChainOk

func (o *EnrollCertificateRestRequest) GetIncludeChainOk() (*bool, bool)

GetIncludeChainOk returns a tuple with the IncludeChain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrollCertificateRestRequest) GetPassword

func (o *EnrollCertificateRestRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*EnrollCertificateRestRequest) GetPasswordOk

func (o *EnrollCertificateRestRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrollCertificateRestRequest) GetUsername

func (o *EnrollCertificateRestRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*EnrollCertificateRestRequest) GetUsernameOk

func (o *EnrollCertificateRestRequest) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrollCertificateRestRequest) HasAccountBindingId

func (o *EnrollCertificateRestRequest) HasAccountBindingId() bool

HasAccountBindingId returns a boolean if a field has been set.

func (*EnrollCertificateRestRequest) HasCertificateAuthorityName

func (o *EnrollCertificateRestRequest) HasCertificateAuthorityName() bool

HasCertificateAuthorityName returns a boolean if a field has been set.

func (*EnrollCertificateRestRequest) HasCertificateProfileName

func (o *EnrollCertificateRestRequest) HasCertificateProfileName() bool

HasCertificateProfileName returns a boolean if a field has been set.

func (*EnrollCertificateRestRequest) HasCertificateRequest

func (o *EnrollCertificateRestRequest) HasCertificateRequest() bool

HasCertificateRequest returns a boolean if a field has been set.

func (*EnrollCertificateRestRequest) HasEmail

func (o *EnrollCertificateRestRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*EnrollCertificateRestRequest) HasEndEntityProfileName

func (o *EnrollCertificateRestRequest) HasEndEntityProfileName() bool

HasEndEntityProfileName returns a boolean if a field has been set.

func (*EnrollCertificateRestRequest) HasIncludeChain

func (o *EnrollCertificateRestRequest) HasIncludeChain() bool

HasIncludeChain returns a boolean if a field has been set.

func (*EnrollCertificateRestRequest) HasPassword

func (o *EnrollCertificateRestRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*EnrollCertificateRestRequest) HasUsername

func (o *EnrollCertificateRestRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (EnrollCertificateRestRequest) MarshalJSON

func (o EnrollCertificateRestRequest) MarshalJSON() ([]byte, error)

func (*EnrollCertificateRestRequest) SetAccountBindingId

func (o *EnrollCertificateRestRequest) SetAccountBindingId(v string)

SetAccountBindingId gets a reference to the given string and assigns it to the AccountBindingId field.

func (*EnrollCertificateRestRequest) SetCertificateAuthorityName

func (o *EnrollCertificateRestRequest) SetCertificateAuthorityName(v string)

SetCertificateAuthorityName gets a reference to the given string and assigns it to the CertificateAuthorityName field.

func (*EnrollCertificateRestRequest) SetCertificateProfileName

func (o *EnrollCertificateRestRequest) SetCertificateProfileName(v string)

SetCertificateProfileName gets a reference to the given string and assigns it to the CertificateProfileName field.

func (*EnrollCertificateRestRequest) SetCertificateRequest

func (o *EnrollCertificateRestRequest) SetCertificateRequest(v string)

SetCertificateRequest gets a reference to the given string and assigns it to the CertificateRequest field.

func (*EnrollCertificateRestRequest) SetEmail

func (o *EnrollCertificateRestRequest) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*EnrollCertificateRestRequest) SetEndEntityProfileName

func (o *EnrollCertificateRestRequest) SetEndEntityProfileName(v string)

SetEndEntityProfileName gets a reference to the given string and assigns it to the EndEntityProfileName field.

func (*EnrollCertificateRestRequest) SetIncludeChain

func (o *EnrollCertificateRestRequest) SetIncludeChain(v bool)

SetIncludeChain gets a reference to the given bool and assigns it to the IncludeChain field.

func (*EnrollCertificateRestRequest) SetPassword

func (o *EnrollCertificateRestRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*EnrollCertificateRestRequest) SetUsername

func (o *EnrollCertificateRestRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (EnrollCertificateRestRequest) ToMap

func (o EnrollCertificateRestRequest) ToMap() (map[string]interface{}, error)

func (*EnrollCertificateRestRequest) UnmarshalJSON

func (o *EnrollCertificateRestRequest) UnmarshalJSON(bytes []byte) (err error)

type ExpiringCertificatesRestResponse

type ExpiringCertificatesRestResponse struct {
	PaginationRestResponseComponent *PaginationRestResponseComponent `json:"pagination_rest_response_component,omitempty"`
	CertificatesRestResponse        *CertificatesRestResponse        `json:"certificates_rest_response,omitempty"`
	AdditionalProperties            map[string]interface{}
}

ExpiringCertificatesRestResponse struct for ExpiringCertificatesRestResponse

func NewExpiringCertificatesRestResponse

func NewExpiringCertificatesRestResponse() *ExpiringCertificatesRestResponse

NewExpiringCertificatesRestResponse instantiates a new ExpiringCertificatesRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExpiringCertificatesRestResponseWithDefaults

func NewExpiringCertificatesRestResponseWithDefaults() *ExpiringCertificatesRestResponse

NewExpiringCertificatesRestResponseWithDefaults instantiates a new ExpiringCertificatesRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExpiringCertificatesRestResponse) GetCertificatesRestResponse

func (o *ExpiringCertificatesRestResponse) GetCertificatesRestResponse() CertificatesRestResponse

GetCertificatesRestResponse returns the CertificatesRestResponse field value if set, zero value otherwise.

func (*ExpiringCertificatesRestResponse) GetCertificatesRestResponseOk

func (o *ExpiringCertificatesRestResponse) GetCertificatesRestResponseOk() (*CertificatesRestResponse, bool)

GetCertificatesRestResponseOk returns a tuple with the CertificatesRestResponse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpiringCertificatesRestResponse) GetPaginationRestResponseComponent

func (o *ExpiringCertificatesRestResponse) GetPaginationRestResponseComponent() PaginationRestResponseComponent

GetPaginationRestResponseComponent returns the PaginationRestResponseComponent field value if set, zero value otherwise.

func (*ExpiringCertificatesRestResponse) GetPaginationRestResponseComponentOk

func (o *ExpiringCertificatesRestResponse) GetPaginationRestResponseComponentOk() (*PaginationRestResponseComponent, bool)

GetPaginationRestResponseComponentOk returns a tuple with the PaginationRestResponseComponent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExpiringCertificatesRestResponse) HasCertificatesRestResponse

func (o *ExpiringCertificatesRestResponse) HasCertificatesRestResponse() bool

HasCertificatesRestResponse returns a boolean if a field has been set.

func (*ExpiringCertificatesRestResponse) HasPaginationRestResponseComponent

func (o *ExpiringCertificatesRestResponse) HasPaginationRestResponseComponent() bool

HasPaginationRestResponseComponent returns a boolean if a field has been set.

func (ExpiringCertificatesRestResponse) MarshalJSON

func (o ExpiringCertificatesRestResponse) MarshalJSON() ([]byte, error)

func (*ExpiringCertificatesRestResponse) SetCertificatesRestResponse

func (o *ExpiringCertificatesRestResponse) SetCertificatesRestResponse(v CertificatesRestResponse)

SetCertificatesRestResponse gets a reference to the given CertificatesRestResponse and assigns it to the CertificatesRestResponse field.

func (*ExpiringCertificatesRestResponse) SetPaginationRestResponseComponent

func (o *ExpiringCertificatesRestResponse) SetPaginationRestResponseComponent(v PaginationRestResponseComponent)

SetPaginationRestResponseComponent gets a reference to the given PaginationRestResponseComponent and assigns it to the PaginationRestResponseComponent field.

func (ExpiringCertificatesRestResponse) ToMap

func (o ExpiringCertificatesRestResponse) ToMap() (map[string]interface{}, error)

func (*ExpiringCertificatesRestResponse) UnmarshalJSON

func (o *ExpiringCertificatesRestResponse) UnmarshalJSON(bytes []byte) (err error)

type ExtendedInformationRestRequestComponent

type ExtendedInformationRestRequestComponent struct {
	// Certificate Extension Object Identifier (OID)
	Name *string `json:"name,omitempty"`
	// OID value
	Value                *string `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

ExtendedInformationRestRequestComponent struct for ExtendedInformationRestRequestComponent

func NewExtendedInformationRestRequestComponent

func NewExtendedInformationRestRequestComponent() *ExtendedInformationRestRequestComponent

NewExtendedInformationRestRequestComponent instantiates a new ExtendedInformationRestRequestComponent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtendedInformationRestRequestComponentWithDefaults

func NewExtendedInformationRestRequestComponentWithDefaults() *ExtendedInformationRestRequestComponent

NewExtendedInformationRestRequestComponentWithDefaults instantiates a new ExtendedInformationRestRequestComponent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtendedInformationRestRequestComponent) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ExtendedInformationRestRequestComponent) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedInformationRestRequestComponent) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*ExtendedInformationRestRequestComponent) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedInformationRestRequestComponent) HasName

HasName returns a boolean if a field has been set.

func (*ExtendedInformationRestRequestComponent) HasValue

HasValue returns a boolean if a field has been set.

func (ExtendedInformationRestRequestComponent) MarshalJSON

func (o ExtendedInformationRestRequestComponent) MarshalJSON() ([]byte, error)

func (*ExtendedInformationRestRequestComponent) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ExtendedInformationRestRequestComponent) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (ExtendedInformationRestRequestComponent) ToMap

func (o ExtendedInformationRestRequestComponent) ToMap() (map[string]interface{}, error)

func (*ExtendedInformationRestRequestComponent) UnmarshalJSON

func (o *ExtendedInformationRestRequestComponent) UnmarshalJSON(bytes []byte) (err error)

type ExtendedInformationRestResponseComponent

type ExtendedInformationRestResponseComponent struct {
	// Extended Information property name
	Name *string `json:"name,omitempty"`
	// Property value
	Value                *string `json:"value,omitempty"`
	AdditionalProperties map[string]interface{}
}

ExtendedInformationRestResponseComponent struct for ExtendedInformationRestResponseComponent

func NewExtendedInformationRestResponseComponent

func NewExtendedInformationRestResponseComponent() *ExtendedInformationRestResponseComponent

NewExtendedInformationRestResponseComponent instantiates a new ExtendedInformationRestResponseComponent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtendedInformationRestResponseComponentWithDefaults

func NewExtendedInformationRestResponseComponentWithDefaults() *ExtendedInformationRestResponseComponent

NewExtendedInformationRestResponseComponentWithDefaults instantiates a new ExtendedInformationRestResponseComponent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtendedInformationRestResponseComponent) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ExtendedInformationRestResponseComponent) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedInformationRestResponseComponent) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*ExtendedInformationRestResponseComponent) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtendedInformationRestResponseComponent) HasName

HasName returns a boolean if a field has been set.

func (*ExtendedInformationRestResponseComponent) HasValue

HasValue returns a boolean if a field has been set.

func (ExtendedInformationRestResponseComponent) MarshalJSON

func (*ExtendedInformationRestResponseComponent) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ExtendedInformationRestResponseComponent) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (ExtendedInformationRestResponseComponent) ToMap

func (o ExtendedInformationRestResponseComponent) ToMap() (map[string]interface{}, error)

func (*ExtendedInformationRestResponseComponent) UnmarshalJSON

func (o *ExtendedInformationRestResponseComponent) UnmarshalJSON(bytes []byte) (err error)

type FinalizeRestRequest

type FinalizeRestRequest struct {
	// Response format
	ResponseFormat *string `json:"response_format,omitempty"`
	// Password
	Password *string `json:"password,omitempty"`
	// Key algorithm
	KeyAlg *string `json:"key_alg,omitempty"`
	// Key specification
	KeySpec              *string `json:"key_spec,omitempty"`
	AdditionalProperties map[string]interface{}
}

FinalizeRestRequest struct for FinalizeRestRequest

func NewFinalizeRestRequest

func NewFinalizeRestRequest() *FinalizeRestRequest

NewFinalizeRestRequest instantiates a new FinalizeRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFinalizeRestRequestWithDefaults

func NewFinalizeRestRequestWithDefaults() *FinalizeRestRequest

NewFinalizeRestRequestWithDefaults instantiates a new FinalizeRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FinalizeRestRequest) GetKeyAlg

func (o *FinalizeRestRequest) GetKeyAlg() string

GetKeyAlg returns the KeyAlg field value if set, zero value otherwise.

func (*FinalizeRestRequest) GetKeyAlgOk

func (o *FinalizeRestRequest) GetKeyAlgOk() (*string, bool)

GetKeyAlgOk returns a tuple with the KeyAlg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FinalizeRestRequest) GetKeySpec

func (o *FinalizeRestRequest) GetKeySpec() string

GetKeySpec returns the KeySpec field value if set, zero value otherwise.

func (*FinalizeRestRequest) GetKeySpecOk

func (o *FinalizeRestRequest) GetKeySpecOk() (*string, bool)

GetKeySpecOk returns a tuple with the KeySpec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FinalizeRestRequest) GetPassword

func (o *FinalizeRestRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*FinalizeRestRequest) GetPasswordOk

func (o *FinalizeRestRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FinalizeRestRequest) GetResponseFormat

func (o *FinalizeRestRequest) GetResponseFormat() string

GetResponseFormat returns the ResponseFormat field value if set, zero value otherwise.

func (*FinalizeRestRequest) GetResponseFormatOk

func (o *FinalizeRestRequest) GetResponseFormatOk() (*string, bool)

GetResponseFormatOk returns a tuple with the ResponseFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FinalizeRestRequest) HasKeyAlg

func (o *FinalizeRestRequest) HasKeyAlg() bool

HasKeyAlg returns a boolean if a field has been set.

func (*FinalizeRestRequest) HasKeySpec

func (o *FinalizeRestRequest) HasKeySpec() bool

HasKeySpec returns a boolean if a field has been set.

func (*FinalizeRestRequest) HasPassword

func (o *FinalizeRestRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*FinalizeRestRequest) HasResponseFormat

func (o *FinalizeRestRequest) HasResponseFormat() bool

HasResponseFormat returns a boolean if a field has been set.

func (FinalizeRestRequest) MarshalJSON

func (o FinalizeRestRequest) MarshalJSON() ([]byte, error)

func (*FinalizeRestRequest) SetKeyAlg

func (o *FinalizeRestRequest) SetKeyAlg(v string)

SetKeyAlg gets a reference to the given string and assigns it to the KeyAlg field.

func (*FinalizeRestRequest) SetKeySpec

func (o *FinalizeRestRequest) SetKeySpec(v string)

SetKeySpec gets a reference to the given string and assigns it to the KeySpec field.

func (*FinalizeRestRequest) SetPassword

func (o *FinalizeRestRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*FinalizeRestRequest) SetResponseFormat

func (o *FinalizeRestRequest) SetResponseFormat(v string)

SetResponseFormat gets a reference to the given string and assigns it to the ResponseFormat field.

func (FinalizeRestRequest) ToMap

func (o FinalizeRestRequest) ToMap() (map[string]interface{}, error)

func (*FinalizeRestRequest) UnmarshalJSON

func (o *FinalizeRestRequest) UnmarshalJSON(bytes []byte) (err error)

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type KeyStoreRestRequest

type KeyStoreRestRequest struct {
	// Username
	Username *string `json:"username,omitempty"`
	// Password
	Password *string `json:"password,omitempty"`
	// Key algorithm used for enrollment
	KeyAlg *string `json:"key_alg,omitempty"`
	// Key specification to use
	KeySpec              *string `json:"key_spec,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyStoreRestRequest struct for KeyStoreRestRequest

func NewKeyStoreRestRequest

func NewKeyStoreRestRequest() *KeyStoreRestRequest

NewKeyStoreRestRequest instantiates a new KeyStoreRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewKeyStoreRestRequestWithDefaults

func NewKeyStoreRestRequestWithDefaults() *KeyStoreRestRequest

NewKeyStoreRestRequestWithDefaults instantiates a new KeyStoreRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*KeyStoreRestRequest) GetKeyAlg

func (o *KeyStoreRestRequest) GetKeyAlg() string

GetKeyAlg returns the KeyAlg field value if set, zero value otherwise.

func (*KeyStoreRestRequest) GetKeyAlgOk

func (o *KeyStoreRestRequest) GetKeyAlgOk() (*string, bool)

GetKeyAlgOk returns a tuple with the KeyAlg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyStoreRestRequest) GetKeySpec

func (o *KeyStoreRestRequest) GetKeySpec() string

GetKeySpec returns the KeySpec field value if set, zero value otherwise.

func (*KeyStoreRestRequest) GetKeySpecOk

func (o *KeyStoreRestRequest) GetKeySpecOk() (*string, bool)

GetKeySpecOk returns a tuple with the KeySpec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyStoreRestRequest) GetPassword

func (o *KeyStoreRestRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*KeyStoreRestRequest) GetPasswordOk

func (o *KeyStoreRestRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyStoreRestRequest) GetUsername

func (o *KeyStoreRestRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*KeyStoreRestRequest) GetUsernameOk

func (o *KeyStoreRestRequest) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyStoreRestRequest) HasKeyAlg

func (o *KeyStoreRestRequest) HasKeyAlg() bool

HasKeyAlg returns a boolean if a field has been set.

func (*KeyStoreRestRequest) HasKeySpec

func (o *KeyStoreRestRequest) HasKeySpec() bool

HasKeySpec returns a boolean if a field has been set.

func (*KeyStoreRestRequest) HasPassword

func (o *KeyStoreRestRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*KeyStoreRestRequest) HasUsername

func (o *KeyStoreRestRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (KeyStoreRestRequest) MarshalJSON

func (o KeyStoreRestRequest) MarshalJSON() ([]byte, error)

func (*KeyStoreRestRequest) SetKeyAlg

func (o *KeyStoreRestRequest) SetKeyAlg(v string)

SetKeyAlg gets a reference to the given string and assigns it to the KeyAlg field.

func (*KeyStoreRestRequest) SetKeySpec

func (o *KeyStoreRestRequest) SetKeySpec(v string)

SetKeySpec gets a reference to the given string and assigns it to the KeySpec field.

func (*KeyStoreRestRequest) SetPassword

func (o *KeyStoreRestRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*KeyStoreRestRequest) SetUsername

func (o *KeyStoreRestRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (KeyStoreRestRequest) ToMap

func (o KeyStoreRestRequest) ToMap() (map[string]interface{}, error)

func (*KeyStoreRestRequest) UnmarshalJSON

func (o *KeyStoreRestRequest) UnmarshalJSON(bytes []byte) (err error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableAddEndEntityRestRequest

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

func (NullableAddEndEntityRestRequest) Get

func (NullableAddEndEntityRestRequest) IsSet

func (NullableAddEndEntityRestRequest) MarshalJSON

func (v NullableAddEndEntityRestRequest) MarshalJSON() ([]byte, error)

func (*NullableAddEndEntityRestRequest) Set

func (*NullableAddEndEntityRestRequest) UnmarshalJSON

func (v *NullableAddEndEntityRestRequest) UnmarshalJSON(src []byte) error

func (*NullableAddEndEntityRestRequest) Unset

type NullableAuthorizedEEPsRestResponse

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

func (NullableAuthorizedEEPsRestResponse) Get

func (NullableAuthorizedEEPsRestResponse) IsSet

func (NullableAuthorizedEEPsRestResponse) MarshalJSON

func (v NullableAuthorizedEEPsRestResponse) MarshalJSON() ([]byte, error)

func (*NullableAuthorizedEEPsRestResponse) Set

func (*NullableAuthorizedEEPsRestResponse) UnmarshalJSON

func (v *NullableAuthorizedEEPsRestResponse) UnmarshalJSON(src []byte) error

func (*NullableAuthorizedEEPsRestResponse) Unset

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCaInfoRestResponse

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

func NewNullableCaInfoRestResponse

func NewNullableCaInfoRestResponse(val *CaInfoRestResponse) *NullableCaInfoRestResponse

func (NullableCaInfoRestResponse) Get

func (NullableCaInfoRestResponse) IsSet

func (v NullableCaInfoRestResponse) IsSet() bool

func (NullableCaInfoRestResponse) MarshalJSON

func (v NullableCaInfoRestResponse) MarshalJSON() ([]byte, error)

func (*NullableCaInfoRestResponse) Set

func (*NullableCaInfoRestResponse) UnmarshalJSON

func (v *NullableCaInfoRestResponse) UnmarshalJSON(src []byte) error

func (*NullableCaInfoRestResponse) Unset

func (v *NullableCaInfoRestResponse) Unset()

type NullableCaInfosRestResponse

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

func NewNullableCaInfosRestResponse

func NewNullableCaInfosRestResponse(val *CaInfosRestResponse) *NullableCaInfosRestResponse

func (NullableCaInfosRestResponse) Get

func (NullableCaInfosRestResponse) IsSet

func (NullableCaInfosRestResponse) MarshalJSON

func (v NullableCaInfosRestResponse) MarshalJSON() ([]byte, error)

func (*NullableCaInfosRestResponse) Set

func (*NullableCaInfosRestResponse) UnmarshalJSON

func (v *NullableCaInfosRestResponse) UnmarshalJSON(src []byte) error

func (*NullableCaInfosRestResponse) Unset

func (v *NullableCaInfosRestResponse) Unset()

type NullableCertificateProfileInfoRestResponseV2

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

func (NullableCertificateProfileInfoRestResponseV2) Get

func (NullableCertificateProfileInfoRestResponseV2) IsSet

func (NullableCertificateProfileInfoRestResponseV2) MarshalJSON

func (*NullableCertificateProfileInfoRestResponseV2) Set

func (*NullableCertificateProfileInfoRestResponseV2) UnmarshalJSON

func (*NullableCertificateProfileInfoRestResponseV2) Unset

type NullableCertificateRequestRestRequest

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

func (NullableCertificateRequestRestRequest) Get

func (NullableCertificateRequestRestRequest) IsSet

func (NullableCertificateRequestRestRequest) MarshalJSON

func (v NullableCertificateRequestRestRequest) MarshalJSON() ([]byte, error)

func (*NullableCertificateRequestRestRequest) Set

func (*NullableCertificateRequestRestRequest) UnmarshalJSON

func (v *NullableCertificateRequestRestRequest) UnmarshalJSON(src []byte) error

func (*NullableCertificateRequestRestRequest) Unset

type NullableCertificateRestResponse

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

func (NullableCertificateRestResponse) Get

func (NullableCertificateRestResponse) IsSet

func (NullableCertificateRestResponse) MarshalJSON

func (v NullableCertificateRestResponse) MarshalJSON() ([]byte, error)

func (*NullableCertificateRestResponse) Set

func (*NullableCertificateRestResponse) UnmarshalJSON

func (v *NullableCertificateRestResponse) UnmarshalJSON(src []byte) error

func (*NullableCertificateRestResponse) Unset

type NullableCertificateRestResponseV2

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

func (NullableCertificateRestResponseV2) Get

func (NullableCertificateRestResponseV2) IsSet

func (NullableCertificateRestResponseV2) MarshalJSON

func (v NullableCertificateRestResponseV2) MarshalJSON() ([]byte, error)

func (*NullableCertificateRestResponseV2) Set

func (*NullableCertificateRestResponseV2) UnmarshalJSON

func (v *NullableCertificateRestResponseV2) UnmarshalJSON(src []byte) error

func (*NullableCertificateRestResponseV2) Unset

type NullableCertificatesRestResponse

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

func (NullableCertificatesRestResponse) Get

func (NullableCertificatesRestResponse) IsSet

func (NullableCertificatesRestResponse) MarshalJSON

func (v NullableCertificatesRestResponse) MarshalJSON() ([]byte, error)

func (*NullableCertificatesRestResponse) Set

func (*NullableCertificatesRestResponse) UnmarshalJSON

func (v *NullableCertificatesRestResponse) UnmarshalJSON(src []byte) error

func (*NullableCertificatesRestResponse) Unset

type NullableConfigdumpResults

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

func NewNullableConfigdumpResults

func NewNullableConfigdumpResults(val *ConfigdumpResults) *NullableConfigdumpResults

func (NullableConfigdumpResults) Get

func (NullableConfigdumpResults) IsSet

func (v NullableConfigdumpResults) IsSet() bool

func (NullableConfigdumpResults) MarshalJSON

func (v NullableConfigdumpResults) MarshalJSON() ([]byte, error)

func (*NullableConfigdumpResults) Set

func (*NullableConfigdumpResults) UnmarshalJSON

func (v *NullableConfigdumpResults) UnmarshalJSON(src []byte) error

func (*NullableConfigdumpResults) Unset

func (v *NullableConfigdumpResults) Unset()

type NullableCreateCrlRestResponse

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

func (NullableCreateCrlRestResponse) Get

func (NullableCreateCrlRestResponse) IsSet

func (NullableCreateCrlRestResponse) MarshalJSON

func (v NullableCreateCrlRestResponse) MarshalJSON() ([]byte, error)

func (*NullableCreateCrlRestResponse) Set

func (*NullableCreateCrlRestResponse) UnmarshalJSON

func (v *NullableCreateCrlRestResponse) UnmarshalJSON(src []byte) error

func (*NullableCreateCrlRestResponse) Unset

func (v *NullableCreateCrlRestResponse) Unset()

type NullableCrlRestResponse

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

func NewNullableCrlRestResponse

func NewNullableCrlRestResponse(val *CrlRestResponse) *NullableCrlRestResponse

func (NullableCrlRestResponse) Get

func (NullableCrlRestResponse) IsSet

func (v NullableCrlRestResponse) IsSet() bool

func (NullableCrlRestResponse) MarshalJSON

func (v NullableCrlRestResponse) MarshalJSON() ([]byte, error)

func (*NullableCrlRestResponse) Set

func (*NullableCrlRestResponse) UnmarshalJSON

func (v *NullableCrlRestResponse) UnmarshalJSON(src []byte) error

func (*NullableCrlRestResponse) Unset

func (v *NullableCrlRestResponse) Unset()

type NullableCryptoTokenActivationRestRequest

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

func (NullableCryptoTokenActivationRestRequest) Get

func (NullableCryptoTokenActivationRestRequest) IsSet

func (NullableCryptoTokenActivationRestRequest) MarshalJSON

func (*NullableCryptoTokenActivationRestRequest) Set

func (*NullableCryptoTokenActivationRestRequest) UnmarshalJSON

func (v *NullableCryptoTokenActivationRestRequest) UnmarshalJSON(src []byte) error

func (*NullableCryptoTokenActivationRestRequest) Unset

type NullableCryptoTokenKeyGenerationRestRequest

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

func (NullableCryptoTokenKeyGenerationRestRequest) Get

func (NullableCryptoTokenKeyGenerationRestRequest) IsSet

func (NullableCryptoTokenKeyGenerationRestRequest) MarshalJSON

func (*NullableCryptoTokenKeyGenerationRestRequest) Set

func (*NullableCryptoTokenKeyGenerationRestRequest) UnmarshalJSON

func (v *NullableCryptoTokenKeyGenerationRestRequest) UnmarshalJSON(src []byte) error

func (*NullableCryptoTokenKeyGenerationRestRequest) Unset

type NullableEndEntityProfileResponse

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

func (NullableEndEntityProfileResponse) Get

func (NullableEndEntityProfileResponse) IsSet

func (NullableEndEntityProfileResponse) MarshalJSON

func (v NullableEndEntityProfileResponse) MarshalJSON() ([]byte, error)

func (*NullableEndEntityProfileResponse) Set

func (*NullableEndEntityProfileResponse) UnmarshalJSON

func (v *NullableEndEntityProfileResponse) UnmarshalJSON(src []byte) error

func (*NullableEndEntityProfileResponse) Unset

type NullableEndEntityProfileRestResponse

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

func (NullableEndEntityProfileRestResponse) Get

func (NullableEndEntityProfileRestResponse) IsSet

func (NullableEndEntityProfileRestResponse) MarshalJSON

func (v NullableEndEntityProfileRestResponse) MarshalJSON() ([]byte, error)

func (*NullableEndEntityProfileRestResponse) Set

func (*NullableEndEntityProfileRestResponse) UnmarshalJSON

func (v *NullableEndEntityProfileRestResponse) UnmarshalJSON(src []byte) error

func (*NullableEndEntityProfileRestResponse) Unset

type NullableEndEntityRestResponse

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

func (NullableEndEntityRestResponse) Get

func (NullableEndEntityRestResponse) IsSet

func (NullableEndEntityRestResponse) MarshalJSON

func (v NullableEndEntityRestResponse) MarshalJSON() ([]byte, error)

func (*NullableEndEntityRestResponse) Set

func (*NullableEndEntityRestResponse) UnmarshalJSON

func (v *NullableEndEntityRestResponse) UnmarshalJSON(src []byte) error

func (*NullableEndEntityRestResponse) Unset

func (v *NullableEndEntityRestResponse) Unset()

type NullableEndEntityRevocationRestRequest

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

func (NullableEndEntityRevocationRestRequest) Get

func (NullableEndEntityRevocationRestRequest) IsSet

func (NullableEndEntityRevocationRestRequest) MarshalJSON

func (v NullableEndEntityRevocationRestRequest) MarshalJSON() ([]byte, error)

func (*NullableEndEntityRevocationRestRequest) Set

func (*NullableEndEntityRevocationRestRequest) UnmarshalJSON

func (v *NullableEndEntityRevocationRestRequest) UnmarshalJSON(src []byte) error

func (*NullableEndEntityRevocationRestRequest) Unset

type NullableEnrollCertificateRestRequest

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

func (NullableEnrollCertificateRestRequest) Get

func (NullableEnrollCertificateRestRequest) IsSet

func (NullableEnrollCertificateRestRequest) MarshalJSON

func (v NullableEnrollCertificateRestRequest) MarshalJSON() ([]byte, error)

func (*NullableEnrollCertificateRestRequest) Set

func (*NullableEnrollCertificateRestRequest) UnmarshalJSON

func (v *NullableEnrollCertificateRestRequest) UnmarshalJSON(src []byte) error

func (*NullableEnrollCertificateRestRequest) Unset

type NullableExpiringCertificatesRestResponse

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

func (NullableExpiringCertificatesRestResponse) Get

func (NullableExpiringCertificatesRestResponse) IsSet

func (NullableExpiringCertificatesRestResponse) MarshalJSON

func (*NullableExpiringCertificatesRestResponse) Set

func (*NullableExpiringCertificatesRestResponse) UnmarshalJSON

func (v *NullableExpiringCertificatesRestResponse) UnmarshalJSON(src []byte) error

func (*NullableExpiringCertificatesRestResponse) Unset

type NullableExtendedInformationRestRequestComponent

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

func (NullableExtendedInformationRestRequestComponent) Get

func (NullableExtendedInformationRestRequestComponent) IsSet

func (NullableExtendedInformationRestRequestComponent) MarshalJSON

func (*NullableExtendedInformationRestRequestComponent) Set

func (*NullableExtendedInformationRestRequestComponent) UnmarshalJSON

func (*NullableExtendedInformationRestRequestComponent) Unset

type NullableExtendedInformationRestResponseComponent

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

func (NullableExtendedInformationRestResponseComponent) Get

func (NullableExtendedInformationRestResponseComponent) IsSet

func (NullableExtendedInformationRestResponseComponent) MarshalJSON

func (*NullableExtendedInformationRestResponseComponent) Set

func (*NullableExtendedInformationRestResponseComponent) UnmarshalJSON

func (*NullableExtendedInformationRestResponseComponent) Unset

type NullableFinalizeRestRequest

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

func NewNullableFinalizeRestRequest

func NewNullableFinalizeRestRequest(val *FinalizeRestRequest) *NullableFinalizeRestRequest

func (NullableFinalizeRestRequest) Get

func (NullableFinalizeRestRequest) IsSet

func (NullableFinalizeRestRequest) MarshalJSON

func (v NullableFinalizeRestRequest) MarshalJSON() ([]byte, error)

func (*NullableFinalizeRestRequest) Set

func (*NullableFinalizeRestRequest) UnmarshalJSON

func (v *NullableFinalizeRestRequest) UnmarshalJSON(src []byte) error

func (*NullableFinalizeRestRequest) Unset

func (v *NullableFinalizeRestRequest) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableKeyStoreRestRequest

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

func NewNullableKeyStoreRestRequest

func NewNullableKeyStoreRestRequest(val *KeyStoreRestRequest) *NullableKeyStoreRestRequest

func (NullableKeyStoreRestRequest) Get

func (NullableKeyStoreRestRequest) IsSet

func (NullableKeyStoreRestRequest) MarshalJSON

func (v NullableKeyStoreRestRequest) MarshalJSON() ([]byte, error)

func (*NullableKeyStoreRestRequest) Set

func (*NullableKeyStoreRestRequest) UnmarshalJSON

func (v *NullableKeyStoreRestRequest) UnmarshalJSON(src []byte) error

func (*NullableKeyStoreRestRequest) Unset

func (v *NullableKeyStoreRestRequest) Unset()

type NullablePagination

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

func NewNullablePagination

func NewNullablePagination(val *Pagination) *NullablePagination

func (NullablePagination) Get

func (v NullablePagination) Get() *Pagination

func (NullablePagination) IsSet

func (v NullablePagination) IsSet() bool

func (NullablePagination) MarshalJSON

func (v NullablePagination) MarshalJSON() ([]byte, error)

func (*NullablePagination) Set

func (v *NullablePagination) Set(val *Pagination)

func (*NullablePagination) UnmarshalJSON

func (v *NullablePagination) UnmarshalJSON(src []byte) error

func (*NullablePagination) Unset

func (v *NullablePagination) Unset()

type NullablePaginationRestResponseComponent

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

func (NullablePaginationRestResponseComponent) Get

func (NullablePaginationRestResponseComponent) IsSet

func (NullablePaginationRestResponseComponent) MarshalJSON

func (v NullablePaginationRestResponseComponent) MarshalJSON() ([]byte, error)

func (*NullablePaginationRestResponseComponent) Set

func (*NullablePaginationRestResponseComponent) UnmarshalJSON

func (v *NullablePaginationRestResponseComponent) UnmarshalJSON(src []byte) error

func (*NullablePaginationRestResponseComponent) Unset

type NullablePaginationSummary

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

func NewNullablePaginationSummary

func NewNullablePaginationSummary(val *PaginationSummary) *NullablePaginationSummary

func (NullablePaginationSummary) Get

func (NullablePaginationSummary) IsSet

func (v NullablePaginationSummary) IsSet() bool

func (NullablePaginationSummary) MarshalJSON

func (v NullablePaginationSummary) MarshalJSON() ([]byte, error)

func (*NullablePaginationSummary) Set

func (*NullablePaginationSummary) UnmarshalJSON

func (v *NullablePaginationSummary) UnmarshalJSON(src []byte) error

func (*NullablePaginationSummary) Unset

func (v *NullablePaginationSummary) Unset()

type NullableRestResourceStatusRestResponse

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

func (NullableRestResourceStatusRestResponse) Get

func (NullableRestResourceStatusRestResponse) IsSet

func (NullableRestResourceStatusRestResponse) MarshalJSON

func (v NullableRestResourceStatusRestResponse) MarshalJSON() ([]byte, error)

func (*NullableRestResourceStatusRestResponse) Set

func (*NullableRestResourceStatusRestResponse) UnmarshalJSON

func (v *NullableRestResourceStatusRestResponse) UnmarshalJSON(src []byte) error

func (*NullableRestResourceStatusRestResponse) Unset

type NullableRevokeStatusRestResponse

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

func (NullableRevokeStatusRestResponse) Get

func (NullableRevokeStatusRestResponse) IsSet

func (NullableRevokeStatusRestResponse) MarshalJSON

func (v NullableRevokeStatusRestResponse) MarshalJSON() ([]byte, error)

func (*NullableRevokeStatusRestResponse) Set

func (*NullableRevokeStatusRestResponse) UnmarshalJSON

func (v *NullableRevokeStatusRestResponse) UnmarshalJSON(src []byte) error

func (*NullableRevokeStatusRestResponse) Unset

type NullableSearchCertificateCriteriaRestRequest

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

func (NullableSearchCertificateCriteriaRestRequest) Get

func (NullableSearchCertificateCriteriaRestRequest) IsSet

func (NullableSearchCertificateCriteriaRestRequest) MarshalJSON

func (*NullableSearchCertificateCriteriaRestRequest) Set

func (*NullableSearchCertificateCriteriaRestRequest) UnmarshalJSON

func (*NullableSearchCertificateCriteriaRestRequest) Unset

type NullableSearchCertificateSortRestRequest

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

func (NullableSearchCertificateSortRestRequest) Get

func (NullableSearchCertificateSortRestRequest) IsSet

func (NullableSearchCertificateSortRestRequest) MarshalJSON

func (*NullableSearchCertificateSortRestRequest) Set

func (*NullableSearchCertificateSortRestRequest) UnmarshalJSON

func (v *NullableSearchCertificateSortRestRequest) UnmarshalJSON(src []byte) error

func (*NullableSearchCertificateSortRestRequest) Unset

type NullableSearchCertificatesRestRequest

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

func (NullableSearchCertificatesRestRequest) Get

func (NullableSearchCertificatesRestRequest) IsSet

func (NullableSearchCertificatesRestRequest) MarshalJSON

func (v NullableSearchCertificatesRestRequest) MarshalJSON() ([]byte, error)

func (*NullableSearchCertificatesRestRequest) Set

func (*NullableSearchCertificatesRestRequest) UnmarshalJSON

func (v *NullableSearchCertificatesRestRequest) UnmarshalJSON(src []byte) error

func (*NullableSearchCertificatesRestRequest) Unset

type NullableSearchCertificatesRestRequestV2

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

func (NullableSearchCertificatesRestRequestV2) Get

func (NullableSearchCertificatesRestRequestV2) IsSet

func (NullableSearchCertificatesRestRequestV2) MarshalJSON

func (v NullableSearchCertificatesRestRequestV2) MarshalJSON() ([]byte, error)

func (*NullableSearchCertificatesRestRequestV2) Set

func (*NullableSearchCertificatesRestRequestV2) UnmarshalJSON

func (v *NullableSearchCertificatesRestRequestV2) UnmarshalJSON(src []byte) error

func (*NullableSearchCertificatesRestRequestV2) Unset

type NullableSearchCertificatesRestResponse

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

func (NullableSearchCertificatesRestResponse) Get

func (NullableSearchCertificatesRestResponse) IsSet

func (NullableSearchCertificatesRestResponse) MarshalJSON

func (v NullableSearchCertificatesRestResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchCertificatesRestResponse) Set

func (*NullableSearchCertificatesRestResponse) UnmarshalJSON

func (v *NullableSearchCertificatesRestResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchCertificatesRestResponse) Unset

type NullableSearchCertificatesRestResponseV2

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

func (NullableSearchCertificatesRestResponseV2) Get

func (NullableSearchCertificatesRestResponseV2) IsSet

func (NullableSearchCertificatesRestResponseV2) MarshalJSON

func (*NullableSearchCertificatesRestResponseV2) Set

func (*NullableSearchCertificatesRestResponseV2) UnmarshalJSON

func (v *NullableSearchCertificatesRestResponseV2) UnmarshalJSON(src []byte) error

func (*NullableSearchCertificatesRestResponseV2) Unset

type NullableSearchEndEntitiesRestRequest

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

func (NullableSearchEndEntitiesRestRequest) Get

func (NullableSearchEndEntitiesRestRequest) IsSet

func (NullableSearchEndEntitiesRestRequest) MarshalJSON

func (v NullableSearchEndEntitiesRestRequest) MarshalJSON() ([]byte, error)

func (*NullableSearchEndEntitiesRestRequest) Set

func (*NullableSearchEndEntitiesRestRequest) UnmarshalJSON

func (v *NullableSearchEndEntitiesRestRequest) UnmarshalJSON(src []byte) error

func (*NullableSearchEndEntitiesRestRequest) Unset

type NullableSearchEndEntitiesRestRequestV2

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

func (NullableSearchEndEntitiesRestRequestV2) Get

func (NullableSearchEndEntitiesRestRequestV2) IsSet

func (NullableSearchEndEntitiesRestRequestV2) MarshalJSON

func (v NullableSearchEndEntitiesRestRequestV2) MarshalJSON() ([]byte, error)

func (*NullableSearchEndEntitiesRestRequestV2) Set

func (*NullableSearchEndEntitiesRestRequestV2) UnmarshalJSON

func (v *NullableSearchEndEntitiesRestRequestV2) UnmarshalJSON(src []byte) error

func (*NullableSearchEndEntitiesRestRequestV2) Unset

type NullableSearchEndEntitiesRestResponse

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

func (NullableSearchEndEntitiesRestResponse) Get

func (NullableSearchEndEntitiesRestResponse) IsSet

func (NullableSearchEndEntitiesRestResponse) MarshalJSON

func (v NullableSearchEndEntitiesRestResponse) MarshalJSON() ([]byte, error)

func (*NullableSearchEndEntitiesRestResponse) Set

func (*NullableSearchEndEntitiesRestResponse) UnmarshalJSON

func (v *NullableSearchEndEntitiesRestResponse) UnmarshalJSON(src []byte) error

func (*NullableSearchEndEntitiesRestResponse) Unset

type NullableSearchEndEntitiesSortRestRequest

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

func (NullableSearchEndEntitiesSortRestRequest) Get

func (NullableSearchEndEntitiesSortRestRequest) IsSet

func (NullableSearchEndEntitiesSortRestRequest) MarshalJSON

func (*NullableSearchEndEntitiesSortRestRequest) Set

func (*NullableSearchEndEntitiesSortRestRequest) UnmarshalJSON

func (v *NullableSearchEndEntitiesSortRestRequest) UnmarshalJSON(src []byte) error

func (*NullableSearchEndEntitiesSortRestRequest) Unset

type NullableSearchEndEntityCriteriaRestRequest

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

func (NullableSearchEndEntityCriteriaRestRequest) Get

func (NullableSearchEndEntityCriteriaRestRequest) IsSet

func (NullableSearchEndEntityCriteriaRestRequest) MarshalJSON

func (*NullableSearchEndEntityCriteriaRestRequest) Set

func (*NullableSearchEndEntityCriteriaRestRequest) UnmarshalJSON

func (v *NullableSearchEndEntityCriteriaRestRequest) UnmarshalJSON(src []byte) error

func (*NullableSearchEndEntityCriteriaRestRequest) Unset

type NullableSetEndEntityStatusRestRequest

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

func (NullableSetEndEntityStatusRestRequest) Get

func (NullableSetEndEntityStatusRestRequest) IsSet

func (NullableSetEndEntityStatusRestRequest) MarshalJSON

func (v NullableSetEndEntityStatusRestRequest) MarshalJSON() ([]byte, error)

func (*NullableSetEndEntityStatusRestRequest) Set

func (*NullableSetEndEntityStatusRestRequest) UnmarshalJSON

func (v *NullableSetEndEntityStatusRestRequest) UnmarshalJSON(src []byte) error

func (*NullableSetEndEntityStatusRestRequest) Unset

type NullableSshPublicKeyRestResponse

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

func (NullableSshPublicKeyRestResponse) Get

func (NullableSshPublicKeyRestResponse) IsSet

func (NullableSshPublicKeyRestResponse) MarshalJSON

func (v NullableSshPublicKeyRestResponse) MarshalJSON() ([]byte, error)

func (*NullableSshPublicKeyRestResponse) Set

func (*NullableSshPublicKeyRestResponse) UnmarshalJSON

func (v *NullableSshPublicKeyRestResponse) UnmarshalJSON(src []byte) error

func (*NullableSshPublicKeyRestResponse) Unset

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type Pagination

type Pagination struct {
	// Number of results per page
	PageSize *int32 `json:"page_size,omitempty"`
	// Current page number
	CurrentPage          *int32 `json:"current_page,omitempty"`
	AdditionalProperties map[string]interface{}
}

Pagination struct for Pagination

func NewPagination

func NewPagination() *Pagination

NewPagination instantiates a new Pagination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPaginationWithDefaults

func NewPaginationWithDefaults() *Pagination

NewPaginationWithDefaults instantiates a new Pagination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Pagination) GetCurrentPage

func (o *Pagination) GetCurrentPage() int32

GetCurrentPage returns the CurrentPage field value if set, zero value otherwise.

func (*Pagination) GetCurrentPageOk

func (o *Pagination) GetCurrentPageOk() (*int32, bool)

GetCurrentPageOk returns a tuple with the CurrentPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pagination) GetPageSize

func (o *Pagination) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*Pagination) GetPageSizeOk

func (o *Pagination) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pagination) HasCurrentPage

func (o *Pagination) HasCurrentPage() bool

HasCurrentPage returns a boolean if a field has been set.

func (*Pagination) HasPageSize

func (o *Pagination) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (Pagination) MarshalJSON

func (o Pagination) MarshalJSON() ([]byte, error)

func (*Pagination) SetCurrentPage

func (o *Pagination) SetCurrentPage(v int32)

SetCurrentPage gets a reference to the given int32 and assigns it to the CurrentPage field.

func (*Pagination) SetPageSize

func (o *Pagination) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (Pagination) ToMap

func (o Pagination) ToMap() (map[string]interface{}, error)

func (*Pagination) UnmarshalJSON

func (o *Pagination) UnmarshalJSON(bytes []byte) (err error)

type PaginationRestResponseComponent

type PaginationRestResponseComponent struct {
	MoreResults          *bool  `json:"more_results,omitempty"`
	NextOffset           *int32 `json:"next_offset,omitempty"`
	NumberOfResults      *int32 `json:"number_of_results,omitempty"`
	AdditionalProperties map[string]interface{}
}

PaginationRestResponseComponent struct for PaginationRestResponseComponent

func NewPaginationRestResponseComponent

func NewPaginationRestResponseComponent() *PaginationRestResponseComponent

NewPaginationRestResponseComponent instantiates a new PaginationRestResponseComponent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPaginationRestResponseComponentWithDefaults

func NewPaginationRestResponseComponentWithDefaults() *PaginationRestResponseComponent

NewPaginationRestResponseComponentWithDefaults instantiates a new PaginationRestResponseComponent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PaginationRestResponseComponent) GetMoreResults

func (o *PaginationRestResponseComponent) GetMoreResults() bool

GetMoreResults returns the MoreResults field value if set, zero value otherwise.

func (*PaginationRestResponseComponent) GetMoreResultsOk

func (o *PaginationRestResponseComponent) GetMoreResultsOk() (*bool, bool)

GetMoreResultsOk returns a tuple with the MoreResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationRestResponseComponent) GetNextOffset

func (o *PaginationRestResponseComponent) GetNextOffset() int32

GetNextOffset returns the NextOffset field value if set, zero value otherwise.

func (*PaginationRestResponseComponent) GetNextOffsetOk

func (o *PaginationRestResponseComponent) GetNextOffsetOk() (*int32, bool)

GetNextOffsetOk returns a tuple with the NextOffset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationRestResponseComponent) GetNumberOfResults

func (o *PaginationRestResponseComponent) GetNumberOfResults() int32

GetNumberOfResults returns the NumberOfResults field value if set, zero value otherwise.

func (*PaginationRestResponseComponent) GetNumberOfResultsOk

func (o *PaginationRestResponseComponent) GetNumberOfResultsOk() (*int32, bool)

GetNumberOfResultsOk returns a tuple with the NumberOfResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationRestResponseComponent) HasMoreResults

func (o *PaginationRestResponseComponent) HasMoreResults() bool

HasMoreResults returns a boolean if a field has been set.

func (*PaginationRestResponseComponent) HasNextOffset

func (o *PaginationRestResponseComponent) HasNextOffset() bool

HasNextOffset returns a boolean if a field has been set.

func (*PaginationRestResponseComponent) HasNumberOfResults

func (o *PaginationRestResponseComponent) HasNumberOfResults() bool

HasNumberOfResults returns a boolean if a field has been set.

func (PaginationRestResponseComponent) MarshalJSON

func (o PaginationRestResponseComponent) MarshalJSON() ([]byte, error)

func (*PaginationRestResponseComponent) SetMoreResults

func (o *PaginationRestResponseComponent) SetMoreResults(v bool)

SetMoreResults gets a reference to the given bool and assigns it to the MoreResults field.

func (*PaginationRestResponseComponent) SetNextOffset

func (o *PaginationRestResponseComponent) SetNextOffset(v int32)

SetNextOffset gets a reference to the given int32 and assigns it to the NextOffset field.

func (*PaginationRestResponseComponent) SetNumberOfResults

func (o *PaginationRestResponseComponent) SetNumberOfResults(v int32)

SetNumberOfResults gets a reference to the given int32 and assigns it to the NumberOfResults field.

func (PaginationRestResponseComponent) ToMap

func (o PaginationRestResponseComponent) ToMap() (map[string]interface{}, error)

func (*PaginationRestResponseComponent) UnmarshalJSON

func (o *PaginationRestResponseComponent) UnmarshalJSON(bytes []byte) (err error)

type PaginationSummary

type PaginationSummary struct {
	PageSize             *int32 `json:"page_size,omitempty"`
	CurrentPage          *int32 `json:"current_page,omitempty"`
	TotalCerts           *int64 `json:"total_certs,omitempty"`
	AdditionalProperties map[string]interface{}
}

PaginationSummary struct for PaginationSummary

func NewPaginationSummary

func NewPaginationSummary() *PaginationSummary

NewPaginationSummary instantiates a new PaginationSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPaginationSummaryWithDefaults

func NewPaginationSummaryWithDefaults() *PaginationSummary

NewPaginationSummaryWithDefaults instantiates a new PaginationSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PaginationSummary) GetCurrentPage

func (o *PaginationSummary) GetCurrentPage() int32

GetCurrentPage returns the CurrentPage field value if set, zero value otherwise.

func (*PaginationSummary) GetCurrentPageOk

func (o *PaginationSummary) GetCurrentPageOk() (*int32, bool)

GetCurrentPageOk returns a tuple with the CurrentPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationSummary) GetPageSize

func (o *PaginationSummary) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*PaginationSummary) GetPageSizeOk

func (o *PaginationSummary) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationSummary) GetTotalCerts

func (o *PaginationSummary) GetTotalCerts() int64

GetTotalCerts returns the TotalCerts field value if set, zero value otherwise.

func (*PaginationSummary) GetTotalCertsOk

func (o *PaginationSummary) GetTotalCertsOk() (*int64, bool)

GetTotalCertsOk returns a tuple with the TotalCerts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaginationSummary) HasCurrentPage

func (o *PaginationSummary) HasCurrentPage() bool

HasCurrentPage returns a boolean if a field has been set.

func (*PaginationSummary) HasPageSize

func (o *PaginationSummary) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*PaginationSummary) HasTotalCerts

func (o *PaginationSummary) HasTotalCerts() bool

HasTotalCerts returns a boolean if a field has been set.

func (PaginationSummary) MarshalJSON

func (o PaginationSummary) MarshalJSON() ([]byte, error)

func (*PaginationSummary) SetCurrentPage

func (o *PaginationSummary) SetCurrentPage(v int32)

SetCurrentPage gets a reference to the given int32 and assigns it to the CurrentPage field.

func (*PaginationSummary) SetPageSize

func (o *PaginationSummary) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*PaginationSummary) SetTotalCerts

func (o *PaginationSummary) SetTotalCerts(v int64)

SetTotalCerts gets a reference to the given int64 and assigns it to the TotalCerts field.

func (PaginationSummary) ToMap

func (o PaginationSummary) ToMap() (map[string]interface{}, error)

func (*PaginationSummary) UnmarshalJSON

func (o *PaginationSummary) UnmarshalJSON(bytes []byte) (err error)

type RestResourceStatusRestResponse

type RestResourceStatusRestResponse struct {
	// Status
	Status *string `json:"status,omitempty"`
	// Resource version
	Version *string `json:"version,omitempty"`
	// Application revision
	Revision             *string `json:"revision,omitempty"`
	AdditionalProperties map[string]interface{}
}

RestResourceStatusRestResponse struct for RestResourceStatusRestResponse

func NewRestResourceStatusRestResponse

func NewRestResourceStatusRestResponse() *RestResourceStatusRestResponse

NewRestResourceStatusRestResponse instantiates a new RestResourceStatusRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestResourceStatusRestResponseWithDefaults

func NewRestResourceStatusRestResponseWithDefaults() *RestResourceStatusRestResponse

NewRestResourceStatusRestResponseWithDefaults instantiates a new RestResourceStatusRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestResourceStatusRestResponse) GetRevision

func (o *RestResourceStatusRestResponse) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*RestResourceStatusRestResponse) GetRevisionOk

func (o *RestResourceStatusRestResponse) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestResourceStatusRestResponse) GetStatus

func (o *RestResourceStatusRestResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*RestResourceStatusRestResponse) GetStatusOk

func (o *RestResourceStatusRestResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestResourceStatusRestResponse) GetVersion

func (o *RestResourceStatusRestResponse) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestResourceStatusRestResponse) GetVersionOk

func (o *RestResourceStatusRestResponse) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestResourceStatusRestResponse) HasRevision

func (o *RestResourceStatusRestResponse) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*RestResourceStatusRestResponse) HasStatus

func (o *RestResourceStatusRestResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*RestResourceStatusRestResponse) HasVersion

func (o *RestResourceStatusRestResponse) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestResourceStatusRestResponse) MarshalJSON

func (o RestResourceStatusRestResponse) MarshalJSON() ([]byte, error)

func (*RestResourceStatusRestResponse) SetRevision

func (o *RestResourceStatusRestResponse) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*RestResourceStatusRestResponse) SetStatus

func (o *RestResourceStatusRestResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*RestResourceStatusRestResponse) SetVersion

func (o *RestResourceStatusRestResponse) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (RestResourceStatusRestResponse) ToMap

func (o RestResourceStatusRestResponse) ToMap() (map[string]interface{}, error)

func (*RestResourceStatusRestResponse) UnmarshalJSON

func (o *RestResourceStatusRestResponse) UnmarshalJSON(bytes []byte) (err error)

type RevokeStatusRestResponse

type RevokeStatusRestResponse struct {
	// Issuer Distinguished Name
	IssuerDn *string `json:"issuer_dn,omitempty"`
	// Hex Serial Number
	SerialNumber *string `json:"serial_number,omitempty"`
	// RFC5280 revokation reason
	RevocationReason *string `json:"revocation_reason,omitempty"`
	// Revokation date
	RevocationDate *time.Time `json:"revocation_date,omitempty"`
	// Message
	Message              *string `json:"message,omitempty"`
	Revoked              *bool   `json:"revoked,omitempty"`
	AdditionalProperties map[string]interface{}
}

RevokeStatusRestResponse struct for RevokeStatusRestResponse

func NewRevokeStatusRestResponse

func NewRevokeStatusRestResponse() *RevokeStatusRestResponse

NewRevokeStatusRestResponse instantiates a new RevokeStatusRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRevokeStatusRestResponseWithDefaults

func NewRevokeStatusRestResponseWithDefaults() *RevokeStatusRestResponse

NewRevokeStatusRestResponseWithDefaults instantiates a new RevokeStatusRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RevokeStatusRestResponse) GetIssuerDn

func (o *RevokeStatusRestResponse) GetIssuerDn() string

GetIssuerDn returns the IssuerDn field value if set, zero value otherwise.

func (*RevokeStatusRestResponse) GetIssuerDnOk

func (o *RevokeStatusRestResponse) GetIssuerDnOk() (*string, bool)

GetIssuerDnOk returns a tuple with the IssuerDn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RevokeStatusRestResponse) GetMessage

func (o *RevokeStatusRestResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RevokeStatusRestResponse) GetMessageOk

func (o *RevokeStatusRestResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RevokeStatusRestResponse) GetRevocationDate

func (o *RevokeStatusRestResponse) GetRevocationDate() time.Time

GetRevocationDate returns the RevocationDate field value if set, zero value otherwise.

func (*RevokeStatusRestResponse) GetRevocationDateOk

func (o *RevokeStatusRestResponse) GetRevocationDateOk() (*time.Time, bool)

GetRevocationDateOk returns a tuple with the RevocationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RevokeStatusRestResponse) GetRevocationReason

func (o *RevokeStatusRestResponse) GetRevocationReason() string

GetRevocationReason returns the RevocationReason field value if set, zero value otherwise.

func (*RevokeStatusRestResponse) GetRevocationReasonOk

func (o *RevokeStatusRestResponse) GetRevocationReasonOk() (*string, bool)

GetRevocationReasonOk returns a tuple with the RevocationReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RevokeStatusRestResponse) GetRevoked

func (o *RevokeStatusRestResponse) GetRevoked() bool

GetRevoked returns the Revoked field value if set, zero value otherwise.

func (*RevokeStatusRestResponse) GetRevokedOk

func (o *RevokeStatusRestResponse) GetRevokedOk() (*bool, bool)

GetRevokedOk returns a tuple with the Revoked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RevokeStatusRestResponse) GetSerialNumber

func (o *RevokeStatusRestResponse) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*RevokeStatusRestResponse) GetSerialNumberOk

func (o *RevokeStatusRestResponse) GetSerialNumberOk() (*string, bool)

GetSerialNumberOk returns a tuple with the SerialNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RevokeStatusRestResponse) HasIssuerDn

func (o *RevokeStatusRestResponse) HasIssuerDn() bool

HasIssuerDn returns a boolean if a field has been set.

func (*RevokeStatusRestResponse) HasMessage

func (o *RevokeStatusRestResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RevokeStatusRestResponse) HasRevocationDate

func (o *RevokeStatusRestResponse) HasRevocationDate() bool

HasRevocationDate returns a boolean if a field has been set.

func (*RevokeStatusRestResponse) HasRevocationReason

func (o *RevokeStatusRestResponse) HasRevocationReason() bool

HasRevocationReason returns a boolean if a field has been set.

func (*RevokeStatusRestResponse) HasRevoked

func (o *RevokeStatusRestResponse) HasRevoked() bool

HasRevoked returns a boolean if a field has been set.

func (*RevokeStatusRestResponse) HasSerialNumber

func (o *RevokeStatusRestResponse) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (RevokeStatusRestResponse) MarshalJSON

func (o RevokeStatusRestResponse) MarshalJSON() ([]byte, error)

func (*RevokeStatusRestResponse) SetIssuerDn

func (o *RevokeStatusRestResponse) SetIssuerDn(v string)

SetIssuerDn gets a reference to the given string and assigns it to the IssuerDn field.

func (*RevokeStatusRestResponse) SetMessage

func (o *RevokeStatusRestResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RevokeStatusRestResponse) SetRevocationDate

func (o *RevokeStatusRestResponse) SetRevocationDate(v time.Time)

SetRevocationDate gets a reference to the given time.Time and assigns it to the RevocationDate field.

func (*RevokeStatusRestResponse) SetRevocationReason

func (o *RevokeStatusRestResponse) SetRevocationReason(v string)

SetRevocationReason gets a reference to the given string and assigns it to the RevocationReason field.

func (*RevokeStatusRestResponse) SetRevoked

func (o *RevokeStatusRestResponse) SetRevoked(v bool)

SetRevoked gets a reference to the given bool and assigns it to the Revoked field.

func (*RevokeStatusRestResponse) SetSerialNumber

func (o *RevokeStatusRestResponse) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (RevokeStatusRestResponse) ToMap

func (o RevokeStatusRestResponse) ToMap() (map[string]interface{}, error)

func (*RevokeStatusRestResponse) UnmarshalJSON

func (o *RevokeStatusRestResponse) UnmarshalJSON(bytes []byte) (err error)

type SearchCertificateCriteriaRestRequest

type SearchCertificateCriteriaRestRequest struct {
	// A search property
	Property *string `json:"property,omitempty"`
	// A search value. This could be sting value, ISO 8601 Date string, an appropriate string name of End Entity Profile or Certificate Profile or CA
	Value *string `json:"value,omitempty"`
	// An operation for property on inserted value. 'EQUAL' for string, 'LIKE' for string value ('QUERY'), 'BEFORE' or 'AFTER' for date values
	Operation            *string `json:"operation,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchCertificateCriteriaRestRequest Use one of allowed values as property(see enum values below). QUERY - multiplicity [0, 1] - is used to search by SubjectDn, SubjectAn, Username or SerialNr; Available STATUS - multiplicity [0, 12] - values are: CERT_ACTIVE, CERT_REVOKED, REVOCATION_REASON_UNSPECIFIED, REVOCATION_REASON_KEYCOMPROMISE, REVOCATION_REASON_CACOMPROMISE, REVOCATION_REASON_AFFILIATIONCHANGED, REVOCATION_REASON_SUPERSEDED, REVOCATION_REASON_CESSATIONOFOPERATION, REVOCATION_REASON_CERTIFICATEHOLD, REVOCATION_REASON_REMOVEFROMCRL, REVOCATION_REASON_PRIVILEGESWITHDRAWN, REVOCATION_REASON_AACOMPROMISE; END_ENTITY_PROFILE, CERTIFICATE_PROFILE, CA - multiplicity [0, *) - exact match of the name for referencing End Entity Profile, Certificate Profile or CA; ISSUED_DATE 'BEFORE' - multiplicity [0, 1] - ISO 8601 Date string; ISSUED_DATE 'AFTER' - multiplicity [0, 1] - ISO 8601 Date string; EXPIRE_DATE 'BEFORE' - multiplicity [0, 1] - ISO 8601 Date string; EXPIRE_DATE 'AFTER' - multiplicity [0, 1] - ISO 8601 Date string; REVOCATION_DATE 'BEFORE' - multiplicity [0, 1] - ISO 8601 Date string; REVOCATION_DATE 'AFTER' - multiplicity [0, 1] - ISO 8601 Date string. UPDATE_TIME 'BEFORE' - multiplicity [0, 1] - ISO 8601 Date string; UPDATE_TIME 'AFTER' - multiplicity [0, 1] - ISO 8601 Date string;

func NewSearchCertificateCriteriaRestRequest

func NewSearchCertificateCriteriaRestRequest() *SearchCertificateCriteriaRestRequest

NewSearchCertificateCriteriaRestRequest instantiates a new SearchCertificateCriteriaRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchCertificateCriteriaRestRequestWithDefaults

func NewSearchCertificateCriteriaRestRequestWithDefaults() *SearchCertificateCriteriaRestRequest

NewSearchCertificateCriteriaRestRequestWithDefaults instantiates a new SearchCertificateCriteriaRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchCertificateCriteriaRestRequest) GetOperation

func (o *SearchCertificateCriteriaRestRequest) GetOperation() string

GetOperation returns the Operation field value if set, zero value otherwise.

func (*SearchCertificateCriteriaRestRequest) GetOperationOk

func (o *SearchCertificateCriteriaRestRequest) GetOperationOk() (*string, bool)

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificateCriteriaRestRequest) GetProperty

GetProperty returns the Property field value if set, zero value otherwise.

func (*SearchCertificateCriteriaRestRequest) GetPropertyOk

func (o *SearchCertificateCriteriaRestRequest) GetPropertyOk() (*string, bool)

GetPropertyOk returns a tuple with the Property field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificateCriteriaRestRequest) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*SearchCertificateCriteriaRestRequest) GetValueOk

func (o *SearchCertificateCriteriaRestRequest) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificateCriteriaRestRequest) HasOperation

func (o *SearchCertificateCriteriaRestRequest) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*SearchCertificateCriteriaRestRequest) HasProperty

func (o *SearchCertificateCriteriaRestRequest) HasProperty() bool

HasProperty returns a boolean if a field has been set.

func (*SearchCertificateCriteriaRestRequest) HasValue

HasValue returns a boolean if a field has been set.

func (SearchCertificateCriteriaRestRequest) MarshalJSON

func (o SearchCertificateCriteriaRestRequest) MarshalJSON() ([]byte, error)

func (*SearchCertificateCriteriaRestRequest) SetOperation

func (o *SearchCertificateCriteriaRestRequest) SetOperation(v string)

SetOperation gets a reference to the given string and assigns it to the Operation field.

func (*SearchCertificateCriteriaRestRequest) SetProperty

func (o *SearchCertificateCriteriaRestRequest) SetProperty(v string)

SetProperty gets a reference to the given string and assigns it to the Property field.

func (*SearchCertificateCriteriaRestRequest) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (SearchCertificateCriteriaRestRequest) ToMap

func (o SearchCertificateCriteriaRestRequest) ToMap() (map[string]interface{}, error)

func (*SearchCertificateCriteriaRestRequest) UnmarshalJSON

func (o *SearchCertificateCriteriaRestRequest) UnmarshalJSON(bytes []byte) (err error)

type SearchCertificateSortRestRequest

type SearchCertificateSortRestRequest struct {
	// Sorted by
	Property *string `json:"property,omitempty"`
	// Sort ascending or descending. 'ASC' for ascending, 'DESC' for descending.
	Operation            *string `json:"operation,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchCertificateSortRestRequest Use one of allowed values as property and operation. Available propertiesUSERNAME ISSUER_DN SUBJECT_DN EXTERNAL_ACCOUNT_BINDING_ID END_ENTITY_PROFILE CERTIFICATE_PROFILE STATUS TAG TYPE UPDATE_TIME ISSUED_DATE EXPIRE_DATE REVOCATION_DATE Available operationsASC DESC

func NewSearchCertificateSortRestRequest

func NewSearchCertificateSortRestRequest() *SearchCertificateSortRestRequest

NewSearchCertificateSortRestRequest instantiates a new SearchCertificateSortRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchCertificateSortRestRequestWithDefaults

func NewSearchCertificateSortRestRequestWithDefaults() *SearchCertificateSortRestRequest

NewSearchCertificateSortRestRequestWithDefaults instantiates a new SearchCertificateSortRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchCertificateSortRestRequest) GetOperation

func (o *SearchCertificateSortRestRequest) GetOperation() string

GetOperation returns the Operation field value if set, zero value otherwise.

func (*SearchCertificateSortRestRequest) GetOperationOk

func (o *SearchCertificateSortRestRequest) GetOperationOk() (*string, bool)

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificateSortRestRequest) GetProperty

func (o *SearchCertificateSortRestRequest) GetProperty() string

GetProperty returns the Property field value if set, zero value otherwise.

func (*SearchCertificateSortRestRequest) GetPropertyOk

func (o *SearchCertificateSortRestRequest) GetPropertyOk() (*string, bool)

GetPropertyOk returns a tuple with the Property field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificateSortRestRequest) HasOperation

func (o *SearchCertificateSortRestRequest) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*SearchCertificateSortRestRequest) HasProperty

func (o *SearchCertificateSortRestRequest) HasProperty() bool

HasProperty returns a boolean if a field has been set.

func (SearchCertificateSortRestRequest) MarshalJSON

func (o SearchCertificateSortRestRequest) MarshalJSON() ([]byte, error)

func (*SearchCertificateSortRestRequest) SetOperation

func (o *SearchCertificateSortRestRequest) SetOperation(v string)

SetOperation gets a reference to the given string and assigns it to the Operation field.

func (*SearchCertificateSortRestRequest) SetProperty

func (o *SearchCertificateSortRestRequest) SetProperty(v string)

SetProperty gets a reference to the given string and assigns it to the Property field.

func (SearchCertificateSortRestRequest) ToMap

func (o SearchCertificateSortRestRequest) ToMap() (map[string]interface{}, error)

func (*SearchCertificateSortRestRequest) UnmarshalJSON

func (o *SearchCertificateSortRestRequest) UnmarshalJSON(bytes []byte) (err error)

type SearchCertificatesRestRequest

type SearchCertificatesRestRequest struct {
	// Maximum number of results
	MaxNumberOfResults *int32 `json:"max_number_of_results,omitempty"`
	// A List of search criteria.
	Criteria             []SearchCertificateCriteriaRestRequest `json:"criteria,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchCertificatesRestRequest struct for SearchCertificatesRestRequest

func NewSearchCertificatesRestRequest

func NewSearchCertificatesRestRequest() *SearchCertificatesRestRequest

NewSearchCertificatesRestRequest instantiates a new SearchCertificatesRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchCertificatesRestRequestWithDefaults

func NewSearchCertificatesRestRequestWithDefaults() *SearchCertificatesRestRequest

NewSearchCertificatesRestRequestWithDefaults instantiates a new SearchCertificatesRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchCertificatesRestRequest) GetCriteria

GetCriteria returns the Criteria field value if set, zero value otherwise.

func (*SearchCertificatesRestRequest) GetCriteriaOk

GetCriteriaOk returns a tuple with the Criteria field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificatesRestRequest) GetMaxNumberOfResults

func (o *SearchCertificatesRestRequest) GetMaxNumberOfResults() int32

GetMaxNumberOfResults returns the MaxNumberOfResults field value if set, zero value otherwise.

func (*SearchCertificatesRestRequest) GetMaxNumberOfResultsOk

func (o *SearchCertificatesRestRequest) GetMaxNumberOfResultsOk() (*int32, bool)

GetMaxNumberOfResultsOk returns a tuple with the MaxNumberOfResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificatesRestRequest) HasCriteria

func (o *SearchCertificatesRestRequest) HasCriteria() bool

HasCriteria returns a boolean if a field has been set.

func (*SearchCertificatesRestRequest) HasMaxNumberOfResults

func (o *SearchCertificatesRestRequest) HasMaxNumberOfResults() bool

HasMaxNumberOfResults returns a boolean if a field has been set.

func (SearchCertificatesRestRequest) MarshalJSON

func (o SearchCertificatesRestRequest) MarshalJSON() ([]byte, error)

func (*SearchCertificatesRestRequest) SetCriteria

SetCriteria gets a reference to the given []SearchCertificateCriteriaRestRequest and assigns it to the Criteria field.

func (*SearchCertificatesRestRequest) SetMaxNumberOfResults

func (o *SearchCertificatesRestRequest) SetMaxNumberOfResults(v int32)

SetMaxNumberOfResults gets a reference to the given int32 and assigns it to the MaxNumberOfResults field.

func (SearchCertificatesRestRequest) ToMap

func (o SearchCertificatesRestRequest) ToMap() (map[string]interface{}, error)

func (*SearchCertificatesRestRequest) UnmarshalJSON

func (o *SearchCertificatesRestRequest) UnmarshalJSON(bytes []byte) (err error)

type SearchCertificatesRestRequestV2

type SearchCertificatesRestRequestV2 struct {
	Pagination *Pagination                       `json:"pagination,omitempty"`
	Sort       *SearchCertificateSortRestRequest `json:"sort,omitempty"`
	// A List of search criteria.
	Criteria             []SearchCertificateCriteriaRestRequest `json:"criteria,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchCertificatesRestRequestV2 struct for SearchCertificatesRestRequestV2

func NewSearchCertificatesRestRequestV2

func NewSearchCertificatesRestRequestV2() *SearchCertificatesRestRequestV2

NewSearchCertificatesRestRequestV2 instantiates a new SearchCertificatesRestRequestV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchCertificatesRestRequestV2WithDefaults

func NewSearchCertificatesRestRequestV2WithDefaults() *SearchCertificatesRestRequestV2

NewSearchCertificatesRestRequestV2WithDefaults instantiates a new SearchCertificatesRestRequestV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchCertificatesRestRequestV2) GetCriteria

GetCriteria returns the Criteria field value if set, zero value otherwise.

func (*SearchCertificatesRestRequestV2) GetCriteriaOk

GetCriteriaOk returns a tuple with the Criteria field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificatesRestRequestV2) GetPagination

func (o *SearchCertificatesRestRequestV2) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*SearchCertificatesRestRequestV2) GetPaginationOk

func (o *SearchCertificatesRestRequestV2) GetPaginationOk() (*Pagination, bool)

GetPaginationOk returns a tuple with the Pagination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificatesRestRequestV2) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*SearchCertificatesRestRequestV2) GetSortOk

GetSortOk returns a tuple with the Sort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificatesRestRequestV2) HasCriteria

func (o *SearchCertificatesRestRequestV2) HasCriteria() bool

HasCriteria returns a boolean if a field has been set.

func (*SearchCertificatesRestRequestV2) HasPagination

func (o *SearchCertificatesRestRequestV2) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (*SearchCertificatesRestRequestV2) HasSort

HasSort returns a boolean if a field has been set.

func (SearchCertificatesRestRequestV2) MarshalJSON

func (o SearchCertificatesRestRequestV2) MarshalJSON() ([]byte, error)

func (*SearchCertificatesRestRequestV2) SetCriteria

SetCriteria gets a reference to the given []SearchCertificateCriteriaRestRequest and assigns it to the Criteria field.

func (*SearchCertificatesRestRequestV2) SetPagination

func (o *SearchCertificatesRestRequestV2) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

func (*SearchCertificatesRestRequestV2) SetSort

SetSort gets a reference to the given SearchCertificateSortRestRequest and assigns it to the Sort field.

func (SearchCertificatesRestRequestV2) ToMap

func (o SearchCertificatesRestRequestV2) ToMap() (map[string]interface{}, error)

func (*SearchCertificatesRestRequestV2) UnmarshalJSON

func (o *SearchCertificatesRestRequestV2) UnmarshalJSON(bytes []byte) (err error)

type SearchCertificatesRestResponse

type SearchCertificatesRestResponse struct {
	Certificates         []CertificateRestResponse `json:"certificates,omitempty"`
	MoreResults          *bool                     `json:"more_results,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchCertificatesRestResponse struct for SearchCertificatesRestResponse

func NewSearchCertificatesRestResponse

func NewSearchCertificatesRestResponse() *SearchCertificatesRestResponse

NewSearchCertificatesRestResponse instantiates a new SearchCertificatesRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchCertificatesRestResponseWithDefaults

func NewSearchCertificatesRestResponseWithDefaults() *SearchCertificatesRestResponse

NewSearchCertificatesRestResponseWithDefaults instantiates a new SearchCertificatesRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchCertificatesRestResponse) GetCertificates

GetCertificates returns the Certificates field value if set, zero value otherwise.

func (*SearchCertificatesRestResponse) GetCertificatesOk

func (o *SearchCertificatesRestResponse) GetCertificatesOk() ([]CertificateRestResponse, bool)

GetCertificatesOk returns a tuple with the Certificates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificatesRestResponse) GetMoreResults

func (o *SearchCertificatesRestResponse) GetMoreResults() bool

GetMoreResults returns the MoreResults field value if set, zero value otherwise.

func (*SearchCertificatesRestResponse) GetMoreResultsOk

func (o *SearchCertificatesRestResponse) GetMoreResultsOk() (*bool, bool)

GetMoreResultsOk returns a tuple with the MoreResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificatesRestResponse) HasCertificates

func (o *SearchCertificatesRestResponse) HasCertificates() bool

HasCertificates returns a boolean if a field has been set.

func (*SearchCertificatesRestResponse) HasMoreResults

func (o *SearchCertificatesRestResponse) HasMoreResults() bool

HasMoreResults returns a boolean if a field has been set.

func (SearchCertificatesRestResponse) MarshalJSON

func (o SearchCertificatesRestResponse) MarshalJSON() ([]byte, error)

func (*SearchCertificatesRestResponse) SetCertificates

SetCertificates gets a reference to the given []CertificateRestResponse and assigns it to the Certificates field.

func (*SearchCertificatesRestResponse) SetMoreResults

func (o *SearchCertificatesRestResponse) SetMoreResults(v bool)

SetMoreResults gets a reference to the given bool and assigns it to the MoreResults field.

func (SearchCertificatesRestResponse) ToMap

func (o SearchCertificatesRestResponse) ToMap() (map[string]interface{}, error)

func (*SearchCertificatesRestResponse) UnmarshalJSON

func (o *SearchCertificatesRestResponse) UnmarshalJSON(bytes []byte) (err error)

type SearchCertificatesRestResponseV2

type SearchCertificatesRestResponseV2 struct {
	Certificates         []CertificateRestResponseV2 `json:"certificates,omitempty"`
	PaginationSummary    *PaginationSummary          `json:"pagination_summary,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchCertificatesRestResponseV2 struct for SearchCertificatesRestResponseV2

func NewSearchCertificatesRestResponseV2

func NewSearchCertificatesRestResponseV2() *SearchCertificatesRestResponseV2

NewSearchCertificatesRestResponseV2 instantiates a new SearchCertificatesRestResponseV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchCertificatesRestResponseV2WithDefaults

func NewSearchCertificatesRestResponseV2WithDefaults() *SearchCertificatesRestResponseV2

NewSearchCertificatesRestResponseV2WithDefaults instantiates a new SearchCertificatesRestResponseV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchCertificatesRestResponseV2) GetCertificates

GetCertificates returns the Certificates field value if set, zero value otherwise.

func (*SearchCertificatesRestResponseV2) GetCertificatesOk

GetCertificatesOk returns a tuple with the Certificates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificatesRestResponseV2) GetPaginationSummary

func (o *SearchCertificatesRestResponseV2) GetPaginationSummary() PaginationSummary

GetPaginationSummary returns the PaginationSummary field value if set, zero value otherwise.

func (*SearchCertificatesRestResponseV2) GetPaginationSummaryOk

func (o *SearchCertificatesRestResponseV2) GetPaginationSummaryOk() (*PaginationSummary, bool)

GetPaginationSummaryOk returns a tuple with the PaginationSummary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchCertificatesRestResponseV2) HasCertificates

func (o *SearchCertificatesRestResponseV2) HasCertificates() bool

HasCertificates returns a boolean if a field has been set.

func (*SearchCertificatesRestResponseV2) HasPaginationSummary

func (o *SearchCertificatesRestResponseV2) HasPaginationSummary() bool

HasPaginationSummary returns a boolean if a field has been set.

func (SearchCertificatesRestResponseV2) MarshalJSON

func (o SearchCertificatesRestResponseV2) MarshalJSON() ([]byte, error)

func (*SearchCertificatesRestResponseV2) SetCertificates

SetCertificates gets a reference to the given []CertificateRestResponseV2 and assigns it to the Certificates field.

func (*SearchCertificatesRestResponseV2) SetPaginationSummary

func (o *SearchCertificatesRestResponseV2) SetPaginationSummary(v PaginationSummary)

SetPaginationSummary gets a reference to the given PaginationSummary and assigns it to the PaginationSummary field.

func (SearchCertificatesRestResponseV2) ToMap

func (o SearchCertificatesRestResponseV2) ToMap() (map[string]interface{}, error)

func (*SearchCertificatesRestResponseV2) UnmarshalJSON

func (o *SearchCertificatesRestResponseV2) UnmarshalJSON(bytes []byte) (err error)

type SearchEndEntitiesRestRequest

type SearchEndEntitiesRestRequest struct {
	// Maximum number of results
	MaxNumberOfResults *int32 `json:"max_number_of_results,omitempty"`
	// Current page number
	CurrentPage *int32 `json:"current_page,omitempty"`
	// A List of search criteria.
	Criteria             []SearchEndEntityCriteriaRestRequest `json:"criteria,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchEndEntitiesRestRequest struct for SearchEndEntitiesRestRequest

func NewSearchEndEntitiesRestRequest

func NewSearchEndEntitiesRestRequest() *SearchEndEntitiesRestRequest

NewSearchEndEntitiesRestRequest instantiates a new SearchEndEntitiesRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchEndEntitiesRestRequestWithDefaults

func NewSearchEndEntitiesRestRequestWithDefaults() *SearchEndEntitiesRestRequest

NewSearchEndEntitiesRestRequestWithDefaults instantiates a new SearchEndEntitiesRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchEndEntitiesRestRequest) GetCriteria

GetCriteria returns the Criteria field value if set, zero value otherwise.

func (*SearchEndEntitiesRestRequest) GetCriteriaOk

GetCriteriaOk returns a tuple with the Criteria field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesRestRequest) GetCurrentPage

func (o *SearchEndEntitiesRestRequest) GetCurrentPage() int32

GetCurrentPage returns the CurrentPage field value if set, zero value otherwise.

func (*SearchEndEntitiesRestRequest) GetCurrentPageOk

func (o *SearchEndEntitiesRestRequest) GetCurrentPageOk() (*int32, bool)

GetCurrentPageOk returns a tuple with the CurrentPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesRestRequest) GetMaxNumberOfResults

func (o *SearchEndEntitiesRestRequest) GetMaxNumberOfResults() int32

GetMaxNumberOfResults returns the MaxNumberOfResults field value if set, zero value otherwise.

func (*SearchEndEntitiesRestRequest) GetMaxNumberOfResultsOk

func (o *SearchEndEntitiesRestRequest) GetMaxNumberOfResultsOk() (*int32, bool)

GetMaxNumberOfResultsOk returns a tuple with the MaxNumberOfResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesRestRequest) HasCriteria

func (o *SearchEndEntitiesRestRequest) HasCriteria() bool

HasCriteria returns a boolean if a field has been set.

func (*SearchEndEntitiesRestRequest) HasCurrentPage

func (o *SearchEndEntitiesRestRequest) HasCurrentPage() bool

HasCurrentPage returns a boolean if a field has been set.

func (*SearchEndEntitiesRestRequest) HasMaxNumberOfResults

func (o *SearchEndEntitiesRestRequest) HasMaxNumberOfResults() bool

HasMaxNumberOfResults returns a boolean if a field has been set.

func (SearchEndEntitiesRestRequest) MarshalJSON

func (o SearchEndEntitiesRestRequest) MarshalJSON() ([]byte, error)

func (*SearchEndEntitiesRestRequest) SetCriteria

SetCriteria gets a reference to the given []SearchEndEntityCriteriaRestRequest and assigns it to the Criteria field.

func (*SearchEndEntitiesRestRequest) SetCurrentPage

func (o *SearchEndEntitiesRestRequest) SetCurrentPage(v int32)

SetCurrentPage gets a reference to the given int32 and assigns it to the CurrentPage field.

func (*SearchEndEntitiesRestRequest) SetMaxNumberOfResults

func (o *SearchEndEntitiesRestRequest) SetMaxNumberOfResults(v int32)

SetMaxNumberOfResults gets a reference to the given int32 and assigns it to the MaxNumberOfResults field.

func (SearchEndEntitiesRestRequest) ToMap

func (o SearchEndEntitiesRestRequest) ToMap() (map[string]interface{}, error)

func (*SearchEndEntitiesRestRequest) UnmarshalJSON

func (o *SearchEndEntitiesRestRequest) UnmarshalJSON(bytes []byte) (err error)

type SearchEndEntitiesRestRequestV2

type SearchEndEntitiesRestRequestV2 struct {
	// Maximum number of results
	MaxNumberOfResults *int32 `json:"max_number_of_results,omitempty"`
	// Current page number
	CurrentPage *int32 `json:"current_page,omitempty"`
	// A List of search criteria.
	Criteria             []SearchEndEntityCriteriaRestRequest `json:"criteria,omitempty"`
	SortOperation        *SearchEndEntitiesSortRestRequest    `json:"sort_operation,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchEndEntitiesRestRequestV2 struct for SearchEndEntitiesRestRequestV2

func NewSearchEndEntitiesRestRequestV2

func NewSearchEndEntitiesRestRequestV2() *SearchEndEntitiesRestRequestV2

NewSearchEndEntitiesRestRequestV2 instantiates a new SearchEndEntitiesRestRequestV2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchEndEntitiesRestRequestV2WithDefaults

func NewSearchEndEntitiesRestRequestV2WithDefaults() *SearchEndEntitiesRestRequestV2

NewSearchEndEntitiesRestRequestV2WithDefaults instantiates a new SearchEndEntitiesRestRequestV2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchEndEntitiesRestRequestV2) GetCriteria

GetCriteria returns the Criteria field value if set, zero value otherwise.

func (*SearchEndEntitiesRestRequestV2) GetCriteriaOk

GetCriteriaOk returns a tuple with the Criteria field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesRestRequestV2) GetCurrentPage

func (o *SearchEndEntitiesRestRequestV2) GetCurrentPage() int32

GetCurrentPage returns the CurrentPage field value if set, zero value otherwise.

func (*SearchEndEntitiesRestRequestV2) GetCurrentPageOk

func (o *SearchEndEntitiesRestRequestV2) GetCurrentPageOk() (*int32, bool)

GetCurrentPageOk returns a tuple with the CurrentPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesRestRequestV2) GetMaxNumberOfResults

func (o *SearchEndEntitiesRestRequestV2) GetMaxNumberOfResults() int32

GetMaxNumberOfResults returns the MaxNumberOfResults field value if set, zero value otherwise.

func (*SearchEndEntitiesRestRequestV2) GetMaxNumberOfResultsOk

func (o *SearchEndEntitiesRestRequestV2) GetMaxNumberOfResultsOk() (*int32, bool)

GetMaxNumberOfResultsOk returns a tuple with the MaxNumberOfResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesRestRequestV2) GetSortOperation

GetSortOperation returns the SortOperation field value if set, zero value otherwise.

func (*SearchEndEntitiesRestRequestV2) GetSortOperationOk

GetSortOperationOk returns a tuple with the SortOperation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesRestRequestV2) HasCriteria

func (o *SearchEndEntitiesRestRequestV2) HasCriteria() bool

HasCriteria returns a boolean if a field has been set.

func (*SearchEndEntitiesRestRequestV2) HasCurrentPage

func (o *SearchEndEntitiesRestRequestV2) HasCurrentPage() bool

HasCurrentPage returns a boolean if a field has been set.

func (*SearchEndEntitiesRestRequestV2) HasMaxNumberOfResults

func (o *SearchEndEntitiesRestRequestV2) HasMaxNumberOfResults() bool

HasMaxNumberOfResults returns a boolean if a field has been set.

func (*SearchEndEntitiesRestRequestV2) HasSortOperation

func (o *SearchEndEntitiesRestRequestV2) HasSortOperation() bool

HasSortOperation returns a boolean if a field has been set.

func (SearchEndEntitiesRestRequestV2) MarshalJSON

func (o SearchEndEntitiesRestRequestV2) MarshalJSON() ([]byte, error)

func (*SearchEndEntitiesRestRequestV2) SetCriteria

SetCriteria gets a reference to the given []SearchEndEntityCriteriaRestRequest and assigns it to the Criteria field.

func (*SearchEndEntitiesRestRequestV2) SetCurrentPage

func (o *SearchEndEntitiesRestRequestV2) SetCurrentPage(v int32)

SetCurrentPage gets a reference to the given int32 and assigns it to the CurrentPage field.

func (*SearchEndEntitiesRestRequestV2) SetMaxNumberOfResults

func (o *SearchEndEntitiesRestRequestV2) SetMaxNumberOfResults(v int32)

SetMaxNumberOfResults gets a reference to the given int32 and assigns it to the MaxNumberOfResults field.

func (*SearchEndEntitiesRestRequestV2) SetSortOperation

SetSortOperation gets a reference to the given SearchEndEntitiesSortRestRequest and assigns it to the SortOperation field.

func (SearchEndEntitiesRestRequestV2) ToMap

func (o SearchEndEntitiesRestRequestV2) ToMap() (map[string]interface{}, error)

func (*SearchEndEntitiesRestRequestV2) UnmarshalJSON

func (o *SearchEndEntitiesRestRequestV2) UnmarshalJSON(bytes []byte) (err error)

type SearchEndEntitiesRestResponse

type SearchEndEntitiesRestResponse struct {
	EndEntities          []EndEntityRestResponse `json:"end_entities,omitempty"`
	MoreResults          *bool                   `json:"more_results,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchEndEntitiesRestResponse struct for SearchEndEntitiesRestResponse

func NewSearchEndEntitiesRestResponse

func NewSearchEndEntitiesRestResponse() *SearchEndEntitiesRestResponse

NewSearchEndEntitiesRestResponse instantiates a new SearchEndEntitiesRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchEndEntitiesRestResponseWithDefaults

func NewSearchEndEntitiesRestResponseWithDefaults() *SearchEndEntitiesRestResponse

NewSearchEndEntitiesRestResponseWithDefaults instantiates a new SearchEndEntitiesRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchEndEntitiesRestResponse) GetEndEntities

GetEndEntities returns the EndEntities field value if set, zero value otherwise.

func (*SearchEndEntitiesRestResponse) GetEndEntitiesOk

func (o *SearchEndEntitiesRestResponse) GetEndEntitiesOk() ([]EndEntityRestResponse, bool)

GetEndEntitiesOk returns a tuple with the EndEntities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesRestResponse) GetMoreResults

func (o *SearchEndEntitiesRestResponse) GetMoreResults() bool

GetMoreResults returns the MoreResults field value if set, zero value otherwise.

func (*SearchEndEntitiesRestResponse) GetMoreResultsOk

func (o *SearchEndEntitiesRestResponse) GetMoreResultsOk() (*bool, bool)

GetMoreResultsOk returns a tuple with the MoreResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesRestResponse) HasEndEntities

func (o *SearchEndEntitiesRestResponse) HasEndEntities() bool

HasEndEntities returns a boolean if a field has been set.

func (*SearchEndEntitiesRestResponse) HasMoreResults

func (o *SearchEndEntitiesRestResponse) HasMoreResults() bool

HasMoreResults returns a boolean if a field has been set.

func (SearchEndEntitiesRestResponse) MarshalJSON

func (o SearchEndEntitiesRestResponse) MarshalJSON() ([]byte, error)

func (*SearchEndEntitiesRestResponse) SetEndEntities

SetEndEntities gets a reference to the given []EndEntityRestResponse and assigns it to the EndEntities field.

func (*SearchEndEntitiesRestResponse) SetMoreResults

func (o *SearchEndEntitiesRestResponse) SetMoreResults(v bool)

SetMoreResults gets a reference to the given bool and assigns it to the MoreResults field.

func (SearchEndEntitiesRestResponse) ToMap

func (o SearchEndEntitiesRestResponse) ToMap() (map[string]interface{}, error)

func (*SearchEndEntitiesRestResponse) UnmarshalJSON

func (o *SearchEndEntitiesRestResponse) UnmarshalJSON(bytes []byte) (err error)

type SearchEndEntitiesSortRestRequest

type SearchEndEntitiesSortRestRequest struct {
	// Sorted by
	Property *string `json:"property,omitempty"`
	// Sort ascending or descending. 'ASC' for ascending, 'DESC' for descending.
	Operation            *string `json:"operation,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchEndEntitiesSortRestRequest Use one of allowed values as property and operation. Available propertiesUSERNAME SUBJECT_DN SUBJECT_ALT_NAME END_ENTITY_PROFILE(by databse identifier, not user-given name) CERTIFICATE_PROFILE(by identifier) CA(by identifier) STATUS UPDATE_TIME CREATED_DATE Available operationsASC DESC

func NewSearchEndEntitiesSortRestRequest

func NewSearchEndEntitiesSortRestRequest() *SearchEndEntitiesSortRestRequest

NewSearchEndEntitiesSortRestRequest instantiates a new SearchEndEntitiesSortRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchEndEntitiesSortRestRequestWithDefaults

func NewSearchEndEntitiesSortRestRequestWithDefaults() *SearchEndEntitiesSortRestRequest

NewSearchEndEntitiesSortRestRequestWithDefaults instantiates a new SearchEndEntitiesSortRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchEndEntitiesSortRestRequest) GetOperation

func (o *SearchEndEntitiesSortRestRequest) GetOperation() string

GetOperation returns the Operation field value if set, zero value otherwise.

func (*SearchEndEntitiesSortRestRequest) GetOperationOk

func (o *SearchEndEntitiesSortRestRequest) GetOperationOk() (*string, bool)

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesSortRestRequest) GetProperty

func (o *SearchEndEntitiesSortRestRequest) GetProperty() string

GetProperty returns the Property field value if set, zero value otherwise.

func (*SearchEndEntitiesSortRestRequest) GetPropertyOk

func (o *SearchEndEntitiesSortRestRequest) GetPropertyOk() (*string, bool)

GetPropertyOk returns a tuple with the Property field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntitiesSortRestRequest) HasOperation

func (o *SearchEndEntitiesSortRestRequest) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*SearchEndEntitiesSortRestRequest) HasProperty

func (o *SearchEndEntitiesSortRestRequest) HasProperty() bool

HasProperty returns a boolean if a field has been set.

func (SearchEndEntitiesSortRestRequest) MarshalJSON

func (o SearchEndEntitiesSortRestRequest) MarshalJSON() ([]byte, error)

func (*SearchEndEntitiesSortRestRequest) SetOperation

func (o *SearchEndEntitiesSortRestRequest) SetOperation(v string)

SetOperation gets a reference to the given string and assigns it to the Operation field.

func (*SearchEndEntitiesSortRestRequest) SetProperty

func (o *SearchEndEntitiesSortRestRequest) SetProperty(v string)

SetProperty gets a reference to the given string and assigns it to the Property field.

func (SearchEndEntitiesSortRestRequest) ToMap

func (o SearchEndEntitiesSortRestRequest) ToMap() (map[string]interface{}, error)

func (*SearchEndEntitiesSortRestRequest) UnmarshalJSON

func (o *SearchEndEntitiesSortRestRequest) UnmarshalJSON(bytes []byte) (err error)

type SearchEndEntityCriteriaRestRequest

type SearchEndEntityCriteriaRestRequest struct {
	// A search property
	Property *string `json:"property,omitempty"`
	// A search value. This could be string value, an appropriate string name of End Entity Profile or Certificate Profile or CA
	Value *string `json:"value,omitempty"`
	// An operation for property on inserted value. 'EQUALS' for string, 'LIKE' for string value ('QUERY')
	Operation            *string `json:"operation,omitempty"`
	AdditionalProperties map[string]interface{}
}

SearchEndEntityCriteriaRestRequest Use one of allowed values as property(see enum values below). QUERY - multiplicity [0, 1] - is used to search by SubjectDn, SubjectAn, Username; Available STATUS - multiplicity [0, 9] - values are: NEW, FAILED, INITIALIZED, INPROCESS, GENERATED, REVOKED, HISTORICAL, KEYRECOVERY, WAITINGFORADDAPPROVAL; END_ENTITY_PROFILE, CERTIFICATE_PROFILE, CA - multiplicity [0, *) - exact match of the name for referencing End Entity Profile, Certificate Profile or CA;

func NewSearchEndEntityCriteriaRestRequest

func NewSearchEndEntityCriteriaRestRequest() *SearchEndEntityCriteriaRestRequest

NewSearchEndEntityCriteriaRestRequest instantiates a new SearchEndEntityCriteriaRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchEndEntityCriteriaRestRequestWithDefaults

func NewSearchEndEntityCriteriaRestRequestWithDefaults() *SearchEndEntityCriteriaRestRequest

NewSearchEndEntityCriteriaRestRequestWithDefaults instantiates a new SearchEndEntityCriteriaRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchEndEntityCriteriaRestRequest) GetOperation

func (o *SearchEndEntityCriteriaRestRequest) GetOperation() string

GetOperation returns the Operation field value if set, zero value otherwise.

func (*SearchEndEntityCriteriaRestRequest) GetOperationOk

func (o *SearchEndEntityCriteriaRestRequest) GetOperationOk() (*string, bool)

GetOperationOk returns a tuple with the Operation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntityCriteriaRestRequest) GetProperty

func (o *SearchEndEntityCriteriaRestRequest) GetProperty() string

GetProperty returns the Property field value if set, zero value otherwise.

func (*SearchEndEntityCriteriaRestRequest) GetPropertyOk

func (o *SearchEndEntityCriteriaRestRequest) GetPropertyOk() (*string, bool)

GetPropertyOk returns a tuple with the Property field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntityCriteriaRestRequest) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*SearchEndEntityCriteriaRestRequest) GetValueOk

func (o *SearchEndEntityCriteriaRestRequest) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchEndEntityCriteriaRestRequest) HasOperation

func (o *SearchEndEntityCriteriaRestRequest) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*SearchEndEntityCriteriaRestRequest) HasProperty

func (o *SearchEndEntityCriteriaRestRequest) HasProperty() bool

HasProperty returns a boolean if a field has been set.

func (*SearchEndEntityCriteriaRestRequest) HasValue

HasValue returns a boolean if a field has been set.

func (SearchEndEntityCriteriaRestRequest) MarshalJSON

func (o SearchEndEntityCriteriaRestRequest) MarshalJSON() ([]byte, error)

func (*SearchEndEntityCriteriaRestRequest) SetOperation

func (o *SearchEndEntityCriteriaRestRequest) SetOperation(v string)

SetOperation gets a reference to the given string and assigns it to the Operation field.

func (*SearchEndEntityCriteriaRestRequest) SetProperty

func (o *SearchEndEntityCriteriaRestRequest) SetProperty(v string)

SetProperty gets a reference to the given string and assigns it to the Property field.

func (*SearchEndEntityCriteriaRestRequest) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (SearchEndEntityCriteriaRestRequest) ToMap

func (o SearchEndEntityCriteriaRestRequest) ToMap() (map[string]interface{}, error)

func (*SearchEndEntityCriteriaRestRequest) UnmarshalJSON

func (o *SearchEndEntityCriteriaRestRequest) UnmarshalJSON(bytes []byte) (err error)

type SetEndEntityStatusRestRequest

type SetEndEntityStatusRestRequest struct {
	// Password
	Password *string `json:"password,omitempty"`
	// Token type property
	Token *string `json:"token,omitempty"`
	// End entity status property
	Status               *string `json:"status,omitempty"`
	AdditionalProperties map[string]interface{}
}

SetEndEntityStatusRestRequest Use one of allowed values as property(see enum values below). Available TOKEN - USERGENERATED, P12, BCFKS, JKS, PEM; Available STATUS - NEW, FAILED, INITIALIZED, INPROCESS, GENERATED, REVOKED, HISTORICAL, KEYRECOVERY, WAITINGFORADDAPPROVAL;

func NewSetEndEntityStatusRestRequest

func NewSetEndEntityStatusRestRequest() *SetEndEntityStatusRestRequest

NewSetEndEntityStatusRestRequest instantiates a new SetEndEntityStatusRestRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSetEndEntityStatusRestRequestWithDefaults

func NewSetEndEntityStatusRestRequestWithDefaults() *SetEndEntityStatusRestRequest

NewSetEndEntityStatusRestRequestWithDefaults instantiates a new SetEndEntityStatusRestRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SetEndEntityStatusRestRequest) GetPassword

func (o *SetEndEntityStatusRestRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*SetEndEntityStatusRestRequest) GetPasswordOk

func (o *SetEndEntityStatusRestRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetEndEntityStatusRestRequest) GetStatus

func (o *SetEndEntityStatusRestRequest) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*SetEndEntityStatusRestRequest) GetStatusOk

func (o *SetEndEntityStatusRestRequest) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetEndEntityStatusRestRequest) GetToken

func (o *SetEndEntityStatusRestRequest) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*SetEndEntityStatusRestRequest) GetTokenOk

func (o *SetEndEntityStatusRestRequest) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetEndEntityStatusRestRequest) HasPassword

func (o *SetEndEntityStatusRestRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*SetEndEntityStatusRestRequest) HasStatus

func (o *SetEndEntityStatusRestRequest) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*SetEndEntityStatusRestRequest) HasToken

func (o *SetEndEntityStatusRestRequest) HasToken() bool

HasToken returns a boolean if a field has been set.

func (SetEndEntityStatusRestRequest) MarshalJSON

func (o SetEndEntityStatusRestRequest) MarshalJSON() ([]byte, error)

func (*SetEndEntityStatusRestRequest) SetPassword

func (o *SetEndEntityStatusRestRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*SetEndEntityStatusRestRequest) SetStatus

func (o *SetEndEntityStatusRestRequest) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*SetEndEntityStatusRestRequest) SetToken

func (o *SetEndEntityStatusRestRequest) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (SetEndEntityStatusRestRequest) ToMap

func (o SetEndEntityStatusRestRequest) ToMap() (map[string]interface{}, error)

func (*SetEndEntityStatusRestRequest) UnmarshalJSON

func (o *SetEndEntityStatusRestRequest) UnmarshalJSON(bytes []byte) (err error)

type SshPublicKeyRestResponse

type SshPublicKeyRestResponse struct {
	// Certificate Authority (CA) name
	CaName *string `json:"ca_name,omitempty"`
	// CA’s public key
	Response             *string `json:"response,omitempty"`
	AdditionalProperties map[string]interface{}
}

SshPublicKeyRestResponse struct for SshPublicKeyRestResponse

func NewSshPublicKeyRestResponse

func NewSshPublicKeyRestResponse() *SshPublicKeyRestResponse

NewSshPublicKeyRestResponse instantiates a new SshPublicKeyRestResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSshPublicKeyRestResponseWithDefaults

func NewSshPublicKeyRestResponseWithDefaults() *SshPublicKeyRestResponse

NewSshPublicKeyRestResponseWithDefaults instantiates a new SshPublicKeyRestResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SshPublicKeyRestResponse) GetCaName

func (o *SshPublicKeyRestResponse) GetCaName() string

GetCaName returns the CaName field value if set, zero value otherwise.

func (*SshPublicKeyRestResponse) GetCaNameOk

func (o *SshPublicKeyRestResponse) GetCaNameOk() (*string, bool)

GetCaNameOk returns a tuple with the CaName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SshPublicKeyRestResponse) GetResponse

func (o *SshPublicKeyRestResponse) GetResponse() string

GetResponse returns the Response field value if set, zero value otherwise.

func (*SshPublicKeyRestResponse) GetResponseOk

func (o *SshPublicKeyRestResponse) GetResponseOk() (*string, bool)

GetResponseOk returns a tuple with the Response field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SshPublicKeyRestResponse) HasCaName

func (o *SshPublicKeyRestResponse) HasCaName() bool

HasCaName returns a boolean if a field has been set.

func (*SshPublicKeyRestResponse) HasResponse

func (o *SshPublicKeyRestResponse) HasResponse() bool

HasResponse returns a boolean if a field has been set.

func (SshPublicKeyRestResponse) MarshalJSON

func (o SshPublicKeyRestResponse) MarshalJSON() ([]byte, error)

func (*SshPublicKeyRestResponse) SetCaName

func (o *SshPublicKeyRestResponse) SetCaName(v string)

SetCaName gets a reference to the given string and assigns it to the CaName field.

func (*SshPublicKeyRestResponse) SetResponse

func (o *SshPublicKeyRestResponse) SetResponse(v string)

SetResponse gets a reference to the given string and assigns it to the Response field.

func (SshPublicKeyRestResponse) ToMap

func (o SshPublicKeyRestResponse) ToMap() (map[string]interface{}, error)

func (*SshPublicKeyRestResponse) UnmarshalJSON

func (o *SshPublicKeyRestResponse) UnmarshalJSON(bytes []byte) (err error)

type V1CaApiService

type V1CaApiService service

V1CaApiService V1CaApi service

func (*V1CaApiService) CreateCrl

func (a *V1CaApiService) CreateCrl(ctx context.Context, issuerDn string) ApiCreateCrlRequest

CreateCrl Create CRL(main, partition and delta) issued by this CA

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param issuerDn the CRL issuers DN (CAs subject DN)
@return ApiCreateCrlRequest

func (*V1CaApiService) CreateCrlExecute

Execute executes the request

@return CreateCrlRestResponse

func (*V1CaApiService) GetCertificateAsPem

func (a *V1CaApiService) GetCertificateAsPem(ctx context.Context, subjectDn string) ApiGetCertificateAsPemRequest

GetCertificateAsPem Get PEM file with the active CA certificate chain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subjectDn CAs subject DN
@return ApiGetCertificateAsPemRequest

func (*V1CaApiService) GetCertificateAsPemExecute

func (a *V1CaApiService) GetCertificateAsPemExecute(r ApiGetCertificateAsPemRequest) (*http.Response, error)

Execute executes the request

func (*V1CaApiService) GetLatestCrl

func (a *V1CaApiService) GetLatestCrl(ctx context.Context, issuerDn string) ApiGetLatestCrlRequest

GetLatestCrl Returns the latest CRL issued by this CA

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param issuerDn the CRL issuers DN (CAs subject DN)
@return ApiGetLatestCrlRequest

func (*V1CaApiService) GetLatestCrlExecute

func (a *V1CaApiService) GetLatestCrlExecute(r ApiGetLatestCrlRequest) (*CrlRestResponse, *http.Response, error)

Execute executes the request

@return CrlRestResponse

func (*V1CaApiService) ImportCrl

func (a *V1CaApiService) ImportCrl(ctx context.Context, issuerDn string) ApiImportCrlRequest

ImportCrl Import a certificate revocation list (CRL) for a CA

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param issuerDn the CRL issuers DN (CAs subject DN)
@return ApiImportCrlRequest

func (*V1CaApiService) ImportCrlExecute

func (a *V1CaApiService) ImportCrlExecute(r ApiImportCrlRequest) (*http.Response, error)

Execute executes the request

func (*V1CaApiService) ListCas

ListCas Returns the Response containing the list of CAs with general information per CA as Json

Returns the Response containing the list of CAs with general information per CA as Json

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCasRequest

func (*V1CaApiService) ListCasExecute

Execute executes the request

@return CaInfosRestResponse

func (*V1CaApiService) Status1

Status1 Get the status of this REST Resource

Returns status, API version and EJBCA version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatus1Request

func (*V1CaApiService) Status1Execute

Execute executes the request

@return RestResourceStatusRestResponse

type V1CaManagementApiService

type V1CaManagementApiService service

V1CaManagementApiService V1CaManagementApi service

func (*V1CaManagementApiService) Activate

Activate Activate a CA

Activates CA with given name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param caName Name of the CA to activate
@return ApiActivateRequest

func (*V1CaManagementApiService) ActivateExecute

Execute executes the request

func (*V1CaManagementApiService) Deactivate

Deactivate Deactivate a CA

Deactivates CA with given name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param caName Name of the CA to deactivate
@return ApiDeactivateRequest

func (*V1CaManagementApiService) DeactivateExecute

func (a *V1CaManagementApiService) DeactivateExecute(r ApiDeactivateRequest) (*http.Response, error)

Execute executes the request

func (*V1CaManagementApiService) Status

Status Get the status of this REST Resource

Returns status, API version and EJBCA version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatusRequest

func (*V1CaManagementApiService) StatusExecute

Execute executes the request

@return RestResourceStatusRestResponse

type V1CertificateApiService

type V1CertificateApiService service

V1CertificateApiService V1CertificateApi service

func (*V1CertificateApiService) CertificateRequest

CertificateRequest Enrollment with client generated keys for an existing End Entity

Enroll for a certificate given a PEM encoded PKCS#10 CSR.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateRequestRequest

func (*V1CertificateApiService) CertificateRequestExecute

Execute executes the request

@return CertificateRestResponse

func (*V1CertificateApiService) EnrollKeystore

EnrollKeystore Keystore enrollment

Creates a keystore for the specified end entity

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollKeystoreRequest

func (*V1CertificateApiService) EnrollKeystoreExecute

Execute executes the request

@return CertificateRestResponse

func (*V1CertificateApiService) EnrollPkcs10Certificate

EnrollPkcs10Certificate Enrollment with client generated keys, using CSR subject

Enroll for a certificate given a PEM encoded PKCS#10 CSR.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollPkcs10CertificateRequest

func (*V1CertificateApiService) EnrollPkcs10CertificateExecute

Execute executes the request

@return CertificateRestResponse

func (*V1CertificateApiService) FinalizeEnrollment

func (a *V1CertificateApiService) FinalizeEnrollment(ctx context.Context, requestId int32) ApiFinalizeEnrollmentRequest

FinalizeEnrollment Finalize enrollment

Finalizes enrollment after administrator approval using request Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param requestId Approval request id
@return ApiFinalizeEnrollmentRequest

func (*V1CertificateApiService) FinalizeEnrollmentExecute

Execute executes the request

@return CertificateRestResponse

func (*V1CertificateApiService) GetCertificatesAboutToExpire

GetCertificatesAboutToExpire Get a list of certificates that are about to expire

List of certificates expiring within specified number of days

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCertificatesAboutToExpireRequest

func (*V1CertificateApiService) GetCertificatesAboutToExpireExecute

Execute executes the request

@return ExpiringCertificatesRestResponse

func (*V1CertificateApiService) RevocationStatus

func (a *V1CertificateApiService) RevocationStatus(ctx context.Context, issuerDn string, certificateSerialNumber string) ApiRevocationStatusRequest

RevocationStatus Checks revocation status of the specified certificate

Checks revocation status of the specified certificate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param issuerDn Subject DN of the issuing CA
@param certificateSerialNumber hex serial number (without prefix, e.g. '00')
@return ApiRevocationStatusRequest

func (*V1CertificateApiService) RevocationStatusExecute

Execute executes the request

@return RevokeStatusRestResponse

func (*V1CertificateApiService) RevokeCertificate

func (a *V1CertificateApiService) RevokeCertificate(ctx context.Context, issuerDn string, certificateSerialNumber string) ApiRevokeCertificateRequest

RevokeCertificate Revokes the specified certificate

Revokes the specified certificate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param issuerDn Subject DN of the issuing CA
@param certificateSerialNumber hex serial number (without prefix, e.g. '00')
@return ApiRevokeCertificateRequest

func (*V1CertificateApiService) RevokeCertificateExecute

Execute executes the request

@return RevokeStatusRestResponse

func (*V1CertificateApiService) SearchCertificates

SearchCertificates Searches for certificates confirming given criteria.

Insert as many search criteria as needed. A reference about allowed values for criteria could be found below, under SearchCertificateCriteriaRestRequest model.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchCertificatesRequest

func (*V1CertificateApiService) SearchCertificatesExecute

Execute executes the request

@return SearchCertificatesRestResponse

func (*V1CertificateApiService) Status2

Status2 Get the status of this REST Resource

Returns status, API version and EJBCA version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatus2Request

func (*V1CertificateApiService) Status2Execute

Execute executes the request

@return RestResourceStatusRestResponse

type V1ConfigdumpApiService

type V1ConfigdumpApiService service

V1ConfigdumpApiService V1ConfigdumpApi service

func (*V1ConfigdumpApiService) GetJsonConfigdump

GetJsonConfigdump Get the configuration in JSON.

Returns the configdump data in JSON.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetJsonConfigdumpRequest

func (*V1ConfigdumpApiService) GetJsonConfigdumpExecute

func (a *V1ConfigdumpApiService) GetJsonConfigdumpExecute(r ApiGetJsonConfigdumpRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*V1ConfigdumpApiService) GetJsonConfigdumpForType

func (a *V1ConfigdumpApiService) GetJsonConfigdumpForType(ctx context.Context, type_ string) ApiGetJsonConfigdumpForTypeRequest

GetJsonConfigdumpForType Get the configuration for type in JSON.

Returns the configdump data in JSON.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param type_ Configuration type to export.  Supported types are: ACMECONFIG/acme-config, CA/certification-authorities,  CRYPTOTOKEN/crypto-tokens, PUBLISHER/publishers, APPROVALPROFILE/approval-profiles, CERTPROFILE/certificate-profiles, EEPROFILE/end-entity-profiles, SERVICE/services, ROLE/admin-roles, KEYBINDING/internal-key-bindings, ADMINPREFS/admin-preferences, OCSPCONFIG/ocsp-configuration, PEERCONNECTOR/peer-connectors, SCEPCONFIG/scep-config, CMPCONFIG/cmp-config, ESTCONFIG/est-config, VALIDATOR/validators, CTLOG/ct-logs, EXTENDEDKEYUSAGE/extended-key-usage, CERTEXTENSION/custom-certificate-extensions,  OAUTHKEY/trusted-oauth-providers, AVAILABLEPROTOCOLS/available-protocols
@return ApiGetJsonConfigdumpForTypeRequest

func (*V1ConfigdumpApiService) GetJsonConfigdumpForTypeAndSetting

func (a *V1ConfigdumpApiService) GetJsonConfigdumpForTypeAndSetting(ctx context.Context, type_ string, setting string) ApiGetJsonConfigdumpForTypeAndSettingRequest

GetJsonConfigdumpForTypeAndSetting Get the configuration for a type and setting in JSON.

Returns the configdump data in JSON.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param type_ Configuration type to export.  Supported types are: ACMECONFIG/acme-config, CA/certification-authorities,  CRYPTOTOKEN/crypto-tokens, PUBLISHER/publishers, APPROVALPROFILE/approval-profiles, CERTPROFILE/certificate-profiles, EEPROFILE/end-entity-profiles, SERVICE/services, ROLE/admin-roles, KEYBINDING/internal-key-bindings, ADMINPREFS/admin-preferences, OCSPCONFIG/ocsp-configuration, PEERCONNECTOR/peer-connectors, SCEPCONFIG/scep-config, CMPCONFIG/cmp-config, ESTCONFIG/est-config, VALIDATOR/validators, CTLOG/ct-logs, EXTENDEDKEYUSAGE/extended-key-usage, CERTEXTENSION/custom-certificate-extensions,  OAUTHKEY/trusted-oauth-providers, AVAILABLEPROTOCOLS/available-protocols
@param setting Individual configuration name to export
@return ApiGetJsonConfigdumpForTypeAndSettingRequest

func (*V1ConfigdumpApiService) GetJsonConfigdumpForTypeAndSettingExecute

func (a *V1ConfigdumpApiService) GetJsonConfigdumpForTypeAndSettingExecute(r ApiGetJsonConfigdumpForTypeAndSettingRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*V1ConfigdumpApiService) GetJsonConfigdumpForTypeExecute

func (a *V1ConfigdumpApiService) GetJsonConfigdumpForTypeExecute(r ApiGetJsonConfigdumpForTypeRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*V1ConfigdumpApiService) GetZipExport

GetZipExport Get the configuration as a ZIP file.

Returns a zip archive of YAML files.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetZipExportRequest

func (*V1ConfigdumpApiService) GetZipExportExecute

func (a *V1ConfigdumpApiService) GetZipExportExecute(r ApiGetZipExportRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*V1ConfigdumpApiService) PostJsonImport

PostJsonImport Put the configuration in JSON.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostJsonImportRequest

func (*V1ConfigdumpApiService) PostJsonImportExecute

Execute executes the request

@return ConfigdumpResults

func (*V1ConfigdumpApiService) PostZipImport

PostZipImport Put the configuration as a ZIP file.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostZipImportRequest

func (*V1ConfigdumpApiService) PostZipImportExecute

Execute executes the request

@return ConfigdumpResults

func (*V1ConfigdumpApiService) Status4

Status4 Get the status of this REST Resource

Returns status, API version and EJBCA version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatus4Request

func (*V1ConfigdumpApiService) Status4Execute

Execute executes the request

@return RestResourceStatusRestResponse

type V1CryptotokenApiService

type V1CryptotokenApiService service

V1CryptotokenApiService V1CryptotokenApi service

func (*V1CryptotokenApiService) Activate1

func (a *V1CryptotokenApiService) Activate1(ctx context.Context, cryptotokenName string) ApiActivate1Request

Activate1 Activate a Crypto Token

Activates Crypto Token given name and activation code

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param cryptotokenName Name of the token to activate
@return ApiActivate1Request

func (*V1CryptotokenApiService) Activate1Execute

func (a *V1CryptotokenApiService) Activate1Execute(r ApiActivate1Request) (*http.Response, error)

Execute executes the request

func (*V1CryptotokenApiService) Deactivate1

func (a *V1CryptotokenApiService) Deactivate1(ctx context.Context, cryptotokenName string) ApiDeactivate1Request

Deactivate1 Deactivate a Crypto Token

Deactivates Crypto Token given name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param cryptotokenName Name of the token to deactivate
@return ApiDeactivate1Request

func (*V1CryptotokenApiService) Deactivate1Execute

func (a *V1CryptotokenApiService) Deactivate1Execute(r ApiDeactivate1Request) (*http.Response, error)

Execute executes the request

func (*V1CryptotokenApiService) GenerateKeys

func (a *V1CryptotokenApiService) GenerateKeys(ctx context.Context, cryptotokenName string) ApiGenerateKeysRequest

GenerateKeys Generate keys

Generates a key pair given crypto token name, key pair alias, key algorithm and key specification

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param cryptotokenName Name of the token to generate keys for
@return ApiGenerateKeysRequest

func (*V1CryptotokenApiService) GenerateKeysExecute

func (a *V1CryptotokenApiService) GenerateKeysExecute(r ApiGenerateKeysRequest) (*http.Response, error)

Execute executes the request

func (*V1CryptotokenApiService) RemoveKeys

func (a *V1CryptotokenApiService) RemoveKeys(ctx context.Context, cryptotokenName string, keyPairAlias string) ApiRemoveKeysRequest

RemoveKeys Remove keys

Remove a key pair given crypto token name and key pair alias to be removed.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param cryptotokenName Name of the token to remove keys for.
@param keyPairAlias Alias for the key to be removed from the crypto token.
@return ApiRemoveKeysRequest

func (*V1CryptotokenApiService) RemoveKeysExecute

func (a *V1CryptotokenApiService) RemoveKeysExecute(r ApiRemoveKeysRequest) (*http.Response, error)

Execute executes the request

func (*V1CryptotokenApiService) Status5

Status5 Get the status of this REST Resource

Returns status, API version and EJBCA version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatus5Request

func (*V1CryptotokenApiService) Status5Execute

Execute executes the request

@return RestResourceStatusRestResponse

type V1EndentityApiService

type V1EndentityApiService service

V1EndentityApiService V1EndentityApi service

func (*V1EndentityApiService) Add

Add Add new end entity, if it does not exist

Register new end entity based on provided registration data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddRequest

func (*V1EndentityApiService) AddExecute

func (a *V1EndentityApiService) AddExecute(r ApiAddRequest) (*http.Response, error)

Execute executes the request

func (*V1EndentityApiService) Delete

func (a *V1EndentityApiService) Delete(ctx context.Context, endentityName string) ApiDeleteRequest

Delete Deletes end entity

Deletes specified end entity and keeps certificate information untouched, if end entity does not exist success is still returned

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param endentityName Name of the end entity
@return ApiDeleteRequest

func (*V1EndentityApiService) DeleteExecute

func (a *V1EndentityApiService) DeleteExecute(r ApiDeleteRequest) (*http.Response, error)

Execute executes the request

func (*V1EndentityApiService) Revoke

func (a *V1EndentityApiService) Revoke(ctx context.Context, endentityName string) ApiRevokeRequest

Revoke Revokes all end entity certificates

Revokes all certificates associated with given end entity name with specified reason code (see RFC 5280 Section 5.3.1), and optionally deletes the end entity

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param endentityName Name of the end entity
@return ApiRevokeRequest

func (*V1EndentityApiService) RevokeExecute

func (a *V1EndentityApiService) RevokeExecute(r ApiRevokeRequest) (*http.Response, error)

Execute executes the request

func (*V1EndentityApiService) Search

Search Searches for end entity confirming given criteria.

Insert as many search criteria as needed. A reference about allowed values for criteria could be found below, under SearchEndEntityCriteriaRestRequest model.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchRequest

func (*V1EndentityApiService) SearchExecute

Execute executes the request

@return SearchEndEntitiesRestResponse

func (*V1EndentityApiService) Setstatus

func (a *V1EndentityApiService) Setstatus(ctx context.Context, endentityName string) ApiSetstatusRequest

Setstatus Edits end entity setting new status

Edit status, password and token type of related end entity

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param endentityName Name of the end entity to edit status for
@return ApiSetstatusRequest

func (*V1EndentityApiService) SetstatusExecute

func (a *V1EndentityApiService) SetstatusExecute(r ApiSetstatusRequest) (*http.Response, error)

Execute executes the request

func (*V1EndentityApiService) Status6

Status6 Get the status of this REST Resource

Returns status, API version and EJBCA version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatus6Request

func (*V1EndentityApiService) Status6Execute

Execute executes the request

@return RestResourceStatusRestResponse

type V1SshApiService

type V1SshApiService service

V1SshApiService V1SshApi service

func (*V1SshApiService) Pubkey

func (a *V1SshApiService) Pubkey(ctx context.Context, caName string) ApiPubkeyRequest

Pubkey Retrieves a CA's public key in SSH format.

Retrieves a CA's public key in SSH format.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param caName
@return ApiPubkeyRequest

func (*V1SshApiService) PubkeyExecute

Execute executes the request

@return SshPublicKeyRestResponse

func (*V1SshApiService) Status8

Status8 Get the status of this REST Resource

Returns status, API version and EJBCA version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatus8Request

func (*V1SshApiService) Status8Execute

Execute executes the request

@return RestResourceStatusRestResponse

type V2CertificateApiService

type V2CertificateApiService service

V2CertificateApiService V2CertificateApi service

func (*V2CertificateApiService) GetCertificateProfileInfo

func (a *V2CertificateApiService) GetCertificateProfileInfo(ctx context.Context, profileName string) ApiGetCertificateProfileInfoRequest

GetCertificateProfileInfo Get Certificate Profile Info.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param profileName
@return ApiGetCertificateProfileInfoRequest

func (*V2CertificateApiService) GetCertificateProfileInfoExecute

Execute executes the request

@return CertificateProfileInfoRestResponseV2

func (*V2CertificateApiService) SearchCertificates1

SearchCertificates1 Searches for certificates confirming given criteria and pagination.

Insert as many search criteria as needed. A reference about allowed values for criteria could be found below, under SearchCertificateCriteriaRestRequestV2 model.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchCertificates1Request

func (*V2CertificateApiService) SearchCertificates1Execute

Execute executes the request

@return SearchCertificatesRestResponseV2

func (*V2CertificateApiService) Status3

Status3 Get the status of this REST Resource

Returns status, API version and EJBCA version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatus3Request

func (*V2CertificateApiService) Status3Execute

Execute executes the request

@return RestResourceStatusRestResponse

type V2EndentityApiService

type V2EndentityApiService service

V2EndentityApiService V2EndentityApi service

func (*V2EndentityApiService) GetAuthorizedEndEntityProfiles

func (a *V2EndentityApiService) GetAuthorizedEndEntityProfiles(ctx context.Context) ApiGetAuthorizedEndEntityProfilesRequest

GetAuthorizedEndEntityProfiles List of authorized end entity profiles for the current admin.

Returns list of all authorized end entity profiles for the current admin token

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetAuthorizedEndEntityProfilesRequest

func (*V2EndentityApiService) GetAuthorizedEndEntityProfilesExecute

Execute executes the request

@return AuthorizedEEPsRestResponse

func (*V2EndentityApiService) Profile

func (a *V2EndentityApiService) Profile(ctx context.Context, endentityProfileName string) ApiProfileRequest

Profile Get End Entity Profile content

Returns End Entity Profile configurations: List of available CAs, list of available Certificate Profiles.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param endentityProfileName
@return ApiProfileRequest

func (*V2EndentityApiService) ProfileExecute

Execute executes the request

@return EndEntityProfileResponse

func (*V2EndentityApiService) SortedSearch

SortedSearch Searches and sorts for end entity conforming given criteria.

Insert as many search criteria as needed and optionally a sorting criteria. A reference about allowed values for criteria could be found below, under SearchEndEntityCriteriaRestRequestV2 model.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSortedSearchRequest

func (*V2EndentityApiService) SortedSearchExecute

Execute executes the request

@return SearchEndEntitiesRestResponse

func (*V2EndentityApiService) Status7

Status7 Get the status of this REST Resource

Returns status, API version and EJBCA version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatus7Request

func (*V2EndentityApiService) Status7Execute

Execute executes the request

@return RestResourceStatusRestResponse

Source Files

Jump to

Keyboard shortcuts

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